diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 44be0decc50..00000000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,199 +0,0 @@ -name: CI - -on: - push: - branches: ["main"] - paths: - - "packages/**" - - "package.json" - pull_request: - types: [opened, synchronize] - paths: - - "packages/**" - - "package.json" - - ".github/**" - # trigger on merge group as well (merge queue) - merge_group: - types: [checks_requested] - branches: ["main"] - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - - # To use Remote Caching, uncomment the next lines and follow the steps below. -env: - TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} - TW_SECRET_KEY: ${{ secrets.TW_SECRET_KEY }} - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - -jobs: - build: - runs-on: ubuntu-latest - name: Build Packages - steps: - - name: Check out the code - uses: actions/checkout@v4 - - - name: Setup & Install - uses: ./.github/composite-actions/install - - - name: Build Packages - run: pnpm build:packages - - lint: - timeout-minutes: 15 - name: Lint Packages - runs-on: ubuntu-latest - steps: - - name: Check out the code - uses: actions/checkout@v4 - - - name: Setup & Install - uses: ./.github/composite-actions/install - - - name: Setup Biome - uses: biomejs/setup-biome@v2 - with: - version: latest - - - run: pnpm lint - - test: - timeout-minutes: 15 - name: Unit Tests - runs-on: ubuntu-latest - steps: - - name: Check out the code - uses: actions/checkout@v4 - - - name: Setup & Install - uses: ./.github/composite-actions/install - - - name: Set up foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - cache: false - - - run: pnpm test - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 - with: - directory: packages/ - flags: packages - verbose: true - - e2e: - timeout-minutes: 15 - name: E2E Tests - runs-on: ubuntu-latest - strategy: - matrix: - package_manager: [npm, yarn, pnpm, bun] - bundler: [vite, webpack, esbuild] - steps: - - name: Check out the code - uses: actions/checkout@v4 - - - name: Setup & Install - uses: ./.github/composite-actions/install - - - name: Build Packages - run: pnpm build:packages - - - name: Install Yarn (if needed) - if: matrix.package_manager == 'yarn' - run: npm install -g yarn@1.22.19 - - - name: Create test project - run: | - mkdir test-project - cd test-project - npm init -y - ${{ matrix.package_manager }} add react react-dom ../packages/thirdweb - - name: Create test file - run: | - cd test-project - echo "import { createThirdwebClient } from 'thirdweb'; console.log(createThirdwebClient({clientId: "foo_bar_baz"}));" > index.js - - - name: Bundle with vite - if: matrix.bundler == 'vite' - run: | - cd test-project - ${{matrix.package_manager}} add vite - echo 'import { defineConfig } from "vite"; import {resolve} from "path"; export default defineConfig({ build: { lib: { entry: resolve(__dirname, "index.js"), name: "e2e_test" }, outDir: "dist" }});' > vite.config.js - npx vite build - - - name: Bundle with webpack - if: matrix.bundler == 'webpack' - run: | - cd test-project - ${{matrix.package_manager}} add webpack webpack-cli - echo 'const path = require("path"); module.exports = { mode: "production", entry: "./index.js", output: { path: path.resolve(__dirname, "dist"), filename: "bundle.js" }};' > webpack.config.js - npx webpack - - - name: Bundle with esbuild - if: matrix.bundler == 'esbuild' - run: | - cd test-project - ${{matrix.package_manager}} add esbuild - npx esbuild index.js --bundle --outdir=dist - - - name: Verify bundle - run: | - cd test-project/dist - file_count=$(find . -type f | wc -l) - if [ "$file_count" -gt 0 ]; then - echo "Bundling successful" - else - echo "Bundling failed" - exit 1 - fi - - - benchmark: - # cannot run benchmarks on merge group - if: github.event_name != 'merge_group' - timeout-minutes: 15 - name: "Benchmarks" - runs-on: ubuntu-latest - steps: - - name: Check out the code - uses: actions/checkout@v4 - - - name: Setup & Install - uses: ./.github/composite-actions/install - - - name: Set up foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - cache: false - - - name: Run benchmarks - uses: CodSpeedHQ/action@v2 - with: - token: ${{ secrets.CODSPEED_TOKEN }} - run: "pnpm bench" - - size: - # only run on pull requests - if: github.event_name == 'pull_request' - timeout-minutes: 15 - name: "Size" - runs-on: ubuntu-latest - steps: - - name: Check out the code - uses: actions/checkout@v4 - - - name: Setup & Install - uses: ./.github/composite-actions/install - - - name: Report bundle size - uses: andresz1/size-limit-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - package_manager: pnpm - directory: packages/thirdweb diff --git a/.gitignore b/.gitignore index e6d695f5591..5f366b51ab6 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,4 @@ playwright-report/ legacy_packages/cli/artifacts/ # codecov binary -codecov \ No newline at end of file +codecov diff --git a/.nvmrc b/.nvmrc index 2edeafb09db..209e3ef4b62 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20 \ No newline at end of file +20 diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 3eaa4a9a539..00000000000 --- a/.prettierignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -dist -contracts-js -*.d.ts \ No newline at end of file diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index f3bcd4c903d..00000000000 --- a/.prettierrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "singleQuote": false, - "trailingComma": "all" -} diff --git a/.vscode/settings.json b/.vscode/settings.json index 4c3d31af01a..24c42ff3156 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { +<<<<<<< HEAD "editor.formatOnSave": true, "editor.defaultFormatter": "biomejs.biome", "editor.codeActionsOnSave": { @@ -16,4 +17,14 @@ }, "typescript.preferences.autoImportFileExcludePatterns": ["/exports"], "typescript.preferences.importModuleSpecifier": "relative" +======= + "typescript.tsdk": "./node_modules/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "typescript.preferences.importModuleSpecifier": "project-relative", + "editor.quickSuggestions": { + "strings": "on" + } +>>>>>>> dashboard/main } diff --git a/apps/dashboard/.env.example b/apps/dashboard/.env.example new file mode 100644 index 00000000000..f4f1ee178f1 --- /dev/null +++ b/apps/dashboard/.env.example @@ -0,0 +1,92 @@ +# +# Public (client) +# + +# API authorized domain +# not required to build, defaults to prod +NEXT_PUBLIC_THIRDWEB_DOMAIN="localhost:3000" + +# API host. For local development, please use "https://api.thirdweb-preview.com" +# otherwise: "https://api.thirdweb.com" +NEXT_PUBLIC_THIRDWEB_API_HOST="https://api.thirdweb-dev.com" + +# Paper API host +NEXT_PUBLIC_THIRDWEB_EWS_API_HOST="https://ews.thirdweb-dev.com" + +# thirdweb local api host +# NEXT_PUBLIC_THIRDWEB_API_HOST="http://127.0.0.1:3005" + +# Client ID +# Get the client id from https://thirdweb.com/create-api-key and set it here, +# make sure to allow localhost:3000 in the allowed origins +NEXT_PUBLIC_DASHBOARD_CLIENT_ID="" + +# IPFS gateway url +NEXT_PUBLIC_IPFS_GATEWAY_URL="https://{clientId}.thirdwebstorage-dev.com/ipfs/{cid}/{path}" + +# Upload server url +NEXT_PUBLIC_DASHBOARD_UPLOAD_SERVER="https://storage.thirdweb-dev.com" + +# typesense.com API key (used for contract search) +# - not required to build (unless testing contract search) +NEXT_PUBLIC_TYPESENSE_CONTRACT_API_KEY= + +# posthog API key +# - not required for prod/staging +NEXT_PUBLIC_POSTHOG_API_KEY="ignored" + +# Stripe Customer portal +NEXT_PUBLIC_STRIPE_KEY= + +NEXT_PUBLIC_STRIPE_PAYMENT_METHOD_CFG_ID= + +# +# Private (server) +# +# Get the secret key from https://thirdweb.com/create-api-key and set it here, Make sure to allow localhost:3000 in the allowed origins +DASHBOARD_SECRET_KEY="" + +# Client id for api routes +API_ROUTES_CLIENT_ID= + +# +MORALIS_API_KEY= + +# alchemy.com API key (used for wallet NFTS) +# - cannot be restricted to IP/domain because vercel has no stable IPs and it happens during build & runtime api route call +# - not required to build (unless testing wallet NFTs)> +SSR_ALCHEMY_KEY= + +# beehiiv.com API key (used for newsletter signups) +# - not required to build (unless testing newsletter signups)> +BEEHIIV_API_KEY= + +# Hubspot Access Token (used for contact us form) +# - not required to build (unless testing contact us form)> +HUBSPOT_ACCESS_TOKEN= + +# Github API Token (used for /open-source) +GITHUB_API_TOKEN="ghp_..." + +# Upload server url +NEXT_PUBLIC_DASHBOARD_UPLOAD_SERVER="https://storage.thirdweb-preview.com" + +# Payments GQL API URL +NEXT_PUBLIC_PAYMENTS_API="https://payments-gql-dev.thirdweb-preview.com/v1/graphql" + +# Payments Admin Secret. For dev, get this value from paper-web-dev (on Zeet)'s "HASURA_ADMIN_SECRET_KEY" env var +PAYMENTS_ADMIN_SECRET="" + +# Disable telemetry +NEXT_TELEMETRY_DISABLED=1 + +# Use trench for KYC +NEXT_PUBLIC_TRENCH_2_API_ENDPOINT="" + +# Unthread variables - only required for submitting the support form in /support +NEXT_PUBLIC_UNTHREAD_TRIAGE_CHANNEL_ID="" +NEXT_PUBLIC_UNTHREAD_EMAIL_INBOX_ID="" +NEXT_PUBLIC_UNTHREAD_FREE_TIER_ID="" +NEXT_PUBLIC_UNTHREAD_GROWTH_TIER_ID="" +NEXT_PUBLIC_UNTHREAD_PRO_TIER_ID="" \ No newline at end of file diff --git a/apps/dashboard/.eslintignore b/apps/dashboard/.eslintignore new file mode 100644 index 00000000000..9d60596ddc2 --- /dev/null +++ b/apps/dashboard/.eslintignore @@ -0,0 +1,13 @@ +# folders +artifacts/ +build/ +cache/ +coverage/ +dist/ +node_modules/ +typechain/ +graphql/ + +# files +.solcover.js +coverage.json diff --git a/apps/dashboard/.eslintrc.js b/apps/dashboard/.eslintrc.js new file mode 100644 index 00000000000..f7ee5635fcb --- /dev/null +++ b/apps/dashboard/.eslintrc.js @@ -0,0 +1,263 @@ +module.exports = { + extends: [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended", + "plugin:import/typescript", + "plugin:prettier/recommended", + "plugin:react/recommended", + "plugin:@next/next/recommended", + "plugin:promise/recommended", + ], + rules: { + // typescript + "@typescript-eslint/ban-ts-comment": [ + "error", + { + // future defaults + "ts-expect-error": "allow-with-description", + minimumDescriptionLength: 10, + }, + ], + "@typescript-eslint/ban-types": [ + "error", + { + types: { + "{}": false, + }, + }, + ], + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-empty-interface": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-non-null-assertion": "error", + "@typescript-eslint/no-unused-vars": "error", + // import + "import/first": "error", + "import/newline-after-import": "error", + // off for now + "import/no-cycle": "off", + "import/no-default-export": "off", + "import/no-useless-path-segments": "error", + // react + "react/forbid-dom-props": ["error", { forbid: ["style"] }], + "react/no-children-prop": "off", + "react/prop-types": "off", + // react-hooks + "react-hooks/rules-of-hooks": "error", + "react-hooks/exhaustive-deps": "error", + // eslint + curly: "error", + eqeqeq: "error", + "getter-return": "off", + "key-spacing": [ + "error", + { beforeColon: false, afterColon: true, mode: "strict" }, + ], + "keyword-spacing": ["error", { before: true, after: true }], + "line-comment-position": "error", + "new-cap": "error", + "no-alert": "error", + "no-case-declarations": "off", + "no-console": ["warn", { allow: ["warn", "error", "info", "debug"] }], + "no-duplicate-imports": "error", + "no-eval": "error", + "no-floating-decimal": "error", + "no-implicit-coercion": ["error", { boolean: false }], + "no-implied-eval": "error", + "no-irregular-whitespace": "error", + "no-label-var": "error", + "no-multiple-empty-lines": "error", + "no-octal-escape": "error", + "no-restricted-globals": ["error", "xdescribe", "fit", "fdescribe"], + // has false positives + "no-shadow": "off", + // replaced with this + "@typescript-eslint/no-shadow": "error", + "no-tabs": "error", + "no-template-curly-in-string": "error", + "no-throw-literal": "error", + "no-trailing-spaces": "error", + "no-undef": "off", + "no-unused-expressions": "error", + "no-useless-computed-key": "error", + "no-whitespace-before-property": "error", + "object-curly-spacing": ["error", "always"], + "object-shorthand": ["error", "always"], + "prefer-const": "error", + "prefer-object-spread": "error", + "prefer-template": "error", + "quote-props": ["error", "as-needed"], + // 'sort-imports': ['warn', { ignoreDeclarationSort: true }], + // 'sort-keys': ['warn', 'asc', { natural: true }], + "spaced-comment": ["error", "always", { markers: ["/ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/apps/dashboard/next-sitemap.config.js b/apps/dashboard/next-sitemap.config.js new file mode 100644 index 00000000000..a1bae86af5d --- /dev/null +++ b/apps/dashboard/next-sitemap.config.js @@ -0,0 +1,125 @@ +// @ts-check +/** + * + * @returns {Promise} + */ +async function fetchChainsFromApi() { + const res = await fetch(`https://api.thirdweb.com/v1/chains`, { + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.message); + } + + return json.data; +} + +/** + * + * @param {number|string} chainIdOrSlug + * @returns {Promise} + */ +async function getSingleChain(chainIdOrSlug) { + const res = await fetch( + `https://api.thirdweb.com/v1/chains/${chainIdOrSlug}`, + { + headers: { + "Content-Type": "application/json", + }, + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.message); + } + + return json.data; +} + +/** @type {import('next-sitemap').IConfig} */ +module.exports = { + siteUrl: process.env.SITE_URL || "https://thirdweb.com", + generateRobotsTxt: true, + robotsTxtOptions: { + policies: [ + { + userAgent: "*", + [process.env.VERCEL_ENV !== "preview" && + process.env.VERCEL_ENV !== "development" + ? "allow" + : "disallow"]: "/", + }, + ], + }, + exclude: ["/chain/validate"], + transform: async (config, path) => { + // ignore og image paths + if (path.includes("_og")) { + return null; + } + + // rewrite paths that include deployer to use thirdweb.eth directly + if (path.includes("deployer.thirdweb.eth")) { + path = path.replace("deployer.thirdweb.eth", "thirdweb.eth"); + } + return { + // => this will be exported as http(s):/// + loc: path, + changefreq: config.changefreq, + priority: config.priority, + lastmod: config.autoLastmod ? new Date().toISOString() : undefined, + alternateRefs: config.alternateRefs ?? [], + }; + }, + additionalPaths: async (config) => { + const allChains = await fetchChainsFromApi(); + return [ + ...allChains.map((chain) => { + return { + loc: `/${chain.slug}`, + changefreq: config.changefreq, + priority: config.priority, + lastmod: config.autoLastmod ? new Date().toISOString() : undefined, + }; + }), + ...(await createSearchRecordSitemaps(config)), + ]; + }, +}; +/** + * @param {{ changefreq?: any; priority?: any; autoLastmod?: any; }} config + */ +async function createSearchRecordSitemaps(config) { + if (!process.env.TYPESENSE_CONTRACT_EXPORT_API_KEY) { + return []; + } + const response = await fetch( + "https://search.thirdweb.com/collections/contracts/documents/export?filter_by=testnet:false", + { + headers: { + "x-typesense-api-key": process.env.TYPESENSE_CONTRACT_EXPORT_API_KEY, + }, + }, + ); + const data = await response.text(); + const parsedLines = data.split("\n").map((l) => JSON.parse(l)); + const chainsForLines = await Promise.all( + parsedLines.map((parsedLine) => { + return getSingleChain(parsedLine.chain_id) + .then((parsedLineChain) => ({ + loc: `/${parsedLineChain.slug}/${parsedLine.contract_address}`, + changefreq: config.changefreq, + priority: config.priority, + lastmod: config.autoLastmod ? new Date().toISOString() : undefined, + })) + .catch(() => null); + }), + ); + // filter out any failed requests + return chainsForLines.filter(Boolean); +} diff --git a/apps/dashboard/next.config.js b/apps/dashboard/next.config.js new file mode 100644 index 00000000000..ec7f1f1bbad --- /dev/null +++ b/apps/dashboard/next.config.js @@ -0,0 +1,220 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ + +const ContentSecurityPolicy = ` + default-src 'self'; + img-src * data: blob:; + media-src * data: blob:; + object-src 'none'; + style-src 'self' 'unsafe-inline'; + font-src 'self'; + frame-src * data:; + script-src 'self' 'unsafe-eval' 'unsafe-inline' 'wasm-unsafe-eval' 'inline-speculation-rules' *.thirdweb.com *.thirdweb-dev.com vercel.live js.stripe.com pg.paper.xyz portal.usecontext.io; + connect-src * data: blob:; + worker-src 'self' blob:; + block-all-mixed-content; +`; + +const securityHeaders = [ + { + key: "X-DNS-Prefetch-Control", + value: "on", + }, + { + key: "X-XSS-Protection", + value: "1; mode=block", + }, + { + key: "X-Frame-Options", + value: "SAMEORIGIN", + }, + { + key: "Referrer-Policy", + value: "origin-when-cross-origin", + }, + { + key: "Content-Security-Policy", + value: ContentSecurityPolicy.replace(/\s{2,}/g, " ").trim(), + }, +]; + +const redirects = require("./redirects"); + +/** + * @returns {import('next').RemotePattern[]} + */ +function determineIpfsGateways() { + // add the clientId ipfs gateways + const remotePatterns = []; + if (process.env.API_ROUTES_CLIENT_ID) { + remotePatterns.push({ + protocol: "https", + hostname: `${process.env.API_ROUTES_CLIENT_ID}.ipfscdn.io`, + }); + remotePatterns.push({ + protocol: "https", + hostname: `${process.env.API_ROUTES_CLIENT_ID}.thirdwebstorage-staging.com`, + }); + remotePatterns.push({ + protocol: "https", + hostname: `${process.env.API_ROUTES_CLIENT_ID}.thirdwebstorage-dev.com`, + }); + } else { + // this should only happen in development + remotePatterns.push({ + protocol: "https", + hostname: "ipfs.io", + }); + } + // also add the dashboard clientId ipfs gateway if it is set + if (process.env.NEXT_PUBLIC_DASHBOARD_CLIENT_ID) { + remotePatterns.push({ + protocol: "https", + hostname: `${process.env.NEXT_PUBLIC_DASHBOARD_CLIENT_ID}.ipfscdn.io`, + }); + remotePatterns.push({ + protocol: "https", + hostname: `${process.env.NEXT_PUBLIC_DASHBOARD_CLIENT_ID}.thirdwebstorage-staging.com`, + }); + remotePatterns.push({ + protocol: "https", + hostname: `${process.env.NEXT_PUBLIC_DASHBOARD_CLIENT_ID}.thirdwebstorage-dev.com`, + }); + } + return remotePatterns; +} + +/** @type {import('next').NextConfig} */ +const moduleExports = { + webpack: (config, { dev }) => { + if (config.cache && !dev) { + config.cache = Object.freeze({ + type: "memory", + }); + config.cache.maxMemoryGenerations = 0; + } + config.externals.push("pino-pretty"); + config.module = { + ...config.module, + exprContextCritical: false, + }; + // Important: return the modified config + return config; + }, + async headers() { + return [ + { + // Apply these headers to all routes in your application. + source: "/(.*)", + headers: [ + ...securityHeaders, + { + key: "accept-ch", + value: "sec-ch-viewport-width", + }, + ], + }, + ]; + }, + async redirects() { + return redirects(); + }, + async rewrites() { + return [ + { + source: "/thirdweb.eth", + destination: "/deployer.thirdweb.eth", + }, + { + source: "/thirdweb.eth/:path*", + destination: "/deployer.thirdweb.eth/:path*", + }, + ]; + }, + images: { + dangerouslyAllowSVG: true, + contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;", + remotePatterns: [ + { + protocol: "https", + hostname: "**.thirdweb.com", + }, + ...determineIpfsGateways(), + ], + }, + reactStrictMode: true, + experimental: { + scrollRestoration: true, + esmExternals: "loose", + webpackBuildWorker: true, + serverSourceMaps: false, + }, + cacheMaxMemorySize: 0, + swcMinify: true, + compiler: { + emotion: true, + }, + productionBrowserSourceMaps: false, +}; + +const { withSentryConfig } = require("@sentry/nextjs"); + +const { withPlausibleProxy } = require("next-plausible"); + +// we only want sentry on production environments +const wSentry = + process.env.NODE_ENV === "production" ? withSentryConfig : (x) => x; + +const withBundleAnalyzer = require("@next/bundle-analyzer")({ + enabled: process.env.ANALYZE === "true", +}); + +module.exports = withBundleAnalyzer( + withPlausibleProxy({ + customDomain: "https://pl.thirdweb.com", + scriptName: "pl", + })( + wSentry( + moduleExports, + { + // For all available options, see: + // https://github.com/getsentry/sentry-webpack-plugin#options + + // Suppresses source map uploading logs during build + silent: true, + org: "thirdweb-dev", + project: "dashboard", + }, + { + // For all available options, see: + // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/ + + // Upload a larger set of source maps for prettier stack traces (increases build time) + widenClientFileUpload: true, + + // Transpiles SDK to be compatible with IE11 (increases bundle size) + transpileClientSDK: false, + + // Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load) + tunnelRoute: "/err", + + // Hides source maps from generated client bundles + hideSourceMaps: true, + + // Automatically tree-shake Sentry logger statements to reduce bundle size + disableLogger: true, + + // Enables automatic instrumentation of Vercel Cron Monitors. + // See the following for more information: + // https://docs.sentry.io/product/crons/ + // https://vercel.com/docs/cron-jobs + automaticVercelMonitors: false, + + /** + * Disables the Sentry Webpack plugin on the server. + * See: https://github.com/getsentry/sentry-javascript/issues/10468#issuecomment-2004710692 + */ + disableServerWebpackPlugin: true, + }, + ), + ), +); diff --git a/apps/dashboard/package.json b/apps/dashboard/package.json new file mode 100644 index 00000000000..1121eb31b04 --- /dev/null +++ b/apps/dashboard/package.json @@ -0,0 +1,173 @@ +{ + "name": "thirdweb-dashboard", + "version": "2.0.0", + "private": true, + "scripts": { + "preinstall": "npx only-allow pnpm", + "dev:no-cache": "rm -rf .next/cache && pnpm run dev", + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint", + "fix": "next lint --fix", + "gen:theme-typings": "chakra-cli tokens src/theme/index.ts", + "postinstall": "pnpm run gen:theme-typings", + "find:unused": "next-unused", + "postbuild": "next-sitemap", + "build:analyze": "ANALYZE=true pnpm run build", + "apollo-codegen": "graphql-codegen", + "knip": "knip", + "playwright": "playwright test", + "update-checkly": "npx checkly deploy" + }, + "dependencies": { + "@apollo/client": "^3.10.5", + "@chakra-ui/react": "^2.8.2", + "@chakra-ui/styled-system": "^2.9.2", + "@chakra-ui/theme-tools": "^2.1.2", + "@coinbase/onchainkit": "^0.14.2", + "@emotion/react": "^11.11.4", + "@emotion/styled": "^11.11.5", + "@hookform/resolvers": "^3.6.0", + "@n8tb1t/use-scroll-position": "^2.0.3", + "@radix-ui/react-checkbox": "^1.0.4", + "@radix-ui/react-label": "^2.0.2", + "@radix-ui/react-popover": "^1.0.7", + "@radix-ui/react-radio-group": "^1.1.3", + "@radix-ui/react-separator": "^1.0.3", + "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-tooltip": "^1.0.7", + "@react-icons/all-files": "^4.1.0", + "@sentry/nextjs": "^8.8.0", + "@stripe/react-stripe-js": "^2.7.1", + "@stripe/stripe-js": "^3.5.0", + "@tanstack/query-async-storage-persister": "^4.36.1", + "@tanstack/react-query": "^4.36.1", + "@tanstack/react-query-persist-client": "^4.36.1", + "@tanstack/react-table": "^8.17.3", + "@thirdweb-dev/chains": "workspace:*", + "@thirdweb-dev/react": "workspace:*", + "@thirdweb-dev/react-core": "workspace:*", + "@thirdweb-dev/sdk": "workspace:*", + "@thirdweb-dev/service-utils": "workspace:*", + "@thirdweb-dev/storage": "workspace:*", + "@thirdweb-dev/wallets": "workspace:*", + "@vercel/og": "^0.6.2", + "abitype": "1.0.0", + "airtable": "^0.12.2", + "chakra-react-select": "^4.7.6", + "class-variance-authority": "^0.7.0", + "clsx": "^2.1.1", + "color": "^4.2.3", + "compare-versions": "^6.1.0", + "date-fns": "^3.6.0", + "ethers": "^5.7.2", + "flat": "^6.0.1", + "framer-motion": "^11.2.10", + "fuse.js": "^7.0.0", + "graphql": "^16.8.2", + "idb-keyval": "^6.2.1", + "lottie-react": "^2.4.0", + "lucide-react": "^0.395.0", + "next": "14.2.4", + "next-plausible": "^3.12.0", + "next-seo": "^6.5.0", + "next-themes": "^0.3.0", + "nextjs-toploader": "^1.6.12", + "papaparse": "^5.4.1", + "pluralize": "^8.0.0", + "posthog-js": "1.128.3", + "posthog-js-opensource": "npm:posthog-js@1.67.1", + "prettier": "^3.3.2", + "prism-react-renderer": "^2.3.1", + "prismjs": "^1.29.0", + "qrcode": "^1.5.3", + "react": "18.3.1", + "react-children-utilities": "^2.10.0", + "react-dom": "18.3.1", + "react-dropzone": "^14.2.3", + "react-hook-form": "7.52.0", + "react-icons": "^5.2.1", + "react-intersection-observer": "^9.10.3", + "react-markdown": "^9.0.1", + "react-otp-input": "^3.1.1", + "react-query-v5": "npm:@tanstack/react-query@^5.40.1", + "react-responsive-carousel": "^3.2.23", + "react-table": "^7.8.0", + "recharts": "^2.12.7", + "remark-gfm": "^4.0.0", + "server-only": "^0.0.1", + "spdx-correct": "^3.2.0", + "swagger-ui-react": "^5.17.14", + "tailwind-merge": "^2.3.0", + "tailwindcss-animate": "^1.0.7", + "thirdweb": "workspace:*", + "tiny-invariant": "^1.3.3", + "use-debounce": "^10.0.1", + "zksync-ethers": "^5.8.0", + "zod": "^3.23.8" + }, + "devDependencies": { + "@chakra-ui/cli": "^2.4.1", + "@graphql-codegen/cli": "^5.0.2", + "@graphql-codegen/typescript": "^4.0.7", + "@graphql-codegen/typescript-operations": "^4.2.1", + "@graphql-codegen/typescript-react-apollo": "^4.3.0", + "@next/bundle-analyzer": "^14.2.4", + "@next/eslint-plugin-next": "^14.2.4", + "@playwright/test": "^1.44.1", + "@types/color": "^3.0.6", + "@types/node": "^20.14.5", + "@types/papaparse": "^5.3.14", + "@types/pluralize": "^0.0.33", + "@types/qrcode": "^1.5.5", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@types/react-table": "^7.7.20", + "@types/spdx-correct": "^3.1.3", + "@types/swagger-ui-react": "^4.18.3", + "@typescript-eslint/eslint-plugin": "^7.13.1", + "@typescript-eslint/parser": "^7.13.1", + "autoprefixer": "^10.4.19", + "checkly": "^4.6.3", + "dotenv": "^16.4.5", + "eslint": "^8.57.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-inclusive-language": "^2.2.1", + "eslint-plugin-prettier": "^5.1.3", + "eslint-plugin-promise": "^6.2.0", + "eslint-plugin-react": "^7.34.3", + "eslint-plugin-react-hooks": "^4.6.2", + "knip": "^5.21.2", + "next-sitemap": "^4.2.3", + "next-unused": "^0.0.6", + "tailwindcss": "^3.4.4", + "typescript": "^5.4.5" + }, + "next-unused": { + "alias": {}, + "include": [ + "components", + "hooks", + "schema", + "theme", + "utils", + "@3rdweb-sdk", + "constants", + "tw-components", + "contract-ui" + ], + "exclude": [ + "node_modules", + "types", + "tw-components" + ], + "entrypoints": [] + }, + "browserslist": [ + "defaults", + "unreleased versions", + "not UCAndroid > 0" + ] +} diff --git a/apps/dashboard/playwright.config.ts b/apps/dashboard/playwright.config.ts new file mode 100644 index 00000000000..ca9c4b4b6ee --- /dev/null +++ b/apps/dashboard/playwright.config.ts @@ -0,0 +1,79 @@ +import { defineConfig, devices } from "@playwright/test"; + +/** + * Read environment variables from file. + * https://github.com/motdotla/dotenv + */ +// require('dotenv').config(); + +/** + * See https://playwright.dev/docs/test-configuration. + */ +export default defineConfig({ + testDir: "./tests", + /* Run tests in files in parallel */ + fullyParallel: true, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Retry on CI only */ + retries: process.env.CI ? 2 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ + reporter: "html", + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Base URL to use in actions like `await page.goto('/')`. */ + baseURL: process.env.ENVIRONMENT_URL || "http://127.0.0.1:3000", + + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ + trace: "on-first-retry", + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: "chromium", + use: { ...devices["Desktop Chrome"] }, + }, + + { + name: "firefox", + use: { ...devices["Desktop Firefox"] }, + }, + + { + name: "webkit", + use: { ...devices["Desktop Safari"] }, + }, + + /* Test against mobile viewports. */ + // { + // name: 'Mobile Chrome', + // use: { ...devices['Pixel 5'] }, + // }, + // { + // name: 'Mobile Safari', + // use: { ...devices['iPhone 12'] }, + // }, + + /* Test against branded browsers. */ + // { + // name: 'Microsoft Edge', + // use: { ...devices['Desktop Edge'], channel: 'msedge' }, + // }, + // { + // name: 'Google Chrome', + // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, + // }, + ], + + /* Run your local dev server before starting the tests */ + webServer: process.env.CI + ? undefined + : { + command: "pnpm run start", + url: "http://127.0.0.1:3000", + reuseExistingServer: !process.env.CI, + }, +}); diff --git a/apps/dashboard/postcss.config.js b/apps/dashboard/postcss.config.js new file mode 100644 index 00000000000..12a703d900d --- /dev/null +++ b/apps/dashboard/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/apps/dashboard/public/.well-known/apple-developer-merchantid-domain-association b/apps/dashboard/public/.well-known/apple-developer-merchantid-domain-association new file mode 100644 index 00000000000..2ff95c96281 --- /dev/null +++ b/apps/dashboard/public/.well-known/apple-developer-merchantid-domain-association @@ -0,0 +1 @@ +7B227073704964223A2239373943394538343346343131343044463144313834343232393232313734313034353044314339464446394437384337313531303944334643463542433731222C2276657273696F6E223A312C22637265617465644F6E223A313536363233343735303036312C227369676E6174757265223A22333038303036303932613836343838366637306430313037303261303830333038303032303130313331306633303064303630393630383634383031363530333034303230313035303033303830303630393261383634383836663730643031303730313030303061303830333038323033653333303832303338386130303330323031303230323038346333303431343935313964353433363330306130363038326138363438636533643034303330323330376133313265333032633036303335353034303330633235343137303730366336353230343137303730366336393633363137343639366636653230343936653734363536373732363137343639366636653230343334313230326432303437333333313236333032343036303335353034306230633164343137303730366336353230343336353732373436393636363936333631373436393666366532303431373537343638366637323639373437393331313333303131303630333535303430613063306134313730373036633635323034393665363332653331306233303039303630333535303430363133303235353533333031653137306433313339333033353331333833303331333333323335333735613137306433323334333033353331333633303331333333323335333735613330356633313235333032333036303335353034303330633163363536333633326437333664373032643632373236663662363537323264373336393637366535663535343333343264353035323466343433313134333031323036303335353034306230633062363934663533323035333739373337343635366437333331313333303131303630333535303430613063306134313730373036633635323034393665363332653331306233303039303630333535303430363133303235353533333035393330313330363037326138363438636533643032303130363038326138363438636533643033303130373033343230303034633231353737656465626436633762323231386636386464373039306131323138646337623062643666326332383364383436303935643934616634613534313162383334323065643831316633343037653833333331663163353463336637656233323230643662616435643465666634393238393839336537633066313361333832303231313330383230323064333030633036303335353164313330313031666630343032333030303330316630363033353531643233303431383330313638303134323366323439633434663933653465663237653663346636323836633366613262626664326534623330343530363038326230363031303530353037303130313034333933303337333033353036303832623036303130353035303733303031383632393638373437343730336132663266366636333733373032653631373037303663363532653633366636643266366636333733373033303334326436313730373036633635363136393633363133333330333233303832303131643036303335353164323030343832303131343330383230313130333038323031306330363039326138363438383666373633363430353031333038316665333038316333303630383262303630313035303530373032303233303831623630633831623335323635366336393631366536333635323036663665323037343638363937333230363336353732373436393636363936333631373436353230363237393230363136653739323037303631373237343739323036313733373337353664363537333230363136333633363537303734363136653633363532303666363632303734363836353230373436383635366532303631373037303663363936333631363236633635323037333734363136653634363137323634323037343635373236643733323036313665363432303633366636653634363937343639366636653733323036663636323037353733363532633230363336353732373436393636363936333631373436353230373036663663363936333739323036313665363432303633363537323734363936363639363336313734363936663665323037303732363136333734363936333635323037333734363137343635366436353665373437333265333033363036303832623036303130353035303730323031313632613638373437343730336132663266373737373737326536313730373036633635326536333666366432663633363537323734363936363639363336313734363536313735373436383666373236393734373932663330333430363033353531643166303432643330326233303239613032376130323538363233363837343734373033613266326636333732366332653631373037303663363532653633366636643266363137303730366336353631363936333631333332653633373236633330316430363033353531643065303431363034313439343537646236666435373438313836383938393736326637653537383530376537396235383234333030653036303335353164306630313031666630343034303330323037383033303066303630393261383634383836663736333634303631643034303230353030333030613036303832613836343863653364303430333032303334393030333034363032323130306265303935373166653731653165373335623535653561666163623463373266656234343566333031383532323263373235313030326236316562643666353530323231303064313862333530613564643664643665623137343630333562313165623263653837636661336536616636636264383338303839306463383263646461613633333038323032656533303832303237356130303330323031303230323038343936643266626633613938646139373330306130363038326138363438636533643034303330323330363733313162333031393036303335353034303330633132343137303730366336353230353236663666373432303433343132303264323034373333333132363330323430363033353530343062306331643431373037303663363532303433363537323734363936363639363336313734363936663665323034313735373436383666373236393734373933313133333031313036303335353034306130633061343137303730366336353230343936653633326533313062333030393036303335353034303631333032353535333330316531373064333133343330333533303336333233333334333633333330356131373064333233393330333533303336333233333334333633333330356133303761333132653330326330363033353530343033306332353431373037303663363532303431373037303663363936333631373436393666366532303439366537343635363737323631373436393666366532303433343132303264323034373333333132363330323430363033353530343062306331643431373037303663363532303433363537323734363936363639363336313734363936663665323034313735373436383666373236393734373933313133333031313036303335353034306130633061343137303730366336353230343936653633326533313062333030393036303335353034303631333032353535333330353933303133303630373261383634386365336430323031303630383261383634386365336430333031303730333432303030346630313731313834313964373634383564353161356532353831303737366538383061326566646537626165346465303864666334623933653133333536643536363562333561653232643039373736306432323465376262613038666437363137636538386362373662623636373062656338653832393834666635343435613338316637333038316634333034363036303832623036303130353035303730313031303433613330333833303336303630383262303630313035303530373330303138363261363837343734373033613266326636663633373337303265363137303730366336353265363336663664326636663633373337303330333432643631373037303663363537323666366637343633363136373333333031643036303335353164306530343136303431343233663234396334346639336534656632376536633466363238366333666132626266643265346233303066303630333535316431333031303166663034303533303033303130316666333031663036303335353164323330343138333031363830313462626230646561313538333338383961613438613939646562656264656261666461636232346162333033373036303335353164316630343330333032653330326361303261613032383836323636383734373437303361326632663633373236633265363137303730366336353265363336663664326636313730373036633635373236663666373436333631363733333265363337323663333030653036303335353164306630313031666630343034303330323031303633303130303630613261383634383836663736333634303630323065303430323035303033303061303630383261383634386365336430343033303230333637303033303634303233303361636637323833353131363939623138366662333563333536636136326266663431376564643930663735346461323865626566313963383135653432623738396638393866373962353939663938643534313064386639646539633266653032333033323264643534343231623061333035373736633564663333383362393036376664313737633263323136643936346663363732363938323132366635346638376137643162393963623962303938393231363130363939306630393932316430303030333138323031386233303832303138373032303130313330383138363330376133313265333032633036303335353034303330633235343137303730366336353230343137303730366336393633363137343639366636653230343936653734363536373732363137343639366636653230343334313230326432303437333333313236333032343036303335353034306230633164343137303730366336353230343336353732373436393636363936333631373436393666366532303431373537343638366637323639373437393331313333303131303630333535303430613063306134313730373036633635323034393665363332653331306233303039303630333535303430363133303235353533303230383463333034313439353139643534333633303064303630393630383634383031363530333034303230313035303061303831393533303138303630393261383634383836663730643031303930333331306230363039326138363438383666373064303130373031333031633036303932613836343838366637306430313039303533313066313730643331333933303338333133393331333733313332333333303561333032613036303932613836343838366637306430313039333433313164333031623330306430363039363038363438303136353033303430323031303530306131306130363038326138363438636533643034303330323330326630363039326138363438383666373064303130393034333132323034323062303731303365313430613462386231376262613230316130336163643036396234653431366232613263383066383661383338313435633239373566633131333030613036303832613836343863653364303430333032303434363330343430323230343639306264636637626461663833636466343934396534633035313039656463663334373665303564373261313264376335666538633033303033343464663032323032363764353863393365626233353031333836363062353730373938613064643731313734316262353864626436613138363633353038353431656565393035303030303030303030303030227D \ No newline at end of file diff --git a/apps/dashboard/public/Thirdweb_Terms_of_Service.pdf b/apps/dashboard/public/Thirdweb_Terms_of_Service.pdf new file mode 100644 index 00000000000..0447d9ac7e7 Binary files /dev/null and b/apps/dashboard/public/Thirdweb_Terms_of_Service.pdf differ diff --git a/apps/dashboard/public/airdrop.csv b/apps/dashboard/public/airdrop.csv new file mode 100644 index 00000000000..7c39228ebdb --- /dev/null +++ b/apps/dashboard/public/airdrop.csv @@ -0,0 +1,3 @@ +address,quantity +0x0000000000000000000000000000000000000000,3 +0x000000000000000000000000000000000000dEaD,1 \ No newline at end of file diff --git a/apps/dashboard/public/android-chrome-192x192.png b/apps/dashboard/public/android-chrome-192x192.png new file mode 100644 index 00000000000..b45ca88ed1c Binary files /dev/null and b/apps/dashboard/public/android-chrome-192x192.png differ diff --git a/apps/dashboard/public/android-chrome-512x512.png b/apps/dashboard/public/android-chrome-512x512.png new file mode 100644 index 00000000000..b4148d3c25f Binary files /dev/null and b/apps/dashboard/public/android-chrome-512x512.png differ diff --git a/apps/dashboard/public/apple-touch-icon.png b/apps/dashboard/public/apple-touch-icon.png new file mode 100644 index 00000000000..ca9d7a401b5 Binary files /dev/null and b/apps/dashboard/public/apple-touch-icon.png differ diff --git a/apps/dashboard/public/assets/about/coin-ventures.svg b/apps/dashboard/public/assets/about/coin-ventures.svg new file mode 100644 index 00000000000..d94884fcdee --- /dev/null +++ b/apps/dashboard/public/assets/about/coin-ventures.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/about/f-inc.svg b/apps/dashboard/public/assets/about/f-inc.svg new file mode 100644 index 00000000000..94a2bbca4a6 --- /dev/null +++ b/apps/dashboard/public/assets/about/f-inc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/about/haun.svg b/apps/dashboard/public/assets/about/haun.svg new file mode 100644 index 00000000000..fa59f2465ff --- /dev/null +++ b/apps/dashboard/public/assets/about/haun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/about/mark-cuban.svg b/apps/dashboard/public/assets/about/mark-cuban.svg new file mode 100644 index 00000000000..576d697dd87 --- /dev/null +++ b/apps/dashboard/public/assets/about/mark-cuban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/about/shopify.svg b/apps/dashboard/public/assets/about/shopify.svg new file mode 100644 index 00000000000..0fe3fffe56c --- /dev/null +++ b/apps/dashboard/public/assets/about/shopify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/add-contract/drop.png b/apps/dashboard/public/assets/add-contract/drop.png new file mode 100644 index 00000000000..161f3e82382 Binary files /dev/null and b/apps/dashboard/public/assets/add-contract/drop.png differ diff --git a/apps/dashboard/public/assets/add-contract/governance.png b/apps/dashboard/public/assets/add-contract/governance.png new file mode 100644 index 00000000000..e8cdf8e4fd2 Binary files /dev/null and b/apps/dashboard/public/assets/add-contract/governance.png differ diff --git a/apps/dashboard/public/assets/add-contract/marketplace.png b/apps/dashboard/public/assets/add-contract/marketplace.png new file mode 100644 index 00000000000..30c6669a115 Binary files /dev/null and b/apps/dashboard/public/assets/add-contract/marketplace.png differ diff --git a/apps/dashboard/public/assets/add-contract/nft.png b/apps/dashboard/public/assets/add-contract/nft.png new file mode 100644 index 00000000000..6e94867c519 Binary files /dev/null and b/apps/dashboard/public/assets/add-contract/nft.png differ diff --git a/apps/dashboard/public/assets/add-contract/tw-deploy.png b/apps/dashboard/public/assets/add-contract/tw-deploy.png new file mode 100644 index 00000000000..1d2a719a99f Binary files /dev/null and b/apps/dashboard/public/assets/add-contract/tw-deploy.png differ diff --git a/apps/dashboard/public/assets/add-contract/tw-publish.png b/apps/dashboard/public/assets/add-contract/tw-publish.png new file mode 100644 index 00000000000..10d7c660319 Binary files /dev/null and b/apps/dashboard/public/assets/add-contract/tw-publish.png differ diff --git a/apps/dashboard/public/assets/ambassadors/access-icon.svg b/apps/dashboard/public/assets/ambassadors/access-icon.svg new file mode 100644 index 00000000000..d4b3f7938b6 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/access-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/ambassadors_dark.png b/apps/dashboard/public/assets/ambassadors/ambassadors_dark.png new file mode 100644 index 00000000000..ae6f0979c08 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/ambassadors_dark.png differ diff --git a/apps/dashboard/public/assets/ambassadors/bank.jpg b/apps/dashboard/public/assets/ambassadors/bank.jpg new file mode 100644 index 00000000000..bbd26e987c9 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/bank.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/card-1-icon.svg b/apps/dashboard/public/assets/ambassadors/card-1-icon.svg new file mode 100644 index 00000000000..5b203c30667 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/card-1-icon.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/card-2-icon.svg b/apps/dashboard/public/assets/ambassadors/card-2-icon.svg new file mode 100644 index 00000000000..718bd947aaa --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/card-2-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/card-3-icon.svg b/apps/dashboard/public/assets/ambassadors/card-3-icon.svg new file mode 100644 index 00000000000..1a8f675b3b1 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/card-3-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/connections.svg b/apps/dashboard/public/assets/ambassadors/connections.svg new file mode 100644 index 00000000000..3c1d4f52a65 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/connections.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/danny.jpeg b/apps/dashboard/public/assets/ambassadors/danny.jpeg new file mode 100644 index 00000000000..c04c36fcc2e Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/danny.jpeg differ diff --git a/apps/dashboard/public/assets/ambassadors/frankramos.jpeg b/apps/dashboard/public/assets/ambassadors/frankramos.jpeg new file mode 100644 index 00000000000..ed1579b3ed6 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/frankramos.jpeg differ diff --git a/apps/dashboard/public/assets/ambassadors/gi.jpg b/apps/dashboard/public/assets/ambassadors/gi.jpg new file mode 100644 index 00000000000..b2d8f0aa099 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/gi.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/hackathon.svg b/apps/dashboard/public/assets/ambassadors/hackathon.svg new file mode 100644 index 00000000000..732a588224d --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/hackathon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/kienngo.jpg b/apps/dashboard/public/assets/ambassadors/kienngo.jpg new file mode 100644 index 00000000000..ef3c2c005c1 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/kienngo.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/learn.svg b/apps/dashboard/public/assets/ambassadors/learn.svg new file mode 100644 index 00000000000..31f8fa915aa --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/learn.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/matt.png b/apps/dashboard/public/assets/ambassadors/matt.png new file mode 100644 index 00000000000..16cf38e24fd Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/matt.png differ diff --git a/apps/dashboard/public/assets/ambassadors/mentorship-icon.svg b/apps/dashboard/public/assets/ambassadors/mentorship-icon.svg new file mode 100644 index 00000000000..f4fc28ac472 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/mentorship-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/merch-icon.svg b/apps/dashboard/public/assets/ambassadors/merch-icon.svg new file mode 100644 index 00000000000..fa3cced957c --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/merch-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/myk.png b/apps/dashboard/public/assets/ambassadors/myk.png new file mode 100644 index 00000000000..67131ca664c Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/myk.png differ diff --git a/apps/dashboard/public/assets/ambassadors/naman.jpeg b/apps/dashboard/public/assets/ambassadors/naman.jpeg new file mode 100644 index 00000000000..30010b3001d Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/naman.jpeg differ diff --git a/apps/dashboard/public/assets/ambassadors/naman.jpg b/apps/dashboard/public/assets/ambassadors/naman.jpg new file mode 100644 index 00000000000..30010b3001d Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/naman.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/network-icon.svg b/apps/dashboard/public/assets/ambassadors/network-icon.svg new file mode 100644 index 00000000000..6530e2b3e74 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/network-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/office-hours.svg b/apps/dashboard/public/assets/ambassadors/office-hours.svg new file mode 100644 index 00000000000..670e75ede25 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/office-hours.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/oss.svg b/apps/dashboard/public/assets/ambassadors/oss.svg new file mode 100644 index 00000000000..2f0a663d4d7 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/oss.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/paula.png b/apps/dashboard/public/assets/ambassadors/paula.png new file mode 100644 index 00000000000..97212c75094 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/paula.png differ diff --git a/apps/dashboard/public/assets/ambassadors/recognition-icon.svg b/apps/dashboard/public/assets/ambassadors/recognition-icon.svg new file mode 100644 index 00000000000..ad0d7bfc343 --- /dev/null +++ b/apps/dashboard/public/assets/ambassadors/recognition-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/ambassadors/rexan.jpg b/apps/dashboard/public/assets/ambassadors/rexan.jpg new file mode 100644 index 00000000000..f79970c5ed9 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/rexan.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/samu.jpeg b/apps/dashboard/public/assets/ambassadors/samu.jpeg new file mode 100644 index 00000000000..beaa8c9eef1 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/samu.jpeg differ diff --git a/apps/dashboard/public/assets/ambassadors/takaji.jpg b/apps/dashboard/public/assets/ambassadors/takaji.jpg new file mode 100644 index 00000000000..61588b4c13c Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/takaji.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/tanay.png b/apps/dashboard/public/assets/ambassadors/tanay.png new file mode 100644 index 00000000000..e1ae9a56328 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/tanay.png differ diff --git a/apps/dashboard/public/assets/ambassadors/wolf.jpeg b/apps/dashboard/public/assets/ambassadors/wolf.jpeg new file mode 100644 index 00000000000..2071436a26b Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/wolf.jpeg differ diff --git a/apps/dashboard/public/assets/ambassadors/yash.jpg b/apps/dashboard/public/assets/ambassadors/yash.jpg new file mode 100644 index 00000000000..f8ae7da387a Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/yash.jpg differ diff --git a/apps/dashboard/public/assets/ambassadors/yuki.png b/apps/dashboard/public/assets/ambassadors/yuki.png new file mode 100644 index 00000000000..038b0dc6162 Binary files /dev/null and b/apps/dashboard/public/assets/ambassadors/yuki.png differ diff --git a/apps/dashboard/public/assets/case-studies/100thieves-logo.png b/apps/dashboard/public/assets/case-studies/100thieves-logo.png new file mode 100644 index 00000000000..a38bd90c7b7 Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/100thieves-logo.png differ diff --git a/apps/dashboard/public/assets/case-studies/100thieves.png b/apps/dashboard/public/assets/case-studies/100thieves.png new file mode 100644 index 00000000000..6ef22c0e104 Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/100thieves.png differ diff --git a/apps/dashboard/public/assets/case-studies/boohoo-logo.png b/apps/dashboard/public/assets/case-studies/boohoo-logo.png new file mode 100644 index 00000000000..8239bbaa4c6 Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/boohoo-logo.png differ diff --git a/apps/dashboard/public/assets/case-studies/boohoo.png b/apps/dashboard/public/assets/case-studies/boohoo.png new file mode 100644 index 00000000000..8c0e4215534 Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/boohoo.png differ diff --git a/apps/dashboard/public/assets/case-studies/fnatic-logo.png b/apps/dashboard/public/assets/case-studies/fnatic-logo.png new file mode 100644 index 00000000000..a3b0790476b Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/fnatic-logo.png differ diff --git a/apps/dashboard/public/assets/case-studies/fnatic.png b/apps/dashboard/public/assets/case-studies/fnatic.png new file mode 100644 index 00000000000..2b7af147a4d Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/fnatic.png differ diff --git a/apps/dashboard/public/assets/case-studies/yestheory-logo.png b/apps/dashboard/public/assets/case-studies/yestheory-logo.png new file mode 100644 index 00000000000..31b68fca996 Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/yestheory-logo.png differ diff --git a/apps/dashboard/public/assets/case-studies/yestheory.png b/apps/dashboard/public/assets/case-studies/yestheory.png new file mode 100644 index 00000000000..4abb883b2e6 Binary files /dev/null and b/apps/dashboard/public/assets/case-studies/yestheory.png differ diff --git a/apps/dashboard/public/assets/chain-icons/avalanche.png b/apps/dashboard/public/assets/chain-icons/avalanche.png new file mode 100644 index 00000000000..dbf6fb99be5 Binary files /dev/null and b/apps/dashboard/public/assets/chain-icons/avalanche.png differ diff --git a/apps/dashboard/public/assets/chain-icons/ethereum.png b/apps/dashboard/public/assets/chain-icons/ethereum.png new file mode 100644 index 00000000000..9528f64d0fe Binary files /dev/null and b/apps/dashboard/public/assets/chain-icons/ethereum.png differ diff --git a/apps/dashboard/public/assets/chain-icons/fantom.png b/apps/dashboard/public/assets/chain-icons/fantom.png new file mode 100644 index 00000000000..136c407afc3 Binary files /dev/null and b/apps/dashboard/public/assets/chain-icons/fantom.png differ diff --git a/apps/dashboard/public/assets/chain-icons/flow.png b/apps/dashboard/public/assets/chain-icons/flow.png new file mode 100644 index 00000000000..482b922ac26 Binary files /dev/null and b/apps/dashboard/public/assets/chain-icons/flow.png differ diff --git a/apps/dashboard/public/assets/chain-icons/polygon.png b/apps/dashboard/public/assets/chain-icons/polygon.png new file mode 100644 index 00000000000..fe700d12b04 Binary files /dev/null and b/apps/dashboard/public/assets/chain-icons/polygon.png differ diff --git a/apps/dashboard/public/assets/chain-icons/solana.png b/apps/dashboard/public/assets/chain-icons/solana.png new file mode 100644 index 00000000000..04802d7fcf2 Binary files /dev/null and b/apps/dashboard/public/assets/chain-icons/solana.png differ diff --git a/apps/dashboard/public/assets/community/gallery/1.png b/apps/dashboard/public/assets/community/gallery/1.png new file mode 100644 index 00000000000..6882d2b14c1 Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/1.png differ diff --git a/apps/dashboard/public/assets/community/gallery/2.png b/apps/dashboard/public/assets/community/gallery/2.png new file mode 100644 index 00000000000..e19b585e608 Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/2.png differ diff --git a/apps/dashboard/public/assets/community/gallery/3.png b/apps/dashboard/public/assets/community/gallery/3.png new file mode 100644 index 00000000000..ac2a03661ae Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/3.png differ diff --git a/apps/dashboard/public/assets/community/gallery/4.png b/apps/dashboard/public/assets/community/gallery/4.png new file mode 100644 index 00000000000..db67748e5f9 Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/4.png differ diff --git a/apps/dashboard/public/assets/community/gallery/5.png b/apps/dashboard/public/assets/community/gallery/5.png new file mode 100644 index 00000000000..405e664a924 Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/5.png differ diff --git a/apps/dashboard/public/assets/community/gallery/6.png b/apps/dashboard/public/assets/community/gallery/6.png new file mode 100644 index 00000000000..46b642bfbe0 Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/6.png differ diff --git a/apps/dashboard/public/assets/community/gallery/7.png b/apps/dashboard/public/assets/community/gallery/7.png new file mode 100644 index 00000000000..6d797a23a73 Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/7.png differ diff --git a/apps/dashboard/public/assets/community/gallery/8.png b/apps/dashboard/public/assets/community/gallery/8.png new file mode 100644 index 00000000000..e4883ab0c6c Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/8.png differ diff --git a/apps/dashboard/public/assets/community/gallery/9.png b/apps/dashboard/public/assets/community/gallery/9.png new file mode 100644 index 00000000000..aea30abfb9a Binary files /dev/null and b/apps/dashboard/public/assets/community/gallery/9.png differ diff --git a/apps/dashboard/public/assets/community/home/ambassadors.svg b/apps/dashboard/public/assets/community/home/ambassadors.svg new file mode 100644 index 00000000000..7d0f9985d7b --- /dev/null +++ b/apps/dashboard/public/assets/community/home/ambassadors.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/community/home/bug-bounty.svg b/apps/dashboard/public/assets/community/home/bug-bounty.svg new file mode 100644 index 00000000000..440e80c81ea --- /dev/null +++ b/apps/dashboard/public/assets/community/home/bug-bounty.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/community/home/discord.png b/apps/dashboard/public/assets/community/home/discord.png new file mode 100644 index 00000000000..92f3e9d5396 Binary files /dev/null and b/apps/dashboard/public/assets/community/home/discord.png differ diff --git a/apps/dashboard/public/assets/community/home/events.svg b/apps/dashboard/public/assets/community/home/events.svg new file mode 100644 index 00000000000..39462d9ffd0 --- /dev/null +++ b/apps/dashboard/public/assets/community/home/events.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/community/home/hackathon.svg b/apps/dashboard/public/assets/community/home/hackathon.svg new file mode 100644 index 00000000000..c560cf8b340 --- /dev/null +++ b/apps/dashboard/public/assets/community/home/hackathon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/community/home/learn.svg b/apps/dashboard/public/assets/community/home/learn.svg new file mode 100644 index 00000000000..20c8b0162e7 --- /dev/null +++ b/apps/dashboard/public/assets/community/home/learn.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/community/home/office-hours.svg b/apps/dashboard/public/assets/community/home/office-hours.svg new file mode 100644 index 00000000000..626dcf504c8 --- /dev/null +++ b/apps/dashboard/public/assets/community/home/office-hours.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/community/home/oss.svg b/apps/dashboard/public/assets/community/home/oss.svg new file mode 100644 index 00000000000..2f0a663d4d7 --- /dev/null +++ b/apps/dashboard/public/assets/community/home/oss.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/connect-wallet/apple-store-button.svg b/apps/dashboard/public/assets/connect-wallet/apple-store-button.svg new file mode 100644 index 00000000000..27c4474d201 --- /dev/null +++ b/apps/dashboard/public/assets/connect-wallet/apple-store-button.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/dashboard/public/assets/connect-wallet/google-play-button.svg b/apps/dashboard/public/assets/connect-wallet/google-play-button.svg new file mode 100644 index 00000000000..9dd1fc6b369 --- /dev/null +++ b/apps/dashboard/public/assets/connect-wallet/google-play-button.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/connect-wallet/tw-welcome-icon.svg b/apps/dashboard/public/assets/connect-wallet/tw-welcome-icon.svg new file mode 100644 index 00000000000..7560a5c51ab --- /dev/null +++ b/apps/dashboard/public/assets/connect-wallet/tw-welcome-icon.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/connect-wallet/welcome-gradient-dark.png b/apps/dashboard/public/assets/connect-wallet/welcome-gradient-dark.png new file mode 100644 index 00000000000..9d7fac22fa1 Binary files /dev/null and b/apps/dashboard/public/assets/connect-wallet/welcome-gradient-dark.png differ diff --git a/apps/dashboard/public/assets/connect-wallet/welcome-gradient-light.png b/apps/dashboard/public/assets/connect-wallet/welcome-gradient-light.png new file mode 100644 index 00000000000..3b9d011f8c0 Binary files /dev/null and b/apps/dashboard/public/assets/connect-wallet/welcome-gradient-light.png differ diff --git a/apps/dashboard/public/assets/connect/apple.png b/apps/dashboard/public/assets/connect/apple.png new file mode 100644 index 00000000000..01cf85b41e9 Binary files /dev/null and b/apps/dashboard/public/assets/connect/apple.png differ diff --git a/apps/dashboard/public/assets/connect/email.png b/apps/dashboard/public/assets/connect/email.png new file mode 100644 index 00000000000..399b0e73901 Binary files /dev/null and b/apps/dashboard/public/assets/connect/email.png differ diff --git a/apps/dashboard/public/assets/connect/facebook.png b/apps/dashboard/public/assets/connect/facebook.png new file mode 100644 index 00000000000..cef0f602a56 Binary files /dev/null and b/apps/dashboard/public/assets/connect/facebook.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-1.png b/apps/dashboard/public/assets/connect/frames/frame-1.png new file mode 100644 index 00000000000..309af008114 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-1.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-2.png b/apps/dashboard/public/assets/connect/frames/frame-2.png new file mode 100644 index 00000000000..a5ada9b6cc9 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-2.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-3.png b/apps/dashboard/public/assets/connect/frames/frame-3.png new file mode 100644 index 00000000000..285bcb5bc61 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-3.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-4.png b/apps/dashboard/public/assets/connect/frames/frame-4.png new file mode 100644 index 00000000000..612f7c546f4 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-4.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-5.png b/apps/dashboard/public/assets/connect/frames/frame-5.png new file mode 100644 index 00000000000..010b990ab82 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-5.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-6.png b/apps/dashboard/public/assets/connect/frames/frame-6.png new file mode 100644 index 00000000000..bfb5e2f74e4 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-6.png differ diff --git a/apps/dashboard/public/assets/connect/frames/frame-7.png b/apps/dashboard/public/assets/connect/frames/frame-7.png new file mode 100644 index 00000000000..c11da8b6194 Binary files /dev/null and b/apps/dashboard/public/assets/connect/frames/frame-7.png differ diff --git a/apps/dashboard/public/assets/connect/google.png b/apps/dashboard/public/assets/connect/google.png new file mode 100644 index 00000000000..2ec23067071 Binary files /dev/null and b/apps/dashboard/public/assets/connect/google.png differ diff --git a/apps/dashboard/public/assets/connect/lv-cw.png b/apps/dashboard/public/assets/connect/lv-cw.png new file mode 100644 index 00000000000..8ad737b7d96 Binary files /dev/null and b/apps/dashboard/public/assets/connect/lv-cw.png differ diff --git a/apps/dashboard/public/assets/connect/pixels-cw.png b/apps/dashboard/public/assets/connect/pixels-cw.png new file mode 100644 index 00000000000..90112d8e8ff Binary files /dev/null and b/apps/dashboard/public/assets/connect/pixels-cw.png differ diff --git a/apps/dashboard/public/assets/connect/w3w-cw.png b/apps/dashboard/public/assets/connect/w3w-cw.png new file mode 100644 index 00000000000..a877a0ac302 Binary files /dev/null and b/apps/dashboard/public/assets/connect/w3w-cw.png differ diff --git a/apps/dashboard/public/assets/contracts/build-loyalty-program.png b/apps/dashboard/public/assets/contracts/build-loyalty-program.png new file mode 100644 index 00000000000..c32d50e9904 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/build-loyalty-program.png differ diff --git a/apps/dashboard/public/assets/contracts/build-marketplace.png b/apps/dashboard/public/assets/contracts/build-marketplace.png new file mode 100644 index 00000000000..23930f11e73 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/build-marketplace.png differ diff --git a/apps/dashboard/public/assets/contracts/build-nft-drop.png b/apps/dashboard/public/assets/contracts/build-nft-drop.png new file mode 100644 index 00000000000..321e34bb227 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/build-nft-drop.png differ diff --git a/apps/dashboard/public/assets/contracts/build-token-airdrop.png b/apps/dashboard/public/assets/contracts/build-token-airdrop.png new file mode 100644 index 00000000000..8554ca0bf33 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/build-token-airdrop.png differ diff --git a/apps/dashboard/public/assets/contracts/complete-solidity-v2.png b/apps/dashboard/public/assets/contracts/complete-solidity-v2.png new file mode 100644 index 00000000000..a6847f875c9 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/complete-solidity-v2.png differ diff --git a/apps/dashboard/public/assets/contracts/complete-solidity.png b/apps/dashboard/public/assets/contracts/complete-solidity.png new file mode 100644 index 00000000000..551a2854cbf Binary files /dev/null and b/apps/dashboard/public/assets/contracts/complete-solidity.png differ diff --git a/apps/dashboard/public/assets/contracts/contracts-scroll.png b/apps/dashboard/public/assets/contracts/contracts-scroll.png new file mode 100644 index 00000000000..4007001bb71 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/contracts-scroll.png differ diff --git a/apps/dashboard/public/assets/contracts/discover-idea.png b/apps/dashboard/public/assets/contracts/discover-idea.png new file mode 100644 index 00000000000..9cdce9a5475 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/discover-idea.png differ diff --git a/apps/dashboard/public/assets/contracts/full-chargeback-protection.png b/apps/dashboard/public/assets/contracts/full-chargeback-protection.png new file mode 100644 index 00000000000..30f35360dfc Binary files /dev/null and b/apps/dashboard/public/assets/contracts/full-chargeback-protection.png differ diff --git a/apps/dashboard/public/assets/contracts/icons-scroll.png b/apps/dashboard/public/assets/contracts/icons-scroll.png new file mode 100644 index 00000000000..004680e119a Binary files /dev/null and b/apps/dashboard/public/assets/contracts/icons-scroll.png differ diff --git a/apps/dashboard/public/assets/contracts/integrate-contracts.png b/apps/dashboard/public/assets/contracts/integrate-contracts.png new file mode 100644 index 00000000000..cf0f4c0421a Binary files /dev/null and b/apps/dashboard/public/assets/contracts/integrate-contracts.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-any-smart-contract.png b/apps/dashboard/public/assets/contracts/mobile-any-smart-contract.png new file mode 100644 index 00000000000..03527d72036 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-any-smart-contract.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-complete-solidity.png b/apps/dashboard/public/assets/contracts/mobile-complete-solidity.png new file mode 100644 index 00000000000..eb0eba8312a Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-complete-solidity.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-discover-idea.png b/apps/dashboard/public/assets/contracts/mobile-discover-idea.png new file mode 100644 index 00000000000..fb38a8bdb9b Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-discover-idea.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-full-chargeback-protection.png b/apps/dashboard/public/assets/contracts/mobile-full-chargeback-protection.png new file mode 100644 index 00000000000..98ab0bf367b Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-full-chargeback-protection.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-integrate-contracts.png b/apps/dashboard/public/assets/contracts/mobile-integrate-contracts.png new file mode 100644 index 00000000000..55cf8c247fb Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-integrate-contracts.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-onchain-insights.png b/apps/dashboard/public/assets/contracts/mobile-onchain-insights.png new file mode 100644 index 00000000000..4ba4ba6c0d8 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-onchain-insights.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-publish-your-contract.png b/apps/dashboard/public/assets/contracts/mobile-publish-your-contract.png new file mode 100644 index 00000000000..c5312a37ebe Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-publish-your-contract.png differ diff --git a/apps/dashboard/public/assets/contracts/mobile-ship-faster.png b/apps/dashboard/public/assets/contracts/mobile-ship-faster.png new file mode 100644 index 00000000000..5ec6d865601 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/mobile-ship-faster.png differ diff --git a/apps/dashboard/public/assets/contracts/onchain-insights.png b/apps/dashboard/public/assets/contracts/onchain-insights.png new file mode 100644 index 00000000000..0e6158aea9c Binary files /dev/null and b/apps/dashboard/public/assets/contracts/onchain-insights.png differ diff --git a/apps/dashboard/public/assets/contracts/publish-your-contract.png b/apps/dashboard/public/assets/contracts/publish-your-contract.png new file mode 100644 index 00000000000..0404e6bee01 Binary files /dev/null and b/apps/dashboard/public/assets/contracts/publish-your-contract.png differ diff --git a/apps/dashboard/public/assets/contracts/ship-faster.png b/apps/dashboard/public/assets/contracts/ship-faster.png new file mode 100644 index 00000000000..526d5482bff Binary files /dev/null and b/apps/dashboard/public/assets/contracts/ship-faster.png differ diff --git a/apps/dashboard/public/assets/dashboard/base-250.png b/apps/dashboard/public/assets/dashboard/base-250.png new file mode 100644 index 00000000000..4577f110dc6 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/base-250.png differ diff --git a/apps/dashboard/public/assets/dashboard/base-2500.png b/apps/dashboard/public/assets/dashboard/base-2500.png new file mode 100644 index 00000000000..790420734c5 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/base-2500.png differ diff --git a/apps/dashboard/public/assets/dashboard/base-3000.png b/apps/dashboard/public/assets/dashboard/base-3000.png new file mode 100644 index 00000000000..b3d0b93b5e5 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/base-3000.png differ diff --git a/apps/dashboard/public/assets/dashboard/build.png b/apps/dashboard/public/assets/dashboard/build.png new file mode 100644 index 00000000000..f6a0df08abb Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/build.png differ diff --git a/apps/dashboard/public/assets/dashboard/confetti.gif b/apps/dashboard/public/assets/dashboard/confetti.gif new file mode 100644 index 00000000000..bd892c18cdd Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/confetti.gif differ diff --git a/apps/dashboard/public/assets/dashboard/contracts/build.png b/apps/dashboard/public/assets/dashboard/contracts/build.png new file mode 100644 index 00000000000..ecfe2e80ea3 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/contracts/build.png differ diff --git a/apps/dashboard/public/assets/dashboard/contracts/deploy.png b/apps/dashboard/public/assets/dashboard/contracts/deploy.png new file mode 100644 index 00000000000..4d1f9de6374 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/contracts/deploy.png differ diff --git a/apps/dashboard/public/assets/dashboard/contracts/explore.png b/apps/dashboard/public/assets/dashboard/contracts/explore.png new file mode 100644 index 00000000000..42e4c8f798d Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/contracts/explore.png differ diff --git a/apps/dashboard/public/assets/dashboard/contracts/import.svg b/apps/dashboard/public/assets/dashboard/contracts/import.svg new file mode 100644 index 00000000000..dc3db1ef249 --- /dev/null +++ b/apps/dashboard/public/assets/dashboard/contracts/import.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/dashboard/deploy.png b/apps/dashboard/public/assets/dashboard/deploy.png new file mode 100644 index 00000000000..4a4a67b04eb Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/deploy.png differ diff --git a/apps/dashboard/public/assets/dashboard/explore.png b/apps/dashboard/public/assets/dashboard/explore.png new file mode 100644 index 00000000000..c46a3c21ba3 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/explore.png differ diff --git a/apps/dashboard/public/assets/dashboard/extension-check.svg b/apps/dashboard/public/assets/dashboard/extension-check.svg new file mode 100644 index 00000000000..5c3b8cd3df5 --- /dev/null +++ b/apps/dashboard/public/assets/dashboard/extension-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/dashboard/features/analytics.png b/apps/dashboard/public/assets/dashboard/features/analytics.png new file mode 100644 index 00000000000..dfec42ebcb1 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/features/analytics.png differ diff --git a/apps/dashboard/public/assets/dashboard/features/custom_auth.png b/apps/dashboard/public/assets/dashboard/features/custom_auth.png new file mode 100644 index 00000000000..e19a4ed4774 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/features/custom_auth.png differ diff --git a/apps/dashboard/public/assets/dashboard/features/custom_email.png b/apps/dashboard/public/assets/dashboard/features/custom_email.png new file mode 100644 index 00000000000..b33cebb98be Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/features/custom_email.png differ diff --git a/apps/dashboard/public/assets/dashboard/growth.png b/apps/dashboard/public/assets/dashboard/growth.png new file mode 100644 index 00000000000..356b2b14382 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/growth.png differ diff --git a/apps/dashboard/public/assets/dashboard/home-contracts.png b/apps/dashboard/public/assets/dashboard/home-contracts.png new file mode 100644 index 00000000000..7d05a649105 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/home-contracts.png differ diff --git a/apps/dashboard/public/assets/dashboard/home-infra.png b/apps/dashboard/public/assets/dashboard/home-infra.png new file mode 100644 index 00000000000..84e6197f5c8 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/home-infra.png differ diff --git a/apps/dashboard/public/assets/dashboard/home-payments.png b/apps/dashboard/public/assets/dashboard/home-payments.png new file mode 100644 index 00000000000..cf3a8410303 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/home-payments.png differ diff --git a/apps/dashboard/public/assets/dashboard/home-rpc.png b/apps/dashboard/public/assets/dashboard/home-rpc.png new file mode 100644 index 00000000000..d68b42e47a7 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/home-rpc.png differ diff --git a/apps/dashboard/public/assets/dashboard/home-storage.png b/apps/dashboard/public/assets/dashboard/home-storage.png new file mode 100644 index 00000000000..57597bbc46f Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/home-storage.png differ diff --git a/apps/dashboard/public/assets/dashboard/home-wallets.png b/apps/dashboard/public/assets/dashboard/home-wallets.png new file mode 100644 index 00000000000..063d2fd661d Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/home-wallets.png differ diff --git a/apps/dashboard/public/assets/dashboard/op-sponsorship-form.png b/apps/dashboard/public/assets/dashboard/op-sponsorship-form.png new file mode 100644 index 00000000000..b46cbbb3e66 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/op-sponsorship-form.png differ diff --git a/apps/dashboard/public/assets/dashboard/op-sponsorship-nft.png b/apps/dashboard/public/assets/dashboard/op-sponsorship-nft.png new file mode 100644 index 00000000000..2f104afbf80 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/op-sponsorship-nft.png differ diff --git a/apps/dashboard/public/assets/dashboard/optimism-250.png b/apps/dashboard/public/assets/dashboard/optimism-250.png new file mode 100644 index 00000000000..35b876f7347 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/optimism-250.png differ diff --git a/apps/dashboard/public/assets/dashboard/optimism-2500.png b/apps/dashboard/public/assets/dashboard/optimism-2500.png new file mode 100644 index 00000000000..3a929090f9d Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/optimism-2500.png differ diff --git a/apps/dashboard/public/assets/dashboard/optimism-3000.png b/apps/dashboard/public/assets/dashboard/optimism-3000.png new file mode 100644 index 00000000000..c9e849b202c Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/optimism-3000.png differ diff --git a/apps/dashboard/public/assets/dashboard/optimism-credits-dark.png b/apps/dashboard/public/assets/dashboard/optimism-credits-dark.png new file mode 100644 index 00000000000..5447549bef7 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/optimism-credits-dark.png differ diff --git a/apps/dashboard/public/assets/dashboard/optimism-credits-light.png b/apps/dashboard/public/assets/dashboard/optimism-credits-light.png new file mode 100644 index 00000000000..d0aee88ffab Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/optimism-credits-light.png differ diff --git a/apps/dashboard/public/assets/dashboard/optimism-credits.png b/apps/dashboard/public/assets/dashboard/optimism-credits.png new file mode 100644 index 00000000000..a2f34266a75 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/optimism-credits.png differ diff --git a/apps/dashboard/public/assets/dashboard/phantom.png b/apps/dashboard/public/assets/dashboard/phantom.png new file mode 100644 index 00000000000..59a1cd3382e Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/phantom.png differ diff --git a/apps/dashboard/public/assets/dashboard/publish.png b/apps/dashboard/public/assets/dashboard/publish.png new file mode 100644 index 00000000000..c46a3c21ba3 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/publish.png differ diff --git a/apps/dashboard/public/assets/dashboard/superchain-app-accelerator.png b/apps/dashboard/public/assets/dashboard/superchain-app-accelerator.png new file mode 100644 index 00000000000..58c0cf64c8b Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/superchain-app-accelerator.png differ diff --git a/apps/dashboard/public/assets/dashboard/wallets/connect-wallet.png b/apps/dashboard/public/assets/dashboard/wallets/connect-wallet.png new file mode 100644 index 00000000000..3aa1d270d99 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/wallets/connect-wallet.png differ diff --git a/apps/dashboard/public/assets/dashboard/wallets/email-wallet.png b/apps/dashboard/public/assets/dashboard/wallets/email-wallet.png new file mode 100644 index 00000000000..eccdad57388 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/wallets/email-wallet.png differ diff --git a/apps/dashboard/public/assets/dashboard/wallets/smart-wallet.png b/apps/dashboard/public/assets/dashboard/wallets/smart-wallet.png new file mode 100644 index 00000000000..75eb6e8526d Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/wallets/smart-wallet.png differ diff --git a/apps/dashboard/public/assets/dashboard/wallets/wallet-sdk.png b/apps/dashboard/public/assets/dashboard/wallets/wallet-sdk.png new file mode 100644 index 00000000000..b4f600459e0 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/wallets/wallet-sdk.png differ diff --git a/apps/dashboard/public/assets/dashboard/zora-250.png b/apps/dashboard/public/assets/dashboard/zora-250.png new file mode 100644 index 00000000000..e5ff6bf619d Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/zora-250.png differ diff --git a/apps/dashboard/public/assets/dashboard/zora-2500.png b/apps/dashboard/public/assets/dashboard/zora-2500.png new file mode 100644 index 00000000000..80d8a45a4db Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/zora-2500.png differ diff --git a/apps/dashboard/public/assets/dashboard/zora-3000.png b/apps/dashboard/public/assets/dashboard/zora-3000.png new file mode 100644 index 00000000000..5131c788cc2 Binary files /dev/null and b/apps/dashboard/public/assets/dashboard/zora-3000.png differ diff --git a/apps/dashboard/public/assets/engine/cloud-icon1.png b/apps/dashboard/public/assets/engine/cloud-icon1.png new file mode 100644 index 00000000000..d37a5c33aaa Binary files /dev/null and b/apps/dashboard/public/assets/engine/cloud-icon1.png differ diff --git a/apps/dashboard/public/assets/engine/cloud-icon2.png b/apps/dashboard/public/assets/engine/cloud-icon2.png new file mode 100644 index 00000000000..29a84430cf1 Binary files /dev/null and b/apps/dashboard/public/assets/engine/cloud-icon2.png differ diff --git a/apps/dashboard/public/assets/engine/cloud-icon3.png b/apps/dashboard/public/assets/engine/cloud-icon3.png new file mode 100644 index 00000000000..4594f796258 Binary files /dev/null and b/apps/dashboard/public/assets/engine/cloud-icon3.png differ diff --git a/apps/dashboard/public/assets/engine/empty-state-header.png b/apps/dashboard/public/assets/engine/empty-state-header.png new file mode 100644 index 00000000000..0454a73cde0 Binary files /dev/null and b/apps/dashboard/public/assets/engine/empty-state-header.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-1.png b/apps/dashboard/public/assets/engine/frames/frame-1.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-1.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-2.png b/apps/dashboard/public/assets/engine/frames/frame-2.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-2.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-3.png b/apps/dashboard/public/assets/engine/frames/frame-3.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-3.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-4.png b/apps/dashboard/public/assets/engine/frames/frame-4.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-4.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-5.png b/apps/dashboard/public/assets/engine/frames/frame-5.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-5.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-6.png b/apps/dashboard/public/assets/engine/frames/frame-6.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-6.png differ diff --git a/apps/dashboard/public/assets/engine/frames/frame-7.png b/apps/dashboard/public/assets/engine/frames/frame-7.png new file mode 100644 index 00000000000..5ba2b671e58 Binary files /dev/null and b/apps/dashboard/public/assets/engine/frames/frame-7.png differ diff --git a/apps/dashboard/public/assets/faucet/cta-bg.png b/apps/dashboard/public/assets/faucet/cta-bg.png new file mode 100644 index 00000000000..11e469f26db Binary files /dev/null and b/apps/dashboard/public/assets/faucet/cta-bg.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/blog-background.png b/apps/dashboard/public/assets/grant/superchain/blog-background.png new file mode 100644 index 00000000000..0970b1a75bf Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/blog-background.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/chains.png b/apps/dashboard/public/assets/grant/superchain/chains.png new file mode 100644 index 00000000000..6ae16d2fd6c Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/chains.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/hero.png b/apps/dashboard/public/assets/grant/superchain/hero.png new file mode 100644 index 00000000000..8fb30967f49 Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/hero.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-base.png b/apps/dashboard/public/assets/grant/superchain/icon-base.png new file mode 100644 index 00000000000..31269cac4df Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-base.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-cyber.png b/apps/dashboard/public/assets/grant/superchain/icon-cyber.png new file mode 100644 index 00000000000..3672d667292 Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-cyber.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-dashboard.svg b/apps/dashboard/public/assets/grant/superchain/icon-dashboard.svg new file mode 100644 index 00000000000..97b4fc8ac53 --- /dev/null +++ b/apps/dashboard/public/assets/grant/superchain/icon-dashboard.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/grant/superchain/icon-fraxtal.png b/apps/dashboard/public/assets/grant/superchain/icon-fraxtal.png new file mode 100644 index 00000000000..cfcef716ecd Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-fraxtal.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-lisk.png b/apps/dashboard/public/assets/grant/superchain/icon-lisk.png new file mode 100644 index 00000000000..81f474debef Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-lisk.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-mode.png b/apps/dashboard/public/assets/grant/superchain/icon-mode.png new file mode 100644 index 00000000000..33507cac81c Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-mode.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-op.png b/apps/dashboard/public/assets/grant/superchain/icon-op.png new file mode 100644 index 00000000000..abb5e215417 Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-op.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-redstone.png b/apps/dashboard/public/assets/grant/superchain/icon-redstone.png new file mode 100644 index 00000000000..3ab966e5d63 Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-redstone.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/icon-smart-wallet.svg b/apps/dashboard/public/assets/grant/superchain/icon-smart-wallet.svg new file mode 100644 index 00000000000..6a6f1b8fa56 --- /dev/null +++ b/apps/dashboard/public/assets/grant/superchain/icon-smart-wallet.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/grant/superchain/icon-tool.svg b/apps/dashboard/public/assets/grant/superchain/icon-tool.svg new file mode 100644 index 00000000000..751a14e9ab4 --- /dev/null +++ b/apps/dashboard/public/assets/grant/superchain/icon-tool.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/grant/superchain/icon-zora.png b/apps/dashboard/public/assets/grant/superchain/icon-zora.png new file mode 100644 index 00000000000..fdbc5d53cdc Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-zora.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/link.svg b/apps/dashboard/public/assets/grant/superchain/link.svg new file mode 100644 index 00000000000..2f7e695ed94 --- /dev/null +++ b/apps/dashboard/public/assets/grant/superchain/link.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/dashboard/public/assets/grant/superchain/logo-dashboard.png b/apps/dashboard/public/assets/grant/superchain/logo-dashboard.png new file mode 100644 index 00000000000..aa9aa254d54 Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/logo-dashboard.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/op-thirdweb.png b/apps/dashboard/public/assets/grant/superchain/op-thirdweb.png new file mode 100644 index 00000000000..8f6028ceaae Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/op-thirdweb.png differ diff --git a/apps/dashboard/public/assets/grant/superchain/overlay.png b/apps/dashboard/public/assets/grant/superchain/overlay.png new file mode 100644 index 00000000000..4e6ccc0d28d Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/overlay.png differ diff --git a/apps/dashboard/public/assets/hackathon/firstplace.jpeg b/apps/dashboard/public/assets/hackathon/firstplace.jpeg new file mode 100644 index 00000000000..33267ee8168 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/firstplace.jpeg differ diff --git a/apps/dashboard/public/assets/hackathon/footer-bg.png b/apps/dashboard/public/assets/hackathon/footer-bg.png new file mode 100644 index 00000000000..5667842dc77 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/footer-bg.png differ diff --git a/apps/dashboard/public/assets/hackathon/hero-bg.svg b/apps/dashboard/public/assets/hackathon/hero-bg.svg new file mode 100644 index 00000000000..e4e1c9cdb76 --- /dev/null +++ b/apps/dashboard/public/assets/hackathon/hero-bg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/hackathon/judges/furqan.png b/apps/dashboard/public/assets/hackathon/judges/furqan.png new file mode 100644 index 00000000000..0ee3074fde2 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/judges/furqan.png differ diff --git a/apps/dashboard/public/assets/hackathon/judges/tba.svg b/apps/dashboard/public/assets/hackathon/judges/tba.svg new file mode 100644 index 00000000000..bda6bf25d4d --- /dev/null +++ b/apps/dashboard/public/assets/hackathon/judges/tba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/hackathon/mentors/tba.svg b/apps/dashboard/public/assets/hackathon/mentors/tba.svg new file mode 100644 index 00000000000..bda6bf25d4d --- /dev/null +++ b/apps/dashboard/public/assets/hackathon/mentors/tba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/hackathon/mid-section-bg.svg b/apps/dashboard/public/assets/hackathon/mid-section-bg.svg new file mode 100644 index 00000000000..fb4e409289c --- /dev/null +++ b/apps/dashboard/public/assets/hackathon/mid-section-bg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/hackathon/prizes.png b/apps/dashboard/public/assets/hackathon/prizes.png new file mode 100644 index 00000000000..d1ebe83727c Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/prizes.png differ diff --git a/apps/dashboard/public/assets/hackathon/readyplayer3.png b/apps/dashboard/public/assets/hackathon/readyplayer3.png new file mode 100644 index 00000000000..8bffb153872 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/readyplayer3.png differ diff --git a/apps/dashboard/public/assets/hackathon/resources/readyplayer3/gamingkit-blogs.png b/apps/dashboard/public/assets/hackathon/resources/readyplayer3/gamingkit-blogs.png new file mode 100644 index 00000000000..798fa8beede Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/resources/readyplayer3/gamingkit-blogs.png differ diff --git a/apps/dashboard/public/assets/hackathon/resources/readyplayer3/gamingkit.png b/apps/dashboard/public/assets/hackathon/resources/readyplayer3/gamingkit.png new file mode 100644 index 00000000000..f745b286388 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/resources/readyplayer3/gamingkit.png differ diff --git a/apps/dashboard/public/assets/hackathon/resources/readyplayer3/quickstart.png b/apps/dashboard/public/assets/hackathon/resources/readyplayer3/quickstart.png new file mode 100644 index 00000000000..c84245762a6 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/resources/readyplayer3/quickstart.png differ diff --git a/apps/dashboard/public/assets/hackathon/secondplace.jpeg b/apps/dashboard/public/assets/hackathon/secondplace.jpeg new file mode 100644 index 00000000000..4b7f47b949b Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/secondplace.jpeg differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/aws.svg b/apps/dashboard/public/assets/hackathon/sponsors/aws.svg new file mode 100644 index 00000000000..696392edf4c --- /dev/null +++ b/apps/dashboard/public/assets/hackathon/sponsors/aws.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/hackathon/sponsors/buildspace.png b/apps/dashboard/public/assets/hackathon/sponsors/buildspace.png new file mode 100644 index 00000000000..8739993f3a5 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/buildspace.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/consensus.png b/apps/dashboard/public/assets/hackathon/sponsors/consensus.png new file mode 100644 index 00000000000..8806c033dfb Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/consensus.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/fractal.png b/apps/dashboard/public/assets/hackathon/sponsors/fractal.png new file mode 100644 index 00000000000..36f0d9cd631 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/fractal.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/optimism.png b/apps/dashboard/public/assets/hackathon/sponsors/optimism.png new file mode 100644 index 00000000000..ac69a0f881f Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/optimism.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/phantom.png b/apps/dashboard/public/assets/hackathon/sponsors/phantom.png new file mode 100644 index 00000000000..23fa98da7e4 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/phantom.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/polygon.png b/apps/dashboard/public/assets/hackathon/sponsors/polygon.png new file mode 100644 index 00000000000..d888869e789 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/polygon.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/scenario.png b/apps/dashboard/public/assets/hackathon/sponsors/scenario.png new file mode 100644 index 00000000000..76fcb86a772 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/scenario.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/solanauniversity.png b/apps/dashboard/public/assets/hackathon/sponsors/solanauniversity.png new file mode 100644 index 00000000000..17b55a5f1d4 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/solanauniversity.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/spindl.png b/apps/dashboard/public/assets/hackathon/sponsors/spindl.png new file mode 100644 index 00000000000..c5ff7e5f63c Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/spindl.png differ diff --git a/apps/dashboard/public/assets/hackathon/sponsors/superteam.png b/apps/dashboard/public/assets/hackathon/sponsors/superteam.png new file mode 100644 index 00000000000..8b60fc2a131 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/sponsors/superteam.png differ diff --git a/apps/dashboard/public/assets/hackathon/thirdplace.jpeg b/apps/dashboard/public/assets/hackathon/thirdplace.jpeg new file mode 100644 index 00000000000..9b3e62461a5 Binary files /dev/null and b/apps/dashboard/public/assets/hackathon/thirdplace.jpeg differ diff --git a/apps/dashboard/public/assets/hackathon/tw-solana.svg b/apps/dashboard/public/assets/hackathon/tw-solana.svg new file mode 100644 index 00000000000..3e751c85fd7 --- /dev/null +++ b/apps/dashboard/public/assets/hackathon/tw-solana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/homepage/desktop-checkout.png b/apps/dashboard/public/assets/homepage/desktop-checkout.png new file mode 100644 index 00000000000..3f344d495e6 Binary files /dev/null and b/apps/dashboard/public/assets/homepage/desktop-checkout.png differ diff --git a/apps/dashboard/public/assets/homepage/desktop-contracts.png b/apps/dashboard/public/assets/homepage/desktop-contracts.png new file mode 100644 index 00000000000..4f00fcdb544 Binary files /dev/null and b/apps/dashboard/public/assets/homepage/desktop-contracts.png differ diff --git a/apps/dashboard/public/assets/homepage/desktop-engine.png b/apps/dashboard/public/assets/homepage/desktop-engine.png new file mode 100644 index 00000000000..8bdef618b2f Binary files /dev/null and b/apps/dashboard/public/assets/homepage/desktop-engine.png differ diff --git a/apps/dashboard/public/assets/homepage/desktop-wallets.png b/apps/dashboard/public/assets/homepage/desktop-wallets.png new file mode 100644 index 00000000000..f392078e023 Binary files /dev/null and b/apps/dashboard/public/assets/homepage/desktop-wallets.png differ diff --git a/apps/dashboard/public/assets/homepage/mobile-checkout.png b/apps/dashboard/public/assets/homepage/mobile-checkout.png new file mode 100644 index 00000000000..2c9c7bc6b7f Binary files /dev/null and b/apps/dashboard/public/assets/homepage/mobile-checkout.png differ diff --git a/apps/dashboard/public/assets/homepage/mobile-contracts.png b/apps/dashboard/public/assets/homepage/mobile-contracts.png new file mode 100644 index 00000000000..983041ff6b1 Binary files /dev/null and b/apps/dashboard/public/assets/homepage/mobile-contracts.png differ diff --git a/apps/dashboard/public/assets/homepage/mobile-engine.png b/apps/dashboard/public/assets/homepage/mobile-engine.png new file mode 100644 index 00000000000..feeec3200d5 Binary files /dev/null and b/apps/dashboard/public/assets/homepage/mobile-engine.png differ diff --git a/apps/dashboard/public/assets/homepage/mobile-wallets.png b/apps/dashboard/public/assets/homepage/mobile-wallets.png new file mode 100644 index 00000000000..49a54a1e3c0 Binary files /dev/null and b/apps/dashboard/public/assets/homepage/mobile-wallets.png differ diff --git a/apps/dashboard/public/assets/illustrations/listing.png b/apps/dashboard/public/assets/illustrations/listing.png new file mode 100644 index 00000000000..b0c4d947481 Binary files /dev/null and b/apps/dashboard/public/assets/illustrations/listing.png differ diff --git a/apps/dashboard/public/assets/illustrations/new-nft.png b/apps/dashboard/public/assets/illustrations/new-nft.png new file mode 100644 index 00000000000..f5450afbeed Binary files /dev/null and b/apps/dashboard/public/assets/illustrations/new-nft.png differ diff --git a/apps/dashboard/public/assets/illustrations/wallet.png b/apps/dashboard/public/assets/illustrations/wallet.png new file mode 100644 index 00000000000..377d091ecf1 Binary files /dev/null and b/apps/dashboard/public/assets/illustrations/wallet.png differ diff --git a/apps/dashboard/public/assets/investors/coin-ventures.png b/apps/dashboard/public/assets/investors/coin-ventures.png new file mode 100644 index 00000000000..475f1362f10 Binary files /dev/null and b/apps/dashboard/public/assets/investors/coin-ventures.png differ diff --git a/apps/dashboard/public/assets/investors/coinbase-cloud-white.svg b/apps/dashboard/public/assets/investors/coinbase-cloud-white.svg new file mode 100644 index 00000000000..82cd45d8f63 --- /dev/null +++ b/apps/dashboard/public/assets/investors/coinbase-cloud-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/investors/coinbase.svg b/apps/dashboard/public/assets/investors/coinbase.svg new file mode 100644 index 00000000000..d9b7894ea3c --- /dev/null +++ b/apps/dashboard/public/assets/investors/coinbase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/investors/f-inc.png b/apps/dashboard/public/assets/investors/f-inc.png new file mode 100644 index 00000000000..353a09efd1c Binary files /dev/null and b/apps/dashboard/public/assets/investors/f-inc.png differ diff --git a/apps/dashboard/public/assets/investors/haun.svg b/apps/dashboard/public/assets/investors/haun.svg new file mode 100644 index 00000000000..9203b466add --- /dev/null +++ b/apps/dashboard/public/assets/investors/haun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/investors/polygon.svg b/apps/dashboard/public/assets/investors/polygon.svg new file mode 100644 index 00000000000..84e9e932316 --- /dev/null +++ b/apps/dashboard/public/assets/investors/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/investors/protocol-labs.jpeg b/apps/dashboard/public/assets/investors/protocol-labs.jpeg new file mode 100644 index 00000000000..d46fef923fb Binary files /dev/null and b/apps/dashboard/public/assets/investors/protocol-labs.jpeg differ diff --git a/apps/dashboard/public/assets/investors/protocol-labs.svg b/apps/dashboard/public/assets/investors/protocol-labs.svg new file mode 100644 index 00000000000..e48298b52c9 --- /dev/null +++ b/apps/dashboard/public/assets/investors/protocol-labs.svg @@ -0,0 +1 @@ +Protocol Labs \ No newline at end of file diff --git a/apps/dashboard/public/assets/investors/shopify.svg b/apps/dashboard/public/assets/investors/shopify.svg new file mode 100644 index 00000000000..abc7797f9c2 --- /dev/null +++ b/apps/dashboard/public/assets/investors/shopify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/investors/shrug-vc.png b/apps/dashboard/public/assets/investors/shrug-vc.png new file mode 100644 index 00000000000..0e005e291ea Binary files /dev/null and b/apps/dashboard/public/assets/investors/shrug-vc.png differ diff --git a/apps/dashboard/public/assets/landingpage/CommerceKit.png b/apps/dashboard/public/assets/landingpage/CommerceKit.png new file mode 100644 index 00000000000..d71079a1bff Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/CommerceKit.png differ diff --git a/apps/dashboard/public/assets/landingpage/GamingKit.png b/apps/dashboard/public/assets/landingpage/GamingKit.png new file mode 100644 index 00000000000..86f765b5f7f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/GamingKit.png differ diff --git a/apps/dashboard/public/assets/landingpage/aa-desktop.png b/apps/dashboard/public/assets/landingpage/aa-desktop.png new file mode 100644 index 00000000000..020f865ae92 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/aa-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/aa-mobile.png b/apps/dashboard/public/assets/landingpage/aa-mobile.png new file mode 100644 index 00000000000..48675ae489e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/aa-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/aavegotchi.png b/apps/dashboard/public/assets/landingpage/aavegotchi.png new file mode 100644 index 00000000000..8f22f68e27d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/aavegotchi.png differ diff --git a/apps/dashboard/public/assets/landingpage/account-abstraction-desktop.png b/apps/dashboard/public/assets/landingpage/account-abstraction-desktop.png new file mode 100644 index 00000000000..8f330962b96 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/account-abstraction-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/account-abstraction-mobile.png b/apps/dashboard/public/assets/landingpage/account-abstraction-mobile.png new file mode 100644 index 00000000000..e15bd05feff Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/account-abstraction-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/account-desktop.png b/apps/dashboard/public/assets/landingpage/account-desktop.png new file mode 100644 index 00000000000..0bc9237039e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/account-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/account-mobile.png b/apps/dashboard/public/assets/landingpage/account-mobile.png new file mode 100644 index 00000000000..0bed7775f43 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/account-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/analytics.png b/apps/dashboard/public/assets/landingpage/analytics.png new file mode 100644 index 00000000000..8d8641ce266 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/analytics.png differ diff --git a/apps/dashboard/public/assets/landingpage/animoca.png b/apps/dashboard/public/assets/landingpage/animoca.png new file mode 100644 index 00000000000..1630a01f44c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/animoca.png differ diff --git a/apps/dashboard/public/assets/landingpage/antonio-garcia.jpg b/apps/dashboard/public/assets/landingpage/antonio-garcia.jpg new file mode 100644 index 00000000000..9b697305a01 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/antonio-garcia.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/any-evm.png b/apps/dashboard/public/assets/landingpage/any-evm.png new file mode 100644 index 00000000000..585ee2e1995 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/any-evm.png differ diff --git a/apps/dashboard/public/assets/landingpage/atif.png b/apps/dashboard/public/assets/landingpage/atif.png new file mode 100644 index 00000000000..f9d0f828d4b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/atif.png differ diff --git a/apps/dashboard/public/assets/landingpage/ava.png b/apps/dashboard/public/assets/landingpage/ava.png new file mode 100644 index 00000000000..d4f36ef7cb3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/ava.png differ diff --git a/apps/dashboard/public/assets/landingpage/avacloud.png b/apps/dashboard/public/assets/landingpage/avacloud.png new file mode 100644 index 00000000000..2cfcfe576b9 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/avacloud.png differ diff --git a/apps/dashboard/public/assets/landingpage/block-left.png b/apps/dashboard/public/assets/landingpage/block-left.png new file mode 100644 index 00000000000..4fb3cba15fd Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/block-left.png differ diff --git a/apps/dashboard/public/assets/landingpage/block-right.png b/apps/dashboard/public/assets/landingpage/block-right.png new file mode 100644 index 00000000000..3040e4b8e35 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/block-right.png differ diff --git a/apps/dashboard/public/assets/landingpage/block-transparent.png b/apps/dashboard/public/assets/landingpage/block-transparent.png new file mode 100644 index 00000000000..b0a0425102d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/block-transparent.png differ diff --git a/apps/dashboard/public/assets/landingpage/bottom-gradient.png b/apps/dashboard/public/assets/landingpage/bottom-gradient.png new file mode 100644 index 00000000000..0c02528d96e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/bottom-gradient.png differ diff --git a/apps/dashboard/public/assets/landingpage/build-explore.png b/apps/dashboard/public/assets/landingpage/build-explore.png new file mode 100644 index 00000000000..14d7d1783e7 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/build-explore.png differ diff --git a/apps/dashboard/public/assets/landingpage/build-infrastructure.png b/apps/dashboard/public/assets/landingpage/build-infrastructure.png new file mode 100644 index 00000000000..72aeda72fe2 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/build-infrastructure.png differ diff --git a/apps/dashboard/public/assets/landingpage/build-sdk.png b/apps/dashboard/public/assets/landingpage/build-sdk.png new file mode 100644 index 00000000000..407cae38ace Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/build-sdk.png differ diff --git a/apps/dashboard/public/assets/landingpage/build-solidity-sdk.png b/apps/dashboard/public/assets/landingpage/build-solidity-sdk.png new file mode 100644 index 00000000000..edde4514111 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/build-solidity-sdk.png differ diff --git a/apps/dashboard/public/assets/landingpage/build-ui_components.png b/apps/dashboard/public/assets/landingpage/build-ui_components.png new file mode 100644 index 00000000000..5b0c2e3c692 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/build-ui_components.png differ diff --git a/apps/dashboard/public/assets/landingpage/caldera.png b/apps/dashboard/public/assets/landingpage/caldera.png new file mode 100644 index 00000000000..367c5f584d1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/caldera.png differ diff --git a/apps/dashboard/public/assets/landingpage/calderaxtw.png b/apps/dashboard/public/assets/landingpage/calderaxtw.png new file mode 100644 index 00000000000..08c087098b7 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/calderaxtw.png differ diff --git a/apps/dashboard/public/assets/landingpage/case-study-balmain.png b/apps/dashboard/public/assets/landingpage/case-study-balmain.png new file mode 100644 index 00000000000..20f2de28784 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/case-study-balmain.png differ diff --git a/apps/dashboard/public/assets/landingpage/case-study-coinbase.png b/apps/dashboard/public/assets/landingpage/case-study-coinbase.png new file mode 100644 index 00000000000..86f4b884cb3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/case-study-coinbase.png differ diff --git a/apps/dashboard/public/assets/landingpage/case-study-courtyard.png b/apps/dashboard/public/assets/landingpage/case-study-courtyard.png new file mode 100644 index 00000000000..d92ed0d32ae Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/case-study-courtyard.png differ diff --git a/apps/dashboard/public/assets/landingpage/case-study-layer3.png b/apps/dashboard/public/assets/landingpage/case-study-layer3.png new file mode 100644 index 00000000000..66ef02e7918 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/case-study-layer3.png differ diff --git a/apps/dashboard/public/assets/landingpage/case-study-onchain-summer.png b/apps/dashboard/public/assets/landingpage/case-study-onchain-summer.png new file mode 100644 index 00000000000..0fa70f68837 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/case-study-onchain-summer.png differ diff --git a/apps/dashboard/public/assets/landingpage/chains-solutions.png b/apps/dashboard/public/assets/landingpage/chains-solutions.png new file mode 100644 index 00000000000..637f86b34af Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/chains-solutions.png differ diff --git a/apps/dashboard/public/assets/landingpage/check.svg b/apps/dashboard/public/assets/landingpage/check.svg new file mode 100644 index 00000000000..0fb836eb0b3 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/chris.png b/apps/dashboard/public/assets/landingpage/chris.png new file mode 100644 index 00000000000..faebdccbbbb Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/chris.png differ diff --git a/apps/dashboard/public/assets/landingpage/cli-create.png b/apps/dashboard/public/assets/landingpage/cli-create.png new file mode 100644 index 00000000000..dfb9006e089 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/cli-create.png differ diff --git a/apps/dashboard/public/assets/landingpage/cli-deploy.png b/apps/dashboard/public/assets/landingpage/cli-deploy.png new file mode 100644 index 00000000000..74ad4228dc2 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/cli-deploy.png differ diff --git a/apps/dashboard/public/assets/landingpage/cli-down-arrow.png b/apps/dashboard/public/assets/landingpage/cli-down-arrow.png new file mode 100644 index 00000000000..afbef185409 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/cli-down-arrow.png differ diff --git a/apps/dashboard/public/assets/landingpage/cli-release.png b/apps/dashboard/public/assets/landingpage/cli-release.png new file mode 100644 index 00000000000..2c57a82586b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/cli-release.png differ diff --git a/apps/dashboard/public/assets/landingpage/coinbase-event.png b/apps/dashboard/public/assets/landingpage/coinbase-event.png new file mode 100644 index 00000000000..6d450f4fd50 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/coinbase-event.png differ diff --git a/apps/dashboard/public/assets/landingpage/coinbase-v2.png b/apps/dashboard/public/assets/landingpage/coinbase-v2.png new file mode 100644 index 00000000000..f2458a4f763 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/coinbase-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/coinbase.png b/apps/dashboard/public/assets/landingpage/coinbase.png new file mode 100644 index 00000000000..86c5b654fe6 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/coinbase.png differ diff --git a/apps/dashboard/public/assets/landingpage/connect-hero.png b/apps/dashboard/public/assets/landingpage/connect-hero.png new file mode 100644 index 00000000000..8064c3d8331 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/connect-hero.png differ diff --git a/apps/dashboard/public/assets/landingpage/connect-icon.png b/apps/dashboard/public/assets/landingpage/connect-icon.png new file mode 100644 index 00000000000..b9738457f4e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/connect-icon.png differ diff --git a/apps/dashboard/public/assets/landingpage/consumer-crypto-logo.svg b/apps/dashboard/public/assets/landingpage/consumer-crypto-logo.svg new file mode 100644 index 00000000000..51c79a7bd5f --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/consumer-crypto-logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/contracts-hero.png b/apps/dashboard/public/assets/landingpage/contracts-hero.png new file mode 100644 index 00000000000..90f1ac8d450 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/contracts-hero.png differ diff --git a/apps/dashboard/public/assets/landingpage/contracts-icon.png b/apps/dashboard/public/assets/landingpage/contracts-icon.png new file mode 100644 index 00000000000..be595d9b583 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/contracts-icon.png differ diff --git a/apps/dashboard/public/assets/landingpage/contracts.png b/apps/dashboard/public/assets/landingpage/contracts.png new file mode 100644 index 00000000000..7ae9899b17d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/contracts.png differ diff --git a/apps/dashboard/public/assets/landingpage/coolcats.png b/apps/dashboard/public/assets/landingpage/coolcats.png new file mode 100644 index 00000000000..2396c089055 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/coolcats.png differ diff --git a/apps/dashboard/public/assets/landingpage/courtyard.png b/apps/dashboard/public/assets/landingpage/courtyard.png new file mode 100644 index 00000000000..25df5345e20 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/courtyard.png differ diff --git a/apps/dashboard/public/assets/landingpage/dan-kim.jpg b/apps/dashboard/public/assets/landingpage/dan-kim.jpg new file mode 100644 index 00000000000..d8fd3fd6d7d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/dan-kim.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/dao.png b/apps/dashboard/public/assets/landingpage/dao.png new file mode 100644 index 00000000000..87df192761c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/dao.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop-account-abstraction.png b/apps/dashboard/public/assets/landingpage/desktop-account-abstraction.png new file mode 100644 index 00000000000..b0fe8cb4269 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop-account-abstraction.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/account-abstraction.png b/apps/dashboard/public/assets/landingpage/desktop/account-abstraction.png new file mode 100644 index 00000000000..0488969290a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/account-abstraction.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/analytics-v2.png b/apps/dashboard/public/assets/landingpage/desktop/analytics-v2.png new file mode 100644 index 00000000000..bd2f080f24e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/analytics-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/analytics-v3.png b/apps/dashboard/public/assets/landingpage/desktop/analytics-v3.png new file mode 100644 index 00000000000..50f8d62d45a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/analytics-v3.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/analytics.png b/apps/dashboard/public/assets/landingpage/desktop/analytics.png new file mode 100644 index 00000000000..16502b64c61 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/analytics.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/any-evm-chain.png b/apps/dashboard/public/assets/landingpage/desktop/any-evm-chain.png new file mode 100644 index 00000000000..b824dfcb4f1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/any-evm-chain.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/any-evm.png b/apps/dashboard/public/assets/landingpage/desktop/any-evm.png new file mode 100644 index 00000000000..b824dfcb4f1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/any-evm.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/audience.png b/apps/dashboard/public/assets/landingpage/desktop/audience.png new file mode 100644 index 00000000000..ac667a219bd Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/audience.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/auth.png b/apps/dashboard/public/assets/landingpage/desktop/auth.png new file mode 100644 index 00000000000..8ffac4fce13 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/auth.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/backend-list.png b/apps/dashboard/public/assets/landingpage/desktop/backend-list.png new file mode 100644 index 00000000000..148b7d5986b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/backend-list.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/built-for-scale.png b/apps/dashboard/public/assets/landingpage/desktop/built-for-scale.png new file mode 100644 index 00000000000..fafb2979006 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/built-for-scale.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/built-in-analytics.png b/apps/dashboard/public/assets/landingpage/desktop/built-in-analytics.png new file mode 100644 index 00000000000..aa1b8d3e4cd Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/built-in-analytics.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/chargeback-protection.png b/apps/dashboard/public/assets/landingpage/desktop/chargeback-protection.png new file mode 100644 index 00000000000..8197c1f8ac4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/chargeback-protection.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/create-the-best-ux.png b/apps/dashboard/public/assets/landingpage/desktop/create-the-best-ux.png new file mode 100644 index 00000000000..d4cfc8d1708 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/create-the-best-ux.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/cross-platform.png b/apps/dashboard/public/assets/landingpage/desktop/cross-platform.png new file mode 100644 index 00000000000..4b1b9080dcf Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/cross-platform.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/enterprise-security.png b/apps/dashboard/public/assets/landingpage/desktop/enterprise-security.png new file mode 100644 index 00000000000..3f719f13995 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/enterprise-security.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/evm-chain.png b/apps/dashboard/public/assets/landingpage/desktop/evm-chain.png new file mode 100644 index 00000000000..e1a3ac09040 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/evm-chain.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/full-stack.png b/apps/dashboard/public/assets/landingpage/desktop/full-stack.png new file mode 100644 index 00000000000..04b16219b17 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/full-stack.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/gasless.png b/apps/dashboard/public/assets/landingpage/desktop/gasless.png new file mode 100644 index 00000000000..524a261be0c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/gasless.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/guest.png b/apps/dashboard/public/assets/landingpage/desktop/guest.png new file mode 100644 index 00000000000..1c0f22c93bb Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/guest.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/happy-people.png b/apps/dashboard/public/assets/landingpage/desktop/happy-people.png new file mode 100644 index 00000000000..a920cebdbb6 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/happy-people.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/hero-homepage-v2.png b/apps/dashboard/public/assets/landingpage/desktop/hero-homepage-v2.png new file mode 100644 index 00000000000..0881ddb55b9 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/hero-homepage-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/hero-homepage.png b/apps/dashboard/public/assets/landingpage/desktop/hero-homepage.png new file mode 100644 index 00000000000..97fcf50e4e3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/hero-homepage.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/high-transaction-throughput.png b/apps/dashboard/public/assets/landingpage/desktop/high-transaction-throughput.png new file mode 100644 index 00000000000..215a3d99c05 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/high-transaction-throughput.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/icon-backend.png b/apps/dashboard/public/assets/landingpage/desktop/icon-backend.png new file mode 100644 index 00000000000..93349afe67f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/icon-backend.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/icon-frontend.png b/apps/dashboard/public/assets/landingpage/desktop/icon-frontend.png new file mode 100644 index 00000000000..b61bdb0319b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/icon-frontend.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/icon-onchain.png b/apps/dashboard/public/assets/landingpage/desktop/icon-onchain.png new file mode 100644 index 00000000000..d9edbddb398 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/icon-onchain.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/infastructure.png b/apps/dashboard/public/assets/landingpage/desktop/infastructure.png new file mode 100644 index 00000000000..230606395bf Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/infastructure.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/infra.png b/apps/dashboard/public/assets/landingpage/desktop/infra.png new file mode 100644 index 00000000000..2911bfa1ded Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/infra.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/magic.png b/apps/dashboard/public/assets/landingpage/desktop/magic.png new file mode 100644 index 00000000000..42fae280795 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/magic.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/manage-payments.png b/apps/dashboard/public/assets/landingpage/desktop/manage-payments.png new file mode 100644 index 00000000000..a363b90451e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/manage-payments.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/onboard.png b/apps/dashboard/public/assets/landingpage/desktop/onboard.png new file mode 100644 index 00000000000..0fa55bf6167 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/onboard.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/parallax-left.png b/apps/dashboard/public/assets/landingpage/desktop/parallax-left.png new file mode 100644 index 00000000000..a223774911a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/parallax-left.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/parallax-right-v2.png b/apps/dashboard/public/assets/landingpage/desktop/parallax-right-v2.png new file mode 100644 index 00000000000..ba5db88bd85 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/parallax-right-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/parallax-right.png b/apps/dashboard/public/assets/landingpage/desktop/parallax-right.png new file mode 100644 index 00000000000..9c57731d990 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/parallax-right.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/payment-methods.png b/apps/dashboard/public/assets/landingpage/desktop/payment-methods.png new file mode 100644 index 00000000000..f456091e154 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/payment-methods.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/powerful.png b/apps/dashboard/public/assets/landingpage/desktop/powerful.png new file mode 100644 index 00000000000..5c1bd1e8515 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/powerful.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/scale-your-app-to-millions.png b/apps/dashboard/public/assets/landingpage/desktop/scale-your-app-to-millions.png new file mode 100644 index 00000000000..351f2502a86 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/scale-your-app-to-millions.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/seamless-buyer-flows.png b/apps/dashboard/public/assets/landingpage/desktop/seamless-buyer-flows.png new file mode 100644 index 00000000000..bd60781b920 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/seamless-buyer-flows.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/sign-in.png b/apps/dashboard/public/assets/landingpage/desktop/sign-in.png new file mode 100644 index 00000000000..cdf1a93417a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/sign-in.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/siwe.png b/apps/dashboard/public/assets/landingpage/desktop/siwe.png new file mode 100644 index 00000000000..66f75c43780 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/siwe.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/smart-contract-drop.png b/apps/dashboard/public/assets/landingpage/desktop/smart-contract-drop.png new file mode 100644 index 00000000000..d45825d008a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/smart-contract-drop.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/trigger-onchain-actions.png b/apps/dashboard/public/assets/landingpage/desktop/trigger-onchain-actions.png new file mode 100644 index 00000000000..5b46b0817d4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/trigger-onchain-actions.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/wallet-no-problem.png b/apps/dashboard/public/assets/landingpage/desktop/wallet-no-problem.png new file mode 100644 index 00000000000..c4a3e1a8170 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/wallet-no-problem.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/wallet.png b/apps/dashboard/public/assets/landingpage/desktop/wallet.png new file mode 100644 index 00000000000..5bafdbd83b4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/wallet.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/web3warriors.png b/apps/dashboard/public/assets/landingpage/desktop/web3warriors.png new file mode 100644 index 00000000000..f27e2699c43 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/web3warriors.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/webhooks.png b/apps/dashboard/public/assets/landingpage/desktop/webhooks.png new file mode 100644 index 00000000000..d71346ee509 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/webhooks.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/world-class-DX.png b/apps/dashboard/public/assets/landingpage/desktop/world-class-DX.png new file mode 100644 index 00000000000..0d628b034cc Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/world-class-DX.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/worldwide.png b/apps/dashboard/public/assets/landingpage/desktop/worldwide.png new file mode 100644 index 00000000000..23bdfeaa6cd Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/worldwide.png differ diff --git a/apps/dashboard/public/assets/landingpage/desktop/xl-logo.png b/apps/dashboard/public/assets/landingpage/desktop/xl-logo.png new file mode 100644 index 00000000000..3deba2d6564 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/desktop/xl-logo.png differ diff --git a/apps/dashboard/public/assets/landingpage/diana.png b/apps/dashboard/public/assets/landingpage/diana.png new file mode 100644 index 00000000000..04fc4a8ac0e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/diana.png differ diff --git a/apps/dashboard/public/assets/landingpage/drew-falkman.jpg b/apps/dashboard/public/assets/landingpage/drew-falkman.jpg new file mode 100644 index 00000000000..958140f6a03 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/drew-falkman.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/drew-falkman2.jpg b/apps/dashboard/public/assets/landingpage/drew-falkman2.jpg new file mode 100644 index 00000000000..6d037dac22c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/drew-falkman2.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/earnxtw.svg b/apps/dashboard/public/assets/landingpage/earnxtw.svg new file mode 100644 index 00000000000..619a6ed8c11 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/earnxtw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/emmanuel.jpg b/apps/dashboard/public/assets/landingpage/emmanuel.jpg new file mode 100644 index 00000000000..c36f0f4293b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/emmanuel.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/engine-hero.png b/apps/dashboard/public/assets/landingpage/engine-hero.png new file mode 100644 index 00000000000..e71e35d2536 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/engine-hero.png differ diff --git a/apps/dashboard/public/assets/landingpage/engine-icon.png b/apps/dashboard/public/assets/landingpage/engine-icon.png new file mode 100644 index 00000000000..bb83199f0a6 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/engine-icon.png differ diff --git a/apps/dashboard/public/assets/landingpage/explore-featured.png b/apps/dashboard/public/assets/landingpage/explore-featured.png new file mode 100644 index 00000000000..373959e126c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/explore-featured.png differ diff --git a/apps/dashboard/public/assets/landingpage/extensions-erc721.png b/apps/dashboard/public/assets/landingpage/extensions-erc721.png new file mode 100644 index 00000000000..847b00bb5e7 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/extensions-erc721.png differ diff --git a/apps/dashboard/public/assets/landingpage/extensions-permission.png b/apps/dashboard/public/assets/landingpage/extensions-permission.png new file mode 100644 index 00000000000..501e144f6d1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/extensions-permission.png differ diff --git a/apps/dashboard/public/assets/landingpage/extensions.svg b/apps/dashboard/public/assets/landingpage/extensions.svg new file mode 100644 index 00000000000..d5be45dde04 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/extensions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/farza.jpeg b/apps/dashboard/public/assets/landingpage/farza.jpeg new file mode 100644 index 00000000000..dbf6e7872d5 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/farza.jpeg differ diff --git a/apps/dashboard/public/assets/landingpage/favorite.svg b/apps/dashboard/public/assets/landingpage/favorite.svg new file mode 100644 index 00000000000..3e3fe20b686 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/favorite.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/landingpage/fee-desktop.png b/apps/dashboard/public/assets/landingpage/fee-desktop.png new file mode 100644 index 00000000000..622d7b35e86 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/fee-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/fee-mobile.png b/apps/dashboard/public/assets/landingpage/fee-mobile.png new file mode 100644 index 00000000000..c8820385dba Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/fee-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/founders.png b/apps/dashboard/public/assets/landingpage/founders.png new file mode 100644 index 00000000000..0eda306cf1f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/founders.png differ diff --git a/apps/dashboard/public/assets/landingpage/framework.svg b/apps/dashboard/public/assets/landingpage/framework.svg new file mode 100644 index 00000000000..789e63654e7 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/framework.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/franklin.jpg b/apps/dashboard/public/assets/landingpage/franklin.jpg new file mode 100644 index 00000000000..145ccd51bfe Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/franklin.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/furqan-rydhan.png b/apps/dashboard/public/assets/landingpage/furqan-rydhan.png new file mode 100644 index 00000000000..4ef91f52e3c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/furqan-rydhan.png differ diff --git a/apps/dashboard/public/assets/landingpage/gala.png b/apps/dashboard/public/assets/landingpage/gala.png new file mode 100644 index 00000000000..4222daf4701 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/gala.png differ diff --git a/apps/dashboard/public/assets/landingpage/games.png b/apps/dashboard/public/assets/landingpage/games.png new file mode 100644 index 00000000000..0110913d8aa Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/games.png differ diff --git a/apps/dashboard/public/assets/landingpage/hashlips.jpg b/apps/dashboard/public/assets/landingpage/hashlips.jpg new file mode 100644 index 00000000000..40c0322d910 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/hashlips.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/haun.svg b/apps/dashboard/public/assets/landingpage/haun.svg new file mode 100644 index 00000000000..60dcd7719c2 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/haun.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/hero-mobile.png b/apps/dashboard/public/assets/landingpage/hero-mobile.png new file mode 100644 index 00000000000..309bbf7e049 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/hero-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/homepage-contracts.png b/apps/dashboard/public/assets/landingpage/homepage-contracts.png new file mode 100644 index 00000000000..2bae6b69b3f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/homepage-contracts.png differ diff --git a/apps/dashboard/public/assets/landingpage/homepage-engine.png b/apps/dashboard/public/assets/landingpage/homepage-engine.png new file mode 100644 index 00000000000..ed65e0cb47b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/homepage-engine.png differ diff --git a/apps/dashboard/public/assets/landingpage/homepage-payments.png b/apps/dashboard/public/assets/landingpage/homepage-payments.png new file mode 100644 index 00000000000..6c2f65131f1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/homepage-payments.png differ diff --git a/apps/dashboard/public/assets/landingpage/homepage-wallets.png b/apps/dashboard/public/assets/landingpage/homepage-wallets.png new file mode 100644 index 00000000000..58c5e306095 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/homepage-wallets.png differ diff --git a/apps/dashboard/public/assets/landingpage/howitworks-apps.png b/apps/dashboard/public/assets/landingpage/howitworks-apps.png new file mode 100644 index 00000000000..74bfde19d60 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/howitworks-apps.png differ diff --git a/apps/dashboard/public/assets/landingpage/howitworks-indexer.png b/apps/dashboard/public/assets/landingpage/howitworks-indexer.png new file mode 100644 index 00000000000..57cbeb032fb Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/howitworks-indexer.png differ diff --git a/apps/dashboard/public/assets/landingpage/howitworks-logo.png b/apps/dashboard/public/assets/landingpage/howitworks-logo.png new file mode 100644 index 00000000000..fb3207c9da0 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/howitworks-logo.png differ diff --git a/apps/dashboard/public/assets/landingpage/howitworks-networks.png b/apps/dashboard/public/assets/landingpage/howitworks-networks.png new file mode 100644 index 00000000000..f50c6d6816d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/howitworks-networks.png differ diff --git a/apps/dashboard/public/assets/landingpage/hubert-thieblot.jpg b/apps/dashboard/public/assets/landingpage/hubert-thieblot.jpg new file mode 100644 index 00000000000..126e38d644a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/hubert-thieblot.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/icons/Build.svg b/apps/dashboard/public/assets/landingpage/icons/Build.svg new file mode 100644 index 00000000000..24e3cfa6d6d --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/Build2.svg b/apps/dashboard/public/assets/landingpage/icons/Build2.svg new file mode 100644 index 00000000000..f5345290851 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Build2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/Coinbase.svg b/apps/dashboard/public/assets/landingpage/icons/Coinbase.svg new file mode 100644 index 00000000000..885e3893bc3 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Coinbase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/Dashboard.svg b/apps/dashboard/public/assets/landingpage/icons/Dashboard.svg new file mode 100644 index 00000000000..f018f11c21f --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/Launch.svg b/apps/dashboard/public/assets/landingpage/icons/Launch.svg new file mode 100644 index 00000000000..a6355edc242 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Launch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/Manage.svg b/apps/dashboard/public/assets/landingpage/icons/Manage.svg new file mode 100644 index 00000000000..fb76f6018c3 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Manage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/Shopify.svg b/apps/dashboard/public/assets/landingpage/icons/Shopify.svg new file mode 100644 index 00000000000..933595ba3d1 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/Shopify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/contract-base.png b/apps/dashboard/public/assets/landingpage/icons/contract-base.png new file mode 100644 index 00000000000..94ed10869d4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/icons/contract-base.png differ diff --git a/apps/dashboard/public/assets/landingpage/icons/contract-extension.png b/apps/dashboard/public/assets/landingpage/icons/contract-extension.png new file mode 100644 index 00000000000..fa2225aefcd Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/icons/contract-extension.png differ diff --git a/apps/dashboard/public/assets/landingpage/icons/no-code.png b/apps/dashboard/public/assets/landingpage/icons/no-code.png new file mode 100644 index 00000000000..3c0ae252720 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/icons/no-code.png differ diff --git a/apps/dashboard/public/assets/landingpage/icons/optimized.png b/apps/dashboard/public/assets/landingpage/icons/optimized.png new file mode 100644 index 00000000000..e117187eebc Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/icons/optimized.png differ diff --git a/apps/dashboard/public/assets/landingpage/icons/rocket.svg b/apps/dashboard/public/assets/landingpage/icons/rocket.svg new file mode 100644 index 00000000000..f9db313c066 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/icons/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/icons/sdk-dashboard.png b/apps/dashboard/public/assets/landingpage/icons/sdk-dashboard.png new file mode 100644 index 00000000000..4d11cd09856 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/icons/sdk-dashboard.png differ diff --git a/apps/dashboard/public/assets/landingpage/icons/secure.png b/apps/dashboard/public/assets/landingpage/icons/secure.png new file mode 100644 index 00000000000..caf6834b5ce Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/icons/secure.png differ diff --git a/apps/dashboard/public/assets/landingpage/infastructure-desktop.png b/apps/dashboard/public/assets/landingpage/infastructure-desktop.png new file mode 100644 index 00000000000..c751156706a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/infastructure-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/infastructure-mobile.png b/apps/dashboard/public/assets/landingpage/infastructure-mobile.png new file mode 100644 index 00000000000..564beb4e2d5 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/infastructure-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/infinigods.png b/apps/dashboard/public/assets/landingpage/infinigods.png new file mode 100644 index 00000000000..19e098c053b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/infinigods.png differ diff --git a/apps/dashboard/public/assets/landingpage/james.png b/apps/dashboard/public/assets/landingpage/james.png new file mode 100644 index 00000000000..334fbf964a3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/james.png differ diff --git a/apps/dashboard/public/assets/landingpage/joaquim-verges.png b/apps/dashboard/public/assets/landingpage/joaquim-verges.png new file mode 100644 index 00000000000..5be1ba1ccbc Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/joaquim-verges.png differ diff --git a/apps/dashboard/public/assets/landingpage/joaquim.jpeg b/apps/dashboard/public/assets/landingpage/joaquim.jpeg new file mode 100644 index 00000000000..63ce27dd925 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/joaquim.jpeg differ diff --git a/apps/dashboard/public/assets/landingpage/joseph.png b/apps/dashboard/public/assets/landingpage/joseph.png new file mode 100644 index 00000000000..8e67b9ec413 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/joseph.png differ diff --git a/apps/dashboard/public/assets/landingpage/justin-kan.jpg b/apps/dashboard/public/assets/landingpage/justin-kan.jpg new file mode 100644 index 00000000000..483e139a2cd Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/justin-kan.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/kevin-degods.png b/apps/dashboard/public/assets/landingpage/kevin-degods.png new file mode 100644 index 00000000000..6287b109ab2 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/kevin-degods.png differ diff --git a/apps/dashboard/public/assets/landingpage/keys.svg b/apps/dashboard/public/assets/landingpage/keys.svg new file mode 100644 index 00000000000..f0c2058cf52 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/keys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/launch-deploy.png b/apps/dashboard/public/assets/landingpage/launch-deploy.png new file mode 100644 index 00000000000..75224031a47 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/launch-deploy.png differ diff --git a/apps/dashboard/public/assets/landingpage/launch-publish.png b/apps/dashboard/public/assets/landingpage/launch-publish.png new file mode 100644 index 00000000000..8c8d4527d3c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/launch-publish.png differ diff --git a/apps/dashboard/public/assets/landingpage/layer3.png b/apps/dashboard/public/assets/landingpage/layer3.png new file mode 100644 index 00000000000..0eca3568af4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/layer3.png differ diff --git a/apps/dashboard/public/assets/landingpage/leannebats.jpg b/apps/dashboard/public/assets/landingpage/leannebats.jpg new file mode 100644 index 00000000000..e9df3e06d7c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/leannebats.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/like.svg b/apps/dashboard/public/assets/landingpage/like.svg new file mode 100644 index 00000000000..7e9aa57c38c --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/like.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/landingpage/list.svg b/apps/dashboard/public/assets/landingpage/list.svg new file mode 100644 index 00000000000..0cc2f82bd3d --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/assets/landingpage/maika.jpg b/apps/dashboard/public/assets/landingpage/maika.jpg new file mode 100644 index 00000000000..87c506e35e4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/maika.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/mail.png b/apps/dashboard/public/assets/landingpage/mail.png new file mode 100644 index 00000000000..af1fa4cc3f6 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mail.png differ diff --git a/apps/dashboard/public/assets/landingpage/manage-dashboard.png b/apps/dashboard/public/assets/landingpage/manage-dashboard.png new file mode 100644 index 00000000000..823dbd25b83 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/manage-dashboard.png differ diff --git a/apps/dashboard/public/assets/landingpage/manage-permissions.png b/apps/dashboard/public/assets/landingpage/manage-permissions.png new file mode 100644 index 00000000000..963aab6e380 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/manage-permissions.png differ diff --git a/apps/dashboard/public/assets/landingpage/manage-reports.png b/apps/dashboard/public/assets/landingpage/manage-reports.png new file mode 100644 index 00000000000..9c8cc39702c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/manage-reports.png differ diff --git a/apps/dashboard/public/assets/landingpage/managment-desktop.png b/apps/dashboard/public/assets/landingpage/managment-desktop.png new file mode 100644 index 00000000000..71167cce459 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/managment-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/managment-mobile.png b/apps/dashboard/public/assets/landingpage/managment-mobile.png new file mode 100644 index 00000000000..de9cb53de53 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/managment-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/manderson.jpg b/apps/dashboard/public/assets/landingpage/manderson.jpg new file mode 100644 index 00000000000..ddb99c531e2 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/manderson.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/marketplace.png b/apps/dashboard/public/assets/landingpage/marketplace.png new file mode 100644 index 00000000000..c6b186834de Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/marketplace.png differ diff --git a/apps/dashboard/public/assets/landingpage/mcfarlane.png b/apps/dashboard/public/assets/landingpage/mcfarlane.png new file mode 100644 index 00000000000..83c2ff7bbd3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mcfarlane.png differ diff --git a/apps/dashboard/public/assets/landingpage/membership.png b/apps/dashboard/public/assets/landingpage/membership.png new file mode 100644 index 00000000000..4d9a56d077e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/membership.png differ diff --git a/apps/dashboard/public/assets/landingpage/mike.png b/apps/dashboard/public/assets/landingpage/mike.png new file mode 100644 index 00000000000..0d7acb04832 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mike.png differ diff --git a/apps/dashboard/public/assets/landingpage/mirror-v2.png b/apps/dashboard/public/assets/landingpage/mirror-v2.png new file mode 100644 index 00000000000..e37ebbc30a5 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mirror-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/mirror.png b/apps/dashboard/public/assets/landingpage/mirror.png new file mode 100644 index 00000000000..ce6a1dce356 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mirror.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile-account-abstraction.png b/apps/dashboard/public/assets/landingpage/mobile-account-abstraction.png new file mode 100644 index 00000000000..b77d7431490 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile-account-abstraction.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile-coinbase.png b/apps/dashboard/public/assets/landingpage/mobile-coinbase.png new file mode 100644 index 00000000000..0de66a3f8a8 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile-coinbase.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile-hero.png b/apps/dashboard/public/assets/landingpage/mobile-hero.png new file mode 100644 index 00000000000..da011358ad3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile-hero.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile-mirror.png b/apps/dashboard/public/assets/landingpage/mobile-mirror.png new file mode 100644 index 00000000000..6e0f3dacf5f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile-mirror.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile-pixels.png b/apps/dashboard/public/assets/landingpage/mobile-pixels.png new file mode 100644 index 00000000000..e0a13c5f054 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile-pixels.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/account-abstraction.png b/apps/dashboard/public/assets/landingpage/mobile/account-abstraction.png new file mode 100644 index 00000000000..65162fd0e32 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/account-abstraction.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/analytics-v2.png b/apps/dashboard/public/assets/landingpage/mobile/analytics-v2.png new file mode 100644 index 00000000000..91c0c595ef7 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/analytics-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/analytics-v3.png b/apps/dashboard/public/assets/landingpage/mobile/analytics-v3.png new file mode 100644 index 00000000000..50f8d62d45a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/analytics-v3.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/analytics.png b/apps/dashboard/public/assets/landingpage/mobile/analytics.png new file mode 100644 index 00000000000..ae364c98864 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/analytics.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/any-evm.png b/apps/dashboard/public/assets/landingpage/mobile/any-evm.png new file mode 100644 index 00000000000..12feafb1129 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/any-evm.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/audience.png b/apps/dashboard/public/assets/landingpage/mobile/audience.png new file mode 100644 index 00000000000..b171eaeffb0 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/audience.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/auth.png b/apps/dashboard/public/assets/landingpage/mobile/auth.png new file mode 100644 index 00000000000..334376ab90a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/auth.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/backend-queue.png b/apps/dashboard/public/assets/landingpage/mobile/backend-queue.png new file mode 100644 index 00000000000..e0f10f75d9e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/backend-queue.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/backend.png b/apps/dashboard/public/assets/landingpage/mobile/backend.png new file mode 100644 index 00000000000..1801db186d9 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/backend.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/built-for-scale.png b/apps/dashboard/public/assets/landingpage/mobile/built-for-scale.png new file mode 100644 index 00000000000..918db7d6d3b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/built-for-scale.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/built-in-analytics.png b/apps/dashboard/public/assets/landingpage/mobile/built-in-analytics.png new file mode 100644 index 00000000000..c8de5f7bb74 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/built-in-analytics.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/chargeback-protection.png b/apps/dashboard/public/assets/landingpage/mobile/chargeback-protection.png new file mode 100644 index 00000000000..134cda5c321 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/chargeback-protection.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/complexity.png b/apps/dashboard/public/assets/landingpage/mobile/complexity.png new file mode 100644 index 00000000000..c43e0cbe61b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/complexity.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/cross-platform.png b/apps/dashboard/public/assets/landingpage/mobile/cross-platform.png new file mode 100644 index 00000000000..e8e0a5c771d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/cross-platform.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/enterprise-security.png b/apps/dashboard/public/assets/landingpage/mobile/enterprise-security.png new file mode 100644 index 00000000000..fd8bb363301 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/enterprise-security.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/evm-chain.png b/apps/dashboard/public/assets/landingpage/mobile/evm-chain.png new file mode 100644 index 00000000000..48f82c7a4f3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/evm-chain.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/full-stack.png b/apps/dashboard/public/assets/landingpage/mobile/full-stack.png new file mode 100644 index 00000000000..ea30393b7f1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/full-stack.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/gasless.png b/apps/dashboard/public/assets/landingpage/mobile/gasless.png new file mode 100644 index 00000000000..8fc6551903c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/gasless.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/guest.png b/apps/dashboard/public/assets/landingpage/mobile/guest.png new file mode 100644 index 00000000000..e6124f568f9 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/guest.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/happy-people.png b/apps/dashboard/public/assets/landingpage/mobile/happy-people.png new file mode 100644 index 00000000000..bbf58a3c3b9 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/happy-people.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/hero-homepage.png b/apps/dashboard/public/assets/landingpage/mobile/hero-homepage.png new file mode 100644 index 00000000000..eee61fc3805 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/hero-homepage.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/high-transaction-throughput.png b/apps/dashboard/public/assets/landingpage/mobile/high-transaction-throughput.png new file mode 100644 index 00000000000..6c5e517b650 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/high-transaction-throughput.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/magic.png b/apps/dashboard/public/assets/landingpage/mobile/magic.png new file mode 100644 index 00000000000..d9affbab7ba Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/magic.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/manage-payments.png b/apps/dashboard/public/assets/landingpage/mobile/manage-payments.png new file mode 100644 index 00000000000..c55b701ca2f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/manage-payments.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/onboard.png b/apps/dashboard/public/assets/landingpage/mobile/onboard.png new file mode 100644 index 00000000000..0019e14852a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/onboard.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/parallax-left-v2.png b/apps/dashboard/public/assets/landingpage/mobile/parallax-left-v2.png new file mode 100644 index 00000000000..b30570cc782 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/parallax-left-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/parallax-left.png b/apps/dashboard/public/assets/landingpage/mobile/parallax-left.png new file mode 100644 index 00000000000..e75e2ec06d9 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/parallax-left.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/parallax-right.png b/apps/dashboard/public/assets/landingpage/mobile/parallax-right.png new file mode 100644 index 00000000000..212f75d61ed Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/parallax-right.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/payment-methods.png b/apps/dashboard/public/assets/landingpage/mobile/payment-methods.png new file mode 100644 index 00000000000..bb038ee962e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/payment-methods.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/powerful.png b/apps/dashboard/public/assets/landingpage/mobile/powerful.png new file mode 100644 index 00000000000..1acf27c90c4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/powerful.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/seamless-buyer-flows.png b/apps/dashboard/public/assets/landingpage/mobile/seamless-buyer-flows.png new file mode 100644 index 00000000000..17fc18231fb Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/seamless-buyer-flows.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/sign-in.png b/apps/dashboard/public/assets/landingpage/mobile/sign-in.png new file mode 100644 index 00000000000..f5ecae05373 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/sign-in.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/siwe.png b/apps/dashboard/public/assets/landingpage/mobile/siwe.png new file mode 100644 index 00000000000..31534c87a0d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/siwe.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/smart-contract-drop.png b/apps/dashboard/public/assets/landingpage/mobile/smart-contract-drop.png new file mode 100644 index 00000000000..d45825d008a Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/smart-contract-drop.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/user-experience.png b/apps/dashboard/public/assets/landingpage/mobile/user-experience.png new file mode 100644 index 00000000000..3ac5feb97ae Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/user-experience.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/wallet-no-problem.png b/apps/dashboard/public/assets/landingpage/mobile/wallet-no-problem.png new file mode 100644 index 00000000000..9914c019a72 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/wallet-no-problem.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/wallet.png b/apps/dashboard/public/assets/landingpage/mobile/wallet.png new file mode 100644 index 00000000000..fb071535aa8 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/wallet.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/web1.png b/apps/dashboard/public/assets/landingpage/mobile/web1.png new file mode 100644 index 00000000000..f1f3159c483 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/web1.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/web2.png b/apps/dashboard/public/assets/landingpage/mobile/web2.png new file mode 100644 index 00000000000..602ff79e7cb Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/web2.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/web3.png b/apps/dashboard/public/assets/landingpage/mobile/web3.png new file mode 100644 index 00000000000..7928ce568cf Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/web3.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/webhooks.png b/apps/dashboard/public/assets/landingpage/mobile/webhooks.png new file mode 100644 index 00000000000..48126d3897e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/webhooks.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/world-class-DX.png b/apps/dashboard/public/assets/landingpage/mobile/world-class-DX.png new file mode 100644 index 00000000000..97678a93935 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/world-class-DX.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/worldwide.png b/apps/dashboard/public/assets/landingpage/mobile/worldwide.png new file mode 100644 index 00000000000..ec43c07018f Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/worldwide.png differ diff --git a/apps/dashboard/public/assets/landingpage/mobile/xl-logo.png b/apps/dashboard/public/assets/landingpage/mobile/xl-logo.png new file mode 100644 index 00000000000..581a3ba025e Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/mobile/xl-logo.png differ diff --git a/apps/dashboard/public/assets/landingpage/myna.png b/apps/dashboard/public/assets/landingpage/myna.png new file mode 100644 index 00000000000..43613572c94 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/myna.png differ diff --git a/apps/dashboard/public/assets/landingpage/noah.png b/apps/dashboard/public/assets/landingpage/noah.png new file mode 100644 index 00000000000..fbfb5a08d27 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/noah.png differ diff --git a/apps/dashboard/public/assets/landingpage/not-found.png b/apps/dashboard/public/assets/landingpage/not-found.png new file mode 100644 index 00000000000..22b6b123e3b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/not-found.png differ diff --git a/apps/dashboard/public/assets/landingpage/pantera.png b/apps/dashboard/public/assets/landingpage/pantera.png new file mode 100644 index 00000000000..d40e6d35c16 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/pantera.png differ diff --git a/apps/dashboard/public/assets/landingpage/parker.jpg b/apps/dashboard/public/assets/landingpage/parker.jpg new file mode 100644 index 00000000000..9fbb8f2ab89 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/parker.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/pfp.png b/apps/dashboard/public/assets/landingpage/pfp.png new file mode 100644 index 00000000000..5e5445c9e39 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/pfp.png differ diff --git a/apps/dashboard/public/assets/landingpage/phil.png b/apps/dashboard/public/assets/landingpage/phil.png new file mode 100644 index 00000000000..19efaef8300 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/phil.png differ diff --git a/apps/dashboard/public/assets/landingpage/pixels-v2.png b/apps/dashboard/public/assets/landingpage/pixels-v2.png new file mode 100644 index 00000000000..499635e39b3 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/pixels-v2.png differ diff --git a/apps/dashboard/public/assets/landingpage/pixels.png b/apps/dashboard/public/assets/landingpage/pixels.png new file mode 100644 index 00000000000..4622bb15f92 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/pixels.png differ diff --git a/apps/dashboard/public/assets/landingpage/rarible.png b/apps/dashboard/public/assets/landingpage/rarible.png new file mode 100644 index 00000000000..0be0992c975 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/rarible.png differ diff --git a/apps/dashboard/public/assets/landingpage/readyplayer3.png b/apps/dashboard/public/assets/landingpage/readyplayer3.png new file mode 100644 index 00000000000..3357f64a4d1 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/readyplayer3.png differ diff --git a/apps/dashboard/public/assets/landingpage/retweet.svg b/apps/dashboard/public/assets/landingpage/retweet.svg new file mode 100644 index 00000000000..68e7725f0b8 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/retweet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/sam-frankel.jpg b/apps/dashboard/public/assets/landingpage/sam-frankel.jpg new file mode 100644 index 00000000000..e2f965c9d79 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/sam-frankel.jpg differ diff --git a/apps/dashboard/public/assets/landingpage/samina.jpeg b/apps/dashboard/public/assets/landingpage/samina.jpeg new file mode 100644 index 00000000000..23bc43019c0 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/samina.jpeg differ diff --git a/apps/dashboard/public/assets/landingpage/samina.png b/apps/dashboard/public/assets/landingpage/samina.png new file mode 100644 index 00000000000..fd97eda543c Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/samina.png differ diff --git a/apps/dashboard/public/assets/landingpage/selfhost.png b/apps/dashboard/public/assets/landingpage/selfhost.png new file mode 100644 index 00000000000..a1ffc3655a2 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/selfhost.png differ diff --git a/apps/dashboard/public/assets/landingpage/shai-perednik.jpeg b/apps/dashboard/public/assets/landingpage/shai-perednik.jpeg new file mode 100644 index 00000000000..8656bc0e691 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/shai-perednik.jpeg differ diff --git a/apps/dashboard/public/assets/landingpage/share.svg b/apps/dashboard/public/assets/landingpage/share.svg new file mode 100644 index 00000000000..6d65ed7e3b8 --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/share.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/landingpage/smart-contract-audits-desktop.png b/apps/dashboard/public/assets/landingpage/smart-contract-audits-desktop.png new file mode 100644 index 00000000000..f85dabd5ad6 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/smart-contract-audits-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/smart-contract-audits-mobile.png b/apps/dashboard/public/assets/landingpage/smart-contract-audits-mobile.png new file mode 100644 index 00000000000..d48ad1050df Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/smart-contract-audits-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/steven-bartlett.jpeg b/apps/dashboard/public/assets/landingpage/steven-bartlett.jpeg new file mode 100644 index 00000000000..6b9492eefc8 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/steven-bartlett.jpeg differ diff --git a/apps/dashboard/public/assets/landingpage/thirdweb-teams.png b/apps/dashboard/public/assets/landingpage/thirdweb-teams.png new file mode 100644 index 00000000000..bf50bcc89f4 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/thirdweb-teams.png differ diff --git a/apps/dashboard/public/assets/landingpage/thirdwebw.svg b/apps/dashboard/public/assets/landingpage/thirdwebw.svg new file mode 100644 index 00000000000..a5b3fb6ca0c --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/thirdwebw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/top-gradient.svg b/apps/dashboard/public/assets/landingpage/top-gradient.svg new file mode 100644 index 00000000000..88f62aa0e4b --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/top-gradient.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/landingpage/torque.png b/apps/dashboard/public/assets/landingpage/torque.png new file mode 100644 index 00000000000..1300a29c481 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/torque.png differ diff --git a/apps/dashboard/public/assets/landingpage/transaction-fee-desktop.png b/apps/dashboard/public/assets/landingpage/transaction-fee-desktop.png new file mode 100644 index 00000000000..c61b1da2ea6 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/transaction-fee-desktop.png differ diff --git a/apps/dashboard/public/assets/landingpage/transaction-fee-mobile.png b/apps/dashboard/public/assets/landingpage/transaction-fee-mobile.png new file mode 100644 index 00000000000..1dfa3ef9727 Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/transaction-fee-mobile.png differ diff --git a/apps/dashboard/public/assets/landingpage/transactions.png b/apps/dashboard/public/assets/landingpage/transactions.png new file mode 100644 index 00000000000..85b7620ea2b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/transactions.png differ diff --git a/apps/dashboard/public/assets/landingpage/treasure.png b/apps/dashboard/public/assets/landingpage/treasure.png new file mode 100644 index 00000000000..a24d4d9fa1d Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/treasure.png differ diff --git a/apps/dashboard/public/assets/landingpage/verified.svg b/apps/dashboard/public/assets/landingpage/verified.svg new file mode 100644 index 00000000000..35cbada67db --- /dev/null +++ b/apps/dashboard/public/assets/landingpage/verified.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/dashboard/public/assets/landingpage/white-logo.png b/apps/dashboard/public/assets/landingpage/white-logo.png new file mode 100644 index 00000000000..3f390ceabcc Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/white-logo.png differ diff --git a/apps/dashboard/public/assets/landingpage/ztx.png b/apps/dashboard/public/assets/landingpage/ztx.png new file mode 100644 index 00000000000..893fe6ddf7b Binary files /dev/null and b/apps/dashboard/public/assets/landingpage/ztx.png differ diff --git a/apps/dashboard/public/assets/languages/javascript.png b/apps/dashboard/public/assets/languages/javascript.png new file mode 100644 index 00000000000..d6da8c43108 Binary files /dev/null and b/apps/dashboard/public/assets/languages/javascript.png differ diff --git a/apps/dashboard/public/assets/languages/python.png b/apps/dashboard/public/assets/languages/python.png new file mode 100644 index 00000000000..380b1911006 Binary files /dev/null and b/apps/dashboard/public/assets/languages/python.png differ diff --git a/apps/dashboard/public/assets/languages/react.png b/apps/dashboard/public/assets/languages/react.png new file mode 100644 index 00000000000..6b16cafbb1b Binary files /dev/null and b/apps/dashboard/public/assets/languages/react.png differ diff --git a/apps/dashboard/public/assets/learn/hero.png b/apps/dashboard/public/assets/learn/hero.png new file mode 100644 index 00000000000..ea843f6d132 Binary files /dev/null and b/apps/dashboard/public/assets/learn/hero.png differ diff --git a/apps/dashboard/public/assets/network-pages/solana/hero.png b/apps/dashboard/public/assets/network-pages/solana/hero.png new file mode 100644 index 00000000000..ecab34db2a4 Binary files /dev/null and b/apps/dashboard/public/assets/network-pages/solana/hero.png differ diff --git a/apps/dashboard/public/assets/network-pages/solana/quote-background.png b/apps/dashboard/public/assets/network-pages/solana/quote-background.png new file mode 100644 index 00000000000..9dfe0221103 Binary files /dev/null and b/apps/dashboard/public/assets/network-pages/solana/quote-background.png differ diff --git a/apps/dashboard/public/assets/network-pages/solana/solana-gradient.png b/apps/dashboard/public/assets/network-pages/solana/solana-gradient.png new file mode 100644 index 00000000000..a8eaa5d9af2 Binary files /dev/null and b/apps/dashboard/public/assets/network-pages/solana/solana-gradient.png differ diff --git a/apps/dashboard/public/assets/network-pages/solana/solana-logo.png b/apps/dashboard/public/assets/network-pages/solana/solana-logo.png new file mode 100644 index 00000000000..ae1a8f1719c Binary files /dev/null and b/apps/dashboard/public/assets/network-pages/solana/solana-logo.png differ diff --git a/apps/dashboard/public/assets/og-image/appchain-api-solutions.png b/apps/dashboard/public/assets/og-image/appchain-api-solutions.png new file mode 100644 index 00000000000..7efa39a1d16 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/appchain-api-solutions.png differ diff --git a/apps/dashboard/public/assets/og-image/auth.png b/apps/dashboard/public/assets/og-image/auth.png new file mode 100644 index 00000000000..c4b88b88e62 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/auth.png differ diff --git a/apps/dashboard/public/assets/og-image/blue-gradient.png b/apps/dashboard/public/assets/og-image/blue-gradient.png new file mode 100644 index 00000000000..0673fc63c38 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/blue-gradient.png differ diff --git a/apps/dashboard/public/assets/og-image/build.png b/apps/dashboard/public/assets/og-image/build.png new file mode 100644 index 00000000000..8c2920a40d2 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/build.png differ diff --git a/apps/dashboard/public/assets/og-image/chains-solutions.png b/apps/dashboard/public/assets/og-image/chains-solutions.png new file mode 100644 index 00000000000..93ab0a019ba Binary files /dev/null and b/apps/dashboard/public/assets/og-image/chains-solutions.png differ diff --git a/apps/dashboard/public/assets/og-image/checkout.png b/apps/dashboard/public/assets/og-image/checkout.png new file mode 100644 index 00000000000..b3648b4bd39 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/checkout.png differ diff --git a/apps/dashboard/public/assets/og-image/connect-wallet.png b/apps/dashboard/public/assets/og-image/connect-wallet.png new file mode 100644 index 00000000000..2814134bd3a Binary files /dev/null and b/apps/dashboard/public/assets/og-image/connect-wallet.png differ diff --git a/apps/dashboard/public/assets/og-image/connect.png b/apps/dashboard/public/assets/og-image/connect.png new file mode 100644 index 00000000000..a515ca5f8c7 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/connect.png differ diff --git a/apps/dashboard/public/assets/og-image/contractkit.png b/apps/dashboard/public/assets/og-image/contractkit.png new file mode 100644 index 00000000000..962e1528df4 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/contractkit.png differ diff --git a/apps/dashboard/public/assets/og-image/contracts.png b/apps/dashboard/public/assets/og-image/contracts.png new file mode 100644 index 00000000000..20df8d9933e Binary files /dev/null and b/apps/dashboard/public/assets/og-image/contracts.png differ diff --git a/apps/dashboard/public/assets/og-image/dashboard-wallets-connect.png b/apps/dashboard/public/assets/og-image/dashboard-wallets-connect.png new file mode 100644 index 00000000000..784d93e6ff5 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/dashboard-wallets-connect.png differ diff --git a/apps/dashboard/public/assets/og-image/dashboard-wallets-smart-wallet.png b/apps/dashboard/public/assets/og-image/dashboard-wallets-smart-wallet.png new file mode 100644 index 00000000000..ca8ee96589a Binary files /dev/null and b/apps/dashboard/public/assets/og-image/dashboard-wallets-smart-wallet.png differ diff --git a/apps/dashboard/public/assets/og-image/dashboards.png b/apps/dashboard/public/assets/og-image/dashboards.png new file mode 100644 index 00000000000..ee786cbffb9 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/dashboards.png differ diff --git a/apps/dashboard/public/assets/og-image/degen-enchine-frame.png b/apps/dashboard/public/assets/og-image/degen-enchine-frame.png new file mode 100644 index 00000000000..c21c33f1219 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/degen-enchine-frame.png differ diff --git a/apps/dashboard/public/assets/og-image/deploy.png b/apps/dashboard/public/assets/og-image/deploy.png new file mode 100644 index 00000000000..2d13da19f1a Binary files /dev/null and b/apps/dashboard/public/assets/og-image/deploy.png differ diff --git a/apps/dashboard/public/assets/og-image/drops-optimism.png b/apps/dashboard/public/assets/og-image/drops-optimism.png new file mode 100644 index 00000000000..0623b01bbf2 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/drops-optimism.png differ diff --git a/apps/dashboard/public/assets/og-image/earn-hackathon.png b/apps/dashboard/public/assets/og-image/earn-hackathon.png new file mode 100644 index 00000000000..cb8de7c12b9 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/earn-hackathon.png differ diff --git a/apps/dashboard/public/assets/og-image/embedded-wallets.png b/apps/dashboard/public/assets/og-image/embedded-wallets.png new file mode 100644 index 00000000000..f5fadd93b41 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/embedded-wallets.png differ diff --git a/apps/dashboard/public/assets/og-image/embedded-walletspng.png b/apps/dashboard/public/assets/og-image/embedded-walletspng.png new file mode 100644 index 00000000000..e8366f298ad Binary files /dev/null and b/apps/dashboard/public/assets/og-image/embedded-walletspng.png differ diff --git a/apps/dashboard/public/assets/og-image/engine.png b/apps/dashboard/public/assets/og-image/engine.png new file mode 100644 index 00000000000..1455d223436 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/engine.png differ diff --git a/apps/dashboard/public/assets/og-image/explore.png b/apps/dashboard/public/assets/og-image/explore.png new file mode 100644 index 00000000000..a4dc89c0e70 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/explore.png differ diff --git a/apps/dashboard/public/assets/og-image/gaming-solutions.png b/apps/dashboard/public/assets/og-image/gaming-solutions.png new file mode 100644 index 00000000000..9232e6dcf68 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/gaming-solutions.png differ diff --git a/apps/dashboard/public/assets/og-image/hackathon.png b/apps/dashboard/public/assets/og-image/hackathon.png new file mode 100644 index 00000000000..dfb080b9917 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/hackathon.png differ diff --git a/apps/dashboard/public/assets/og-image/interact.png b/apps/dashboard/public/assets/og-image/interact.png new file mode 100644 index 00000000000..f68ee194b77 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/interact.png differ diff --git a/apps/dashboard/public/assets/og-image/loyalty-solutions.png b/apps/dashboard/public/assets/og-image/loyalty-solutions.png new file mode 100644 index 00000000000..d0d5656ecc3 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/loyalty-solutions.png differ diff --git a/apps/dashboard/public/assets/og-image/marketplace-solutions.png b/apps/dashboard/public/assets/og-image/marketplace-solutions.png new file mode 100644 index 00000000000..965aa581793 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/marketplace-solutions.png differ diff --git a/apps/dashboard/public/assets/og-image/minting-solutions.png b/apps/dashboard/public/assets/og-image/minting-solutions.png new file mode 100644 index 00000000000..08af93985de Binary files /dev/null and b/apps/dashboard/public/assets/og-image/minting-solutions.png differ diff --git a/apps/dashboard/public/assets/og-image/mission.png b/apps/dashboard/public/assets/og-image/mission.png new file mode 100644 index 00000000000..e1668112b74 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/mission.png differ diff --git a/apps/dashboard/public/assets/og-image/profile-bg.png b/apps/dashboard/public/assets/og-image/profile-bg.png new file mode 100644 index 00000000000..c2f308e7e96 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/profile-bg.png differ diff --git a/apps/dashboard/public/assets/og-image/publish.png b/apps/dashboard/public/assets/og-image/publish.png new file mode 100644 index 00000000000..27046b0a8e0 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/publish.png differ diff --git a/apps/dashboard/public/assets/og-image/purple-gradient.png b/apps/dashboard/public/assets/og-image/purple-gradient.png new file mode 100644 index 00000000000..af1b69a4e5d Binary files /dev/null and b/apps/dashboard/public/assets/og-image/purple-gradient.png differ diff --git a/apps/dashboard/public/assets/og-image/readyplayer3.png b/apps/dashboard/public/assets/og-image/readyplayer3.png new file mode 100644 index 00000000000..48538b7c622 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/readyplayer3.png differ diff --git a/apps/dashboard/public/assets/og-image/rpc-edge.png b/apps/dashboard/public/assets/og-image/rpc-edge.png new file mode 100644 index 00000000000..21a4a33f1a2 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/rpc-edge.png differ diff --git a/apps/dashboard/public/assets/og-image/sdk.png b/apps/dashboard/public/assets/og-image/sdk.png new file mode 100644 index 00000000000..57d458c1555 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/sdk.png differ diff --git a/apps/dashboard/public/assets/og-image/smart-contracts.png b/apps/dashboard/public/assets/og-image/smart-contracts.png new file mode 100644 index 00000000000..f4cf24270aa Binary files /dev/null and b/apps/dashboard/public/assets/og-image/smart-contracts.png differ diff --git a/apps/dashboard/public/assets/og-image/smart-wallet.png b/apps/dashboard/public/assets/og-image/smart-wallet.png new file mode 100644 index 00000000000..f67e05e06dd Binary files /dev/null and b/apps/dashboard/public/assets/og-image/smart-wallet.png differ diff --git a/apps/dashboard/public/assets/og-image/solanathon.jpg b/apps/dashboard/public/assets/og-image/solanathon.jpg new file mode 100644 index 00000000000..b32c4ec2870 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/solanathon.jpg differ diff --git a/apps/dashboard/public/assets/og-image/sponsored-transactions.png b/apps/dashboard/public/assets/og-image/sponsored-transactions.png new file mode 100644 index 00000000000..bf2f5adeb9b Binary files /dev/null and b/apps/dashboard/public/assets/og-image/sponsored-transactions.png differ diff --git a/apps/dashboard/public/assets/og-image/storage.png b/apps/dashboard/public/assets/og-image/storage.png new file mode 100644 index 00000000000..b0b75ee3fdd Binary files /dev/null and b/apps/dashboard/public/assets/og-image/storage.png differ diff --git a/apps/dashboard/public/assets/og-image/superchain.png b/apps/dashboard/public/assets/og-image/superchain.png new file mode 100644 index 00000000000..fe65e23752d Binary files /dev/null and b/apps/dashboard/public/assets/og-image/superchain.png differ diff --git a/apps/dashboard/public/assets/og-image/thirdweb-connect.png b/apps/dashboard/public/assets/og-image/thirdweb-connect.png new file mode 100644 index 00000000000..d2ab532df03 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/thirdweb-connect.png differ diff --git a/apps/dashboard/public/assets/og-image/thirdweb-engine.png b/apps/dashboard/public/assets/og-image/thirdweb-engine.png new file mode 100644 index 00000000000..144ac4a9bac Binary files /dev/null and b/apps/dashboard/public/assets/og-image/thirdweb-engine.png differ diff --git a/apps/dashboard/public/assets/og-image/thirdweb-pro.png b/apps/dashboard/public/assets/og-image/thirdweb-pro.png new file mode 100644 index 00000000000..ced16757bd4 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/thirdweb-pro.png differ diff --git a/apps/dashboard/public/assets/og-image/tx-frame-og-image.png b/apps/dashboard/public/assets/og-image/tx-frame-og-image.png new file mode 100644 index 00000000000..a5239f1b043 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/tx-frame-og-image.png differ diff --git a/apps/dashboard/public/assets/og-image/ui-components.png b/apps/dashboard/public/assets/og-image/ui-components.png new file mode 100644 index 00000000000..a5e47ec437f Binary files /dev/null and b/apps/dashboard/public/assets/og-image/ui-components.png differ diff --git a/apps/dashboard/public/assets/og-image/wallet-sdk.png b/apps/dashboard/public/assets/og-image/wallet-sdk.png new file mode 100644 index 00000000000..a631baaa1cf Binary files /dev/null and b/apps/dashboard/public/assets/og-image/wallet-sdk.png differ diff --git a/apps/dashboard/public/assets/og-image/web2-onboarding-solutions.png b/apps/dashboard/public/assets/og-image/web2-onboarding-solutions.png new file mode 100644 index 00000000000..5df8214a593 Binary files /dev/null and b/apps/dashboard/public/assets/og-image/web2-onboarding-solutions.png differ diff --git a/apps/dashboard/public/assets/partner-pages/shopify/hero.png b/apps/dashboard/public/assets/partner-pages/shopify/hero.png new file mode 100644 index 00000000000..eb6a5ff66aa Binary files /dev/null and b/apps/dashboard/public/assets/partner-pages/shopify/hero.png differ diff --git a/apps/dashboard/public/assets/partner-pages/shopify/shopify-logo.png b/apps/dashboard/public/assets/partner-pages/shopify/shopify-logo.png new file mode 100644 index 00000000000..6d33817800b Binary files /dev/null and b/apps/dashboard/public/assets/partner-pages/shopify/shopify-logo.png differ diff --git a/apps/dashboard/public/assets/partners/ava.png b/apps/dashboard/public/assets/partners/ava.png new file mode 100644 index 00000000000..e0a30227505 Binary files /dev/null and b/apps/dashboard/public/assets/partners/ava.png differ diff --git a/apps/dashboard/public/assets/partners/bitkraft.png b/apps/dashboard/public/assets/partners/bitkraft.png new file mode 100644 index 00000000000..1cd1eae2baa Binary files /dev/null and b/apps/dashboard/public/assets/partners/bitkraft.png differ diff --git a/apps/dashboard/public/assets/partners/citydao.png b/apps/dashboard/public/assets/partners/citydao.png new file mode 100644 index 00000000000..ae8606d2281 Binary files /dev/null and b/apps/dashboard/public/assets/partners/citydao.png differ diff --git a/apps/dashboard/public/assets/partners/coinbase.png b/apps/dashboard/public/assets/partners/coinbase.png new file mode 100644 index 00000000000..34766ece60b Binary files /dev/null and b/apps/dashboard/public/assets/partners/coinbase.png differ diff --git a/apps/dashboard/public/assets/partners/coinbaseventures.png b/apps/dashboard/public/assets/partners/coinbaseventures.png new file mode 100644 index 00000000000..28161f9b742 Binary files /dev/null and b/apps/dashboard/public/assets/partners/coinbaseventures.png differ diff --git a/apps/dashboard/public/assets/partners/coolcats.png b/apps/dashboard/public/assets/partners/coolcats.png new file mode 100644 index 00000000000..0e6975ce864 Binary files /dev/null and b/apps/dashboard/public/assets/partners/coolcats.png differ diff --git a/apps/dashboard/public/assets/partners/courtyard.png b/apps/dashboard/public/assets/partners/courtyard.png new file mode 100644 index 00000000000..2ef40eec882 Binary files /dev/null and b/apps/dashboard/public/assets/partners/courtyard.png differ diff --git a/apps/dashboard/public/assets/partners/cpg.png b/apps/dashboard/public/assets/partners/cpg.png new file mode 100644 index 00000000000..164f7435485 Binary files /dev/null and b/apps/dashboard/public/assets/partners/cpg.png differ diff --git a/apps/dashboard/public/assets/partners/daocentral.png b/apps/dashboard/public/assets/partners/daocentral.png new file mode 100644 index 00000000000..7b2dece03f1 Binary files /dev/null and b/apps/dashboard/public/assets/partners/daocentral.png differ diff --git a/apps/dashboard/public/assets/partners/ex.png b/apps/dashboard/public/assets/partners/ex.png new file mode 100644 index 00000000000..07a37c8d05a Binary files /dev/null and b/apps/dashboard/public/assets/partners/ex.png differ diff --git a/apps/dashboard/public/assets/partners/filta.png b/apps/dashboard/public/assets/partners/filta.png new file mode 100644 index 00000000000..8719620ba62 Binary files /dev/null and b/apps/dashboard/public/assets/partners/filta.png differ diff --git a/apps/dashboard/public/assets/partners/finc.png b/apps/dashboard/public/assets/partners/finc.png new file mode 100644 index 00000000000..622ace73e8b Binary files /dev/null and b/apps/dashboard/public/assets/partners/finc.png differ diff --git a/apps/dashboard/public/assets/partners/haun.png b/apps/dashboard/public/assets/partners/haun.png new file mode 100644 index 00000000000..cbaa363b54a Binary files /dev/null and b/apps/dashboard/public/assets/partners/haun.png differ diff --git a/apps/dashboard/public/assets/partners/helika.png b/apps/dashboard/public/assets/partners/helika.png new file mode 100644 index 00000000000..68ba944c9c8 Binary files /dev/null and b/apps/dashboard/public/assets/partners/helika.png differ diff --git a/apps/dashboard/public/assets/partners/infinigods.png b/apps/dashboard/public/assets/partners/infinigods.png new file mode 100644 index 00000000000..a7735837633 Binary files /dev/null and b/apps/dashboard/public/assets/partners/infinigods.png differ diff --git a/apps/dashboard/public/assets/partners/layer3.png b/apps/dashboard/public/assets/partners/layer3.png new file mode 100644 index 00000000000..b41cc1d14de Binary files /dev/null and b/apps/dashboard/public/assets/partners/layer3.png differ diff --git a/apps/dashboard/public/assets/partners/monad.png b/apps/dashboard/public/assets/partners/monad.png new file mode 100644 index 00000000000..de25569bc74 Binary files /dev/null and b/apps/dashboard/public/assets/partners/monad.png differ diff --git a/apps/dashboard/public/assets/partners/optimism.png b/apps/dashboard/public/assets/partners/optimism.png new file mode 100644 index 00000000000..00e7907ea74 Binary files /dev/null and b/apps/dashboard/public/assets/partners/optimism.png differ diff --git a/apps/dashboard/public/assets/partners/paper.png b/apps/dashboard/public/assets/partners/paper.png new file mode 100644 index 00000000000..2bb0f408dc3 Binary files /dev/null and b/apps/dashboard/public/assets/partners/paper.png differ diff --git a/apps/dashboard/public/assets/partners/play.png b/apps/dashboard/public/assets/partners/play.png new file mode 100644 index 00000000000..7efbf879993 Binary files /dev/null and b/apps/dashboard/public/assets/partners/play.png differ diff --git a/apps/dashboard/public/assets/partners/polygon.png b/apps/dashboard/public/assets/partners/polygon.png new file mode 100644 index 00000000000..4c70bcd7503 Binary files /dev/null and b/apps/dashboard/public/assets/partners/polygon.png differ diff --git a/apps/dashboard/public/assets/partners/presearch.png b/apps/dashboard/public/assets/partners/presearch.png new file mode 100644 index 00000000000..bd35a4f80de Binary files /dev/null and b/apps/dashboard/public/assets/partners/presearch.png differ diff --git a/apps/dashboard/public/assets/partners/rarible.png b/apps/dashboard/public/assets/partners/rarible.png new file mode 100644 index 00000000000..1f3407e574a Binary files /dev/null and b/apps/dashboard/public/assets/partners/rarible.png differ diff --git a/apps/dashboard/public/assets/partners/shopify.png b/apps/dashboard/public/assets/partners/shopify.png new file mode 100644 index 00000000000..99d3c54fa96 Binary files /dev/null and b/apps/dashboard/public/assets/partners/shopify.png differ diff --git a/apps/dashboard/public/assets/partners/techstars.png b/apps/dashboard/public/assets/partners/techstars.png new file mode 100644 index 00000000000..6afe453f989 Binary files /dev/null and b/apps/dashboard/public/assets/partners/techstars.png differ diff --git a/apps/dashboard/public/assets/partners/treasure.png b/apps/dashboard/public/assets/partners/treasure.png new file mode 100644 index 00000000000..ae8db98bc65 Binary files /dev/null and b/apps/dashboard/public/assets/partners/treasure.png differ diff --git a/apps/dashboard/public/assets/partners/whop.png b/apps/dashboard/public/assets/partners/whop.png new file mode 100644 index 00000000000..00ac34c1987 Binary files /dev/null and b/apps/dashboard/public/assets/partners/whop.png differ diff --git a/apps/dashboard/public/assets/partners/zksync.png b/apps/dashboard/public/assets/partners/zksync.png new file mode 100644 index 00000000000..1657c86d115 Binary files /dev/null and b/apps/dashboard/public/assets/partners/zksync.png differ diff --git a/apps/dashboard/public/assets/product-icons/auth.png b/apps/dashboard/public/assets/product-icons/auth.png new file mode 100644 index 00000000000..90f4be0103e Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/auth.png differ diff --git a/apps/dashboard/public/assets/product-icons/avacloud_tw.svg b/apps/dashboard/public/assets/product-icons/avacloud_tw.svg new file mode 100644 index 00000000000..bcf64d2874c --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/avacloud_tw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/cli.svg b/apps/dashboard/public/assets/product-icons/cli.svg new file mode 100644 index 00000000000..4a380c2dca2 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/cli.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/contracts.png b/apps/dashboard/public/assets/product-icons/contracts.png new file mode 100644 index 00000000000..be595d9b583 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/contracts.png differ diff --git a/apps/dashboard/public/assets/product-icons/dashboard.svg b/apps/dashboard/public/assets/product-icons/dashboard.svg new file mode 100644 index 00000000000..c4cae3cf0dc --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/dashboard.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/deploy.png b/apps/dashboard/public/assets/product-icons/deploy.png new file mode 100644 index 00000000000..f6ed6e4bd7f Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/deploy.png differ diff --git a/apps/dashboard/public/assets/product-icons/deploy.svg b/apps/dashboard/public/assets/product-icons/deploy.svg new file mode 100644 index 00000000000..be287d48e38 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/deploy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/embedded-wallet.png b/apps/dashboard/public/assets/product-icons/embedded-wallet.png new file mode 100644 index 00000000000..24985d03d03 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/embedded-wallet.png differ diff --git a/apps/dashboard/public/assets/product-icons/engine.png b/apps/dashboard/public/assets/product-icons/engine.png new file mode 100644 index 00000000000..bb83199f0a6 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/engine.png differ diff --git a/apps/dashboard/public/assets/product-icons/extensions.png b/apps/dashboard/public/assets/product-icons/extensions.png new file mode 100644 index 00000000000..bd4d80a9cc5 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/extensions.png differ diff --git a/apps/dashboard/public/assets/product-icons/infrastructure.png b/apps/dashboard/public/assets/product-icons/infrastructure.png new file mode 100644 index 00000000000..b81ff98f2dd Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/infrastructure.png differ diff --git a/apps/dashboard/public/assets/product-icons/interact.png b/apps/dashboard/public/assets/product-icons/interact.png new file mode 100644 index 00000000000..b76e99d7c74 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/interact.png differ diff --git a/apps/dashboard/public/assets/product-icons/interact.svg b/apps/dashboard/public/assets/product-icons/interact.svg new file mode 100644 index 00000000000..f60cb554649 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/interact.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/nav-icon-publish.png b/apps/dashboard/public/assets/product-icons/nav-icon-publish.png new file mode 100644 index 00000000000..5d6220afd26 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/nav-icon-publish.png differ diff --git a/apps/dashboard/public/assets/product-icons/net.svg b/apps/dashboard/public/assets/product-icons/net.svg new file mode 100644 index 00000000000..d204a090424 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/net.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/payments.png b/apps/dashboard/public/assets/product-icons/payments.png new file mode 100644 index 00000000000..bf6d7e675ac Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/payments.png differ diff --git a/apps/dashboard/public/assets/product-icons/publish.png b/apps/dashboard/public/assets/product-icons/publish.png new file mode 100644 index 00000000000..5d6220afd26 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/publish.png differ diff --git a/apps/dashboard/public/assets/product-icons/react.svg b/apps/dashboard/public/assets/product-icons/react.svg new file mode 100644 index 00000000000..21e3e4033f5 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/react.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/dashboard/public/assets/product-icons/rpc-edge.png b/apps/dashboard/public/assets/product-icons/rpc-edge.png new file mode 100644 index 00000000000..cbb0c9b6b9c Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/rpc-edge.png differ diff --git a/apps/dashboard/public/assets/product-icons/sdks.png b/apps/dashboard/public/assets/product-icons/sdks.png new file mode 100644 index 00000000000..cd32549678d Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/sdks.png differ diff --git a/apps/dashboard/public/assets/product-icons/smart-contracts.png b/apps/dashboard/public/assets/product-icons/smart-contracts.png new file mode 100644 index 00000000000..1f294631d4d Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/smart-contracts.png differ diff --git a/apps/dashboard/public/assets/product-icons/smart-wallet.png b/apps/dashboard/public/assets/product-icons/smart-wallet.png new file mode 100644 index 00000000000..e998cb819b3 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/smart-wallet.png differ diff --git a/apps/dashboard/public/assets/product-icons/solidity.svg b/apps/dashboard/public/assets/product-icons/solidity.svg new file mode 100644 index 00000000000..cc6494df80b --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/solidity.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/sponsored-transactions.png b/apps/dashboard/public/assets/product-icons/sponsored-transactions.png new file mode 100644 index 00000000000..a3435a5b9dc Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/sponsored-transactions.png differ diff --git a/apps/dashboard/public/assets/product-icons/storage.png b/apps/dashboard/public/assets/product-icons/storage.png new file mode 100644 index 00000000000..6a3fa00818a Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/storage.png differ diff --git a/apps/dashboard/public/assets/product-icons/typescript.svg b/apps/dashboard/public/assets/product-icons/typescript.svg new file mode 100644 index 00000000000..78843d600e2 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/typescript.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/ui-components.png b/apps/dashboard/public/assets/product-icons/ui-components.png new file mode 100644 index 00000000000..e6c11fab6a2 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/ui-components.png differ diff --git a/apps/dashboard/public/assets/product-icons/unity.svg b/apps/dashboard/public/assets/product-icons/unity.svg new file mode 100644 index 00000000000..07b65e93fb7 --- /dev/null +++ b/apps/dashboard/public/assets/product-icons/unity.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-icons/wallet-sdk.png b/apps/dashboard/public/assets/product-icons/wallet-sdk.png new file mode 100644 index 00000000000..d4ff3aa6e45 Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/wallet-sdk.png differ diff --git a/apps/dashboard/public/assets/product-icons/wallets.png b/apps/dashboard/public/assets/product-icons/wallets.png new file mode 100644 index 00000000000..b9738457f4e Binary files /dev/null and b/apps/dashboard/public/assets/product-icons/wallets.png differ diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-analytics.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-analytics.svg new file mode 100644 index 00000000000..4572417df99 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-analytics.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-build.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-build.svg new file mode 100644 index 00000000000..fcae9f3b4df --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-build.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-contract-action.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-contract-action.svg new file mode 100644 index 00000000000..6fabeaed3ee --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-contract-action.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-contract.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-contract.svg new file mode 100644 index 00000000000..5f9e4679175 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-contract.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-dashboard.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-dashboard.svg new file mode 100644 index 00000000000..5dfe7cd5170 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-dashboard.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-digital-collectible.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-digital-collectible.svg new file mode 100644 index 00000000000..a1b078595f2 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-digital-collectible.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-evm.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-evm.svg new file mode 100644 index 00000000000..38ec2ef997e --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-evm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-extension.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-extension.svg new file mode 100644 index 00000000000..6e47829b27e --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-extension.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-game.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-game.svg new file mode 100644 index 00000000000..00fa3c770dd --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-game.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-global.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-global.svg new file mode 100644 index 00000000000..caa6a3198c0 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-global.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-idea.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-idea.svg new file mode 100644 index 00000000000..1a213ed791a --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-idea.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-marketplace-1.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-marketplace-1.svg new file mode 100644 index 00000000000..9272d597e7f --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-marketplace-1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-marketplace.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-marketplace.svg new file mode 100644 index 00000000000..afd1b927db6 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-marketplace.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-monitor-contract.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-monitor-contract.svg new file mode 100644 index 00000000000..7128ae64a4f --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-monitor-contract.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-scale.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-scale.svg new file mode 100644 index 00000000000..7c7546f6be2 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-scale.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-secure.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-secure.svg new file mode 100644 index 00000000000..9ccba2a1147 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-secure.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-share.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-share.svg new file mode 100644 index 00000000000..8a059e6a46c --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-share.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-ship.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-ship.svg new file mode 100644 index 00000000000..69574199381 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-ship.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-simple-click.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-simple-click.svg new file mode 100644 index 00000000000..4b94d719292 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-simple-click.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-smart-wallet.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-smart-wallet.svg new file mode 100644 index 00000000000..6d92008611d --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-smart-wallet.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-storage-management.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-storage-management.svg new file mode 100644 index 00000000000..0014e198c9a --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-storage-management.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-tool copy.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-tool copy.svg new file mode 100644 index 00000000000..46b3d99eaeb --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-tool copy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-tool.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-tool.svg new file mode 100644 index 00000000000..46b3d99eaeb --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-tool.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/contracts/icon-verified.svg b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-verified.svg new file mode 100644 index 00000000000..957dc80c3e5 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/contracts/icon-verified.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-automatic-file-upload.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-automatic-file-upload.svg new file mode 100644 index 00000000000..44d8f19ece5 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-automatic-file-upload.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-dashboard.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-dashboard.svg new file mode 100644 index 00000000000..9326b1dcef8 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-dashboard.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-efficient.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-efficient.svg new file mode 100644 index 00000000000..06d1bba2be7 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-efficient.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-evm.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-evm.svg new file mode 100644 index 00000000000..13ae5dc6b86 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-evm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-game.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-game.svg new file mode 100644 index 00000000000..2b8f8e3432b --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-game.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-global.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-global.svg new file mode 100644 index 00000000000..63c5dbb638f --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-global.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-image.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-image.svg new file mode 100644 index 00000000000..7d5bc0ed0b0 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-image.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-manage.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-manage.svg new file mode 100644 index 00000000000..1fd797ba2ea --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-manage.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-marketplace.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-marketplace.svg new file mode 100644 index 00000000000..73fcbf102f4 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-marketplace.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-protocol.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-protocol.svg new file mode 100644 index 00000000000..3a2f9559d6c --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-protocol.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-scale.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-scale.svg new file mode 100644 index 00000000000..39352293fd5 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-scale.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-ship.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-ship.svg new file mode 100644 index 00000000000..d89b6109b9e --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-ship.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/infra/icon-verified.svg b/apps/dashboard/public/assets/product-pages-icons/infra/icon-verified.svg new file mode 100644 index 00000000000..921be140f75 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/infra/icon-verified.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-credit-card.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-credit-card.svg new file mode 100644 index 00000000000..41c4a97e055 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-credit-card.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-custom.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-custom.svg new file mode 100644 index 00000000000..c4b28ffa56c --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-custom.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-digital-collectible.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-digital-collectible.svg new file mode 100644 index 00000000000..1efeccc3de6 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-digital-collectible.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-efficient.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-efficient.svg new file mode 100644 index 00000000000..373820f82fd --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-efficient.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-email-signin.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-email-signin.svg new file mode 100644 index 00000000000..4ce02f4eb28 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-email-signin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-fundraise.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-fundraise.svg new file mode 100644 index 00000000000..faa02542c9c --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-fundraise.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-game.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-game.svg new file mode 100644 index 00000000000..3f4166a7ab2 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-game.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-gasless.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-gasless.svg new file mode 100644 index 00000000000..bdeab424b71 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-gasless.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-global.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-global.svg new file mode 100644 index 00000000000..b5653568186 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-global.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-marketplace.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-marketplace.svg new file mode 100644 index 00000000000..2d5889b4651 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-marketplace.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-private.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-private.svg new file mode 100644 index 00000000000..b149180cc3a --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-private.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-secure.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-secure.svg new file mode 100644 index 00000000000..b5d790946b0 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-secure.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-share.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-share.svg new file mode 100644 index 00000000000..d986327f10d --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-share.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-simple-click.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-simple-click.svg new file mode 100644 index 00000000000..6117b708a0a --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-simple-click.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/payments/icon-smart-wallet.svg b/apps/dashboard/public/assets/product-pages-icons/payments/icon-smart-wallet.svg new file mode 100644 index 00000000000..457312149d3 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/payments/icon-smart-wallet.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-build.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-build.svg new file mode 100644 index 00000000000..66c54aca38f --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-build.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-cloud.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-cloud.svg new file mode 100644 index 00000000000..020cfcdfc55 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-cloud.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-custom.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-custom.svg new file mode 100644 index 00000000000..1c671008ef7 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-custom.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-data-check.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-data-check.svg new file mode 100644 index 00000000000..0874f623be5 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-data-check.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-efficient.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-efficient.svg new file mode 100644 index 00000000000..9c34541ef37 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-efficient.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-email-signin.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-email-signin.svg new file mode 100644 index 00000000000..ec921004441 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-email-signin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-evm.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-evm.svg new file mode 100644 index 00000000000..bd813cac13d --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-evm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-guest.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-guest.svg new file mode 100644 index 00000000000..f250a52cc39 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-guest.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-personalize.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-personalize.svg new file mode 100644 index 00000000000..c494c4b34c9 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-personalize.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-private.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-private.svg new file mode 100644 index 00000000000..1544c86ac4f --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-private.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-save.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-save.svg new file mode 100644 index 00000000000..0567e73087b --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-save.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-scale.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-scale.svg new file mode 100644 index 00000000000..4b1649e0379 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-scale.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-secure.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-secure.svg new file mode 100644 index 00000000000..c29920f8fad --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-secure.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-simple-click.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-simple-click.svg new file mode 100644 index 00000000000..6fec34fbb77 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-simple-click.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-smart-wallet.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-smart-wallet.svg new file mode 100644 index 00000000000..abfae1bfe64 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-smart-wallet.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-verified.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-verified.svg new file mode 100644 index 00000000000..35dc3a1efed --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-verified.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages-icons/wallets/icon-wallet-management.svg b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-wallet-management.svg new file mode 100644 index 00000000000..a4d51648952 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages-icons/wallets/icon-wallet-management.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/authentication/auth-go.png b/apps/dashboard/public/assets/product-pages/authentication/auth-go.png new file mode 100644 index 00000000000..ff05160065c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/auth-go.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/auth-javascript.png b/apps/dashboard/public/assets/product-pages/authentication/auth-javascript.png new file mode 100644 index 00000000000..7ed871bb421 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/auth-javascript.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/auth-python.png b/apps/dashboard/public/assets/product-pages/authentication/auth-python.png new file mode 100644 index 00000000000..441eb002e23 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/auth-python.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/auth-react.png b/apps/dashboard/public/assets/product-pages/authentication/auth-react.png new file mode 100644 index 00000000000..f88ed12395c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/auth-react.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/auth.png b/apps/dashboard/public/assets/product-pages/authentication/auth.png new file mode 100644 index 00000000000..a869b1ba014 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/authenticate.png b/apps/dashboard/public/assets/product-pages/authentication/authenticate.png new file mode 100644 index 00000000000..6bbac5f0f4a Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/authenticate.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/discord-authentication.png b/apps/dashboard/public/assets/product-pages/authentication/discord-authentication.png new file mode 100644 index 00000000000..f268b8749ee Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/discord-authentication.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/link-accounts.png b/apps/dashboard/public/assets/product-pages/authentication/link-accounts.png new file mode 100644 index 00000000000..29acfbb99b5 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/link-accounts.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/login-with-wallet.png b/apps/dashboard/public/assets/product-pages/authentication/login-with-wallet.png new file mode 100644 index 00000000000..e8bf25dd759 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/login-with-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/sign-in.png b/apps/dashboard/public/assets/product-pages/authentication/sign-in.png new file mode 100644 index 00000000000..bc1bed37314 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/sign-in.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/stripe-subscriptions.png b/apps/dashboard/public/assets/product-pages/authentication/stripe-subscriptions.png new file mode 100644 index 00000000000..8c469ac3b9e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/stripe-subscriptions.png differ diff --git a/apps/dashboard/public/assets/product-pages/authentication/verify.png b/apps/dashboard/public/assets/product-pages/authentication/verify.png new file mode 100644 index 00000000000..f5929413a34 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/authentication/verify.png differ diff --git a/apps/dashboard/public/assets/product-pages/checkout/case-study-1.png b/apps/dashboard/public/assets/product-pages/checkout/case-study-1.png new file mode 100644 index 00000000000..ed1a935f73e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/checkout/case-study-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/checkout/case-study-2.png b/apps/dashboard/public/assets/product-pages/checkout/case-study-2.png new file mode 100644 index 00000000000..bb606f18a6a Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/checkout/case-study-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/checkout/case-study-3.png b/apps/dashboard/public/assets/product-pages/checkout/case-study-3.png new file mode 100644 index 00000000000..6ea577870d6 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/checkout/case-study-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/checkout/checkout.json b/apps/dashboard/public/assets/product-pages/checkout/checkout.json new file mode 100644 index 00000000000..5b76f3d1e98 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/checkout/checkout.json @@ -0,0 +1,23729 @@ +{ + "v": "4.8.0", + "ip": 0, + "op": 262, + "fr": 23, + "w": 1137, + "h": 940, + "nm": "C", + "assets": [ + { + "h": 240, + "w": 146, + "id": "image_0", + "p": "data:image/webp;base64,UklGRlomAABXRUJQVlA4WAoAAAAQAAAAkQAA7wAAQUxQSDgJAAABGTNt28h9M/6cxyCi/xEa9gjHEQgk7W8+QUSkLji2badC7s3LV9zdpWYUTID5t+72NcnDqXh1xARMACbJtlVLkrT2ufe9/42cg4qZqYkzqRHVWJiZmZm5KjicPczN/n/v3bMbZsmZpx0RE4BAIAJPOIJ6AyAFpABIAYGCr8KSlcLC4qZlJMx8yvXZTDqaACTl4dWKmbUakUK2LJHCYRnZBEZWEsYIhy2bW50ZJ1Yop1RI3ty78iwC4YkogFyt5DUaATiOrGnSumQLxrIZtR4xda0jzt98uGvzhFpk2plj0JanT67Zne2314f0GNGE05mO3ifJ27YlQaaRHdEibBvn8/893gLHzmxbM2daLRhFoJQo5GA0SIQnPFJAkFjKdaNFOhqJthFdNiLwGI7Gpy9erz45v3cxQXhsajIReAx6F2kw0cRNZzrVgm0bRBODCG+vn//lT//y4QZtOHAqAiKIXnQSVUh63migiAoFejJtBOIyTjaupgZhBtFsScu2eb8nZh/2k2KzgJ5DYuR1a9aEU6ypNnvtQS67WOz91q5O1kHvo2WutKHYGt44//Yf+6Uf/6O8MesYkSCAzCxFCoDgW1JqReSAEiYsA0YYASgFCGGJz9E2CNmRABafWUZYMhiQBZgz8M5s/Ud+8M4LIGfNusQDACABf87AP5v3vlptoAp7CgEYMXlEAkxZRWQFOAsgN20GCDtMe4GoTFJkBbG/ByRejRQZITh7NB/dczKQCCOI83s7AKHAATOenU0Ceo0ReWbY7zrAoxuJA2aMUxl4cM4BO/rEAC8eeYEdsiUAeQSGNOAsWwFkBwnhrNoBwhBzGG/BLkV28IxwcoECO6bTQDIiQ2CDUCNlCM+CjKccQ+S+QaYEiuxgN+EViMCQB0zjzUABmSEOhlfPOonyrOCOIXrSUAqsqGkKoRodsgNtmowKBgR2TIVRbpUYSiGFVIckgXaC6+AhIBsqgz268PUlLoO0NcPli0LAEDhFlMEgwDMqA7GL21wG7R/cDbBQGTh78/4sCLsO8eC8i5g2Knk5rNlLIcanlxvst01lGO89vlp9MplWh8fPjhDoRGXgOARJJfXWnbvBYHMd+le/8+aJLFNHzW8/OkFtP9WB7fWTA2p3ohJPP76y2gWFHJ88SxSqxPbpKsQoxQgzlmMl0rcccB08CHIcM+sgbnp11IHJZmRq1CEmBO6iji0Mu3amVgeUpu/uojoMGTSdUUdnCuQshPCNLV0HRIppoZIxErqjEthmPi+FW0B/i0rqhh9alfAEnIhKbDPIciE8JpFJKVMwUCXSNjIqhCOhrbgQMSdos0qxCm+4El4hLdXBWgB6UEd56cYnch1wdsgpqYQnMcaxEqiZXI8uhC0xTBQivZlsswthLYY2qxChNZC6C9ESo6ZSbA2iZxQiPItJw4VAk2iZFDJR4k2lEAFbVGJ0jAYuRN5iVAgbwKKQfUO4FlMa4gQVogdmeiAXQoGY74cKYTDtJFyINRASlVyaRYxRidEHKEvhtiQoXQhpMQ5TyJYJVpRiawJ3FULL7BsU0ssuyOZKjNFgnUphMMNUskXCeN0qESCyFhYCy4XIyGSerErYcOqkEoOgH0cphNmWUqjJLC5FC0FOLoUdbFYtMNeXoUJEGI6ve1aiGRxNhXBH9H2vRAZJRM9CbDaMERQyN4uxbSpEbAZro5A9Q9BdibBMNLkQ2QbQKYSX06Nhl1EHxvkGhKmjPQuUdh1C2cEyhWzbJNyiEI7cB0S4DrCdQIMoxNgazFRSwxKnYdcBImAfppASMGmrRHiAshIOEo6HzXUgMuD65VAdFJvM1atBITUQ17VAhuOz63QZTADL0xfHUQbUnIzDy6MLMY1AXjfKaPcBVm91iGwJeD+pDLjLoDtyGawWENO9pIxiC8F+v9XBHAM4Xdc6wNpA85IqRAtDW5rroDmEtVEH0QMIUmXwMIapB2XUmhbTvJ9VBm8AD6bT81YGmoCd902FiA22XDeXQaHNPBvH61GGTBIOy2GhjMpEsBzSdWBgtNEpo50GWp8KkRh2X3c2qQyoG9746ju9lUHRBA/fPGsqA5Eddj2po2Jt0EYl3GOCXF0IppP9nquBC7Hf71q82IJCXkcf+elLF8JLOw/y/YPqoHv7R++0+ORTF0Lz6RuK60r4OF5/Yvy6EOOTF+9+MNC16uDLq1cHYj66Djq/uNjRLk6pY3v08OvfbtOju6oD6seV6f7dVgdtrz9+Ntp8qjp4PH//iB1ZCF8NM4zroBzAyEYdPUDkUgksQx5diVyH8TaiDGZ7/omJyCxDLp+++8Ggd+ro4+W7R2ihOrBsNihaHRQC8Bx1sBq6gcoA3QaHKaO41TjroCFAssqQzSHYdVPGaAGwn1JlSOWN3S5dBm1HAdOMysC2NiC6KEQKUJPLYCc3W1BG2Tc0FcLjlr4rhHK7pUllgOUAOOUqeOjqpWEbpgxm/WCDkWsZRMxf3cG51KHHyV0BDFcB1LWAJlQHmhMUjTq6xQZeohLMK/iaSo6OyXW4Dt7WCdaxUUXnui4TPH56Nawve7ZkW9YNgz4b6YZNXL/6cAI+eP/l80f9y5Y/Q45JFrc7FXzuGjk9+eDQgeO7H39KBZ3Hj9f3zgH8/r88PZxKXziPw8Gc7JolfaGMb/NxbbEctsPLw356/j//c1wzx0jdBAVo+t7v/Got2+Hxcy4eX3BzvP/H//pvbz/sn4NuGEXe8I32yT/923b6DV+9bycXHZBvyJGAbjFChvRYnWnr6dN8+S//+vjy+YfffvfpP722WyQYxGf+H3N20sfyeH/vDrdf/uHP/ei3vXX/riyFcjDNMYZRD/BYxzAW489/+98Xf9sPfP29OxezM20LMkdEn3ezciRqLSKEPDJzvPr33/yJr1n+49OwRw8vfH4v/+vDy+G5wzWf+fWvf9t3fMtbZ4G3ZbRJ4Jg79EmpedcFjFfv/ervLvbuG7/m7a/5pq/Zhlr3lvKgd47Xy9DJg3uzNenw5KP/ef/TJNrhyV+9nFj5Qq/J7eOz4Orv233UG0Amaq0FOfp+36PPPbxtuT35/yuAJtqbb+4C286kTz18fXUcbvN8OHJ253S8+99DGIz5ks31sQAZsBAYEFggLMCDzyyEhRHIWFjI3GwyOfjSBlZQOCD8HAAAcGMAnQEqkgDwAD5tLpJGpCKhoS32azCADYlsa7fUOSQHnvb5UdejSZ7S0z5fsvN35D7S/UfiH43/33db2R5NHSPnR/0nqY/SXsEfrD6kfSD/af976h/2R/7n9994f/c/uZ7pP8H6g/+D/4HWj/up7Gf7FenP+4Pwtf27/o+kt/6dQS+u+Oyx31A/MJShyn2zT1f3Pgz8ndQ72NvydvvQL9yPqn/R9D77Hzd+xPsAeYf/J8gygf/Qv8H/4fVp+tfSL9ZewX+wHpw+zr0hv23Q3b+XryR1XIApimj+kSAu7zgwSxpk8HM8e5eVLbKzog8iGG1TEsI3M0lGVw0hb4WQf2ICQ81pyqajmKbyUPsDSBAWgytMOzH9ys33fei+iGDtT61ufLHSLx4yuaeBROEmJdXNTSwKuCTO975rh02pED/oHmPJ4OuC/r60iJKy1nZHhA3AO6qTNrayoYppjJ3KhGwJSX/RTwNFHOePJzqQjtv+5avpHuODHuVLQfkShu3Q2mELngi+IxeyBYHdl2OxPlTUAKUiMi54jIrfiY/yoPlg8Xk/26eRyCRVj3P/umXlJhX0Ze1aWub8+zrpIVLGhwla3X+8MKPM8CkUPxZMSZpNLnf//vEz1a/Xwgm76uHDZTtmGA1VdZ8fnZkKLMTokYeEPyqLXH1m7qDHfdzuI8SuuWUuJ6QcyJQxeTecfh+A/Q2JABPDn3k3y9+cZcAcHnWTJNvoTss//BUWL4ZkKGeLrWBDKSuLRe4fSB33ii/tSblw6Kzuf2StGdug7vfqg89lsKdtgHvPRt932yYJaav+CwGh1o2VNDzjIDWhOqqx8+FhSxgx2EXjOQNKFrgu2TLyJknf/PZuTOOljg6vFeYkP7pwtAAQZ2mqgeGwiW6dufRrZejuMxYnt4Nm/mkOFPxDb/ZZohNLpXLO2a6FYWcq0NjVdZQ0hJj3E5oPoN4LfUe035FIKNOhl/VIc4Bx7pFmbCkNEJasbZ1Sc6zOhpE5sQV9zl8Weq3P/lJK9otgEesLKcoZavb8XCrlbiAS122FvCqFWfLCVGAWUJuyN0MkB4oAAP797cgwNpRueYxSkZ67E6HPv1rWmu8KIxhUgfgrEsE0WkdmOT7aNmYOkN7LbNMKhSHQ5q4GY/ywC/a/LVc7Cv/4Nf4Vnw1hHvtZp9kHSDE0dwrlZlmX/ZPyrHc6cF0tSrfhsTs9+qP9fSD+by9wFKrNlkuB1ew3IbjRdNscTLpnZPWbKSe1qLZvJS6zKsCqr8uhFqg7wbeXYqTScXAmtWcvk/wT0aIb8Nvu8bTIt7yzC/K1sF14BkpoM8n+HiJ3rVgwk2qY6FmikopjW509GyWZGreAhMfZVRcjIs5IcjPdC8evWvDs0fhrga4vr0OkPcdwOcUvpnh/BAnO6BhHFNLho21bf+OJrY/su+n/iWUzmxo9Ebxbpjp5J+O8hEp7/BP//46JyvqTiU1J3wSgc95v8W4k7zZpGk/Jw8bv9p5ctJiQneDRql4wkXQMRE4miLLg2oSXlfSpg5kRe2WS7EGWpsMnps5vLWeGX2e0y94fqT0ew5T04jInW4sWcmFyVd/BOXhQlh2A/HXx6jwIS8yFCzaxhKOyA4mZsCshr+0myMZo0i5sqQ9pTlcaQX6/WVdttrfJivKHvS/Ax7hXw69XgQoEqCJvGI9f3cVUzdEEG1gftK26XVS86OA1rw3ROYUn5I8dccjOf67AHJzL6yRrAdCQEBOigjGYS4SMx7UoFcBHnQOPPp/ztibsUh4igjiz7AgN4xGmPbOERaEXdvBtjIWk5bqDeil0Bk7b7T98NE9BeIvcDyXEIMi8a9jMGp7sQv7HUc93eyjJBz9dDpjWXJqnZXPuHs6P/OKm95vbE0g7gMFHu3TWyyEiHvq6YsUQXLcMNnNP0cKlXwOq2ZQgZe797HjyQ3t5qbaQ259FpY0L9f5bameH9o9kNJLJ7QtOsF5omNZGJXtSPRuCrEABSi5c5W2l10/9iksl6Bbq2biUcGvaDjwLMdfhntmoGUlLcRu8HCu9++GxOx1ut5yAap/MKtXlYkz1v0+f/1kbajnNiMRPinacEKw8WEUx9l97Tj0+hBsECTj3rUt8iF/cmYukw6mrN5Xinv74A0NyKGFtqWjGK7K6F33ZBtLQU3AlXo9SZOZimTRKvKlHZxyU5aJo4/2qgYe2BI/nAftfHAaVJuKnrk3SiOEZ1J/AjtaKM/4yb6rmsr4ovVcoGtAOUc9NcUyoPosGtNjgaPnmau7+bTWwqZOuUciImoanALNDKRoFvMYe3rtEF5flITtxRy2FY1OHmftFEol8N4cJlh0fsqRcWlqMhTfohMAaY0zZEL8IyYcSKpZYwzYefOUJES7osdtq1+howHXjsb+8ThgbTWR3z1bP18OhEz/Yiu1I943X1VOjOgRLhSUqhAHjTiUTmRE1i48hvD8myFAiAAWmrLlMgydA79w+Ed//4Lw6h9dFVxZ2rR214GbMc1tvf+QX+zE/AeKWPTcJ2guN72Qjpdkdgm1IUEtyWLaPu8XbEa/DLVaS5idcj02I04tj/+KL7ySJWjIx8EbRbvWHcGVhK2BC/th9USppKYnaLnz0BxPF++C3d45V8DGW5YPKTHlleW/Ck4B2qAmD9zSUpt1Z/qH4vFdT4sXbUlToSVjQPZEjSLQ4r4Qv8Mf2i8ROF8P3u0MZ3DCqj+Lw9pt8cW90Yem0rC4m8G5W9FKcdsXwme8xCClRPkOMokBMyWwpgy5gf8UMNpyoLpFiwiOX2y/T+AiyUdidRD5+pMsbTQ2dGMlnoacD2fSGzy+ymZFClVvL16VL1pPBaObBp3XrJ3pQWyAr5HiR5vy8YE20zlFRhgfMcIQTxr47yYqLu66VUmOiJTzXv3f378uaNBhsafp+5Gcp5eglkKxHAUSFon25VKfq2hBpTDvvS732SiKRv6Cfr1sYSEOp5Mw1FeCeV7RxFvUu9MoBWphpC+t9GBJg9UNJphGxynrE/5oR6zv3QZRg+eHJ2ELBclZD3+BfjvYw5FfiEYObymHryyz1Twe9V0KpZO3EmZwCslI05v4QrgE07LV1QCzVtn9DV2YNkSo74C/avo1t2/jISZIrvzJW45roZ6pAr9SZk2WQdZmLa0SfCxyux5/rB26a4385L6gYGdKuBcGUvAAvskypN7EN55C6DVz7PKy7muKSwg4QBPBFGb3OEXBA74GPngSrkAeCJqj5d6vVYgtfIxSoBH4rhB/UizwBHPP/NwOptoNo/HMbPLr8lEmTLzx1d4NGRlMHLuZeDZIOtffW6g5ZIpEplewurtAuC2UTPZ7usorT7VqSbpJTjiV667//mLidtx5k8ow7QUWbgsu41orrfHidd/7EB0bk1UmFPxSyfXw24qQ5SdZYGlh/zKUGKJP5HDuCtvJX3Yv5bsArCpUXqWGsM4ODEPXJ60e40XT0rGAID6LxkqIuoiFPwf/eCXBoTAavwQlgpoVd94j/ywDTl16A3ed2zvO5bLolh2PQVWHOSV/5SPyBodyT9d30cl01v4xIteGOBMceeRYf89uuOZlxYnSh36YyimwTkbskVJSFifZYGSqFUrqWTR0xGpX7UxK/WybLKddh8GeEKir2SJIqz1u+CacpcTnQElDFuuKYYvOxxrnBDKF+HQ2/bGyfxvdlMJ2O8oGGfROnxA0BBHIOgehfG3LRHvklnIdPb2b/HaNikAjeJw/S1KWxmEE1+KIJ81Wi3gQ+VIiMI3V45GfSzS7Pgdp4s2ZTVlZD3Oia3AkB9FqdWlk9E3zFtL+Mf6GufevLYNWHJSZG9cCAoqsivnQf5kvpVTn/B38JO7iUoM6lpOmwxi46rCAd+D8tCT8hg/SYTaIaqaVMX3XxPPxBPuQ5+jK/0tb3GFtPma3MRDn0JqSRMjrtlBmglcWfNIyqmUZ1t4jHwB9nPM1fbu8US7we9hGfwPCSoaNy2yhiB8tH3YmT7BkYPo9icYnErySzTK2bDppyCsqaikRQYwAH+R9BDEyw6YJf1SsCnnN5J/Xa6MHaybLCMJNu0znFJDGneRgut7EWfvdzPZvc8Uu84j06OhJTU3PI2mbfxzUa7Gbva8NcoP/Vq452sDcw3UE5rlCBTMlVw6tLdtJxrq/ucg1fqXLRbuO2cSexfmrMkveEXskYv9B+nOnW82p1BIRm2LloIPFNJKwfeK9uMX5wXst8EssqOeOVIO0LgFN46HVpgHQ8vZrPXAyTaha24n1vuzuY0q9h5I/H/IXpYJ2MtbYVDqj/pMG7B0CKAkBuzXMgC2iI23MlOZlL/qAFiRjdrRseA7D2oGrk8+0aRQgGkSVFzd9amze70zHuutN0e9DVksZ6NmHoB1zY4AwA5sK0+uIBvrzJze1poO1L2efs22BgSE2N5ztRnzKWF1t1P/4fPdDJDjeuVnlb+r7TyUf28UK6FaEuUkMJGu3r0I/Zl7AH9iDkt839+5xLh0hAlzZdZT00RKD8amJ5HU2IQFbmU+cy5+nHqUrxw9lmjUCfM5bBzfsndiiwRie0d5wobV7xCXz3RnqwWLT9nofbLmFGmPVUYpcTR7vi30PFnlHwJw+c3/Pq+Ud5H57m7d4yAEjNyPHfyDnk4Ind6WFG2LbIbEsOZSo/w4r4ZRz155TAWQKZ3+9wBbGr2GAk8LUm5NAIPuEyq7lcvIHqJXAyeC2tCXNC7J3gwY+8CBn8J3XfE4ReRK1cIiDDy8DU6zaMMQ9VQTVRntvyfkUX4RfUnUv55LtUhdRLDQmtli2H1vacZ2v8+ZPM0Zw9UNbK3ik0Ien2Sqz6rk1cl7qVqqdplzl+Ku/G4V9tt5JUEhDRI++TE9GLU8yZ2P3LcNCimCXkr8QmK0aUmlRuUFhq4bkyCvoCalp+c0HJwIOawPsIix7ZYm+k8eGi+TErJCgpXauJUa3EJmHaoGiLVK3LEtbdN2BZWXDLIyqOAEFp04iFVqD+vCVDMkvbNhFHQTDfTrThnj9zsXdWwojVWgwIAdmaOsofSTVwSTxqMCtZvzBi91L7EKSj8nK0YZeqW5GtDiFRZlmMKh4wsek8sKlUyfX8tqo1lGTy7zcHvyfngC0lRvfl/XTNmUzs3IjFZDIWEFBnv66Tl/YZxRPYyNV4FFeF4g3FLOefVNH7lqPwYQ2RgxJDqmZb58kUizKh1YLsKnEr/vcnlfvyAgFeAJ+mF/wODnYg3Sl6fdObnTa9oCQ5Yhlsz/i54DhcGHlMN1yhmIk926cuL1Y8ltw5146MvRjspXa2a8oAblaPCUANp9aJ5n43cWc4pJB3rQ7k9TuIQ4x3AaUqkW7hQQz9Zfq8tmh8jBljNO7iQ5MJIABMtaEbrBdN6zc2PuUZP3FQUjOwxOD7mNx9kIYT/GMrobcZj0TtNq9ghkpX05EAepwfQhP//Iyk6vNBMtmud++vJ+eNlx+/tob8+LMmitCX2icDeESKvZGZaEYRJBb91XBiJj7kbvnf0wTrPgDow2f/YnNQ5oHKoRWN7QigeEqcB1U1OSaj6HRh/azOBMXlSanNb0TRchk6kW6MZ4p4b/iJixi1ojMYF+kh6bJSPheSyyQYLJ/N8fBcaCO3nr5Yy7v42KQAo24wSej3rozcgEsxVoqZ95W/bYH6RDOdyiPwlknVEDoU0RsyGPxMZY25IAbBrKDIzWGS2G6yAek7T3P5JYDJUJI9ydbqX6WqL9poa09rmtmpOj9xn+ObEwJ7gA8ssQFyBSs/ZwGA5awzQPJoDX+9g5UPujVGwXOfga27wnsvR95y9jfMfddpRydz1Wr8rXHKDUxOZX3sVs+dBgR/vWaB/7Ib4/7NfCq3q0Uz+qluxuv1/HFUe/cc+GQMVPIAR40Cgmx9/xit8I8ThiZ+Xg35OyyLJLkRFNOPUsV3QxEPi/PmxJ+3Z7p4pcmXhRtRJ9I/a3nAwSd6nJ1y32u6KX+IGk67Ain0mKqmH02ExSegNTyqX8GUvBeS3h5GGY8E40FBcfW0U/o96QEAUkyb+n3SbaXu8wZ09zxloTuY4mKuM4hYMgT77YeLzInEple5Pb7wXT9hJ6yDG5mi98vyv/QEvDBdRIJLAyuTtWJkBCqg9evEfrb3DtcerRi+J07gFhwdtQMUwkI9iXVtDy/xfL4oD8U7MYnV5bmGeSpK9wgS9/KqM6MBh9uGwkcwkdaL33cgzdVWGUbBmWR3z+hU20vmxmHrdenmln/bIRW2dzKOl6wCKZGPOJjXgNW55s3W2bDLlqUD1FBikPQTegHwjZTi14gXM7ZgfBW07u+Po7TcfYniTosLpTM1GXsZhrsV5Sos2mn0hp40nttSpXpBa0d9m7WxRUoVra/iPALfNkj1jkk1g+yv6CkhwBFeXwDozE9t+WYUf+dKE8GDYjMkMqcOc2IAB2BKJ78ax43KJEAlJ6iUD95pWmIJrCOLB8zsceftF872bcBvN8gqBW0wh6OgBN+JYIykutH3PqQWA8v16CXpjCeiDtAqDqduv008YjyqECaGQWMmioW+Tl4V58gDsYplOtoqWkgFOXViCjWX33heP3aEoBe5vBgXKvUcXv7gOn64F6T9qoVuwrvWs5Rjd2XSKjRFI+SahzE6OQBgUjMQFGDZsibo6Ishuiqt1A90debv3+h+nqK0cuOdGzbowLYGk7SzdZqIXhhlH/1hv0elVv2m8WJeqwrMD5UPreMgXkTR0XD0tJX1ZTK+NAMviAfGi7BT6uXo/q+6Kyql1avasMBmCl/gNqXK7G0UHrN+i3xwYgxPLRnq9k2hUMcIRYPfXPyZIFt8g/nA4C4vuFHJaHGqoCKZhHK6odU02z05RXbBDEFD280hTwdLE26Kf5JUCFIgCLZX37jv8Y9Cy3ShUzo9qo7es8iR2iiDx6tkQ0zhn5qXHPXlRqJmHveMYv3bijWHSS8+xbh+fIgZnUH4CDw2eR9MkYkc3jPsgzK+HgDg4vOUku2ytsTVqBq2HRLibf696tPal4rt/mw3KO6zBNTmYJQu0sjerNj8inHIC2+ltP9lrDtB3Ib5yq7lOBcuGJtEOQe7griu5UHGwZqmW32iJivWG6204A3yuDgMujgG5GWdqLHipGkMLJXAr/1ZsBIYgQPTOKxpcilbxo7gIhHS0lLOwthj4X8zXpKWjb+ylfusaM7EwG8n4E6dgf9AmW/4kmnrHCi7wQmj6UaxdKIuPBOtgiGV3TUFh/viPIhX+h+cu9sTwg59JdHb3yi1f96QzQQHNtpHoHVVdtQrILis5nDlnnaZJQLuGS1J7AAMxUKzfig4uRCMWu+Pv1gnILfOUXV2sNIGULpB1LI8PFE0JaVIcN/WfqfmfbSmistxoWJL7tHPiMjBXdZ85NLzT3/b7lCrjSWkQuusmlyU67brsLL2Vt7J0T2ZCVDezLGByk6FeKzwWSftk4wrBDIdllEi2/ntf08jmMbRUCwZPdkdj1+ynRzeNuKFzchCTCwQ8uTMMIxFDNJSIzjpVPWJKmabGzJz71aQYRDjMtviOrS07fhlg9mT5zpYLmguviseRRW0+fIqMb4YxNiMc2zsqT4sxKb5EhiL0PnVxoDggYhh7ZYP/wd4flNavnZmaADWB2coLRobZtua+iyDaLQhGDxkEPJvUVBMwNnybdLK4qpbKCillnPDeaoKPD9d9fpp+DvDNhZne8t6Vz6/Yqo/50eTFUt59ssWXLT0z3k8oKnC7U/e5M3OY69o1UCPOsE5NOmga9wQX9AKIZtYPy2/kyD5DjDBEnNXkRAj5MGZARsSLtGT1U3PqYC+bME33RuXPOHgvQNv980+rlMZNEnzWHcZslzXqlq3WVR4Vz5CdVDMO3xgKQ2d7EnSn40WUyLHzd3+OGgqcgt0NOwN1bisA0HpE7yfvb34kJ2vK7Zws63i5HUkxf2STkFhkP+Y4lXLmTneEYGNQnZ9Hz03lpM5ddEQYO46F+gN+8SrpwNvf1Ouh7Uvk79FyYkgNoAyUZgPMgUT/ngBfTJ3e6mQuxSl9lQh3xEggj187m6Mf/sjpl/jLGzFEvhlNj8nD7sV2TqDUemKR0f+IiY4ZH5Z+IEHRxXc6P/+osFZnp38HtwmYaVEN3qXCKsmKIVP9nfymBoi0gzZ/d1ywCO6CYa8rybOtTY596N6c83XAOsizThd2ENE+iwoVPG+50cUHBNfmzPlpnImZBOHkeBQ+Z/lnHpMKBd84Y+kHm5A787/41rsrgSMoX9JdvhvWOIfgarxZroTJ5LXdXcTeNPt5LQRSJFYvBykMA845L8/oiDk+UJLxIvcNjgrXucJvwRgaL7DwuRBZaqTP60FA3hKxgpt5fW4dozsfAc2z86hlu2BFmIeGerOkUP/5ZxuMFSDtgBxZs+CrycIvaaIIyqQFpWGR54fmvAehWmKhAWmwMZGiN2K8hTNkfMIw1KQUsdlZ9PmMPvsgn6bm5FNSwDFTI02NrBbxR0A0xr4u0AT5BRtpGg25hflT+1BxcpUwS2cEWkUktuWpxA3BmHRqTF+tDBrF7fJAIY8bvN1pomczkFVc0tRUg1Y1zU58oXUmhk2RWGPMzh3izDKEMcmwoDUK5hVL3PsMuaDQ9H9/t/LwNifwbaxEQd5D0yEZ14Osj66/jCuGwRhof9UTGDq12O8mPpf4hznWCF4KsSMSwowKC6rGzr3aLAogisV5QQyG6DHFK/zp9TK7gQHeLKdiWbkzSWRjKxBcgCvdujLwPMb347S10JBJBKhNF84wW+dEEwNKcBUpKucOiEKWrbmFOHmxTEUPf8OQT28Jhq0ClbWROk9hGPS5DNBxJC+ylA+FdNUjPocihmmAgFjYgUA3ZbfF/mMpFDsFbZw3jI0DRet2jm+E76kq5UXSTalw9Vz6m6f5XNJKs6RY00Rh+cF8CjTzjiJp5rk+wWYbXYki533rvh0DJ54xtS25RRnzAngD52j9W8+cdopucuKBpDcB/4lvHhowx+C/uuI1bsZAz05MTylbONRTFgiWGQUVhVGpa5tap3grQDb2ajhrVwbWPXQSIRgB60xGMkbRCtTWT5CcbzMC/gvuXn96f5CpuhxLfgkwzYWdjEF6Br1zGQ+Y6K9hk4Uxq2OAi8ZiNa/vm1w5EIv+W1ZCPlAo7qEFqnouIhQvDH5CNzX1uj6J36BZI80LfhPqqPfBYZHJFqSm/1gfzqSobusKpm5a61QYUABQkPB4Knw5Rm2RCRfo4OU4Dc0PfesjEHMflOxXFtd2qg0po0ltEvexqRAVpxiy99OYS8NvGOHmuPyS2ZNGiKLnnzJCSOp1HU1U30w66DkwpZ+NzuKgnizu+u/CEfv2bVPlSNvLxcM+nAJINDICFOBGgbhhcIpKIvbAsmONrY/ibZjDQgouXhMg6Bsp/eKuXgF+qebpT40PoXNhju2jpAfCSCoKauLsO55vJ8HQUr8vLhm1Dt9E5eOOney3r3tVw86ZaYPwFjzNIj8RqmwOJnl4ceqzFFqcE+2fUohWENCTk0Dfk5lDpbdytLgXwNx0hHa5WGMV3aqSHufiQoA2L3ZhAOVjJ6XSvqWbSUo2OjdPWIOjEqdYGe4vjfnE/D19rHRdBANo6bqP5Z6p4A20qn/Uq6OS31t+YCrFc0U+pHA8bVxn12/zAD3SvUwbsUkpqXS++7Zb6qGEd7GtJVwQFs9pk0l9b4yFR9JDhWJdHGIeAR6f7TEcsnQDdSuMhuQc6Usqj7T2lR10NyUd6WodpfI5yt/kdsEUF5l4L3xITriCxPyG+vuoX5m5KGTCgv3TavyEHGvciHH3DAjNqk4Dy7BgfEc1WG1BWqjgYchzFRFz2jkRa+ftyHmO21Xnnvj/E6hSIExW86+bN4FRB2TCb7V4HOz+hhBnuOHewFznHmN31LodyBKy65gCgbEgAAAAA==", + "u": "", + "e": 1 + }, + { + "h": 360, + "w": 360, + "id": "image_1", + "p": "data:image/webp;base64,UklGRloGAABXRUJQVlA4WAoAAAAQAAAAZwEAZwEAQUxQSDMAAAABFyAQSPx1G2CNiIgFM23bdMxGomM21vkT0f8JuGJ/wIdr9Z/+03/6T//pP6mh/wJ+xX4AVlA4IAAGAACQQgCdASpoAWgBPm02l0mkIqyhIXIYaZANiWlu8YA5yQaTuNa1r5VhLp9KKeWDB8L7uxNBVo+FH1RwDQO610R9a6I+tdEfWbfD/CvafIruQQY7v15jwX3y9dCs5cbq9eLPpPhfP4QcyTdaz+pGe3p3hLApGPkmq9eZPdMKPrXaf6XttrovVyj/GRoIrugNuW0A/YB/oAM1Rb7zoT8uo4iJ/swGi/ZgptRx1JlxV7FI7IbQP2id0NrAQ5ar5Vh7R9IpJDE/ID/LKInnqQRfi0nPg+YSQixqzO/vOjUHNebOLNFJJOxK3OVZ2oHp5xVf3nQ3oIG9G3YwSEg/vN3oBJXpdG3YwUr6LrvGtbnQA9ZSIXG/vN3iM72R8TsJjRN+cNWJV+YOglLfWhP7LIvglYZGnrYM0NR7yYwVHHB6Bgg06WZOODm7GCCB47iDuvpZsckI+XkxSdtYFsaTsqeiXpeJ/DRN9rCLAc7peLPzyhQHtkwP2zWisuln5ekWfq0+DBHPxSsoKTjYYWu8ImirQQxMQzoUlj0tD3zTCoOu2W6T2nuZjIEUTN8P42Y9BgT/SgDIB5Zi20CIeOGiiehuzEme2M9mglwh5YOfH0xLQMrwrHxhFTDjEVhBrPZ4mbvoMGAGTNJdJpHipEHZwphu93a34zpBeMkNMzNoObdL+SNTZ50arss0p+sYueR5HSzIoR9SCyPA1vV+qAgCe3ZAAP7zEbXP70suqJr6Q2agd8yksp2+xoAheICq4YLQnQXz9D7cAEpoi0NDE1Sib836XSAyINFSo2EgDfLtCAin9KejjwPK/7A5Um2IwwwF/SLA6B4fChLwv/cKkAMbbe6uiNdT0fghEquixkrSeSpegh1+5bNQeV5AAzRJlAT9tPlQtkmpLYhU9aHRn2PiOcY06JjY+ZzwZgs/LPaiNAFfUFHmIlEBKrtL4oboPpfS8f6xGIcNIsvCbsSaqfhmpGQ3MDqdGpuA9HOPGjx3kSMKFC3c9D9uY3T0x3ISIabR7kF/363Nu1WO4MtztQH4NptPwKNcGIDm2J4V43YEwJ6IDkjnUeREnDq8GoId2qEe6Q13QJ/7w+lZL6O0jTZsSnLxYVZ6S7hHrIexRSxJCPj1j93Rl8oDHtIVJhgIBCSl03qbwWAycr8UUJrqZzdzHJr5rGMcx6R9c441oamqbAI4RBHfgDmp4LMJYrFwyWBfd1Ws/aivmhzKKY6yFiKy60PHCkSN6F0DN6lObgRAV0QvELtKytI5lfhbgaVMBWPBbwhTeDuviMmkB6rW+ffYa7Qmj4hS3eCRjL0rEl6NP/Q6YbMuUC8ToTn39HE+pk+bnSow6cwBMq+2x+uUi+tboAM45PU2JLCLaqP8UEhOVmMTY2hIvAZna7CBNackxLCUeCRlxS/y09R2qCN8dO3aiysE2YrevOQq7SmKuawTgz0zUcXxiA0mEv24N+flgWUbfTccr36ZlIpk500Ddh6Qv/5RftmWqzUa1kCSrI+Lo8wQyWLU9bIbl/GQg0m0B90mRCO/Dc4o3KJudmobinVsT/oI7ViNtLJJRK+h2nX2M9Lr6AgIpOBw09F58Rgo935jlwdTa+G+ren8W0N0yrrny57s2IjnGWJ2XGNnKfpl/0T9nH08HSyO2VMrfkqsl7FxBKqcvrzH2P0+4nxrdanmw0sx17st6Z5fJofv6xKWy7NqURBUO1t1FR8/H8U+BiS1H39Xsz6sjyFJDpT/zjNxgCd5XOgjykXJHjZzVtdpQ29rNp/70VpusMnNkhTuZREGksTJOBa1KiJIZ2d/GUJ90y9L9HrCySPgWxIVCEwjNly3dapD2tLF8WbBADfaXrEaYiobjCWcgHg8zMQJ+94wYYSi8ZT2qobCGccF9XKcQqQse1bfakm56RrY0ZET7n3PoGdF4DFWcXgsILF62yjej9vwFydDr1Vv/UrjQ3pWApS3cvQCi9lo8Du7ZNj4k2WlW2ho4dXdzQZ0Evw9rk+yvPhaYtW/FNa7xfiHY0e+5ISBN0XvMcMCMI3bjpSsx+kgBVQAAAA=", + "u": "", + "e": 1 + } + ], + "layers": [ + { + "ind": 1, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.01] }, + "t": 204, + "s": [100] + }, + { "t": 212, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [670.5, 217.113, 0] }, + "a": { "a": 0, "k": [-12.659, -77.78, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.01, 0.01, 0] }, + "t": 188, + "s": [0, 0, 100] + }, + { "t": 214, "s": [-169, -169, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.001, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-117.867, -77.78], + [-117.869, -77.798] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3237.255, 594.679] }, + "e": { "a": 0, "k": [-3229.909, 588.317] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.007, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-227.489, -86.518], + [-227.5, -86.536] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4452.855, 3020.158] }, + "e": { "a": 0, "k": [-4447.016, 3014.084] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.004, -0.008], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-177.487, -57.687], + [-177.493, -57.699] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2000.729, 2547.382] }, + "e": { "a": 0, "k": [-1994.751, 2539.412] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-155.223, -88.368], + [-153.534, -86.679], + [-151.845, -88.368], + [-153.534, -90.057] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8938.334, 1667.183] }, + "e": { "a": 0, "k": [-8940.624, 1664.55] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-202.862, -61.734], + [-201.173, -60.045], + [-199.484, -61.734], + [-201.173, -63.423] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3666.762, 3997.713] }, + "e": { "a": 0, "k": [-3674.225, 3993.584] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-240.759, -95.843], + [-239.07, -94.154], + [-237.381, -95.843], + [-239.07, -97.532] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11669.648, 5206.621] }, + "e": { "a": 0, "k": [-11666.799, 5205.273] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-105.929, -66.255], + [-104.239, -64.565], + [-102.55, -66.255], + [-104.239, -67.944] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3219.941, 616.203] }, + "e": { "a": 0, "k": [-3213.974, 611.035] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-67.447, -93.859], + [-65.758, -92.17], + [-64.069, -93.859], + [-65.758, -95.548] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7170.459, 869.213] }, + "e": { "a": 0, "k": [34325.324, -35065.555] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-201.662, -30.991], + [-199.973, -29.302], + [-198.284, -30.991], + [-199.973, -32.681] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-1846.375, 4724.112] }, + "e": { "a": 0, "k": [-1837.561, 4725.221] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-194.635, -85.281], + [-192.945, -83.592], + [-191.256, -85.281], + [-192.945, -86.97] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4397.895, 3038.649] }, + "e": { "a": 0, "k": [-4393.178, 3033.743] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-198.264, -86.955], + [-196.575, -85.266], + [-194.886, -86.955], + [-196.575, -88.644] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7940.108, 4960.108] }, + "e": { "a": 0, "k": [24858.941, -29151.176] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-202.012, -130.423], + [-200.323, -128.734], + [-198.634, -130.423], + [-200.323, -132.112] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11749.986, 1811.607] }, + "e": { "a": 0, "k": [-11750.656, 1808.806] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-44.275, -69.1], + [-42.586, -67.41], + [-40.897, -69.1], + [-42.586, -70.789] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4397.266, -1553.728] }, + "e": { "a": 0, "k": [-4391.215, -1555.049] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-101.081, -38.089], + [-99.391, -36.4], + [-97.702, -38.089], + [-99.391, -39.778] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3053.25, 1704.212] }, + "e": { "a": 0, "k": [-3045.192, 1705.85] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-176.529, -39.649], + [-174.84, -37.96], + [-173.151, -39.649], + [-174.84, -41.338] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8560.864, 6447.319] }, + "e": { "a": 0, "k": [-8563.908, 6445.819] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-131.493, -54.997], + [-129.804, -53.308], + [-128.115, -54.997], + [-129.804, -56.687] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-1919.011, 2565.576] }, + "e": { "a": 0, "k": [-1912.456, 2556.836] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-151.339, -59.896], + [-149.65, -58.207], + [-147.961, -59.896], + [-149.65, -61.585] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5602.208, 4256.325] }, + "e": { "a": 0, "k": [39976.312, -56511.41] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-92.682, -87.871], + [-90.992, -86.182], + [-89.303, -87.871], + [-90.992, -89.56] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2039.788, 448.087] }, + "e": { "a": 0, "k": [-2047.43, 444.556] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-195.754, -16.99], + [-194.065, -15.301], + [-192.376, -16.99], + [-194.065, -18.679] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-6037.871, 9089.528] }, + "e": { "a": 0, "k": [-6041.485, 9088.308] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-122.182, -114.097], + [-120.493, -112.408], + [-118.803, -114.097], + [-120.493, -115.786] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7514.889, -387.77] }, + "e": { "a": 0, "k": [-7517.232, -390.831] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-224.956, -61.446], + [-223.266, -59.757], + [-221.577, -61.446], + [-223.266, -63.135] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5496.647, 5121.727] }, + "e": { "a": 0, "k": [-5491.776, 5122.834] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-148.955, -17.271], + [-147.266, -15.582], + [-145.577, -17.271], + [-147.266, -18.961] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5394.737, 7263.568] }, + "e": { "a": 0, "k": [-5398.312, 7260.215] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-188.381, -107.867], + [-186.691, -106.178], + [-185.002, -107.867], + [-186.691, -109.556] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5644.582, 2271.258] }, + "e": { "a": 0, "k": [-5639.864, 2273.421] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-82.758, -142.665], + [-81.069, -140.976], + [-79.38, -142.665], + [-81.069, -144.355] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7841.65, -2724.186] }, + "e": { "a": 0, "k": [-7840.434, -2720.782] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-221.801, -107.244], + [-220.111, -105.555], + [-218.422, -107.244], + [-220.111, -108.933] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11518.693, 3765.188] }, + "e": { "a": 0, "k": [-11520.041, 3762.598] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-225.186, -26.033], + [-223.497, -24.344], + [-221.808, -26.033], + [-223.497, -27.722] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-14824.891, 9760.18] }, + "e": { "a": 0, "k": [-14822.847, 9758.905] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 188, + "op": 212, + "st": 187.999983728031 + }, + { + "ind": 2, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 199, + "s": [100] + }, + { "t": 207, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [670.5, 217.113, 0] }, + "a": { "a": 0, "k": [-12.659, -77.78, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.01, 0.01, 0] }, + "t": 183, + "s": [0, 0, 100] + }, + { "t": 209, "s": [-169, -169, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-0.255, 2.726], + [-0.851, 1.957], + [0, 0], + [0.111, 2.09], + [1.785, 0.52], + [0, 0], + [-0.155, -2.928], + [0.891, -2.065], + [0, 0], + [0.177, -1.9], + [-1.385, -1.744] + ], + "o": [ + [-1.702, -2.145], + [0.207, -2.219], + [0, 0], + [0.838, -1.943], + [-0.094, -1.767], + [0, 0], + [2.403, 0.701], + [0.134, 2.52], + [0, 0], + [-0.824, 1.895], + [-0.207, 2.217], + [0, 0] + ], + "v": [ + [-184.21, -21.208], + [-186.487, -28.871], + [-184.55, -35.07], + [-184.312, -35.621], + [-182.777, -41.725], + [-185.683, -46.074], + [-185.124, -47.994], + [-180.779, -41.831], + [-182.475, -34.83], + [-182.716, -34.272], + [-184.496, -28.685], + [-182.643, -22.452] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-187.093, -35.372] }, + "e": { "a": 0, "k": [-181.809, -34.958] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, + 0.545, 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, + 0.325, 1, 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, + 0.367, 0.865, 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, + 0.865, 0.95, 1, 0.545, 0.969, 0.975, 1, 0.355, 0.857, 1, + 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0.876, -0.88], + [-0.026, -0.028], + [-1.162, -0.031], + [-0.015, 0], + [-0.076, 0.734], + [0.175, 0.201], + [0.508, 0.018] + ], + "o": [ + [0.025, 0.028], + [0.485, 0.523], + [0.014, 0.001], + [0.76, 0], + [0.04, -0.387], + [-0.348, -0.401], + [-0.892, -0.042] + ], + "v": [ + [-123.232, -99.447], + [-123.156, -99.363], + [-120.521, -97.926], + [-120.477, -97.925], + [-118.757, -99.19], + [-119.092, -100.099], + [-120.48, -100.779] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [0, 0], + [0.309, 2.833], + [-1.339, 1.961], + [-0.711, 2.559], + [-3.159, 0.911], + [0, 0], + [0.7, -2.515], + [-0.839, -1.693], + [-1.38, -0.061], + [-0.71, -0.816], + [0.089, -0.859], + [1.918, 0.026], + [1.171, 1.191], + [-0.183, -1.678], + [-1.872, -1.305] + ], + "o": [ + [-2.339, -1.63], + [-0.258, -2.365], + [-1.372, -2.27], + [0.881, -3.168], + [0, 0], + [-2.507, 0.723], + [-0.507, 1.822], + [1.217, -1.114], + [1.06, 0.037], + [0.615, 0.707], + [-0.18, 1.737], + [-1.339, -0.037], + [-0.834, 1.463], + [0.247, 2.268], + [0, 0] + ], + "v": [ + [-123.242, -85.618], + [-127.471, -92.746], + [-125.758, -99.513], + [-126.852, -107.186], + [-120.201, -113.9], + [-119.648, -111.978], + [-124.925, -106.65], + [-124.368, -101.13], + [-120.409, -102.777], + [-117.583, -101.413], + [-116.767, -98.983], + [-120.575, -95.926], + [-124.455, -97.828], + [-125.482, -92.962], + [-122.098, -87.258] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-116.093, -92.372] }, + "e": { "a": 0, "k": [-129.199, -108.482] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, + 0.05, 1, 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, + 0.831, 0.031, 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, + 0.031, 0.208, 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, + 0.031, 0.153, 0.9, 0.855, 0.031, 0.18, 0.95, 1, 0.031, + 0.208, 0.975, 0.843, 0.031, 0.178, 1, 0.686, 0.031, + 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-7.444, -7.938], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-7.444, -7.938] + ], + "v": [ + [-185.853, -91.266], + [-189.241, -88.562], + [-177.406, -84.06], + [-174.018, -86.763] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8971.952, 1652.493] }, + "e": { "a": 0, "k": [-8979.41, 1643.917] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-2.869, -1.005], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-2.868, -1.005] + ], + "v": [ + [-233.817, -62.371], + [-235.778, -60.325], + [-230.973, -56.931], + [-229.012, -58.977] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3721.46, 3988.143] }, + "e": { "a": 0, "k": [-3734.425, 3980.971] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [1.566, 1.071], + [0.019, 0.174], + [0, 0], + [-1.566, -1.071], + [0, 0], + [0, 0] + ], + "o": [ + [-1.466, -1.003], + [0, 0], + [0, 0], + [1.566, 1.071], + [0, 0], + [0, 0] + ], + "v": [ + [-116.184, -75.215], + [-117.867, -77.78], + [-117.709, -76.206], + [-116.025, -73.623], + [-112.434, -73.645], + [-112.594, -75.237] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3236, 599.236] }, + "e": { "a": 0, "k": [-3226.948, 591.397] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.001, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-117.867, -77.78], + [-117.869, -77.798] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3237.255, 594.679] }, + "e": { "a": 0, "k": [-3229.909, 588.317] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [2.168, 0.379], + [0.104, 0.174], + [0, 0], + [-2.168, -0.379], + [0, 0], + [0, 0] + ], + "o": [ + [-2.029, -0.354], + [0, 0], + [0, 0], + [2.168, 0.378], + [0, 0], + [0, 0] + ], + "v": [ + [-224.48, -84.618], + [-227.489, -86.518], + [-226.566, -84.932], + [-223.546, -83.014], + [-219.765, -84.763], + [-220.699, -86.367] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4449.623, 3025.71] }, + "e": { "a": 0, "k": [-4441.324, 3017.079] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.007, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-227.489, -86.518], + [-227.5, -86.536] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4452.855, 3020.158] }, + "e": { "a": 0, "k": [-4447.016, 3014.084] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.362, -8.204], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-0.362, -8.204] + ], + "v": [ + [-232.294, -137.926], + [-235.249, -136.164], + [-230.684, -127.77], + [-227.729, -129.532] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11780.835, 1786.158] }, + "e": { "a": 0, "k": [-11782.748, 1778.151] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-3.674, -1.362], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-3.674, -1.362] + ], + "v": [ + [-65.225, -70.928], + [-66.185, -67.936], + [-61.575, -64.071], + [-60.615, -67.064] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4426.584, -1555.175] }, + "e": { "a": 0, "k": [-4415.788, -1557.532] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.093, -2.353], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-0.093, -2.353] + ], + "v": [ + [-124.507, -37.024], + [-125.688, -35.667], + [-123.36, -31.884], + [-122.178, -33.241] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3094.541, 1703.104] }, + "e": { "a": 0, "k": [-3084.259, 1705.195] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0.043, -8.269], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0.043, -8.269] + ], + "v": [ + [-201.936, -160.227], + [-206.293, -155.654], + [-198.723, -142.019], + [-194.365, -146.592] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-15943.633, -862.052] }, + "e": { "a": 0, "k": [0, 0] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-10.357, -4.242], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-10.357, -4.242] + ], + "v": [ + [-209.824, -36.836], + [-211.837, -32.859], + [-198.842, -33.709], + [-196.83, -37.686] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8607.806, 6429.64] }, + "e": { "a": 0, "k": [-8617.999, 6424.614] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [1.334, 0.318], + [0.058, 0.112], + [0, 0], + [-1.334, -0.319], + [0, 0], + [0, 0] + ], + "o": [ + [-1.249, -0.298], + [0, 0], + [0, 0], + [1.334, 0.318], + [0, 0], + [0, 0] + ], + "v": [ + [-175.688, -56.39], + [-177.487, -57.687], + [-176.974, -56.665], + [-175.169, -55.357], + [-172.751, -56.299], + [-173.27, -57.333] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-1998.651, 2550.404] }, + "e": { "a": 0, "k": [-1991.466, 2540.824] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.004, -0.008], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-177.487, -57.687], + [-177.493, -57.699] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2000.729, 2547.382] }, + "e": { "a": 0, "k": [-1994.751, 2539.412] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.705, -4.178], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-1.705, -4.178] + ], + "v": [ + [-101.33, -102.38], + [-103.043, -101.836], + [-99.128, -98.337], + [-97.415, -98.882] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2052.683, 426.86] }, + "e": { "a": 0, "k": [-2063, 422.093] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-7.212, -7.374], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-7.212, -7.374] + ], + "v": [ + [-229.828, -15.67], + [-231.117, -11.545], + [-219.812, -7.515], + [-218.523, -11.639] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-6097.194, 9072.061] }, + "e": { "a": 0, "k": [-6110.168, 9067.679] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [4.929, 3.373], + [0.061, 0.547], + [0, 0], + [-4.929, -3.373], + [0, 0], + [0, 0] + ], + "o": [ + [-4.614, -3.157], + [0, 0], + [0, 0], + [4.929, 3.373], + [0, 0], + [0, 0] + ], + "v": [ + [-158.956, -153.487], + [-164.252, -161.562], + [-163.756, -156.607], + [-158.455, -148.475], + [-147.15, -148.541], + [-147.652, -153.553] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-14695.854, -3135.528] }, + "e": { "a": 0, "k": [0, 0] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-5.049, -8.46], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-5.049, -8.46] + ], + "v": [ + [-149.458, -119.326], + [-152.977, -117.59], + [-143.38, -111.32], + [-139.861, -113.056] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7544.715, -397.66] }, + "e": { "a": 0, "k": [-7551.624, -406.684] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.881, -1.369], + [0, 0], + [0, 0], + [1.881, 1.369], + [0.217, 1.814] + ], + "o": [ + [0.217, 1.814], + [1.881, 1.369], + [0, 0], + [0, 0], + [-1.881, -1.369], + [0, 0] + ], + "v": [ + [-178.459, -14.564], + [-175.629, -10.641], + [-173.379, -7.721], + [-171.441, -9.977], + [-173.691, -12.896], + [-176.521, -16.819] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5447.354, 7254.135] }, + "e": { "a": 0, "k": [-5456.57, 7245.49] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [2.95, 2.365], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [2.95, 2.366], + [0, 0], + [0, 0] + ], + "v": [ + [-219.121, -110.768], + [-221.272, -108.465], + [-214.804, -107.04], + [-212.653, -109.342] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5691.092, 2254.831] }, + "e": { "a": 0, "k": [-5682.797, 2258.633] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.681, -4.802], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-0.681, -4.803] + ], + "v": [ + [-103.67, -152.387], + [-108.748, -150.7], + [-105.147, -139.401], + [-100.069, -141.087] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7867.381, -2738.78] }, + "e": { "a": 0, "k": [-7863.051, -2726.66] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0] + ], + "v": [ + [-176.529, -39.649], + [-174.84, -37.96] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8560.864, 6447.319] }, + "e": { "a": 0, "k": [-8563.908, 6445.819] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-122.182, -114.097], + [-120.493, -112.408], + [-118.803, -114.097], + [-120.493, -115.786] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7514.889, -387.77] }, + "e": { "a": 0, "k": [-7517.232, -390.831] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-221.801, -107.244], + [-220.111, -105.555], + [-218.422, -107.244], + [-220.111, -108.933] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11518.693, 3765.188] }, + "e": { "a": 0, "k": [-11520.041, 3762.598] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 207, + "st": 182.999984160797 + }, + { + "ind": 3, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 199, + "s": [100] + }, + { "t": 207, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [486.5, 217.113, 0] }, + "a": { "a": 0, "k": [-12.659, -77.78, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.013, 0.013, 0] }, + "t": 183, + "s": [0, 0, 100] + }, + { "t": 209, "s": [169, 169, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-0.255, 2.726], + [-0.851, 1.957], + [0, 0], + [0.111, 2.09], + [1.785, 0.52], + [0, 0], + [-0.155, -2.928], + [0.891, -2.065], + [0, 0], + [0.177, -1.9], + [-1.385, -1.744] + ], + "o": [ + [-1.702, -2.145], + [0.207, -2.219], + [0, 0], + [0.838, -1.943], + [-0.094, -1.767], + [0, 0], + [2.403, 0.701], + [0.134, 2.52], + [0, 0], + [-0.824, 1.895], + [-0.207, 2.217], + [0, 0] + ], + "v": [ + [-184.21, -21.208], + [-186.487, -28.871], + [-184.55, -35.07], + [-184.312, -35.621], + [-182.777, -41.725], + [-185.683, -46.074], + [-185.124, -47.994], + [-180.779, -41.831], + [-182.475, -34.83], + [-182.716, -34.272], + [-184.496, -28.685], + [-182.643, -22.452] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-187.093, -35.372] }, + "e": { "a": 0, "k": [-181.809, -34.958] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, + 0.545, 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, + 0.325, 1, 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, + 0.367, 0.865, 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, + 0.865, 0.95, 1, 0.545, 0.969, 0.975, 1, 0.355, 0.857, 1, + 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0.876, -0.88], + [-0.026, -0.028], + [-1.162, -0.031], + [-0.015, 0], + [-0.076, 0.734], + [0.175, 0.201], + [0.508, 0.018] + ], + "o": [ + [0.025, 0.028], + [0.485, 0.523], + [0.014, 0.001], + [0.76, 0], + [0.04, -0.387], + [-0.348, -0.401], + [-0.892, -0.042] + ], + "v": [ + [-123.232, -99.447], + [-123.156, -99.363], + [-120.521, -97.926], + [-120.477, -97.925], + [-118.757, -99.19], + [-119.092, -100.099], + [-120.48, -100.779] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [0, 0], + [0.309, 2.833], + [-1.339, 1.961], + [-0.711, 2.559], + [-3.159, 0.911], + [0, 0], + [0.7, -2.515], + [-0.839, -1.693], + [-1.38, -0.061], + [-0.71, -0.816], + [0.089, -0.859], + [1.918, 0.026], + [1.171, 1.191], + [-0.183, -1.678], + [-1.872, -1.305] + ], + "o": [ + [-2.339, -1.63], + [-0.258, -2.365], + [-1.372, -2.27], + [0.881, -3.168], + [0, 0], + [-2.507, 0.723], + [-0.507, 1.822], + [1.217, -1.114], + [1.06, 0.037], + [0.615, 0.707], + [-0.18, 1.737], + [-1.339, -0.037], + [-0.834, 1.463], + [0.247, 2.268], + [0, 0] + ], + "v": [ + [-123.242, -85.618], + [-127.471, -92.746], + [-125.758, -99.513], + [-126.852, -107.186], + [-120.201, -113.9], + [-119.648, -111.978], + [-124.925, -106.65], + [-124.368, -101.13], + [-120.409, -102.777], + [-117.583, -101.413], + [-116.767, -98.983], + [-120.575, -95.926], + [-124.455, -97.828], + [-125.482, -92.962], + [-122.098, -87.258] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-116.093, -92.372] }, + "e": { "a": 0, "k": [-129.199, -108.482] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, + 0.05, 1, 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, + 0.831, 0.031, 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, + 0.031, 0.208, 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, + 0.031, 0.153, 0.9, 0.855, 0.031, 0.18, 0.95, 1, 0.031, + 0.208, 0.975, 0.843, 0.031, 0.178, 1, 0.686, 0.031, + 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-7.444, -7.938], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-7.444, -7.938] + ], + "v": [ + [-185.853, -91.266], + [-189.241, -88.562], + [-177.406, -84.06], + [-174.018, -86.763] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8971.952, 1652.493] }, + "e": { "a": 0, "k": [-8979.41, 1643.917] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-2.869, -1.005], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-2.868, -1.005] + ], + "v": [ + [-233.817, -62.371], + [-235.778, -60.325], + [-230.973, -56.931], + [-229.012, -58.977] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3721.46, 3988.143] }, + "e": { "a": 0, "k": [-3734.425, 3980.971] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [1.566, 1.071], + [0.019, 0.174], + [0, 0], + [-1.566, -1.071], + [0, 0], + [0, 0] + ], + "o": [ + [-1.466, -1.003], + [0, 0], + [0, 0], + [1.566, 1.071], + [0, 0], + [0, 0] + ], + "v": [ + [-116.184, -75.215], + [-117.867, -77.78], + [-117.709, -76.206], + [-116.025, -73.623], + [-112.434, -73.645], + [-112.594, -75.237] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3236, 599.236] }, + "e": { "a": 0, "k": [-3226.948, 591.397] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.001, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-117.867, -77.78], + [-117.869, -77.798] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3237.255, 594.679] }, + "e": { "a": 0, "k": [-3229.909, 588.317] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [2.168, 0.379], + [0.104, 0.174], + [0, 0], + [-2.168, -0.379], + [0, 0], + [0, 0] + ], + "o": [ + [-2.029, -0.354], + [0, 0], + [0, 0], + [2.168, 0.378], + [0, 0], + [0, 0] + ], + "v": [ + [-224.48, -84.618], + [-227.489, -86.518], + [-226.566, -84.932], + [-223.546, -83.014], + [-219.765, -84.763], + [-220.699, -86.367] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4449.623, 3025.71] }, + "e": { "a": 0, "k": [-4441.324, 3017.079] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.007, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-227.489, -86.518], + [-227.5, -86.536] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4452.855, 3020.158] }, + "e": { "a": 0, "k": [-4447.016, 3014.084] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.362, -8.204], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-0.362, -8.204] + ], + "v": [ + [-232.294, -137.926], + [-235.249, -136.164], + [-230.684, -127.77], + [-227.729, -129.532] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11780.835, 1786.158] }, + "e": { "a": 0, "k": [-11782.748, 1778.151] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-3.674, -1.362], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-3.674, -1.362] + ], + "v": [ + [-65.225, -70.928], + [-66.185, -67.936], + [-61.575, -64.071], + [-60.615, -67.064] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4426.584, -1555.175] }, + "e": { "a": 0, "k": [-4415.788, -1557.532] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.093, -2.353], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-0.093, -2.353] + ], + "v": [ + [-124.507, -37.024], + [-125.688, -35.667], + [-123.36, -31.884], + [-122.178, -33.241] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3094.541, 1703.104] }, + "e": { "a": 0, "k": [-3084.259, 1705.195] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0.043, -8.269], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0.043, -8.269] + ], + "v": [ + [-201.936, -160.227], + [-206.293, -155.654], + [-198.723, -142.019], + [-194.365, -146.592] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-15943.633, -862.052] }, + "e": { "a": 0, "k": [0, 0] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-10.357, -4.242], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-10.357, -4.242] + ], + "v": [ + [-209.824, -36.836], + [-211.837, -32.859], + [-198.842, -33.709], + [-196.83, -37.686] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8607.806, 6429.64] }, + "e": { "a": 0, "k": [-8617.999, 6424.614] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [1.334, 0.318], + [0.058, 0.112], + [0, 0], + [-1.334, -0.319], + [0, 0], + [0, 0] + ], + "o": [ + [-1.249, -0.298], + [0, 0], + [0, 0], + [1.334, 0.318], + [0, 0], + [0, 0] + ], + "v": [ + [-175.688, -56.39], + [-177.487, -57.687], + [-176.974, -56.665], + [-175.169, -55.357], + [-172.751, -56.299], + [-173.27, -57.333] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-1998.651, 2550.404] }, + "e": { "a": 0, "k": [-1991.466, 2540.824] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.004, -0.008], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-177.487, -57.687], + [-177.493, -57.699] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2000.729, 2547.382] }, + "e": { "a": 0, "k": [-1994.751, 2539.412] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.705, -4.178], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-1.705, -4.178] + ], + "v": [ + [-101.33, -102.38], + [-103.043, -101.836], + [-99.128, -98.337], + [-97.415, -98.882] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2052.683, 426.86] }, + "e": { "a": 0, "k": [-2063, 422.093] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-7.212, -7.374], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-7.212, -7.374] + ], + "v": [ + [-229.828, -15.67], + [-231.117, -11.545], + [-219.812, -7.515], + [-218.523, -11.639] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-6097.194, 9072.061] }, + "e": { "a": 0, "k": [-6110.168, 9067.679] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [4.929, 3.373], + [0.061, 0.547], + [0, 0], + [-4.929, -3.373], + [0, 0], + [0, 0] + ], + "o": [ + [-4.614, -3.157], + [0, 0], + [0, 0], + [4.929, 3.373], + [0, 0], + [0, 0] + ], + "v": [ + [-158.956, -153.487], + [-164.252, -161.562], + [-163.756, -156.607], + [-158.455, -148.475], + [-147.15, -148.541], + [-147.652, -153.553] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-14695.854, -3135.528] }, + "e": { "a": 0, "k": [0, 0] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-5.049, -8.46], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-5.049, -8.46] + ], + "v": [ + [-149.458, -119.326], + [-152.977, -117.59], + [-143.38, -111.32], + [-139.861, -113.056] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7544.715, -397.66] }, + "e": { "a": 0, "k": [-7551.624, -406.684] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.881, -1.369], + [0, 0], + [0, 0], + [1.881, 1.369], + [0.217, 1.814] + ], + "o": [ + [0.217, 1.814], + [1.881, 1.369], + [0, 0], + [0, 0], + [-1.881, -1.369], + [0, 0] + ], + "v": [ + [-178.459, -14.564], + [-175.629, -10.641], + [-173.379, -7.721], + [-171.441, -9.977], + [-173.691, -12.896], + [-176.521, -16.819] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5447.354, 7254.135] }, + "e": { "a": 0, "k": [-5456.57, 7245.49] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [2.95, 2.365], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [2.95, 2.366], + [0, 0], + [0, 0] + ], + "v": [ + [-219.121, -110.768], + [-221.272, -108.465], + [-214.804, -107.04], + [-212.653, -109.342] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5691.092, 2254.831] }, + "e": { "a": 0, "k": [-5682.797, 2258.633] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.681, -4.802], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-0.681, -4.803] + ], + "v": [ + [-103.67, -152.387], + [-108.748, -150.7], + [-105.147, -139.401], + [-100.069, -141.087] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7867.381, -2738.78] }, + "e": { "a": 0, "k": [-7863.051, -2726.66] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0] + ], + "v": [ + [-176.529, -39.649], + [-174.84, -37.96] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8560.864, 6447.319] }, + "e": { "a": 0, "k": [-8563.908, 6445.819] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-122.182, -114.097], + [-120.493, -112.408], + [-118.803, -114.097], + [-120.493, -115.786] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7514.889, -387.77] }, + "e": { "a": 0, "k": [-7517.232, -390.831] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-221.801, -107.244], + [-220.111, -105.555], + [-218.422, -107.244], + [-220.111, -108.933] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11518.693, 3765.188] }, + "e": { "a": 0, "k": [-11520.041, 3762.598] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 207, + "st": 182.999984160797 + }, + { + "ind": 4, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 204, + "s": [100] + }, + { "t": 212, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [486.5, 217.113, 0] }, + "a": { "a": 0, "k": [-12.659, -77.78, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.013, 0.013, 0] }, + "t": 188, + "s": [0, 0, 100] + }, + { "t": 214, "s": [169, 169, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.001, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-117.867, -77.78], + [-117.869, -77.798] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3237.255, 594.679] }, + "e": { "a": 0, "k": [-3229.909, 588.317] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.007, -0.012], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-227.489, -86.518], + [-227.5, -86.536] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4452.855, 3020.158] }, + "e": { "a": 0, "k": [-4447.016, 3014.084] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-0.004, -0.008], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-177.487, -57.687], + [-177.493, -57.699] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2000.729, 2547.382] }, + "e": { "a": 0, "k": [-1994.751, 2539.412] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-155.223, -88.368], + [-153.534, -86.679], + [-151.845, -88.368], + [-153.534, -90.057] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8938.334, 1667.183] }, + "e": { "a": 0, "k": [-8940.624, 1664.55] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-202.862, -61.734], + [-201.173, -60.045], + [-199.484, -61.734], + [-201.173, -63.423] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3666.762, 3997.713] }, + "e": { "a": 0, "k": [-3674.225, 3993.584] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-240.759, -95.843], + [-239.07, -94.154], + [-237.381, -95.843], + [-239.07, -97.532] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11669.648, 5206.621] }, + "e": { "a": 0, "k": [-11666.799, 5205.273] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-105.929, -66.255], + [-104.239, -64.565], + [-102.55, -66.255], + [-104.239, -67.944] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3219.941, 616.203] }, + "e": { "a": 0, "k": [-3213.974, 611.035] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-67.447, -93.859], + [-65.758, -92.17], + [-64.069, -93.859], + [-65.758, -95.548] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7170.459, 869.213] }, + "e": { "a": 0, "k": [34325.324, -35065.555] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-201.662, -30.991], + [-199.973, -29.302], + [-198.284, -30.991], + [-199.973, -32.681] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-1846.375, 4724.112] }, + "e": { "a": 0, "k": [-1837.561, 4725.221] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-194.635, -85.281], + [-192.945, -83.592], + [-191.256, -85.281], + [-192.945, -86.97] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4397.895, 3038.649] }, + "e": { "a": 0, "k": [-4393.178, 3033.743] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-198.264, -86.955], + [-196.575, -85.266], + [-194.886, -86.955], + [-196.575, -88.644] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7940.108, 4960.108] }, + "e": { "a": 0, "k": [24858.941, -29151.176] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-202.012, -130.423], + [-200.323, -128.734], + [-198.634, -130.423], + [-200.323, -132.112] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11749.986, 1811.607] }, + "e": { "a": 0, "k": [-11750.656, 1808.806] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.831, 0.031, 0.176, 0.038, 0.916, 0.031, 0.192, 0.05, 1, + 0.031, 0.208, 0.1, 0.916, 0.031, 0.192, 0.15, 0.831, 0.031, + 0.176, 0.325, 0.916, 0.031, 0.192, 0.5, 1, 0.031, 0.208, + 0.675, 0.855, 0.031, 0.18, 0.85, 0.71, 0.031, 0.153, 0.9, + 0.855, 0.031, 0.18, 0.95, 1, 0.031, 0.208, 0.975, 0.843, + 0.031, 0.178, 1, 0.686, 0.031, 0.149 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-44.275, -69.1], + [-42.586, -67.41], + [-40.897, -69.1], + [-42.586, -70.789] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-4397.266, -1553.728] }, + "e": { "a": 0, "k": [-4391.215, -1555.049] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-101.081, -38.089], + [-99.391, -36.4], + [-97.702, -38.089], + [-99.391, -39.778] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-3053.25, 1704.212] }, + "e": { "a": 0, "k": [-3045.192, 1705.85] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-176.529, -39.649], + [-174.84, -37.96], + [-173.151, -39.649], + [-174.84, -41.338] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-8560.864, 6447.319] }, + "e": { "a": 0, "k": [-8563.908, 6445.819] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.694, 0.008, 0.038, 0, 0.818, 0.02, 0.05, 0, 0.941, + 0.031, 0.1, 0, 0.818, 0.02, 0.15, 0, 0.694, 0.008, 0.325, 0, + 0.818, 0.02, 0.5, 0, 0.941, 0.031, 0.675, 0, 0.767, 0.016, + 0.85, 0, 0.592, 0, 0.9, 0, 0.767, 0.016, 0.95, 0, 0.941, + 0.031, 0.975, 0, 0.757, 0.016, 1, 0, 0.573, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-131.493, -54.997], + [-129.804, -53.308], + [-128.115, -54.997], + [-129.804, -56.687] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-1919.011, 2565.576] }, + "e": { "a": 0, "k": [-1912.456, 2556.836] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-151.339, -59.896], + [-149.65, -58.207], + [-147.961, -59.896], + [-149.65, -61.585] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5602.208, 4256.325] }, + "e": { "a": 0, "k": [39976.312, -56511.41] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-92.682, -87.871], + [-90.992, -86.182], + [-89.303, -87.871], + [-90.992, -89.56] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-2039.788, 448.087] }, + "e": { "a": 0, "k": [-2047.43, 444.556] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-195.754, -16.99], + [-194.065, -15.301], + [-192.376, -16.99], + [-194.065, -18.679] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-6037.871, 9089.528] }, + "e": { "a": 0, "k": [-6041.485, 9088.308] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.29, 0.82, 0.038, 1, 0.418, 0.894, 0.05, 1, 0.545, + 0.969, 0.1, 1, 0.418, 0.894, 0.15, 1, 0.29, 0.82, 0.325, 1, + 0.418, 0.894, 0.5, 1, 0.545, 0.969, 0.675, 1, 0.367, 0.865, + 0.85, 1, 0.188, 0.761, 0.9, 1, 0.367, 0.865, 0.95, 1, 0.545, + 0.969, 0.975, 1, 0.355, 0.857, 1, 1, 0.165, 0.745 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-122.182, -114.097], + [-120.493, -112.408], + [-118.803, -114.097], + [-120.493, -115.786] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7514.889, -387.77] }, + "e": { "a": 0, "k": [-7517.232, -390.831] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 1, 0.647, 0, 0.038, 1, 0.724, 0.016, 0.05, 1, 0.8, 0.031, + 0.1, 1, 0.724, 0.016, 0.15, 1, 0.647, 0, 0.325, 1, 0.724, + 0.016, 0.5, 1, 0.8, 0.031, 0.675, 1, 0.684, 0.016, 0.85, 1, + 0.569, 0, 0.9, 1, 0.684, 0.016, 0.95, 1, 0.8, 0.031, 0.975, + 1, 0.678, 0.016, 1, 1, 0.557, 0 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-224.956, -61.446], + [-223.266, -59.757], + [-221.577, -61.446], + [-223.266, -63.135] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5496.647, 5121.727] }, + "e": { "a": 0, "k": [-5491.776, 5122.834] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-148.955, -17.271], + [-147.266, -15.582], + [-145.577, -17.271], + [-147.266, -18.961] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5394.737, 7263.568] }, + "e": { "a": 0, "k": [-5398.312, 7260.215] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-188.381, -107.867], + [-186.691, -106.178], + [-185.002, -107.867], + [-186.691, -109.556] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-5644.582, 2271.258] }, + "e": { "a": 0, "k": [-5639.864, 2273.421] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-82.758, -142.665], + [-81.069, -140.976], + [-79.38, -142.665], + [-81.069, -144.355] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7841.65, -2724.186] }, + "e": { "a": 0, "k": [-7840.434, -2720.782] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-221.801, -107.244], + [-220.111, -105.555], + [-218.422, -107.244], + [-220.111, -108.933] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-11518.693, 3765.188] }, + "e": { "a": 0, "k": [-11520.041, 3762.598] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, -0.933], + [-0.933, 0], + [0, 0.933], + [0.933, 0] + ], + "o": [ + [0, 0.933], + [0.933, 0], + [0, -0.933], + [-0.933, 0] + ], + "v": [ + [-225.186, -26.033], + [-223.497, -24.344], + [-221.808, -26.033], + [-223.497, -27.722] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-14824.891, 9760.18] }, + "e": { "a": 0, "k": [-14822.847, 9758.905] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0, 0.502, 1, 0.038, 0.084, 0.657, 1, 0.05, 0.169, 0.812, + 1, 0.1, 0.084, 0.657, 1, 0.15, 0, 0.502, 1, 0.325, 0.075, + 0.651, 1, 0.5, 0.149, 0.8, 1, 0.675, 0.075, 0.627, 0.959, + 0.85, 0, 0.455, 0.918, 0.9, 0.012, 0.596, 0.959, 0.95, + 0.024, 0.737, 1, 0.975, 0.012, 0.592, 0.955, 1, 0, 0.447, + 0.91 + ] + }, + "p": 13 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 188, + "op": 212, + "st": 187.999983728031 + }, + { + "ind": 5, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.01] }, + "t": 246, + "s": [100] + }, + { "t": 257, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [568.5, 127.971, 0] }, + "a": { "a": 0, "k": [1008, 197.971, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.745, 0], + [0, 0], + [-0.378, -0.938], + [0, 0], + [0.233, -0.591], + [0, 0], + [0.829, 2.063] + ], + "o": [ + [-0.64, -1.615], + [0, 0], + [1.018, 0], + [0, 0], + [0.233, 0.577], + [0, 0], + [-0.829, 2.063], + [0, 0] + ], + "v": [ + [-12.027, -16.611], + [-9.729, -19.971], + [1.106, -19.971], + [3.404, -18.428], + [12.028, 3.092], + [12.028, 4.91], + [6.603, 18.424], + [2.007, 18.424] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7.61, -24.528] }, + "e": { "a": 0, "k": [16.941, 33.984] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.949, 0.075, 0.643, 0.076, 0.914, 0.071, 0.649, 0.152, + 0.878, 0.067, 0.655, 0.304, 0.788, 0.059, 0.671, 0.455, + 0.698, 0.051, 0.686, 0.667, 0.553, 0.037, 0.71, 0.879, + 0.408, 0.024, 0.733, 0.939, 0.365, 0.02, 0.741, 1, 0.322, + 0.016, 0.749 + ] + }, + "p": 9 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [1028.754, 197.971] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.745, 0], + [0, 0], + [-0.378, -0.938], + [0, 0], + [0.233, -0.591], + [0, 0], + [0.829, 2.063] + ], + "o": [ + [-0.64, -1.615], + [0, 0], + [1.018, 0], + [0, 0], + [0.233, 0.577], + [0, 0], + [-0.829, 2.063], + [0, 0] + ], + "v": [ + [-12.027, -16.611], + [-9.729, -19.971], + [1.106, -19.971], + [3.404, -18.428], + [12.028, 3.092], + [12.028, 4.91], + [6.603, 18.424], + [2.007, 18.424] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7.61, -24.528] }, + "e": { "a": 0, "k": [16.941, 33.984] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.949, 0.075, 0.643, 0.076, 0.914, 0.071, 0.649, 0.152, + 0.878, 0.067, 0.655, 0.304, 0.788, 0.059, 0.671, 0.455, + 0.698, 0.051, 0.686, 0.667, 0.553, 0.037, 0.71, 0.879, + 0.408, 0.024, 0.733, 0.939, 0.365, 0.02, 0.741, 1, 0.322, + 0.016, 0.749 + ] + }, + "p": 9 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [1008.2, 197.971] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.745, 0], + [0, 0], + [-0.378, -0.938], + [0, 0], + [0.233, -0.591], + [0, 0], + [0.829, 2.063] + ], + "o": [ + [-0.64, -1.615], + [0, 0], + [1.018, 0], + [0, 0], + [0.233, 0.577], + [0, 0], + [-0.829, 2.063], + [0, 0] + ], + "v": [ + [-12.027, -16.611], + [-9.729, -19.971], + [1.106, -19.971], + [3.404, -18.428], + [12.028, 3.092], + [12.028, 4.91], + [6.603, 18.424], + [2.007, 18.424] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "gf", + "s": { "a": 0, "k": [-7.61, -24.528] }, + "e": { "a": 0, "k": [16.941, 33.984] }, + "t": 1, + "g": { + "k": { + "a": 0, + "k": [ + 0, 0.949, 0.075, 0.643, 0.076, 0.914, 0.071, 0.649, 0.152, + 0.878, 0.067, 0.655, 0.304, 0.788, 0.059, 0.671, 0.455, + 0.698, 0.051, 0.686, 0.667, 0.553, 0.037, 0.71, 0.879, + 0.408, 0.024, 0.733, 0.939, 0.365, 0.02, 0.741, 1, 0.322, + 0.016, 0.749 + ] + }, + "p": 9 + }, + "nm": "G", + "bm": 0, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [987.246, 197.971] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 260, + "st": 182.999984160797 + }, + { + "ind": 6, + "ty": 5, + "nm": "2", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.01] }, + "t": 246, + "s": [100] + }, + { "t": 257, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [541.681, 655.73, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ln": "50", + "ip": 183, + "op": 260, + "st": 182.999984160797, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Bold", + "fc": [1, 1, 1], + "s": 25, + "lh": 31, + "ls": 0, + "t": "2020 Vivid Voltage \r#50 Raikou - Holo", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 7, + "ty": 5, + "nm": "0", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 249, + "s": [100] + }, + { "t": 258, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-89.72, 20.868, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "cl": "6888", + "ip": 183, + "op": 260, + "st": 182.999984160797, + "parent": 12, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Bold", + "fc": [0.2, 0.522, 1], + "s": 19, + "lh": 22, + "ls": 0, + "t": "0xd783...6888", + "j": 2, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 8, + "ty": 5, + "nm": "s", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 249, + "s": [100] + }, + { "t": 258, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-72.941, -4.077, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "cl": "thirdweb eth", + "ip": 183, + "op": 260, + "st": 182.999984160797, + "parent": 12, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Bold", + "fc": [1, 1, 1], + "s": 18, + "lh": 22, + "ls": 0, + "t": "sian.thirdweb.eth", + "j": 2, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 9, + "ty": 5, + "nm": "Y", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.01] }, + "t": 249, + "s": [100] + }, + { "t": 260, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [575.5, 221.791, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 183, + "op": 260, + "st": 182.999984160797, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Bold", + "fc": [1, 1, 1], + "s": 38, + "lh": 46, + "ls": 0, + "t": "Your purchase\ris complete", + "j": 2, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 10, + "ty": 5, + "nm": "C", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.01] }, + "t": 249, + "s": [100] + }, + { "t": 260, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [575.847, 362.969, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 183, + "op": 260, + "st": 182.999984160797, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [0.925, 0.925, 0.925], + "s": 21, + "lh": 26, + "ls": 0, + "t": "Congratulations! Your purchase\rhas been sent to:", + "j": 2, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 11, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.008] }, + "t": 249, + "s": [100] + }, + { "t": 258, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-191.331, 2.139, 0] }, + "a": { "a": 0, "k": [813.548, 554.427, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [4.298, -9.893], + [2.399, -4.762], + [1.995, 2.17], + [1.841, 4.343], + [1.829, 9.893], + [-1.829, 9.893], + [-1.841, 4.353], + [-1.996, 2.168], + [-2.399, -4.762], + [-4.298, -9.893] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.960784316063, 0.517647087574, 0.121568627656, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [813.548, 553.769] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [4.076, -4.415], + [1.993, -1.272], + [4.91, 4.415], + [0.901, 4.364], + [-4.91, 4.364], + [-2.716, -2.437] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.960784316063, 0.517647087574, 0.121568627656, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [803.107, 556.901] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-4.082, -4.415], + [2.71, -2.437], + [4.916, 4.364], + [-0.905, 4.364], + [-4.916, 4.415], + [-1.999, -1.272] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.960784316063, 0.517647087574, 0.121568627656, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [823.995, 556.901] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-5.171, -7.317], + [6.773, 1.524], + [2.154, 5.421], + [2.098, 5.45], + [-4.312, 7.317], + [-5.875, 5.492], + [-5.287, 5.065], + [-6.245, 4.191], + [-5.522, 3.633], + [-6.501, 2.895], + [-5.762, 2.345], + [-6.773, -2.511] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.46274510026, 0.243137255311, 0.101960785687, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [804.772, 547.444] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [5.171, -7.317], + [6.773, -2.512], + [5.773, 2.347], + [6.485, 2.897], + [5.521, 3.632], + [6.245, 4.191], + [5.286, 5.065], + [5.875, 5.492], + [4.312, 7.317], + [-2.098, 5.45], + [-2.154, 5.421], + [-6.773, 1.524] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.46274510026, 0.243137255311, 0.101960785687, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [822.324, 547.444] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [1.719, -1.795], + [2.384, -1.325], + [2.774, 1.785], + [2.21, 1.309], + [-2.221, 1.309], + [-2.774, 1.795], + [-2.397, -1.325], + [-1.732, -1.795] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.086274512112, 0.086274512112, 0.086274512112, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [813.554, 565.152] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-7.394, -1.887], + [-2.689, 0.342], + [-2.709, -0.61], + [-2.315, -0.956], + [2.341, -0.956], + [2.749, -0.611], + [2.719, 0.34], + [7.394, -1.882], + [5.119, -0.002], + [2.368, 1.887], + [-2.353, 1.887], + [-5.102, -0.01] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.752941191196, 0.674509823322, 0.615686297417, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [813.534, 567.112] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-2.263, -2.95], + [1.43, -1.868], + [2.263, 2.424], + [1.52, 2.95], + [-2.158, 0.084] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.960784316063, 0.517647087574, 0.121568627656, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [809.776, 561.152] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [2.27, -2.95], + [2.152, 0.084], + [-1.526, 2.95], + [-2.27, 2.424], + [-1.436, -1.868] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.960784316063, 0.517647087574, 0.121568627656, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [817.327, 561.152] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-0.16, -4.933], + [0.632, -0.565], + [0.631, -0.509], + [-0.425, 4.933], + [-0.467, 3.572], + [-0.632, -1.878] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.458823531866, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [815.54, 559.942] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.152, -4.92], + [0.292, -4.037], + [0.639, -1.837], + [0.416, 4.92], + [-0.638, -0.508], + [-0.639, -0.564] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.458823531866, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [811.563, 559.941] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [1.807, -3.521], + [-1.807, 3.521], + [-1.671, 0.023] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.458823531866, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [820.957, 558.32] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-1.803, -3.515], + [1.683, 0.023], + [1.803, 3.515] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.458823531866, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [806.139, 558.32] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-3.671, -2.223], + [3.671, -1.889], + [2.925, 2.223], + [1.787, -0.168], + [-0.576, 0.917] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.800000011921, 0.384313732386, 0.156862750649, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [808.214, 557.673] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [3.67, -2.223], + [0.589, 0.917], + [-1.787, -0.168], + [-2.924, 2.223], + [-3.67, -1.889] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.800000011921, 0.384313732386, 0.156862750649, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [818.881, 557.673] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-2.117, -2.736], + [2.117, -2.616], + [-1.465, 2.736] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.800000011921, 0.384313732386, 0.156862750649, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [821.25, 563.584] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [2.117, -2.736], + [1.451, 2.736], + [-2.117, -2.616] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.800000011921, 0.384313732386, 0.156862750649, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [805.846, 563.584] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-0.857, -1.271], + [2.066, 0.065], + [-2.066, 1.271] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.137254908681, 0.203921571374, 0.278431385756, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [817.805, 558.374] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.85, -1.271], + [2.059, 1.271], + [-2.059, 0.065] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.137254908681, 0.203921571374, 0.278431385756, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [809.298, 558.374] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [2.32, -2.143], + [1.967, 0.77], + [1.996, 2.143], + [-2.32, 0.098] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.835294127464, 0.749019622803, 0.698039233685, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [809.164, 565.797] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-2.315, -2.144], + [2.315, 0.097], + [-1.991, 2.144], + [-1.947, 0.791] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.835294127464, 0.749019622803, 0.698039233685, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [817.925, 565.798] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [1.658, -2.639], + [2.281, 2.639], + [-2.281, 0.43] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [817.791, 563.513] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-1.651, -2.638], + [2.287, 0.43], + [-2.287, 2.638] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [809.299, 563.513] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-3.44, -3.936], + [1.528, 0.483], + [1.554, 0.513], + [3.605, 3.608], + [-3.605, 3.936] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [818.841, 552.152] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [3.365, -3.892], + [3.606, 3.892], + [-3.606, 3.564], + [-1.555, 0.469], + [-1.529, 0.439] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [808.255, 552.195] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [1.269, -3.557], + [4.617, 1.576], + [-2.568, 3.557], + [-4.617, -3.445] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [802.821, 564.409] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-1.269, -3.557], + [4.629, -3.445], + [2.568, 3.557], + [-4.629, 1.576] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [824.275, 564.409] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-6.595, -4.969], + [4.239, -0.926], + [6.595, 4.969] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.886274516582, 0.46274510026, 0.145098045468, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [805.346, 544.835] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [6.672, -4.937], + [-6.672, 4.937], + [-4.191, -0.882] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.882352948189, 0.466666668653, 0.149019613862, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [821.704, 544.791] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 260, + "st": 182.999984160797, + "parent": 12 + }, + { + "ind": 12, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [20] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.041] }, + "t": 249, + "s": [20] + }, + { "t": 258, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [571.379, 482.288, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0.6, 0.6, 0.6], "y": [1, 1, 1] }, + "o": { "x": [1, 1, 1], "y": [0.008, 0.008, 0] }, + "t": 249, + "s": [100, 100, 100] + }, + { "t": 258, "s": [60, 60, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-9.409, 0], + [0, 0], + [0, -9.409], + [0, 0], + [9.409, 0], + [0, 0], + [0, 9.409], + [0, 0] + ], + "o": [ + [0, 0], + [9.409, 0], + [0, 0], + [0, 9.409], + [0, 0], + [-9.409, 0], + [0, 0], + [0, -9.409] + ], + "v": [ + [-213.733, -45.731], + [213.733, -45.731], + [230.77, -28.695], + [230.77, 28.695], + [213.733, 45.731], + [-213.733, 45.731], + [-230.77, 28.695], + [-230.77, -28.695] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 3 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 260, + "st": 182.999984160797 + }, + { + "ind": 13, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.01] }, + "t": 246, + "s": [100] + }, + { "t": 257, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [570.758, 837.446, 0] }, + "a": { "a": 0, "k": [44.258, 350.446, 0] }, + "s": { + "k": [ + { + "i": { "x": [0.6, 0.6, 0.6], "y": [1, 1, 1] }, + "o": { "x": [1, 1, 1], "y": [0.01, 0.01, 0] }, + "t": 246, + "s": [100, 100, 100] + }, + { "t": 257, "s": [60, 60, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [1.24, 0], + [1.116, 0.627], + [0.6, 1.156], + [0, 1.588], + [-0.601, 1.168], + [-1.09, 0.651], + [-1.475, 0], + [-0.855, -0.322], + [-0.64, -0.631], + [-0.359, -0.961], + [0, -1.278], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.261, 0.464], + [0.464, 0.261], + [0.607, 0], + [0.489, -0.297], + [0.274, -0.489], + [0.007, -0.594], + [0, 0], + [-0.274, -0.541], + [-0.509, -0.297], + [-0.699, 0], + [-0.385, 0.13], + [-0.274, 0.265], + [-0.143, 0.379], + [0, 0], + [0.607, -0.692], + [0.953, -0.387] + ], + "o": [ + [-1.547, 0], + [-1.109, -0.635], + [-0.601, -1.164], + [0, -1.547], + [0.6, -1.168], + [1.096, -0.651], + [0.992, 0], + [0.861, 0.309], + [0.646, 0.635], + [0.359, 0.953], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -0.603], + [-0.261, -0.464], + [-0.457, -0.269], + [-0.633, 0], + [-0.483, 0.285], + [-0.274, 0.48], + [0, 0], + [0, 0.745], + [0.281, 0.541], + [0.509, 0.293], + [0.463, 0], + [0.385, -0.13], + [0.274, -0.261], + [0, 0], + [-0.196, 0.928], + [-0.6, 0.684], + [-0.947, 0.379] + ], + "v": [ + [74.301, 360.512], + [70.306, 359.571], + [67.741, 356.888], + [66.841, 352.764], + [67.741, 348.693], + [70.277, 345.961], + [74.134, 344.984], + [76.905, 345.464], + [79.157, 346.881], + [80.664, 349.271], + [81.203, 352.617], + [81.203, 353.766], + [68.505, 353.766], + [68.505, 351.18], + [77.277, 351.18], + [76.886, 349.584], + [75.798, 348.497], + [74.203, 348.094], + [72.519, 348.538], + [71.383, 349.702], + [70.962, 351.319], + [70.962, 353.774], + [71.373, 355.703], + [72.558, 356.957], + [74.369, 357.397], + [75.642, 357.202], + [76.631, 356.611], + [77.257, 355.655], + [81.115, 355.907], + [79.91, 358.338], + [77.58, 359.942] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [-0.182, -1.384], + [0, 0], + [0.215, 0.261], + [0.353, 0.155], + [0.483, 0], + [0.444, -0.273], + [0, -0.448], + [-0.287, -0.248], + [-0.698, -0.151], + [0, 0], + [-0.718, -0.664], + [0, -1.083], + [0.581, -0.745], + [1.005, -0.419], + [1.305, 0], + [1.181, 0.831], + [0.202, 1.437], + [0, 0], + [-0.476, -0.322], + [-0.744, 0], + [-0.444, 0.281], + [-0.007, 0.452], + [0.313, 0.24], + [0.653, 0.13], + [0, 0], + [0.718, 0.725], + [0, 1.124], + [-0.522, 0.696], + [-0.953, 0.379], + [-1.286, 0], + [-1.09, -0.802] + ], + "o": [ + [0, 0], + [-0.065, -0.326], + [-0.215, -0.265], + [-0.346, -0.163], + [-0.646, 0], + [-0.444, 0.269], + [0, 0.362], + [0.287, 0.248], + [0, 0], + [1.462, 0.301], + [0.718, 0.668], + [0, 0.985], + [-0.574, 0.745], + [-0.999, 0.411], + [-1.991, 0], + [-1.175, -0.835], + [0, 0], + [0.124, 0.607], + [0.477, 0.313], + [0.731, 0], + [0.451, -0.289], + [-0.007, -0.379], + [-0.313, -0.248], + [0, 0], + [-1.469, -0.293], + [-0.711, -0.725], + [0, -0.965], + [0.529, -0.7], + [0.959, -0.379], + [1.899, 0], + [1.096, 0.806] + ], + "v": [ + [64.754, 349.466], + [60.936, 349.702], + [60.515, 348.819], + [59.664, 348.184], + [58.42, 347.94], + [56.785, 348.351], + [56.12, 349.426], + [56.55, 350.338], + [58.029, 350.936], + [60.75, 351.482], + [64.02, 352.931], + [65.097, 355.557], + [64.226, 358.15], + [61.857, 359.893], + [58.401, 360.512], + [53.643, 359.266], + [51.577, 355.858], + [55.679, 355.642], + [56.58, 357.035], + [58.411, 357.503], + [60.173, 357.084], + [60.858, 355.976], + [60.378, 355.048], + [58.93, 354.478], + [56.325, 353.961], + [53.045, 352.434], + [51.978, 349.662], + [52.762, 347.166], + [54.984, 345.55], + [58.352, 344.984], + [62.836, 346.185] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 2, + "ks": { + "k": { + "i": [ + [-0.698, 0], + [-0.464, 0.391], + [-0.235, 0.684], + [0, 0.875], + [0.241, 0.684], + [0.463, 0.399], + [0.692, 0], + [0.476, -0.399], + [0.241, -0.684], + [0, -0.875], + [-0.235, -0.688], + [-0.47, -0.399] + ], + "o": [ + [0.692, 0], + [0.463, -0.399], + [0.241, -0.688], + [0, -0.875], + [-0.235, -0.684], + [-0.464, -0.399], + [-0.698, 0], + [-0.47, 0.399], + [-0.235, 0.684], + [0, 0.875], + [0.241, 0.684], + [0.476, 0.391] + ], + "v": [ + [42.425, 357.279], + [44.158, 356.693], + [45.205, 355.068], + [45.567, 352.727], + [45.205, 350.386], + [44.158, 348.762], + [42.425, 348.163], + [40.663, 348.762], + [39.596, 350.386], + [39.243, 352.727], + [39.596, 355.068], + [40.663, 356.693] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 3, + "ks": { + "k": { + "i": [ + [1.521, 0], + [1.11, 0.647], + [0.601, 1.16], + [0, 1.539], + [-0.6, 1.16], + [-1.103, 0.647], + [-1.521, 0], + [-1.103, -0.651], + [-0.6, -1.168], + [0, -1.555], + [0.6, -1.168], + [1.109, -0.651] + ], + "o": [ + [-1.521, 0], + [-1.103, -0.651], + [-0.6, -1.168], + [0, -1.555], + [0.601, -1.168], + [1.11, -0.651], + [1.521, 0], + [1.109, 0.647], + [0.6, 1.16], + [0, 1.539], + [-0.6, 1.16], + [-1.103, 0.647] + ], + "v": [ + [42.405, 360.512], + [38.46, 359.539], + [35.905, 356.819], + [35.004, 352.756], + [35.905, 348.685], + [38.46, 345.961], + [42.405, 344.984], + [46.341, 345.961], + [48.906, 348.685], + [49.807, 352.756], + [48.906, 356.819], + [46.341, 359.539] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "rc", + "nm": "R", + "d": 1, + "s": { "a": 0, "k": [4.171, 20.047] }, + "p": { "a": 0, "k": [30, 350] }, + "r": { "a": 0, "k": 0 } + }, + { + "ty": "sh", + "nm": "P", + "ind": 5, + "ks": { + "k": { + "i": [ + [-0.137, -1.164], + [0, 0], + [0.241, 0.427], + [0.378, 0.309], + [0.496, 0.163], + [0.574, 0], + [0.77, -0.513], + [0.424, -0.977], + [0, -1.388], + [-0.424, -0.973], + [-0.77, -0.497], + [-1.012, 0], + [-0.483, 0.151], + [-0.378, 0.289], + [-0.248, 0.419], + [-0.098, 0.537], + [0, 0], + [0.444, -0.855], + [0.744, -0.672], + [1.025, -0.391], + [1.286, 0], + [1.41, 0.806], + [0.816, 1.535], + [0, 2.178], + [-0.822, 1.535], + [-1.409, 0.806], + [-1.762, 0], + [-0.992, -0.326], + [-0.77, -0.627], + [-0.483, -0.9] + ], + "o": [ + [0, 0], + [-0.078, -0.558], + [-0.241, -0.44], + [-0.379, -0.305], + [-0.489, -0.163], + [-1.038, 0], + [-0.77, 0.509], + [-0.424, 0.973], + [0, 1.429], + [0.431, 0.973], + [0.77, 0.497], + [0.568, 0], + [0.489, -0.147], + [0.379, -0.293], + [0.254, -0.415], + [0, 0], + [-0.111, 0.92], + [-0.437, 0.847], + [-0.737, 0.668], + [-1.018, 0.383], + [-1.788, 0], + [-1.403, -0.81], + [-0.809, -1.531], + [0, -2.186], + [0.822, -1.531], + [1.41, -0.806], + [1.162, 0], + [0.998, 0.33], + [0.77, 0.619], + [0.49, 0.9] + ], + "v": [ + [25.689, 347.186], + [21.401, 347.186], + [20.921, 345.708], + [19.992, 344.589], + [18.679, 343.885], + [17.084, 343.64], + [14.372, 344.414], + [12.58, 346.645], + [11.944, 350.191], + [12.58, 353.794], + [14.382, 355.997], + [17.055, 356.742], + [18.631, 356.514], + [19.933, 355.858], + [20.873, 354.792], + [21.401, 353.362], + [25.689, 353.383], + [24.857, 356.045], + [23.085, 358.325], + [20.442, 359.913], + [16.986, 360.491], + [12.189, 359.278], + [8.86, 355.76], + [7.646, 350.191], + [8.879, 344.609], + [12.228, 341.104], + [16.986, 339.891], + [20.217, 340.379], + [22.87, 341.812], + [24.749, 344.092] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [1, 1, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 260, + "st": 182.999984160797 + }, + { + "ind": 14, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 185, + "s": [0] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.167], "y": [0] }, + "t": 195, + "s": [100] + }, + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [1], "y": [0.01] }, + "t": 246, + "s": [100] + }, + { "t": 257, "s": [0] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [570.758, 837.446, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0.6, 0.6, 0.6], "y": [1, 1, 1] }, + "o": { "x": [1, 1, 1], "y": [0.01, 0.01, 0] }, + "t": 246, + "s": [100, 100, 100] + }, + { "t": 257, "s": [60, 60, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-8.751, 0], + [0, 0], + [0, -8.751], + [0, 0], + [8.751, 0], + [0, 0], + [0, 8.751], + [0, 0] + ], + "o": [ + [0, 0], + [8.751, 0], + [0, 0], + [0, 8.751], + [0, 0], + [-8.751, 0], + [0, 0], + [0, -8.751] + ], + "v": [ + [-212.849, -42.128], + [212.849, -42.128], + [228.695, -26.282], + [228.695, 26.282], + [212.849, 42.128], + [-212.849, 42.128], + [-228.695, 26.282], + [-228.695, -26.282] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [0.20000000298, 0.521568655968, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 183, + "op": 260, + "st": 182.999984160797 + }, + { + "ind": 15, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [22.496, -0.725, 0] }, + "a": { "a": 0, "k": [148.315, -36.764, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [4.745, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 4.733] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [4.809, 0], + [0, -4.733] + ], + "v": [ + [128.764, -53.145], + [119.57, -53.145], + [119.57, -28.884], + [123.035, -28.884], + [123.035, -36.972], + [128.635, -36.972], + [136.898, -45.06] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [3.313, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -3.067] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [3.298, 0], + [0, 3.067] + ], + "v": [ + [127.658, -40.441], + [123.035, -40.441], + [123.035, -49.68], + [127.658, -49.68], + [133.073, -45.056] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 2, + "ks": { + "k": { + "i": [ + [4.294, 0], + [0.11, -3.022], + [0, 0], + [-1.893, 0], + [0, -1.905], + [0, 0], + [0, 0], + [0, -2.991], + [-3.491, 0], + [-0.992, 1.825], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [-3.987, 0], + [0, 0], + [0.28, -1.439], + [2.295, 0], + [0, 0], + [0, 0], + [-4.358, 0.254], + [0, 3.022], + [2.359, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.004, -3.37] + ], + "v": [ + [144.831, -46.215], + [137.784, -40.993], + [141.169, -40.993], + [144.721, -43.371], + [148.315, -40.437], + [148.315, -39.123], + [143.619, -38.88], + [136.898, -33.912], + [142.824, -28.884], + [148.364, -31.86], + [148.44, -31.86], + [148.451, -28.884], + [151.916, -28.884], + [151.916, -40.675] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 3, + "ks": { + "k": { + "i": [ + [0, 0], + [2.545, 0], + [0, 1.42], + [-2.344, 0.136], + [0, 0] + ], + "o": [ + [0, 2.185], + [-1.999, 0], + [0, -1.465], + [0, 0], + [0, 0] + ], + "v": [ + [148.303, -35.397], + [143.835, -31.655], + [140.56, -34.003], + [144.13, -36.457], + [148.315, -36.764] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 4, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.091, -0.216], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.064, -0.148] + ], + "v": [ + [159.788, -28.577], + [153.075, -46.215], + [157.153, -46.215], + [161.739, -32.791], + [167.362, -46.215], + [170.902, -46.215], + [159.83, -20.091], + [156.29, -20] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [1, 1, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 103, + "op": 183, + "st": 99.9999913446975, + "parent": 28 + }, + { + "ind": 16, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-9.152, -1.962, 0] }, + "a": { "a": 0, "k": [-135.849, -40.778, 0] }, + "s": { "a": 0, "k": [100.035, 100.035, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [2.756, 0], + [0, 1.565], + [-2.539, 0.149] + ], + "o": [ + [0, 0], + [0, 2.407], + [-2.168, 0], + [0, -1.616], + [0, 0] + ], + "v": [ + [-116.106, -38.177], + [-116.12, -36.672], + [-120.96, -32.55], + [-124.506, -35.136], + [-120.638, -37.841] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [1.815, 0], + [0.271, 0.033], + [0, 0], + [-0.297, 0], + [-1.647, 4.571], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [-0.628, 1.959], + [-0.311, 0], + [0, 0], + [0.274, 0.061], + [4.004, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-110.682, -48.59], + [-103.727, -29.587], + [-104.1, -28.431], + [-107.561, -25.719], + [-108.73, -25.784], + [-108.73, -22.652], + [-107.205, -22.557], + [-99.669, -28.635], + [-92.459, -48.59], + [-96.632, -48.59], + [-101.469, -33.17], + [-101.554, -33.17], + [-106.391, -48.59] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 2, + "ks": { + "k": { + "i": [ + [4.656, 0], + [0.118, -3.331], + [0, 0], + [-2.051, 0], + [0, -2.095], + [0, 0], + [0, 0], + [0, -3.298], + [-3.782, 0], + [-1.074, 2.012], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [-4.32, 0], + [0, 0], + [0.302, -1.583], + [2.487, 0], + [0, 0], + [0, 0], + [-4.722, 0.279], + [0, 3.331], + [2.555, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.002, -3.712] + ], + "v": [ + [-119.882, -48.59], + [-127.513, -42.838], + [-123.852, -42.838], + [-120.001, -45.458], + [-116.109, -42.224], + [-116.106, -40.78], + [-121.194, -40.512], + [-128.472, -35.038], + [-122.052, -29.496], + [-116.052, -32.777], + [-115.967, -32.777], + [-115.967, -29.696], + [-112.204, -29.696], + [-112.204, -42.489] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 3, + "ks": { + "k": { + "i": [ + [0, 0], + [1.114, 0], + [1.952, 0], + [1.232, -2.183], + [-2.447, -3.553], + [-1.952, 0], + [-2.161, 0], + [-1.952, 0], + [-1.198, 1.76], + [-0.033, 0.102], + [0.035, 4.332], + [-0.135, 0.101], + [0.651, 0] + ], + "o": [ + [-2.386, 0], + [-1.132, 0], + [-2.386, 0], + [-2.532, 4.365], + [1.199, 1.76], + [1.789, -0.068], + [2.176, 0], + [1.952, 0], + [1.368, -1.996], + [-0.033, -0.033], + [-0.033, -3.62], + [-1.689, -2.503], + [0, 0] + ], + "v": [ + [-162.098, -51.193], + [-167.305, -49.892], + [-172.078, -51.176], + [-178.033, -47.495], + [-176.244, -33.116], + [-171.644, -29.499], + [-167.088, -30.584], + [-162.315, -29.499], + [-157.983, -33.048], + [-156.024, -37.092], + [-159.837, -42.895], + [-156.749, -48.343], + [-161.881, -51.193] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 4, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, -3.289], + [3.57, 0], + [0, 0] + ], + "o": [ + [0, 0], + [3.553, 0], + [0, 3.289], + [0, 0], + [0, 0] + ], + "v": [ + [-143.875, -52.061], + [-139.102, -52.061], + [-133.462, -46.855], + [-139.102, -41.648], + [-143.875, -41.648] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 5, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 5.076], + [5.109, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [5.177, 0], + [0, -5.076], + [0, 0] + ], + "v": [ + [-147.997, -55.532], + [-147.997, -29.499], + [-143.875, -29.499], + [-143.875, -38.177], + [-138.234, -38.177], + [-129.34, -46.855], + [-138.099, -55.532] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 6, + "ks": { + "k": { + "i": [ + [0.17, 1.775], + [1.022, -1.296], + [-0.203, -1.704], + [-1.022, 1.262] + ], + "o": [ + [-1.449, 0.069], + [-0.937, 1.118], + [1.637, 0.142], + [1.007, -1.296] + ], + "v": [ + [-161.908, -59], + [-166.169, -56.712], + [-167.705, -52.075], + [-163.41, -54.19] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [1, 1, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 99, + "op": 183, + "st": 95.9999916909097, + "parent": 29 + }, + { + "ind": 17, + "ty": 5, + "nm": "O", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [501.965, 529.102, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 96, + "op": 183, + "st": 92.9999919505687, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [0.392, 0.427, 0.478], + "s": 24, + "lh": 29, + "ls": 0, + "t": "Or use card", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 18, + "ty": 5, + "nm": "C", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [347.864, 726.102, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 143, + "op": 183, + "st": 92.9999919505687, + "t": { + "a": [ + { + "nm": "A", + "a": { "o": { "a": 0, "k": 0 } }, + "s": { + "a": { "a": 0, "k": 100 }, + "ne": { "a": 0, "k": 0 }, + "xe": { "a": 0, "k": 0 }, + "r": 1, + "sh": 1, + "b": 1, + "rn": 0, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 146, + "s": [0] + }, + { "t": 161, "s": [100] } + ] + }, + "t": 0 + } + } + ], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [1, 1, 1], + "s": 24, + "lh": 29, + "ls": 0, + "t": "7162 9198 7530 1624", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 19, + "ty": 5, + "nm": "C", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.01] }, + "t": 96, + "s": [0] + }, + { "t": 103, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-219.626, 9.473, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 96, + "op": 143, + "st": 92.9999919505687, + "parent": 20, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [0.392, 0.427, 0.478], + "s": 24, + "lh": 29, + "ls": 0, + "t": "Card number", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 20, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 96, + "s": [0] + }, + { "t": 106, "s": [20] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.013 }, + "t": 92, + "s": [567.489, 672.629, 0], + "ti": [0, -7.333, 0], + "to": [0, 7.333, 0] + }, + { "t": 113, "s": [567.489, 716.629, 0] } + ], + "a": 1 + }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-8.783, 0], + [0, 0], + [0, -8.783], + [0, 0], + [8.783, 0], + [0, 0], + [0, 8.783], + [0, 0] + ], + "o": [ + [0, 0], + [8.783, 0], + [0, 0], + [0, 8.783], + [0, 0], + [-8.783, 0], + [0, 0], + [0, -8.783] + ], + "v": [ + [-225.188, -41.619], + [225.188, -41.619], + [241.091, -25.717], + [241.091, 25.717], + [225.188, 41.619], + [-225.188, 41.619], + [-241.091, 25.717], + [-241.091, -25.717] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 3 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 96, + "op": 183, + "st": 92.9999919505687 + }, + { + "ind": 21, + "ty": 5, + "nm": "C", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [348.864, 617.102, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 123, + "op": 183, + "st": 92.9999919505687, + "t": { + "a": [ + { + "nm": "A", + "a": { "o": { "a": 0, "k": 0 } }, + "s": { + "a": { "a": 0, "k": 100 }, + "ne": { "a": 0, "k": 0 }, + "xe": { "a": 0, "k": 0 }, + "r": 1, + "sh": 1, + "b": 1, + "rn": 0, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 123, + "s": [0] + }, + { "t": 141, "s": [100] } + ] + }, + "t": 0 + } + } + ], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [1, 1, 1], + "s": 24, + "lh": 29, + "ls": 0, + "t": "Jane Doe", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 22, + "ty": 5, + "nm": "C", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.01] }, + "t": 96, + "s": [0] + }, + { "t": 103, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-219.626, 9.473, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "ip": 96, + "op": 123, + "st": 92.9999919505687, + "parent": 26, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [0.392, 0.427, 0.478], + "s": 24, + "lh": 29, + "ls": 0, + "t": "Cardholder name", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 23, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 20 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [404.84, 520.771, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-78.734, 0], + [78.734, 0] + ], + "c": false + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 4 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 96, + "op": 183, + "st": 92.9999919505687 + }, + { + "ind": 24, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 20 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [731.278, 520.771, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [-78.736, 0], + [78.736, 0] + ], + "c": false + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 4 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 96, + "op": 183, + "st": 92.9999919505687 + }, + { + "ind": 25, + "ty": 4, + "nm": "g", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [-29.319, -2.572, 0] }, + "a": { "a": 0, "k": [128, 131, 0] }, + "s": { "a": 0, "k": [13, 13, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-34.523, 0], + [-9.429, -8.849], + [0, 0], + [35.248, 0], + [21.468, -42.646], + [0, 0] + ], + "o": [ + [24.514, 0], + [0, 0], + [-22.628, -21.033], + [-51.06, 0], + [0, 0], + [10.59, -31.477] + ], + "v": [ + [14.651, -1.886], + [65.13, 17.552], + [101.974, -18.422], + [14.651, -52.365], + [-101.974, 19.582], + [-59.763, 52.365] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.921568687289, 0.262745098039, 0.207843152214, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [115.899, 52.365] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 8.993], + [-2.611, 8.123], + [0, 0], + [0, 0], + [0, 0], + [0, -21.033], + [-8.848, -17.697] + ], + "o": [ + [-2.756, -8.123], + [0, -8.994], + [0, 0], + [0, 0], + [0, 0], + [-8.848, 17.697], + [0, 21.033], + [0, 0] + ], + "v": [ + [28.141, 26.138], + [23.79, 0.318], + [27.995, -25.502], + [27.923, -27.232], + [-12.881, -58.92], + [-14.215, -58.285], + [-28.141, 0.318], + [-14.215, 58.92] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.984313785329, 0.737254901961, 0.019607843137, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [28.14, 130.232] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-51.06, 0], + [-21.614, 20.017], + [0, 0], + [19.437, 0], + [10.445, 31.477], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [35.248, 0], + [0, 0], + [-11.024, 7.688], + [-34.523, 0], + [0, 0], + [0, 0], + [0, 0], + [21.468, 42.646] + ], + "v": [ + [15.086, 52.365], + [101.539, 20.743], + [60.343, -11.17], + [15.086, 1.885], + [-59.183, -52.365], + [-60.714, -52.235], + [-101.012, -21.048], + [-101.539, -19.583] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.203921583587, 0.658823529412, 0.325490196078, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [115.464, 208.735] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + }, + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 39.745], + [1.885, 8.123], + [0, 0], + [0, 0], + [0, 0], + [17.407, -12.184], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, -10.734], + [0, 0], + [0, 0], + [0, 0], + [-1.45, 12.04], + [0, 0], + [0, 0], + [0, 0], + [24.659, -22.774] + ], + "v": [ + [62.664, -34.669], + [59.908, -61.359], + [-62.664, -61.359], + [-62.664, -12.911], + [9.283, -12.911], + [-17.407, 29.445], + [-17.651, 31.068], + [21.104, 61.09], + [23.789, 61.358] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.258823529412, 0.521568627451, 0.956862804936, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [193.214, 168.12] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "cl": "com", + "ip": 103, + "op": 183, + "st": 102.999991085038, + "parent": 28 + }, + { + "ind": 26, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 96, + "s": [0] + }, + { "t": 106, "s": [20] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.016 }, + "t": 92, + "s": [568.489, 563.629, 0], + "ti": [0, -7.333, 0], + "to": [0, 7.333, 0] + }, + { "t": 117, "s": [568.489, 607.629, 0] } + ], + "a": 1 + }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-8.783, 0], + [0, 0], + [0, -8.783], + [0, 0], + [8.783, 0], + [0, 0], + [0, 8.783], + [0, 0] + ], + "o": [ + [0, 0], + [8.783, 0], + [0, 0], + [0, 8.783], + [0, 0], + [-8.783, 0], + [0, 0], + [0, -8.783] + ], + "v": [ + [-225.188, -41.619], + [225.188, -41.619], + [241.091, -25.717], + [241.091, 25.717], + [225.188, 41.619], + [-225.188, 41.619], + [-241.091, 25.717], + [-241.091, -25.717] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 3 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 96, + "op": 183, + "st": 92.9999919505687 + }, + { + "ind": 28, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 20 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [694.319, 428.572, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.004, 0.004, 0] }, + "t": 100, + "s": [70, 70, 100] + }, + { "t": 129, "s": [100, 100, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-8.819, 0], + [0, 0], + [0, -8.819], + [0, 0], + [8.819, 0], + [0, 0], + [0, 8.819], + [0, 0] + ], + "o": [ + [0, 0], + [8.819, 0], + [0, 0], + [0, 8.819], + [0, 0], + [-8.819, 0], + [0, 0], + [0, -8.819] + ], + "v": [ + [-98.929, -43.688], + [98.929, -43.688], + [114.897, -27.72], + [114.897, 27.72], + [98.929, 43.688], + [-98.929, 43.688], + [-114.897, 27.72], + [-114.897, -27.72] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 3 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 103, + "op": 183, + "st": 99.9999913446975 + }, + { + "ind": 29, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 20 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [441.799, 428.572, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.003, 0.003, 0] }, + "t": 96, + "s": [70, 70, 100] + }, + { "t": 117, "s": [100, 100, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-8.819, 0], + [0, 0], + [0, -8.819], + [0, 0], + [8.819, 0], + [0, 0], + [0, 8.819], + [0, 0] + ], + "o": [ + [0, 0], + [8.819, 0], + [0, 0], + [0, 8.819], + [0, 0], + [-8.819, 0], + [0, 0], + [0, -8.819] + ], + "v": [ + [-98.929, -43.688], + [98.929, -43.688], + [114.897, -27.72], + [114.897, 27.72], + [98.929, 43.688], + [-98.929, 43.688], + [-114.897, 27.72], + [-114.897, -27.72] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 3 }, + "c": { "a": 0, "k": [1, 1, 1, 1] } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 99, + "op": 183, + "st": 95.9999916909097 + }, + { + "ind": 30, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 96, + "s": [0] + }, + { "t": 108, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0.441, -367.685, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [39.971, 378.024], + [35.641, 362.113], + [40.105, 362.113], + [42.571, 372.804], + [42.715, 372.804], + [45.284, 362.113], + [49.665, 362.113], + [52.276, 372.743], + [52.41, 372.743], + [54.834, 362.113], + [59.287, 362.113], + [54.969, 378.024], + [50.297, 378.024], + [47.563, 368.018], + [47.366, 368.018], + [44.632, 378.024] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [-0.739, 0], + [-0.49, 0.418], + [-0.249, 0.728], + [0, 0.926], + [0.255, 0.724], + [0.49, 0.418], + [0.732, 0], + [0.504, -0.422], + [0.255, -0.728], + [0, -0.922], + [-0.249, -0.724], + [-0.497, -0.418] + ], + "o": [ + [0.732, 0], + [0.49, -0.418], + [0.255, -0.724], + [0, -0.922], + [-0.249, -0.728], + [-0.49, -0.422], + [-0.739, 0], + [-0.497, 0.418], + [-0.249, 0.724], + [0, 0.926], + [0.255, 0.728], + [0.504, 0.418] + ], + "v": [ + [26.844, 374.918], + [28.677, 374.294], + [29.786, 372.575], + [30.169, 370.099], + [29.786, 367.626], + [28.677, 365.908], + [26.844, 365.275], + [24.98, 365.908], + [23.851, 367.626], + [23.478, 370.099], + [23.851, 372.575], + [24.98, 374.294] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 2, + "ks": { + "k": { + "i": [ + [1.609, 0], + [1.174, 0.685], + [0.635, 1.228], + [0, 1.628], + [-0.635, 1.232], + [-1.167, 0.685], + [-1.609, 0], + [-1.167, -0.689], + [-0.635, -1.236], + [0, -1.645], + [0.635, -1.236], + [1.174, -0.689] + ], + "o": [ + [-1.609, 0], + [-1.167, -0.689], + [-0.635, -1.236], + [0, -1.645], + [0.635, -1.236], + [1.174, -0.689], + [1.609, 0], + [1.174, 0.685], + [0.635, 1.232], + [0, 1.628], + [-0.635, 1.228], + [-1.167, 0.685] + ], + "v": [ + [26.823, 378.334], + [22.649, 377.309], + [19.946, 374.432], + [18.993, 370.133], + [19.946, 365.822], + [22.649, 362.944], + [26.823, 361.906], + [30.987, 362.944], + [33.701, 365.822], + [34.654, 370.133], + [33.701, 374.432], + [30.987, 377.309] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 3, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [16.304, 356.811], + [16.304, 378.024], + [12.43, 378.024], + [3.202, 364.671], + [3.047, 364.671], + [3.047, 378.024], + [-1.439, 378.024], + [-1.439, 356.811], + [2.497, 356.811], + [11.654, 370.155], + [11.84, 370.155], + [11.84, 356.811] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 4, + "ks": { + "k": { + "i": [ + [1.091, 0], + [0.49, 0.09], + [0.318, 0.133], + [0, 0], + [-0.414, -0.013], + [-0.304, 0.211], + [-0.193, 0.5], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.511, -0.637], + [0.774, -0.349] + ], + "o": [ + [-0.56, 0], + [-0.484, -0.082], + [0, 0], + [0.518, 0.159], + [0.421, 0.013], + [0.311, -0.207], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.297, 0.857], + [-0.504, 0.642], + [-0.773, 0.349] + ], + "v": [ + [-22.054, 383.99], + [-23.629, 383.856], + [-24.83, 383.533], + [-23.836, 380.242], + [-22.438, 380.501], + [-21.35, 380.208], + [-20.594, 379.153], + [-20.335, 378.481], + [-26.042, 362.113], + [-21.402, 362.113], + [-18.108, 373.799], + [-17.943, 373.799], + [-14.618, 362.113], + [-9.947, 362.113], + [-16.13, 379.743], + [-17.342, 381.982], + [-19.258, 383.464] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 5, + "ks": { + "k": { + "i": [ + [-0.677, 0], + [-0.497, 0.254], + [-0.283, 0.439], + [0, 0.56], + [0, 0], + [0.242, -0.078], + [0.297, -0.06], + [0.297, -0.047], + [0.242, -0.034], + [0.387, -0.164], + [0.214, -0.28], + [0, -0.413], + [-0.435, -0.319] + ], + "o": [ + [0.649, 0], + [0.497, -0.263], + [0.283, -0.444], + [0, 0], + [-0.138, 0.09], + [-0.235, 0.069], + [-0.297, 0.056], + [-0.297, 0.043], + [-0.518, 0.073], + [-0.387, 0.164], + [-0.214, 0.276], + [0, 0.599], + [0.442, 0.31] + ], + "v": [ + [-35.036, 375.28], + [-33.317, 374.897], + [-32.146, 373.842], + [-31.722, 372.338], + [-31.722, 370.65], + [-32.292, 370.9], + [-33.089, 371.094], + [-33.98, 371.249], + [-34.788, 371.365], + [-36.144, 371.727], + [-37.045, 372.399], + [-37.367, 373.437], + [-36.714, 374.815] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 6, + "ks": { + "k": { + "i": [ + [0.787, 0], + [0.794, 0.353], + [0.463, 0.698], + [0, 1.051], + [-0.324, 0.603], + [-0.559, 0.366], + [-0.711, 0.19], + [-0.787, 0.078], + [-0.566, 0.082], + [-0.255, 0.172], + [0, 0.34], + [0, 0], + [0.414, 0.362], + [0.752, 0], + [0.469, -0.353], + [0.152, -0.525], + [0, 0], + [-0.608, 0.702], + [-0.96, 0.379], + [-1.271, 0], + [-0.808, -0.211], + [-0.628, -0.435], + [-0.366, -0.685], + [0, -0.948], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.428, -0.379], + [0.601, -0.215] + ], + "o": [ + [-1.015, 0], + [-0.794, -0.357], + [-0.456, -0.702], + [0, -0.883], + [0.325, -0.599], + [0.56, -0.366], + [0.718, -0.185], + [0.925, -0.095], + [0.566, -0.09], + [0.255, -0.172], + [0, 0], + [0, -0.659], + [-0.407, -0.357], + [-0.794, 0], + [-0.469, 0.345], + [0, 0], + [0.207, -0.969], + [0.608, -0.711], + [0.967, -0.388], + [0.884, 0], + [0.814, 0.207], + [0.635, 0.435], + [0.366, 0.676], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.255, 0.495], + [-0.428, 0.375], + [-0.6, 0.207] + ], + "v": [ + [-36.3, 378.326], + [-39.013, 377.796], + [-40.899, 376.211], + [-41.582, 373.579], + [-41.096, 371.352], + [-39.77, 369.905], + [-37.864, 369.073], + [-35.606, 368.682], + [-33.369, 368.414], + [-32.136, 368.018], + [-31.753, 367.252], + [-31.753, 367.191], + [-32.374, 365.666], + [-34.114, 365.128], + [-36.01, 365.658], + [-36.942, 366.963], + [-41.023, 366.631], + [-39.801, 364.124], + [-37.449, 362.488], + [-34.094, 361.906], + [-31.556, 362.221], + [-29.391, 363.181], + [-27.889, 364.861], + [-27.34, 367.295], + [-27.34, 378.024], + [-31.525, 378.024], + [-31.525, 375.819], + [-31.649, 375.819], + [-32.675, 377.132], + [-34.218, 378.015] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 7, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.132, -0.612], + [-0.594, -1.081], + [0, -1.408], + [0.607, -1.077], + [1.153, -0.599], + [1.629, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.559, 0.293], + [-0.276, 0.53], + [0, 0.698], + [0.283, 0.525], + [0.566, 0.289], + [0.87, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [1.609, 0], + [1.132, 0.607], + [0.6, 1.081], + [0, 1.408], + [-0.608, 1.077], + [-1.146, 0.603], + [0, 0], + [0, 0], + [0, 0], + [0.863, 0], + [0.566, -0.306], + [0.283, -0.538], + [0, -0.702], + [-0.276, -0.53], + [-0.566, -0.297], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-58.919, 378.024], + [-58.919, 356.811], + [-50.55, 356.811], + [-46.438, 357.732], + [-43.849, 360.269], + [-42.948, 364], + [-43.859, 367.73], + [-46.5, 370.245], + [-50.664, 371.145], + [-55.998, 371.145], + [-55.998, 367.553], + [-51.389, 367.553], + [-49.256, 367.109], + [-47.992, 365.856], + [-47.567, 364], + [-47.992, 362.156], + [-49.256, 360.924], + [-51.41, 360.481], + [-54.434, 360.481], + [-54.434, 378.024] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [1, 1, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 96, + "op": 183, + "st": 92.9999919505687, + "parent": 31 + }, + { + "ind": 31, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 96, + "s": [0] + }, + { "t": 108, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.006 }, + "t": 95, + "s": [568.059, 775.685, 0], + "ti": [0, -10.333, 0], + "to": [0, 10.333, 0] + }, + { "t": 117, "s": [568.059, 837.685, 0] } + ], + "a": 1 + }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 0.833] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0.167] }, + "t": 164, + "s": [100, 100, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 0.833] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0.167] }, + "t": 167, + "s": [89, 89, 100] + }, + { "t": 171, "s": [100, 100, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-9.259, 0], + [0, 0], + [0, -9.259], + [0, 0], + [9.259, 0], + [0, 0], + [0, 9.259], + [0, 0] + ], + "o": [ + [0, 0], + [9.259, 0], + [0, 0], + [0, 9.259], + [0, 0], + [-9.259, 0], + [0, 0], + [0, -9.259] + ], + "v": [ + [-225.188, -44.57], + [225.188, -44.57], + [241.952, -27.806], + [241.952, 27.806], + [225.188, 44.57], + [-225.188, 44.57], + [-241.952, 27.806], + [-241.952, -27.806] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [0.20000000298, 0.521568655968, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 96, + "op": 183, + "st": 92.9999919505687 + }, + { + "ind": 32, + "ty": 5, + "nm": "2", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.015] }, + "t": 0, + "s": [0] + }, + { "t": 12, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.02 }, + "t": 93, + "s": [456.972, 367.195, 0], + "ti": [-11.958, 27.75, 0], + "to": [11.958, -27.75, 0] + }, + { "t": 112, "s": [528.722, 200.695, 0] } + ], + "a": 1 + }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.02, 0.02, 0] }, + "t": 93, + "s": [100, 100, 100] + }, + { "t": 112, "s": [69, 69, 100] } + ], + "a": 1 + } + }, + "ln": "50", + "ip": 0, + "op": 183, + "st": 0, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Bold", + "fc": [1, 1, 1], + "s": 33, + "lh": 40, + "ls": 0, + "t": "2020 Vivid Voltage #50 \rRaikou - Holo", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 33, + "ty": 5, + "nm": "B", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.016] }, + "t": 0, + "s": [0] + }, + { "t": 13, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.02 }, + "t": 93, + "s": [216.85, 256.208, 0], + "ti": [-17.833, 25, 0], + "to": [17.833, -25, 0] + }, + { "t": 112, "s": [323.85, 103.208, 0] } + ], + "a": 1 + }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.02, 0.02, 0] }, + "t": 93, + "s": [100, 100, 100] + }, + { "t": 112, "s": [87, 87, 100] } + ], + "a": 1 + } + }, + "ip": 0, + "op": 183, + "st": 0, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Bold", + "fc": [1, 1, 1], + "s": 44, + "lh": 53, + "ls": 0, + "t": "Buy a collectible", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 34, + "ty": 5, + "nm": "$", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.015] }, + "t": 4, + "s": [0] + }, + { "t": 16, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0.632, 102.404, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "cl": "00", + "ip": 0, + "op": 182, + "st": 0, + "parent": 32, + "t": { + "a": [], + "d": { + "k": [ + { + "s": { + "f": "Inter-Medium", + "fc": [0.733, 0.733, 0.733], + "s": 34, + "lh": 41, + "ls": 0, + "t": "$20.00", + "j": 0, + "tr": 0 + }, + "t": 0 + } + ] + }, + "p": {}, + "m": { "a": { "a": 0, "k": [0, 0] }, "g": 1 } + } + }, + { + "ind": 35, + "ty": 2, + "nm": "p", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "rx": { "a": 0, "k": 0 }, + "ry": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 0, + "s": [0] + }, + { "t": 263, "s": [-727] } + ] + }, + "rz": { "a": 0, "k": 0 }, + "or": { "a": 0, "k": [0, 0, 0] }, + "p": { "a": 0, "k": [180, 157.778, 0] }, + "a": { "a": 0, "k": [73, 120, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "cl": "png", + "ip": 0, + "op": 263, + "st": 0, + "parent": 36, + "refId": "image_0" + }, + { + "ind": 36, + "ty": 2, + "nm": "p", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.019 }, + "t": 93, + "s": [324, 409, 0], + "ti": [-15.917, 29.833, 0], + "to": [15.917, -29.833, 0] + }, + { + "i": { "x": 0, "y": 0 }, + "o": { "x": 0.25, "y": 0.25 }, + "t": 112, + "s": [420, 230, 0], + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.013 }, + "t": 180, + "s": [420, 230, 0], + "ti": [-1.667, -71, 0], + "to": [1.667, 71, 0] + }, + { + "i": { "x": 0, "y": 0 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 198, + "s": [430, 656, 0], + "ti": [0, 0, 0], + "to": [0, 0, 0] + }, + { + "i": { "x": 0.24, "y": 0.99 }, + "o": { "x": 0.8, "y": 0.01 }, + "t": 249, + "s": [430, 656, 0], + "ti": [17.583, 41.167, 0], + "to": [-17.583, -41.167, 0] + }, + { "t": 262, "s": [324, 409, 0] } + ], + "a": 1 + }, + "a": { "a": 0, "k": [180, 180, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.019, 0.019, 0] }, + "t": 93, + "s": [63, 63, 100] + }, + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0, 0, 0] }, + "t": 112, + "s": [51, 51, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0, 0, 0] }, + "t": 180, + "s": [51, 51, 100] + }, + { + "i": { "x": [0.24, 0.24, 0.24], "y": [0.99, 0.99, 1] }, + "o": { "x": [0.8, 0.8, 0.8], "y": [0.01, 0.01, 0] }, + "t": 249, + "s": [51, 51, 100] + }, + { "t": 262, "s": [63, 63, 100] } + ], + "a": 1 + } + }, + "hasMask": true, + "masksProperties": [ + { + "inv": false, + "nm": "M", + "pt": { + "k": { + "i": [ + [2.593, 0], + [0, 0], + [0, -2.731], + [0, 0], + [-2.593, 0], + [0, 0], + [0, 2.731], + [0, 0] + ], + "o": [ + [0, 0], + [-2.593, 0], + [0, 0], + [0, 2.731], + [0, 0], + [2.593, 0], + [0, 0], + [0, -2.731] + ], + "v": [ + [311.972, 33.333], + [39.694, 33.333], + [35, 38.278], + [35, 325.056], + [39.694, 330], + [311.972, 330], + [316.667, 325.056], + [316.667, 38.278] + ], + "c": true + }, + "a": 0 + }, + "o": { "a": 0, "k": 100 }, + "mode": "a", + "x": { "a": 0, "k": 25 } + } + ], + "cl": "png", + "ip": 0, + "op": 263, + "st": 0, + "refId": "image_1" + }, + { + "ind": 37, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.01] }, + "t": 0, + "s": [0] + }, + { "t": 8, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0.582, -181.815, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [1.901, 0], + [1.716, 0.96], + [0.922, 1.771], + [0, 2.436], + [-0.921, 1.791], + [-1.671, 1.002], + [-2.266, 0], + [-1.315, -0.491], + [-0.98, -0.972], + [-0.55, -1.471], + [0, -1.961], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.4, 0.71], + [0.71, 0.401], + [0.93, 0], + [0.75, -0.451], + [0.42, -0.75], + [0.01, -0.91], + [0, 0], + [-0.425, -0.835], + [-0.78, -0.45], + [-1.075, 0], + [-0.59, 0.2], + [-0.425, 0.4], + [-0.22, 0.58], + [0, 0], + [0.93, -1.065], + [1.46, -0.59] + ], + "o": [ + [-2.376, 0], + [-1.701, -0.97], + [-0.921, -1.781], + [0, -2.371], + [0.922, -1.793], + [1.686, -1.001], + [1.521, 0], + [1.32, 0.481], + [0.995, 0.971], + [0.55, 1.466], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -0.92], + [-0.4, -0.71], + [-0.7, -0.411], + [-0.975, 0], + [-0.74, 0.441], + [-0.425, 0.745], + [0, 0], + [0, 1.14], + [0.43, 0.83], + [0.78, 0.45], + [0.71, 0], + [0.59, -0.2], + [0.42, -0.4], + [0, 0], + [-0.3, 1.42], + [-0.92, 1.05], + [-1.451, 0.58] + ], + "v": [ + [83.103, 197.77], + [76.971, 196.329], + [73.036, 192.213], + [71.654, 185.886], + [73.036, 179.639], + [76.926, 175.447], + [82.848, 173.945], + [87.1, 174.681], + [90.551, 176.859], + [92.866, 180.524], + [93.692, 185.661], + [93.692, 187.421], + [74.208, 187.421], + [74.208, 183.455], + [87.67, 183.455], + [87.07, 181.004], + [85.399, 179.338], + [82.953, 178.722], + [80.367, 179.398], + [78.627, 181.184], + [77.977, 183.665], + [77.977, 187.436], + [78.612, 190.397], + [80.427, 192.318], + [83.208, 192.993], + [85.159, 192.693], + [86.679, 191.793], + [87.64, 190.322], + [93.557, 190.712], + [91.711, 194.439], + [88.135, 196.899] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 1, + "ks": { + "k": { + "i": [ + [-0.281, -2.122], + [0, 0], + [0.331, 0.4], + [0.541, 0.24], + [0.741, 0], + [0.681, -0.421], + [0, -0.69], + [-0.441, -0.385], + [-1.072, -0.23], + [0, 0], + [-1.102, -1.025], + [0, -1.661], + [0.891, -1.14], + [1.543, -0.64], + [2.003, 0], + [1.813, 1.27], + [0.31, 2.201], + [0, 0], + [-0.731, -0.49], + [-1.142, 0], + [-0.681, 0.43], + [-0.01, 0.69], + [0.481, 0.37], + [1.001, 0.2], + [0, 0], + [1.102, 1.115], + [0, 1.726], + [-0.801, 1.071], + [-1.462, 0.581], + [-1.973, 0], + [-1.673, -1.232] + ], + "o": [ + [0, 0], + [-0.1, -0.5], + [-0.331, -0.411], + [-0.531, -0.251], + [-0.991, 0], + [-0.681, 0.411], + [0, 0.55], + [0.441, 0.38], + [0, 0], + [2.243, 0.46], + [1.101, 1.02], + [0, 1.515], + [-0.882, 1.145], + [-1.532, 0.63], + [-3.055, 0], + [-1.803, -1.28], + [0, 0], + [0.19, 0.93], + [0.731, 0.48], + [1.122, 0], + [0.691, -0.44], + [-0.01, -0.58], + [-0.481, -0.38], + [0, 0], + [-2.253, -0.45], + [-1.092, -1.11], + [0, -1.48], + [0.811, -1.072], + [1.473, -0.581], + [2.914, 0], + [1.683, 1.232] + ], + "v": [ + [68.453, 180.824], + [62.593, 181.184], + [61.948, 179.834], + [60.641, 178.857], + [58.733, 178.482], + [56.224, 179.112], + [55.202, 180.764], + [55.863, 182.165], + [58.132, 183.08], + [62.308, 183.92], + [67.326, 186.146], + [68.979, 190.167], + [67.642, 194.148], + [64.006, 196.824], + [58.703, 197.77], + [51.401, 195.864], + [48.232, 190.637], + [54.526, 190.307], + [55.908, 192.438], + [58.718, 193.158], + [61.422, 192.513], + [62.473, 190.817], + [61.737, 189.387], + [59.514, 188.517], + [55.518, 187.721], + [50.485, 185.376], + [48.847, 181.124], + [50.049, 177.295], + [53.459, 174.816], + [58.628, 173.945], + [65.508, 175.792] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 2, + "ks": { + "k": { + "i": [ + [-0.981, 0], + [-0.721, 0.37], + [-0.411, 0.64], + [0, 0.81], + [0, 0], + [0.351, -0.11], + [0.431, -0.09], + [0.431, -0.07], + [0.351, -0.05], + [0.561, -0.24], + [0.311, -0.41], + [0, -0.605], + [-0.631, -0.46] + ], + "o": [ + [0.941, 0], + [0.721, -0.38], + [0.411, -0.64], + [0, 0], + [-0.201, 0.13], + [-0.341, 0.1], + [-0.431, 0.08], + [-0.431, 0.06], + [-0.751, 0.11], + [-0.561, 0.24], + [-0.311, 0.4], + [0, 0.87], + [0.641, 0.45] + ], + "v": [ + [33.549, 193.338], + [36.043, 192.783], + [37.74, 191.253], + [38.356, 189.072], + [38.356, 186.626], + [37.53, 186.986], + [36.373, 187.271], + [35.081, 187.496], + [33.909, 187.661], + [31.941, 188.186], + [30.634, 189.162], + [30.169, 190.667], + [31.115, 192.663] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 3, + "ks": { + "k": { + "i": [ + [1.141, 0], + [1.152, 0.51], + [0.671, 1.01], + [0, 1.521], + [-0.471, 0.87], + [-0.811, 0.535], + [-1.031, 0.27], + [-1.142, 0.11], + [-0.821, 0.12], + [-0.371, 0.25], + [0, 0.495], + [0, 0], + [0.601, 0.521], + [1.092, 0], + [0.681, -0.511], + [0.221, -0.76], + [0, 0], + [-0.881, 1.022], + [-1.392, 0.551], + [-1.843, 0], + [-1.172, -0.301], + [-0.911, -0.631], + [-0.531, -0.991], + [0, -1.37], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.621, -0.55], + [0.871, -0.31] + ], + "o": [ + [-1.472, 0], + [-1.152, -0.52], + [-0.661, -1.025], + [0, -1.285], + [0.471, -0.87], + [0.811, -0.53], + [1.042, -0.27], + [1.342, -0.14], + [0.821, -0.13], + [0.371, -0.25], + [0, 0], + [0, -0.95], + [-0.591, -0.521], + [-1.152, 0], + [-0.681, 0.501], + [0, 0], + [0.301, -1.401], + [0.881, -1.031], + [1.402, -0.561], + [1.282, 0], + [1.182, 0.301], + [0.921, 0.631], + [0.531, 0.981], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.371, 0.725], + [-0.621, 0.54], + [-0.871, 0.3] + ], + "v": [ + [31.716, 197.755], + [27.78, 196.989], + [25.046, 194.694], + [24.054, 190.877], + [24.76, 187.646], + [26.683, 185.541], + [29.447, 184.34], + [32.722, 183.77], + [35.968, 183.38], + [37.755, 182.81], + [38.311, 181.694], + [38.311, 181.604], + [37.409, 179.398], + [34.886, 178.617], + [32.137, 179.383], + [30.784, 181.274], + [24.865, 180.794], + [26.638, 177.159], + [30.049, 174.786], + [34.916, 173.945], + [38.596, 174.395], + [41.736, 175.792], + [43.915, 178.226], + [44.711, 181.754], + [44.711, 197.32], + [38.641, 197.32], + [38.641, 194.118], + [38.461, 194.118], + [36.974, 196.029], + [34.736, 197.305] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 4, + "ks": { + "k": { + "i": [ + [0.01, -0.99], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-1.162, 0.771], + [-1.753, 0], + [-1.192, -0.701], + [-0.661, -1.302], + [0.01, -1.806], + [0, 0], + [0, 0], + [0, 0], + [0.731, 0.79], + [1.302, 0], + [0.671, -0.371], + [0.381, -0.71] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.521, -1.362], + [1.162, -0.781], + [1.602, 0], + [1.202, 0.691], + [0.671, 1.292], + [0, 0], + [0, 0], + [0, 0], + [0.01, -1.42], + [-0.721, -0.79], + [-0.871, 0], + [-0.661, 0.37], + [-0.371, 0.705] + ], + "v": [ + [5.559, 183.98], + [5.559, 197.32], + [-0.841, 197.32], + [-0.841, 166.553], + [5.379, 166.553], + [5.379, 178.316], + [5.649, 178.316], + [8.173, 175.117], + [12.545, 173.945], + [16.737, 174.996], + [19.531, 177.986], + [20.522, 182.63], + [20.522, 197.32], + [14.122, 197.32], + [14.122, 183.77], + [13.041, 180.449], + [10.006, 179.263], + [7.693, 179.819], + [6.13, 181.439] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 5, + "ks": { + "k": { + "i": [ + [2.053, 0], + [1.703, 1], + [0.911, 1.791], + [0, 2.336], + [-0.911, 1.781], + [-1.693, 1.002], + [-2.334, 0], + [-1.513, -0.731], + [-0.881, -1.322], + [-0.09, -1.786], + [0, 0], + [0.731, 0.7], + [1.172, 0], + [0.741, -0.541], + [0.411, -1.025], + [0, -1.45], + [-0.401, -1.03], + [-0.741, -0.54], + [-0.991, 0], + [-0.581, 0.3], + [-0.381, 0.57], + [-0.12, 0.81], + [0, 0], + [0.861, -1.34], + [1.502, -0.75] + ], + "o": [ + [-2.364, 0], + [-1.693, -1.01], + [-0.902, -1.791], + [0, -2.361], + [0.921, -1.793], + [1.693, -1.011], + [2.013, 0], + [1.512, 0.731], + [0.881, 1.322], + [0, 0], + [-0.17, -1.155], + [-0.721, -0.711], + [-0.991, 0], + [-0.731, 0.53], + [-0.411, 1.02], + [0, 1.475], + [0.411, 1.035], + [0.741, 0.54], + [0.731, 0], + [0.591, -0.3], + [0.391, -0.58], + [0, 0], + [-0.101, 1.766], + [-0.851, 1.335], + [-1.502, 0.75] + ], + "v": [ + [-14.821, 197.77], + [-20.92, 196.269], + [-24.826, 192.063], + [-26.179, 185.871], + [-24.811, 179.654], + [-20.89, 175.462], + [-14.851, 173.945], + [-9.563, 175.041], + [-5.972, 178.121], + [-4.515, 182.78], + [-10.554, 182.78], + [-11.906, 179.999], + [-14.746, 178.932], + [-17.345, 179.744], + [-19.057, 182.074], + [-19.674, 185.781], + [-19.072, 189.537], + [-17.345, 191.898], + [-14.746, 192.708], + [-12.778, 192.258], + [-11.321, 190.952], + [-10.554, 188.862], + [-4.515, 188.862], + [-5.957, 193.518], + [-9.488, 196.644] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 6, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.991, 0.731], + [-1.292, 0], + [-0.371, -0.04], + [-0.281, -0.07], + [0, 0], + [0.531, 0.07], + [0.441, 0], + [0.741, -0.41], + [0.431, -0.72], + [0, -0.94], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.421, -1.432], + [0.992, -0.741], + [0.32, 0], + [0.371, 0.04], + [0, 0], + [-0.301, -0.09], + [-0.531, -0.071], + [-0.941, 0], + [-0.731, 0.4], + [-0.421, 0.725], + [0, 0], + [0, 0] + ], + "v": [ + [-41.06, 197.32], + [-41.06, 174.245], + [-34.856, 174.245], + [-34.856, 178.271], + [-34.616, 178.271], + [-32.497, 175.026], + [-29.072, 173.915], + [-28.035, 173.975], + [-27.059, 174.14], + [-27.059, 179.819], + [-28.305, 179.579], + [-29.763, 179.473], + [-32.287, 180.089], + [-34.029, 181.769], + [-34.661, 184.265], + [-34.661, 197.32] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 7, + "ks": { + "k": { + "i": [ + [0.01, 1.03], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.212, -0.82], + [1.733, 0], + [1.171, 0.7], + [0.661, 1.295], + [0.01, 1.806], + [0, 0], + [0, 0], + [0, 0], + [-0.721, -0.79], + [-1.212, 0], + [-0.671, 0.35], + [-0.411, 0.705] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.521, 1.355], + [-1.202, 0.82], + [-1.542, 0], + [-1.172, -0.7], + [-0.651, -1.29], + [0, 0], + [0, 0], + [0, 0], + [0.01, 1.36], + [0.721, 0.79], + [0.771, 0], + [0.671, -0.36], + [0.421, -0.7] + ], + "v": [ + [-52.156, 187.496], + [-52.156, 174.245], + [-45.756, 174.245], + [-45.756, 197.32], + [-51.901, 197.32], + [-51.901, 193.128], + [-52.141, 193.128], + [-54.74, 196.389], + [-59.142, 197.62], + [-63.213, 196.569], + [-65.962, 193.578], + [-66.954, 188.937], + [-66.954, 174.245], + [-60.554, 174.245], + [-60.554, 187.796], + [-59.457, 191.027], + [-56.558, 192.213], + [-54.395, 191.688], + [-52.772, 190.092] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "P", + "ind": 8, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.643, -0.891], + [-0.861, -1.573], + [0, -2.043], + [0.881, -1.566], + [1.673, -0.87], + [2.364, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.811, 0.43], + [-0.401, 0.77], + [0, 1.012], + [0.411, 0.761], + [0.821, 0.421], + [1.262, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [2.334, 0], + [1.643, 0.881], + [0.871, 1.562], + [0, 2.043], + [-0.881, 1.561], + [-1.663, 0.875], + [0, 0], + [0, 0], + [0, 0], + [1.252, 0], + [0.821, -0.44], + [0.411, -0.781], + [0, -1.021], + [-0.401, -0.771], + [-0.821, -0.431], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-93.802, 197.32], + [-93.802, 166.553], + [-81.663, 166.553], + [-75.699, 167.89], + [-71.943, 171.571], + [-70.636, 176.979], + [-71.958, 182.39], + [-75.789, 186.036], + [-81.828, 187.346], + [-89.565, 187.346], + [-89.565, 182.134], + [-82.88, 182.134], + [-79.785, 181.484], + [-77.952, 179.669], + [-77.336, 176.979], + [-77.952, 174.305], + [-79.785, 172.517], + [-82.91, 171.872], + [-87.297, 171.872], + [-87.297, 197.32] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [1, 1, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 0, + "op": 96, + "st": 0, + "parent": 38 + }, + { + "ind": 38, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0], "y": [1] }, + "o": { "x": [0.25], "y": [0.01] }, + "t": 0, + "s": [0] + }, + { "t": 8, "s": [100] } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [567.918, 651.815, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { + "k": [ + { + "i": { "x": [0, 0, 0], "y": [1, 1, 1] }, + "o": { "x": [0.25, 0.25, 0.25], "y": [0.021, 0.021, 0] }, + "t": -4, + "s": [0, 0, 100] + }, + { + "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 13, + "s": [100, 100, 100] + }, + { + "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 83, + "s": [100, 100, 100] + }, + { + "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 87, + "s": [89, 89, 100] + }, + { "t": 90, "s": [100, 100, 100] } + ], + "a": 1 + } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": { + "i": [ + [-13.429, 0], + [0, 0], + [0, -13.429], + [0, 0], + [13.429, 0], + [0, 0], + [0, 13.429], + [0, 0] + ], + "o": [ + [0, 0], + [13.429, 0], + [0, 0], + [0, 13.429], + [0, 0], + [-13.429, 0], + [0, 0], + [0, -13.429] + ], + "v": [ + [-326.621, -64.647], + [326.621, -64.647], + [350.937, -40.331], + [350.937, 40.331], + [326.621, 64.647], + [-326.621, 64.647], + [-350.937, 40.331], + [-350.937, -40.331] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { "a": 0, "k": [0.20000000298, 0.521568655968, 1, 1] }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 0, + "op": 96, + "st": 0 + }, + { + "ind": 39, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [568.5, 470, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.01 }, + "t": 93, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-369.979, -319.201], + [369.979, -319.201], + [424.236, -264.944], + [424.236, 264.944], + [369.979, 319.201], + [-369.979, 319.201], + [-424.236, 264.944], + [-424.236, -264.944] + ], + "c": true + } + ] + }, + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.167, "y": 0 }, + "t": 112, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-237.979, -463.201], + [241.979, -463.201], + [296.236, -408.944], + [296.236, 408.694], + [241.979, 462.951], + [-237.979, 462.951], + [-292.236, 408.694], + [-292.236, -408.944] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.24, "y": 0.99 }, + "o": { "x": 0.8, "y": 0.01 }, + "t": 249, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-237.979, -463.201], + [241.979, -463.201], + [296.236, -408.944], + [296.236, 408.694], + [241.979, 462.951], + [-237.979, 462.951], + [-292.236, 408.694], + [-292.236, -408.944] + ], + "c": true + } + ] + }, + { + "t": 262, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-369.979, -319.201], + [369.979, -319.201], + [424.236, -264.944], + [424.236, 264.944], + [369.979, 319.201], + [-369.979, 319.201], + [-424.236, 264.944], + [-424.236, -264.944] + ], + "c": true + } + ] + } + ], + "a": 1 + } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 2 }, + "c": { + "a": 0, + "k": [0.223268995098, 0.223268995098, 0.223268995098, 1] + } + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 0, + "op": 263, + "st": 0 + }, + { + "ind": 40, + "ty": 4, + "nm": "L", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [568.5, 470, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "G", + "bm": 0, + "it": [ + { + "ty": "sh", + "nm": "P", + "ind": 0, + "ks": { + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.25, "y": 0.01 }, + "t": 93, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-369.979, -319.201], + [369.979, -319.201], + [424.236, -264.944], + [424.236, 264.944], + [369.979, 319.201], + [-369.979, 319.201], + [-424.236, 264.944], + [-424.236, -264.944] + ], + "c": true + } + ] + }, + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.167, "y": 0 }, + "t": 112, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-237.979, -463.201], + [241.979, -463.201], + [296.236, -408.944], + [296.236, 408.694], + [241.979, 462.951], + [-237.979, 462.951], + [-292.236, 408.694], + [-292.236, -408.944] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.24, "y": 0.99 }, + "o": { "x": 0.8, "y": 0.01 }, + "t": 249, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-237.979, -463.201], + [241.979, -463.201], + [296.236, -408.944], + [296.236, 408.694], + [241.979, 462.951], + [-237.979, 462.951], + [-292.236, 408.694], + [-292.236, -408.944] + ], + "c": true + } + ] + }, + { + "t": 262, + "s": [ + { + "i": [ + [-29.965, 0], + [0, 0], + [0, -29.965], + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0] + ], + "o": [ + [0, 0], + [29.965, 0], + [0, 0], + [0, 29.965], + [0, 0], + [-29.965, 0], + [0, 0], + [0, -29.965] + ], + "v": [ + [-369.979, -319.201], + [369.979, -319.201], + [424.236, -264.944], + [424.236, 264.944], + [369.979, 319.201], + [-369.979, 319.201], + [-424.236, 264.944], + [-424.236, -264.944] + ], + "c": true + } + ] + } + ], + "a": 1 + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.117647059262, 0.129411771894, 0.156862750649, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [0, 0] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 0, + "op": 263, + "st": 0 + }, + { + "ind": 41, + "ty": 4, + "nm": "S", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [245.261, 394.821, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [108.358, 108.358, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "E", + "bm": 0, + "it": [ + { + "ty": "el", + "nm": "E", + "d": 1, + "p": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [501.201, 501.201] } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 2 }, + "c": { + "a": 0, + "k": [0.603921568627, 0.984313785329, 0.84313731474, 1] + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.298039215686, 0.654901960784, 0.490196078431, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [233.67, 69.547] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 0, + "op": 263, + "st": 0, + "ef": [ + { + "ty": 29, + "ix": 1, + "nm": "G", + "ef": [ + { "ix": 1, "nm": "B", "ty": 0, "v": { "a": 0, "k": 226 } }, + { "ix": 2, "nm": "B", "ty": 7, "v": { "a": 0, "k": 1 } }, + { "ix": 3, "nm": "R", "ty": 7, "v": { "a": 0, "k": 0 } } + ], + "en": 1 + } + ], + "bm": 5 + }, + { + "ind": 42, + "ty": 4, + "nm": "S", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [405.261, 394.821, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [108.358, 108.358, 100] } + }, + "shapes": [ + { + "ty": "gr", + "nm": "E", + "bm": 0, + "it": [ + { + "ty": "el", + "nm": "E", + "d": 1, + "p": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [501.201, 501.201] } + }, + { + "ty": "st", + "nm": "S", + "bm": 0, + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100 }, + "w": { "a": 0, "k": 2 }, + "c": { + "a": 0, + "k": [0.603921568627, 0.984313785329, 0.84313731474, 1] + } + }, + { + "ty": "fl", + "nm": "F", + "bm": 0, + "c": { + "a": 0, + "k": [0.294117647059, 0.721568627451, 0.694117647059, 1] + }, + "o": { "a": 0, "k": 100 }, + "r": 1 + }, + { + "ty": "tr", + "o": { "a": 0, "k": 100 }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [215.67, 69.547] }, + "a": { "a": 0, "k": [0, 0] }, + "s": { "a": 0, "k": [100, 100] }, + "nm": "T", + "sk": { "a": 0, "k": 0 }, + "sa": { "a": 0, "k": 0 } + } + ] + } + ], + "ip": 0, + "op": 263, + "st": 0, + "ef": [ + { + "ty": 29, + "ix": 1, + "nm": "G", + "ef": [ + { "ix": 1, "nm": "B", "ty": 0, "v": { "a": 0, "k": 226 } }, + { "ix": 2, "nm": "B", "ty": 7, "v": { "a": 0, "k": 1 } }, + { "ix": 3, "nm": "R", "ty": 7, "v": { "a": 0, "k": 0 } } + ], + "en": 1 + } + ], + "bm": 5 + } + ], + "chars": [ + { + "ch": "$", + "fFamily": "Inter", + "size": 34.2749786376953, + "style": "Medium", + "w": 64.35, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "$", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "$", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [35.263, 9.091], + [35.263, -81.818], + [29.439, -81.818], + [29.439, 9.091] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "$", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [2.178, 3.018], + [3.776, 1.728], + [4.924, 0], + [3.882, -1.74], + [2.273, -3.125], + [0, -4.19], + [-3.397, -3.077], + [-5.824, -1.586], + [0, 0], + [-2.072, -0.899], + [-1.22, -1.373], + [0, -2.154], + [1.397, -1.763], + [2.426, -0.982], + [3.101, 0], + [2.355, 0.841], + [1.503, 1.74], + [0.213, 2.628], + [0, 0], + [-2.249, -3.184], + [-3.977, -1.728], + [-5.445, 0], + [-4.013, 1.847], + [-2.119, 3.196], + [0, 4.119], + [1.29, 2.344], + [2.083, 1.586], + [2.438, 0.971], + [2.32, 0.568], + [0, 0], + [1.539, 0.557], + [1.337, 0.841], + [0.817, 1.255], + [0, 1.728], + [-1.196, 1.622], + [-2.178, 0.936], + [-2.983, 0], + [-2.747, -1.858], + [-0.379, -3.361] + ], + "o": [ + [-0.095, -3.906], + [-2.178, -3.018], + [-3.776, -1.728], + [-4.877, 0], + [-3.883, 1.74], + [-2.273, 3.125], + [0, 5.066], + [3.397, 3.078], + [0, 0], + [2.604, 0.687], + [2.071, 0.9], + [1.219, 1.373], + [0, 2.368], + [-1.397, 1.764], + [-2.427, 0.983], + [-2.818, 0], + [-2.356, -0.84], + [-1.504, -1.74], + [0, 0], + [0.236, 4.38], + [2.249, 3.184], + [3.977, 1.728], + [5.682, 0], + [4.013, -1.847], + [2.118, -3.196], + [0, -3.267], + [-1.291, -2.344], + [-2.084, -1.586], + [-2.439, -0.97], + [0, 0], + [-1.42, -0.355], + [-1.539, -0.556], + [-1.338, -0.84], + [-0.817, -1.255], + [0, -2.06], + [1.195, -1.621], + [2.178, -0.935], + [4.166, 0], + [2.746, 1.859], + [0, 0] + ], + "v": [ + [58.239, -53.622], + [54.83, -64.009], + [45.898, -71.129], + [32.848, -73.722], + [19.709, -71.112], + [10.476, -63.814], + [7.067, -52.841], + [12.163, -40.625], + [25.994, -33.629], + [34.588, -31.286], + [41.602, -28.906], + [46.538, -25.497], + [48.366, -20.206], + [46.271, -14.009], + [40.536, -9.89], + [32.244, -8.416], + [24.485, -9.677], + [18.697, -13.548], + [16.122, -20.099], + [5.114, -20.099], + [8.842, -8.754], + [18.182, -1.385], + [32.315, 1.207], + [46.857, -1.562], + [56.055, -9.126], + [59.233, -20.099], + [57.298, -28.516], + [52.237, -34.411], + [45.455, -38.246], + [38.317, -40.554], + [31.214, -42.401], + [26.776, -43.768], + [22.461, -45.863], + [19.229, -49.006], + [18.004, -53.48], + [19.798, -59.002], + [24.858, -62.837], + [32.599, -64.24], + [42.969, -61.452], + [47.656, -53.622] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "2", + "fFamily": "Inter", + "size": 34.2749786376953, + "style": "Medium", + "w": 61.33, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "2", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "2", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.486, 3.161], + [-1.007, 2.581], + [0, 2.699], + [1.965, 3.113], + [3.492, 1.811], + [4.569, 0], + [3.551, -1.834], + [2.036, -3.314], + [0, -4.427], + [0, 0], + [-1.042, 1.941], + [-1.941, 1.065], + [-2.605, 0], + [-1.965, -0.959], + [-1.136, -1.763], + [0, -2.415], + [0.852, -1.894], + [1.716, -2.095], + [2.628, -2.77], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [4.427, -4.498], + [2.486, -3.161], + [1.006, -2.58], + [0, -3.906], + [-1.965, -3.113], + [-3.492, -1.811], + [-4.522, 0], + [-3.551, 1.835], + [-2.036, 3.315], + [0, 0], + [0, -2.604], + [1.041, -1.941], + [1.941, -1.065], + [2.462, 0], + [1.965, 0.959], + [1.136, 1.764], + [0, 2.131], + [-0.852, 1.894], + [-1.717, 2.095], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [54.865, 0], + [54.865, -9.411], + [22.124, -9.411], + [22.124, -9.943], + [36.577, -25.071], + [46.946, -36.559], + [52.184, -45.17], + [53.693, -53.089], + [50.746, -63.619], + [42.56, -71.005], + [30.469, -73.722], + [18.359, -70.969], + [9.979, -63.246], + [6.925, -51.634], + [17.401, -51.634], + [18.963, -58.452], + [23.438, -62.962], + [30.256, -64.56], + [36.896, -63.121], + [41.548, -59.038], + [43.253, -52.77], + [41.974, -46.733], + [38.121, -40.749], + [31.605, -33.452], + [6.996, -7.955], + [6.996, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "0", + "fFamily": "Inter", + "size": 34.2749786376953, + "style": "Medium", + "w": 64.6, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "0", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "0", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.977, 2.947], + [-2.107, 5.599], + [0, 7.931], + [2.118, 5.575], + [3.977, 2.947], + [5.563, 0], + [3.989, -2.935], + [2.118, -5.587], + [0, -7.884], + [-2.107, -5.611], + [-3.977, -2.935], + [-5.611, -0.024] + ], + "o": [ + [3.977, -2.947], + [2.107, -5.599], + [0, -7.884], + [-2.119, -5.575], + [-3.977, -2.947], + [-5.564, 0], + [-3.989, 2.936], + [-2.119, 5.587], + [0, 7.907], + [2.107, 5.611], + [3.977, 2.936], + [5.587, 0] + ], + "v": [ + [46.662, -3.214], + [55.788, -16.033], + [58.949, -36.328], + [55.771, -56.516], + [46.626, -69.3], + [32.315, -73.722], + [17.987, -69.318], + [8.825, -56.534], + [5.646, -36.328], + [8.807, -16.051], + [17.933, -3.232], + [32.315, 1.207] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "0", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.344, 2.143], + [1.266, 4.179], + [0, 6.061], + [-2.794, 4.83], + [-4.901, 0], + [-2.356, -2.166], + [-1.267, -4.178], + [0, -6.037], + [2.782, -4.806], + [4.924, 0] + ], + "o": [ + [-2.344, -2.142], + [-1.267, -4.178], + [0.023, -9.067], + [2.793, -4.83], + [3.243, 0], + [2.355, 2.166], + [1.266, 4.179], + [0, 9.091], + [-2.782, 4.806], + [-3.291, 0] + ], + "v": [ + [23.864, -11.488], + [18.448, -20.969], + [16.548, -36.328], + [20.774, -57.173], + [32.315, -64.418], + [40.714, -61.168], + [46.147, -51.651], + [48.047, -36.328], + [43.874, -15.483], + [32.315, -8.274] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": ".", + "fFamily": "Inter", + "size": 34.2749786376953, + "style": "Medium", + "w": 28.3, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": ".", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": ".", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.065, 0.639], + [-0.651, 1.078], + [0, 1.302], + [1.397, 1.385], + [1.941, 0], + [1.397, -1.385], + [0, -1.941], + [-1.397, -1.385], + [-1.941, 0] + ], + "o": [ + [1.065, -0.639], + [0.651, -1.077], + [0, -1.941], + [-1.397, -1.385], + [-1.941, 0], + [-1.397, 1.385], + [0, 1.965], + [1.397, 1.385], + [1.302, 0] + ], + "v": [ + [17.685, -0.284], + [20.259, -2.859], + [21.236, -6.428], + [19.141, -11.417], + [14.134, -13.494], + [9.126, -11.417], + [7.031, -6.428], + [9.126, -1.403], + [14.134, 0.675] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "B", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 66.09, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "B", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "B", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [-3.717, 1.752], + [-1.906, 3.018], + [0, 3.859], + [1.515, 2.592], + [2.426, 1.444], + [2.77, 0.119], + [0, 0], + [-1.977, 1.362], + [-1.136, 2.143], + [0, 2.841], + [1.799, 2.805], + [3.574, 1.586], + [5.35, 0], + [0, 0], + [0, 0] + ], + "o": [ + [5.445, 0], + [3.716, -1.752], + [1.905, -3.018], + [0, -3.574], + [-1.515, -2.592], + [-2.427, -1.444], + [0, 0], + [2.533, -0.568], + [1.976, -1.361], + [1.136, -2.142], + [0, -3.645], + [-1.799, -2.805], + [-3.575, -1.586], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [37.393, 0], + [51.136, -2.628], + [59.57, -9.783], + [62.429, -20.099], + [60.156, -29.35], + [54.244, -35.405], + [46.449, -37.749], + [46.449, -38.459], + [53.214, -41.353], + [57.884, -46.609], + [59.588, -54.084], + [56.889, -63.761], + [48.828, -70.348], + [35.44, -72.727], + [6.321, -72.727], + [6.321, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "B", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.788, -0.876], + [-0.971, -1.539], + [0, -2.012], + [1.965, -1.645], + [4.285, 0], + [0, 0] + ], + "o": [ + [0, 0], + [2.462, 0], + [1.787, 0.876], + [0.97, 1.539], + [0, 2.747], + [-1.965, 1.646], + [0, 0], + [0, 0] + ], + "v": [ + [21.697, -31.889], + [34.588, -31.889], + [40.962, -30.575], + [45.099, -26.953], + [46.555, -21.626], + [43.608, -15.039], + [34.233, -12.571], + [21.697, -12.571] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "B", + "ind": 2, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.859, -1.61], + [0, -2.628], + [0.959, -1.373], + [1.645, -0.746], + [2.107, 0], + [0, 0] + ], + "o": [ + [0, 0], + [3.409, 0], + [1.858, 1.61], + [0, 1.918], + [-0.959, 1.373], + [-1.646, 0.746], + [0, 0], + [0, 0] + ], + "v": [ + [21.697, -60.298], + [33.381, -60.298], + [41.282, -57.884], + [44.07, -51.527], + [42.631, -46.591], + [38.725, -43.413], + [33.097, -42.294], + [21.697, -42.294] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "u", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 62.18, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "u", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "u", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0.982, -1.657], + [1.586, -0.84], + [1.823, 0], + [1.705, 1.87], + [0.023, 3.22], + [0, 0], + [0, 0], + [0, 0], + [-1.551, -3.054], + [-2.77, -1.657], + [-3.646, 0], + [-2.853, 1.941], + [-1.231, 3.196], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [-0.983, 1.657], + [-1.586, 0.841], + [-2.865, 0], + [-1.705, -1.87], + [0, 0], + [0, 0], + [0, 0], + [0.023, 4.261], + [1.55, 3.054], + [2.77, 1.657], + [4.095, 0], + [2.853, -1.941], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.023, 2.439] + ], + "v": [ + [39.577, -17.081], + [35.724, -13.335], + [30.611, -12.074], + [23.757, -14.879], + [21.165, -22.514], + [21.165, -54.545], + [6.037, -54.545], + [6.037, -19.815], + [8.398, -8.842], + [14.879, -1.776], + [24.503, 0.71], + [34.925, -2.202], + [41.051, -9.908], + [41.619, -9.908], + [41.619, 0], + [56.143, 0], + [56.143, -54.545], + [41.016, -54.545], + [41.016, -23.224] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "y", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 58.59, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "y", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "y", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-2.652, 1.195], + [-1.74, 2.189], + [-1.018, 2.935], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.053, -0.71], + [1.432, 0.047], + [1.776, 0.544], + [0, 0], + [-1.669, -0.296], + [-1.918, 0] + ], + "o": [ + [2.651, -1.196], + [1.74, -2.19], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.663, 1.705], + [-1.054, 0.71], + [-1.433, -0.048], + [0, 0], + [1.089, 0.449], + [1.669, 0.296], + [3.74, 0] + ], + "v": [ + [24.964, 18.661], + [31.552, 13.583], + [35.689, 5.895], + [56.889, -54.545], + [40.874, -54.545], + [29.474, -14.489], + [28.906, -14.489], + [17.614, -54.545], + [1.705, -54.545], + [21.271, 1.562], + [20.384, 3.871], + [17.809, 7.493], + [14.08, 8.487], + [9.268, 7.599], + [5.859, 18.892], + [9.996, 20.011], + [15.376, 20.455] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": " ", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 23.19, + "data": {} + }, + { + "ch": "a", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 58.03, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "a", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "a", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-2.06, 0.722], + [-1.468, 1.291], + [-0.876, 1.705], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.255, 2.332], + [2.166, 1.491], + [2.782, 0.71], + [3.03, 0], + [3.303, -1.314], + [2.083, -2.426], + [0.71, -3.314], + [0, 0], + [-1.61, 1.196], + [-2.723, 0], + [-1.409, -1.231], + [0, -2.249], + [0, 0], + [0.876, -0.591], + [1.941, -0.296], + [3.172, -0.331], + [2.45, -0.639], + [1.918, -1.255], + [1.113, -2.06], + [0, -3.03], + [-1.575, -2.403], + [-2.723, -1.219], + [-3.48, 0] + ], + "o": [ + [2.06, -0.722], + [1.468, -1.29], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -3.243], + [-1.255, -2.332], + [-2.166, -1.491], + [-2.782, -0.71], + [-4.356, 0], + [-3.303, 1.314], + [-2.084, 2.427], + [0, 0], + [0.52, -1.799], + [1.61, -1.195], + [2.58, 0], + [1.408, 1.231], + [0, 0], + [0, 1.16], + [-0.876, 0.592], + [-1.941, 0.296], + [-2.699, 0.261], + [-2.45, 0.639], + [-1.918, 1.255], + [-1.113, 2.06], + [0, 3.599], + [1.574, 2.403], + [2.722, 1.219], + [2.699, 0] + ], + "v": [ + [28.729, -0.053], + [34.02, -3.072], + [37.536, -7.564], + [37.962, -7.564], + [37.962, 0], + [52.308, 0], + [52.308, -36.79], + [50.426, -45.153], + [45.295, -50.888], + [37.873, -54.19], + [29.155, -55.256], + [17.667, -53.285], + [9.588, -47.674], + [5.398, -39.062], + [19.389, -37.926], + [22.585, -42.418], + [29.084, -44.212], + [35.067, -42.365], + [37.18, -37.145], + [37.18, -36.932], + [35.866, -34.304], + [31.641, -32.972], + [23.97, -32.031], + [16.246, -30.682], + [9.695, -27.841], + [5.149, -22.869], + [3.48, -15.234], + [5.842, -6.232], + [12.287, -0.799], + [21.591, 1.03] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "a", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.503, 1.078], + [0, 2.06], + [-0.734, 0.959], + [-1.326, 0.568], + [-1.776, 0.261], + [-1.018, 0.154], + [-1.018, 0.201], + [-0.817, 0.249], + [-0.474, 0.308], + [0, 0], + [0.97, -1.515], + [1.705, -0.888], + [2.225, 0] + ], + "o": [ + [-1.504, -1.077], + [0, -1.42], + [0.734, -0.959], + [1.326, -0.568], + [0.828, -0.118], + [1.018, -0.154], + [1.018, -0.201], + [0.817, -0.249], + [0, 0], + [0, 1.918], + [-0.971, 1.515], + [-1.705, 0.888], + [-2.32, 0] + ], + "v": [ + [20.188, -11.026], + [17.933, -15.732], + [19.034, -19.3], + [22.124, -21.591], + [26.776, -22.834], + [29.545, -23.242], + [32.599, -23.775], + [35.352, -24.45], + [37.287, -25.284], + [37.287, -19.496], + [35.831, -14.347], + [31.818, -10.742], + [25.923, -9.411] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "c", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 58.74, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "c", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "c", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.551, 1.776], + [-2.024, 3.161], + [-0.237, 4.167], + [0, 0], + [0.911, -1.361], + [1.385, -0.71], + [1.728, 0], + [1.752, 1.278], + [0.959, 2.439], + [0, 3.48], + [-0.971, 2.415], + [-1.74, 1.267], + [-2.344, 0], + [-1.717, -1.669], + [-0.403, -2.722], + [0, 0], + [2.083, 3.125], + [3.574, 1.728], + [4.759, 0], + [4.001, -2.379], + [2.166, -4.226], + [0, -5.587], + [-2.143, -4.238], + [-4.013, -2.379], + [-5.587, 0] + ], + "o": [ + [3.551, -1.776], + [2.024, -3.161], + [0, 0], + [-0.284, 1.918], + [-0.912, 1.362], + [-1.385, 0.71], + [-2.344, 0], + [-1.752, -1.278], + [-0.959, -2.438], + [0, -3.432], + [0.97, -2.415], + [1.74, -1.266], + [2.77, 0], + [1.716, 1.669], + [0, 0], + [-0.213, -4.214], + [-2.084, -3.125], + [-3.575, -1.728], + [-5.516, 0], + [-4.001, 2.379], + [-2.166, 4.226], + [0, 5.516], + [2.142, 4.238], + [4.013, 2.379], + [4.853, 0] + ], + "v": [ + [43.288, -1.598], + [51.651, -9.002], + [55.043, -19.993], + [40.767, -19.993], + [38.974, -15.075], + [35.529, -11.967], + [30.859, -10.902], + [24.716, -12.82], + [20.65, -18.395], + [19.212, -27.273], + [20.668, -36.044], + [24.734, -41.566], + [30.859, -43.466], + [37.589, -40.962], + [40.767, -34.375], + [55.043, -34.375], + [51.598, -45.384], + [43.111, -52.663], + [30.611, -55.256], + [16.335, -51.687], + [7.085, -41.779], + [3.835, -27.06], + [7.049, -12.429], + [16.282, -2.504], + [30.682, 1.065] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "o", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 61.36, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "o", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "o", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.013, 2.356], + [-2.178, 4.226], + [0, 5.587], + [2.178, 4.226], + [4.013, 2.356], + [5.516, 0], + [4.013, -2.355], + [2.178, -4.226], + [0, -5.634], + [-2.178, -4.226], + [-4.013, -2.355], + [-5.516, 0] + ], + "o": [ + [4.013, -2.355], + [2.178, -4.226], + [0, -5.634], + [-2.178, -4.226], + [-4.013, -2.355], + [-5.516, 0], + [-4.013, 2.356], + [-2.178, 4.226], + [0, 5.587], + [2.178, 4.226], + [4.013, 2.356], + [5.516, 0] + ], + "v": [ + [44.975, -2.468], + [54.261, -12.34], + [57.528, -27.06], + [54.261, -41.85], + [44.975, -51.722], + [30.682, -55.256], + [16.388, -51.722], + [7.102, -41.85], + [3.835, -27.06], + [7.102, -12.34], + [16.388, -2.468], + [30.682, 1.065] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "o", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.716, 1.433], + [0.864, 2.486], + [0, 3.173], + [-0.864, 2.486], + [-1.717, 1.444], + [-2.534, 0], + [-1.681, -1.444], + [-0.864, -2.486], + [0, -3.172], + [0.864, -2.486], + [1.681, -1.432], + [2.509, 0] + ], + "o": [ + [-1.717, -1.432], + [-0.864, -2.486], + [0, -3.172], + [0.864, -2.486], + [1.716, -1.444], + [2.509, 0], + [1.681, 1.444], + [0.864, 2.486], + [0, 3.173], + [-0.864, 2.486], + [-1.681, 1.433], + [-2.534, 0] + ], + "v": [ + [24.379, -12.802], + [20.508, -18.679], + [19.212, -27.166], + [20.508, -35.653], + [24.379, -41.548], + [30.753, -43.714], + [37.038, -41.548], + [40.856, -35.653], + [42.152, -27.166], + [40.856, -18.679], + [37.038, -12.802], + [30.753, -10.653] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "l", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 27.2, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "l", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "l", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [6.037, -72.727], + [6.037, 0], + [21.165, 0], + [21.165, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "e", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 59.77, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "e", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "e", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.445, 1.385], + [-2.19, 2.498], + [-0.71, 3.362], + [0, 0], + [0.994, -0.947], + [1.397, -0.473], + [1.681, 0], + [1.847, 1.065], + [1.006, 1.965], + [0, 2.699], + [0, 0], + [-0.994, 1.764], + [-1.764, 1.054], + [-2.297, 0], + [-1.669, -0.959], + [-0.947, -1.681], + [0, -2.178], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.302, 3.468], + [2.332, 2.297], + [3.113, 1.149], + [3.598, 0], + [3.965, -2.367], + [2.178, -4.238], + [0, -5.611], + [-2.178, -4.202], + [-4.037, -2.284], + [-5.611, 0] + ], + "o": [ + [3.445, -1.385], + [2.19, -2.497], + [0, 0], + [-0.521, 1.373], + [-0.994, 0.947], + [-1.397, 0.474], + [-2.534, 0], + [-1.847, -1.065], + [-1.007, -1.965], + [0, 0], + [0.023, -2.154], + [0.994, -1.763], + [1.763, -1.053], + [2.202, 0], + [1.669, 0.959], + [0.947, 1.681], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -4.64], + [-1.302, -3.468], + [-2.332, -2.296], + [-3.113, -1.148], + [-5.351, 0], + [-3.966, 2.368], + [-2.178, 4.238], + [0, 5.753], + [2.178, 4.203], + [4.036, 2.285], + [4.498, 0] + ], + "v": [ + [42.809, -1.012], + [51.261, -6.836], + [55.611, -15.625], + [41.619, -16.548], + [39.347, -13.068], + [35.76, -10.938], + [31.143, -10.227], + [24.574, -11.825], + [20.295, -16.371], + [18.786, -23.366], + [18.786, -32.28], + [20.312, -38.157], + [24.45, -42.383], + [30.54, -43.963], + [36.346, -42.525], + [40.27, -38.565], + [41.69, -32.777], + [9.872, -32.777], + [9.872, -23.402], + [55.93, -23.402], + [55.93, -27.557], + [53.977, -39.719], + [48.526, -48.366], + [40.359, -53.533], + [30.291, -55.256], + [16.317, -51.705], + [7.102, -41.797], + [3.835, -27.024], + [7.102, -12.092], + [16.424, -2.362], + [30.895, 1.065] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "t", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 38.85, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "t", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "t", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [2.202, -54.545], + [2.202, -43.182], + [35.05, -43.182], + [35.05, -54.545] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "t", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.515, -2.344], + [-2.734, -1.113], + [-3.646, 0.142], + [-1.373, 0.32], + [-0.758, 0.237], + [0, 0], + [0.71, -0.13], + [0.71, 0], + [0.769, 0.308], + [0.426, 0.77], + [0, 1.397], + [0, 0], + [0, 0] + ], + "o": [ + [-0.024, 3.575], + [1.515, 2.344], + [2.734, 1.113], + [1.965, -0.071], + [1.373, -0.32], + [0, 0], + [-0.379, 0.071], + [-0.71, 0.13], + [-1.018, 0], + [-0.77, -0.307], + [-0.426, -0.769], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [9.659, -14.773], + [11.896, -5.895], + [18.271, -0.71], + [27.841, 0.746], + [32.848, 0.16], + [36.044, -0.675], + [33.665, -11.932], + [32.031, -11.63], + [29.901, -11.435], + [27.219, -11.896], + [25.426, -13.512], + [24.787, -16.761], + [24.787, -67.614], + [9.659, -67.614] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "i", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 27.2, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "i", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "i", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.165, 0], + [21.165, -54.545], + [6.037, -54.545], + [6.037, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "i", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.598, 1.504], + [0, 2.107], + [1.598, 1.504], + [2.249, 0], + [1.598, -1.503], + [0, -2.083], + [-1.598, -1.503], + [-2.249, 0] + ], + "o": [ + [1.598, -1.503], + [0, -2.083], + [-1.598, -1.503], + [-2.249, 0], + [-1.598, 1.504], + [0, 2.107], + [1.598, 1.504], + [2.249, 0] + ], + "v": [ + [19.407, -63.832], + [21.804, -69.247], + [19.407, -74.627], + [13.636, -76.882], + [7.866, -74.627], + [5.469, -69.247], + [7.866, -63.832], + [13.636, -61.577] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "b", + "fFamily": "Inter", + "size": 44.7860717773438, + "style": "Bold", + "w": 63.53, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "b", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "b", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.302, -1.479], + [-2.048, -0.97], + [-2.936, 0], + [-3.35, 2.143], + [-1.953, 4.179], + [0, 6.085], + [2.012, 4.155], + [3.361, 2.072], + [3.977, 0], + [2.047, -1.03], + [1.266, -1.527], + [0.663, -1.468], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0.686, 1.515], + [1.302, 1.48], + [2.047, 0.97], + [4.143, 0], + [3.35, -2.142], + [1.953, -4.178], + [0, -6.25], + [-2.012, -4.155], + [-3.362, -2.071], + [-3.054, 0], + [-2.048, 1.03], + [-1.267, 1.527], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.236, 0], + [21.236, -8.736], + [21.911, -8.736], + [24.893, -4.244], + [29.918, -0.568], + [37.393, 0.888], + [48.633, -2.326], + [56.587, -11.808], + [59.517, -27.202], + [56.499, -42.809], + [48.438, -52.148], + [37.429, -55.256], + [29.776, -53.711], + [24.805, -49.876], + [21.911, -45.384], + [21.449, -45.384], + [21.449, -72.727], + [6.321, -72.727], + [6.321, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "b", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-0.9, 2.391], + [-1.693, 1.302], + [-2.462, 0], + [-1.705, -1.349], + [-0.876, -2.391], + [0, -3.148], + [0.888, -2.426], + [1.705, -1.361], + [2.462, 0], + [1.705, 1.338], + [0.899, 2.415], + [0, 3.244] + ], + "o": [ + [0.899, -2.391], + [1.692, -1.302], + [2.486, 0], + [1.705, 1.349], + [0.876, 2.391], + [0, 3.173], + [-0.888, 2.427], + [-1.705, 1.362], + [-2.439, 0], + [-1.705, -1.337], + [-0.9, -2.415], + [0, -3.243] + ], + "v": [ + [22.479, -35.724], + [26.367, -41.264], + [32.599, -43.217], + [38.885, -41.193], + [42.756, -35.582], + [44.07, -27.273], + [42.738, -18.874], + [38.849, -13.192], + [32.599, -11.151], + [26.385, -13.157], + [22.479, -18.786], + [21.129, -27.273] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "2", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 63, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "2", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "2", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.747, 3.255], + [-1.078, 2.676], + [0, 2.747], + [2.154, 3.244], + [3.871, 1.835], + [5.208, 0], + [3.882, -1.918], + [2.154, -3.503], + [0, -4.759], + [0, 0], + [-0.9, 1.681], + [-1.657, 0.9], + [-2.226, 0], + [-1.681, -0.84], + [-0.971, -1.55], + [0, -2.131], + [0.781, -1.645], + [1.503, -1.705], + [2.202, -2.131], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [4.995, -4.545], + [2.746, -3.255], + [1.077, -2.675], + [0, -4.19], + [-2.155, -3.243], + [-3.871, -1.834], + [-5.066, 0], + [-3.883, 1.918], + [-2.155, 3.504], + [0, 0], + [0, -2.32], + [0.899, -1.681], + [1.657, -0.899], + [2.131, 0], + [1.681, 0.841], + [0.97, 1.551], + [0, 1.918], + [-0.781, 1.646], + [-1.504, 1.705], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [57.741, 0], + [57.741, -12.571], + [27.202, -12.571], + [27.202, -13.068], + [37.82, -23.473], + [49.432, -35.174], + [55.167, -44.07], + [56.783, -52.202], + [53.551, -63.352], + [44.514, -70.969], + [30.895, -73.722], + [17.472, -70.845], + [8.416, -62.713], + [5.185, -50.32], + [19.78, -50.32], + [21.129, -56.321], + [24.964, -60.192], + [30.788, -61.541], + [36.506, -60.281], + [40.483, -56.694], + [41.939, -51.172], + [40.767, -45.827], + [37.34, -40.803], + [31.783, -35.05], + [5.895, -11.08], + [5.895, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "0", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 68.82, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "0", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "0", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.38, 2.983], + [-2.356, 5.659], + [0, 7.978], + [2.367, 5.575], + [4.391, 2.936], + [6.084, 0], + [4.391, -2.924], + [2.355, -5.587], + [0, -7.931], + [-2.356, -5.658], + [-4.392, -2.983], + [-6.108, -0.024] + ], + "o": [ + [4.38, -2.983], + [2.355, -5.658], + [0.023, -7.931], + [-2.368, -5.575], + [-4.392, -2.935], + [-6.085, 0], + [-4.392, 2.924], + [-2.356, 5.587], + [-0.024, 7.955], + [2.355, 5.659], + [4.391, 2.983], + [6.108, 0] + ], + "v": [ + [50.142, -2.876], + [60.245, -15.838], + [63.778, -36.293], + [60.263, -56.552], + [50.124, -69.318], + [34.411, -73.722], + [18.697, -69.336], + [8.576, -56.57], + [5.043, -36.293], + [8.54, -15.874], + [18.661, -2.912], + [34.411, 1.598] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "0", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.06, 1.859], + [1.124, 3.729], + [0, 5.587], + [-2.486, 4.143], + [-4.143, 0], + [-2.048, -1.847], + [-1.125, -3.669], + [0, -5.516], + [2.486, -4.19], + [4.166, 0] + ], + "o": [ + [-2.06, -1.858], + [-1.125, -3.729], + [0.023, -8.262], + [2.486, -4.143], + [2.77, 0], + [2.047, 1.847], + [1.124, 3.67], + [0.023, 8.381], + [-2.486, 4.19], + [-2.77, 0] + ], + "v": [ + [27.166, -13.938], + [22.39, -22.319], + [20.703, -36.293], + [24.467, -54.901], + [34.411, -61.115], + [41.637, -58.345], + [46.396, -50.071], + [48.082, -36.293], + [44.389, -17.436], + [34.411, -11.151] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "V", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 74.79, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "V", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "V", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [2.379, -72.727], + [27.486, 0], + [47.301, 0], + [72.372, -72.727], + [55.327, -72.727], + [37.713, -17.472], + [37.038, -17.472], + [19.46, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "v", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 58.59, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "v", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "v", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [40.874, -54.545], + [29.581, -15.518], + [29.013, -15.518], + [17.685, -54.545], + [1.705, -54.545], + [20.774, 0], + [37.82, 0], + [56.889, -54.545] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "d", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 63.53, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "d", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "d", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-2.048, 0.97], + [-1.291, 1.48], + [-0.71, 1.515], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.266, 1.527], + [2.047, 1.03], + [3.054, 0], + [3.35, -2.071], + [2.012, -4.155], + [0, -6.25], + [-1.953, -4.178], + [-3.35, -2.142], + [-4.143, 0] + ], + "o": [ + [2.047, -0.97], + [1.29, -1.479], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.663, -1.468], + [-1.267, -1.527], + [-2.048, -1.03], + [-4.001, 0], + [-3.35, 2.072], + [-2.012, 4.155], + [0, 6.085], + [1.953, 4.179], + [3.35, 2.143], + [2.935, 0] + ], + "v": [ + [33.612, -0.568], + [38.619, -4.244], + [41.619, -8.736], + [42.259, -8.736], + [42.259, 0], + [57.173, 0], + [57.173, -72.727], + [42.081, -72.727], + [42.081, -45.384], + [41.619, -45.384], + [38.725, -49.876], + [33.754, -53.711], + [26.101, -55.256], + [15.075, -52.148], + [7.031, -42.809], + [4.013, -27.202], + [6.942, -11.808], + [14.897, -2.326], + [26.136, 0.888] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "d", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.692, 1.362], + [0.888, 2.427], + [0, 3.173], + [-0.876, 2.391], + [-1.705, 1.349], + [-2.486, 0], + [-1.705, -1.302], + [-0.9, -2.391], + [0, -3.243], + [0.911, -2.415], + [1.692, -1.337], + [2.438, 0] + ], + "o": [ + [-1.693, -1.361], + [-0.888, -2.426], + [0, -3.148], + [0.876, -2.391], + [1.705, -1.349], + [2.438, 0], + [1.705, 1.302], + [0.899, 2.391], + [0, 3.244], + [-0.912, 2.415], + [-1.693, 1.338], + [-2.486, 0] + ], + "v": [ + [24.663, -13.192], + [20.792, -18.874], + [19.46, -27.273], + [20.774, -35.582], + [24.645, -41.193], + [30.93, -43.217], + [37.145, -41.264], + [41.051, -35.724], + [42.401, -27.273], + [41.033, -18.786], + [37.127, -13.157], + [30.93, -11.151] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "g", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 63.32, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "g", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "g", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.013, 1.574], + [-2.273, 3.125], + [0, 4.64], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.266, 1.527], + [2.06, 1.03], + [3.054, 0], + [3.35, -2.06], + [2.012, -4.143], + [0, -6.179], + [-1.977, -3.942], + [-3.35, -1.905], + [-4.096, 0], + [-2.084, 0.852], + [-1.326, 1.349], + [-0.663, 1.515], + [0, 0], + [0, 0], + [2.142, -1.598], + [3.29, 0], + [1.527, 0.58], + [0.923, 0.947], + [0.426, 1.089], + [0, 0], + [-2.06, -2.297], + [-3.492, -1.338], + [-4.901, 0] + ], + "o": [ + [4.013, -1.575], + [2.273, -3.125], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.687, -1.468], + [-1.267, -1.527], + [-2.06, -1.03], + [-4.001, 0], + [-3.35, 2.06], + [-2.012, 4.143], + [0, 6.037], + [1.976, 3.942], + [3.35, 1.906], + [2.888, 0], + [2.083, -0.852], + [1.326, -1.349], + [0, 0], + [0, 0], + [0, 3.74], + [-2.143, 1.598], + [-2.202, 0], + [-1.527, -0.58], + [-0.923, -0.947], + [0, 0], + [0.615, 2.864], + [2.06, 2.296], + [3.492, 1.337], + [5.208, 0] + ], + "v": [ + [44.442, 19.229], + [53.871, 12.18], + [57.28, 0.533], + [57.28, -54.545], + [42.259, -54.545], + [42.259, -45.384], + [41.69, -45.384], + [38.761, -49.876], + [33.771, -53.711], + [26.101, -55.256], + [15.075, -52.166], + [7.031, -42.862], + [4.013, -27.379], + [6.978, -12.411], + [14.968, -3.64], + [26.136, -0.781], + [33.594, -2.06], + [38.707, -5.362], + [41.69, -9.659], + [42.33, -9.659], + [42.33, 0.32], + [39.116, 8.327], + [30.966, 10.724], + [25.373, 9.854], + [21.697, 7.564], + [19.673, 4.51], + [5.682, 6.392], + [9.695, 14.134], + [18.022, 19.585], + [30.611, 21.591] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "g", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.692, 1.243], + [0.888, 2.285], + [0, 3.149], + [-0.876, 2.368], + [-1.705, 1.338], + [-2.486, 0], + [-1.705, -1.302], + [-0.9, -2.355], + [0, -3.196], + [0.911, -2.284], + [1.692, -1.219], + [2.438, 0] + ], + "o": [ + [-1.693, -1.243], + [-0.888, -2.284], + [0, -3.101], + [0.876, -2.367], + [1.705, -1.337], + [2.438, 0], + [1.705, 1.302], + [0.899, 2.356], + [0, 3.196], + [-0.912, 2.285], + [-1.693, 1.22], + [-2.486, 0] + ], + "v": [ + [24.663, -14.009], + [20.792, -19.3], + [19.46, -27.45], + [20.774, -35.653], + [24.645, -41.211], + [30.93, -43.217], + [37.145, -41.264], + [41.051, -35.778], + [42.401, -27.45], + [41.033, -19.229], + [37.127, -13.974], + [30.93, -12.145] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "#", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 64.95, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "#", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "#", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [44.957, 0], + [56.889, -72.727], + [45.526, -72.727], + [33.594, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "#", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [57.848, -18.04], + [59.73, -29.403], + [2.912, -29.403], + [1.03, -18.04] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "#", + "ind": 2, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [19.389, 0], + [31.321, -72.727], + [19.957, -72.727], + [8.026, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "#", + "ind": 3, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [62.003, -43.324], + [63.92, -54.688], + [7.102, -54.688], + [5.185, -43.324] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "5", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 64.45, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "5", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "5", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.084, 2.166], + [-2.285, 3.8], + [0.023, 4.901], + [1.989, 3.587], + [3.432, 2.06], + [4.38, 0], + [2.58, -1.184], + [1.278, -1.799], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.001, 0.876], + [-2.131, 0], + [-1.894, -1.089], + [-1.078, -1.941], + [0, -2.557], + [1.053, -1.929], + [1.858, -1.077], + [2.415, 0], + [2.202, 1.752], + [0.165, 2.818], + [0, 0], + [-2.297, -3.243], + [-3.918, -1.847], + [-5.019, 0] + ], + "o": [ + [4.084, -2.166], + [2.284, -3.8], + [0.023, -4.664], + [-1.989, -3.587], + [-3.433, -2.06], + [-3.196, 0], + [-2.581, 1.184], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.113, -1.515], + [2, -0.876], + [2.438, 0.024], + [1.894, 1.089], + [1.077, 1.941], + [0, 2.51], + [-1.054, 1.93], + [-1.859, 1.078], + [-3.031, 0], + [-2.202, -1.752], + [0, 0], + [0.094, 4.19], + [2.296, 3.244], + [3.918, 1.847], + [5.398, 0] + ], + "v": [ + [46.68, -2.255], + [56.232, -11.204], + [59.624, -24.254], + [56.676, -36.63], + [48.544, -45.099], + [36.825, -48.189], + [28.161, -46.413], + [22.372, -41.939], + [21.946, -41.939], + [23.828, -60.156], + [55.611, -60.156], + [55.611, -72.727], + [11.151, -72.727], + [7.706, -34.375], + [21.378, -31.925], + [26.048, -35.511], + [32.244, -36.825], + [38.743, -35.156], + [43.2, -30.611], + [44.815, -23.864], + [43.235, -17.205], + [38.867, -12.695], + [32.457, -11.08], + [24.609, -13.707], + [21.058, -20.561], + [6.143, -20.561], + [9.73, -9.411], + [19.052, -1.776], + [32.457, 0.994] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "\r", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 0 + }, + { + "ch": "R", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 65.62, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "R", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "R", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.953, -0.864], + [-0.959, -1.657], + [0, -2.415], + [0.959, -1.61], + [1.941, -0.805], + [2.935, 0], + [0, 0], + [0, 0], + [0, 0], + [-3.942, 1.847], + [-2.084, 3.468], + [0, 4.83], + [2.047, 3.563], + [3.894, 1.953], + [5.492, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [2.959, 0], + [1.953, 0.864], + [0.959, 1.657], + [0, 2.391], + [-0.959, 1.61], + [-1.941, 0.805], + [0, 0], + [0, 0], + [0, 0], + [5.587, 0], + [3.942, -1.847], + [2.083, -3.468], + [0, -4.806], + [-2.048, -3.563], + [-3.895, -1.953], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.697, 0], + [21.697, -60.156], + [32.067, -60.156], + [39.435, -58.86], + [43.803, -55.078], + [45.241, -48.97], + [43.803, -42.969], + [39.453, -39.347], + [32.138, -38.139], + [15.412, -38.139], + [15.412, -25.781], + [34.624, -25.781], + [48.917, -28.551], + [57.955, -36.523], + [61.08, -48.97], + [58.008, -61.523], + [49.094, -69.798], + [35.014, -72.727], + [6.321, -72.727], + [6.321, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "R", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [29.013, -33.097], + [46.697, 0], + [63.672, 0], + [45.597, -33.097] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "k", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 58.17, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "k", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "k", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [29.759, -27.131], + [33.345, -27.131], + [56.818, -54.545], + [39.453, -54.545], + [21.982, -33.842], + [19.78, -33.842], + [19.744, -15.696] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "k", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.165, 0], + [21.165, -72.727], + [6.037, -72.727], + [6.037, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "k", + "ind": 2, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [57.848, 0], + [34.162, -34.446], + [24.077, -23.757], + [40.128, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "-", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 46.88, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "-", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "-", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [6.854, -35.866], + [6.854, -23.864], + [40.021, -23.864], + [40.021, -35.866] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "H", + "fFamily": "Inter", + "size": 33.805908203125, + "style": "Bold", + "w": 74.61, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "H", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "H", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.697, 0], + [21.697, -30.043], + [52.912, -30.043], + [52.912, 0], + [68.253, 0], + [68.253, -72.727], + [52.912, -72.727], + [52.912, -42.72], + [21.697, -42.72], + [21.697, -72.727], + [6.321, -72.727], + [6.321, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "C", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 73.54, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "C", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "C", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [1.752, 3.042], + [2.675, 2.119], + [3.35, 1.101], + [3.859, 0], + [4.924, -2.995], + [2.841, -5.575], + [0, -7.765], + [-2.829, -5.587], + [-4.924, -2.995], + [-6.298, 0], + [-3.386, 1.184], + [-2.64, 2.166], + [-1.693, 2.995], + [-0.592, 3.575], + [0, 0], + [1.172, -1.787], + [1.681, -1.231], + [2.071, -0.627], + [2.296, 0], + [3.314, 2.084], + [1.905, 4.072], + [0, 5.919], + [-1.906, 4.072], + [-3.303, 2.107], + [-4.19, 0], + [-2.072, -0.639], + [-1.681, -1.255], + [-1.16, -1.799], + [-0.426, -2.367], + [0, 0] + ], + "o": [ + [-1.752, -3.042], + [-2.676, -2.118], + [-3.35, -1.101], + [-6.274, 0], + [-4.924, 2.995], + [-2.841, 5.575], + [0, 7.741], + [2.829, 5.587], + [4.924, 2.995], + [4.001, 0], + [3.385, -1.184], + [2.639, -2.166], + [1.692, -2.995], + [0, 0], + [-0.45, 2.32], + [-1.172, 1.788], + [-1.681, 1.231], + [-2.072, 0.628], + [-4.143, 0], + [-3.315, -2.083], + [-1.906, -4.072], + [0, -5.871], + [1.905, -4.072], + [3.303, -2.107], + [2.32, 0], + [2.071, 0.639], + [1.681, 1.255], + [1.16, 1.799], + [0, 0], + [-0.616, -3.906] + ], + "v": [ + [64.844, -59.499], + [58.203, -67.241], + [49.165, -72.07], + [38.352, -73.722], + [21.555, -69.229], + [9.908, -56.374], + [5.646, -36.364], + [9.89, -16.371], + [21.52, -3.498], + [38.352, 0.994], + [49.432, -0.781], + [58.469, -5.806], + [64.968, -13.548], + [68.395, -23.402], + [57.315, -23.438], + [54.883, -17.276], + [50.604, -12.749], + [44.975, -9.961], + [38.423, -9.02], + [27.237, -12.145], + [19.407, -21.378], + [16.548, -36.364], + [19.407, -51.278], + [27.219, -60.547], + [38.459, -63.707], + [45.046, -62.749], + [50.675, -59.908], + [54.936, -55.327], + [57.315, -49.077], + [68.395, -49.077] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "a", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 56.92, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "a", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "a", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-2.155, 0.876], + [-1.373, 1.326], + [-0.687, 1.373], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.373, 2.498], + [2.142, 1.349], + [2.45, 0.509], + [2.178, 0], + [2.983, -0.935], + [2.284, -2.047], + [1.184, -3.314], + [0, 0], + [-2.048, 1.575], + [-3.575, 0], + [-1.74, -1.705], + [0, -3.101], + [0, 0], + [0.923, -0.568], + [2.036, -0.249], + [3.267, -0.378], + [2.486, -0.591], + [2.012, -1.16], + [1.184, -1.989], + [0, -3.077], + [-1.622, -2.462], + [-2.794, -1.29], + [-3.457, 0] + ], + "o": [ + [2.154, -0.876], + [1.373, -1.326], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -3.977], + [-1.373, -2.497], + [-2.143, -1.349], + [-2.45, -0.509], + [-3.291, 0], + [-2.983, 0.936], + [-2.285, 2.048], + [0, 0], + [0.781, -1.918], + [2.047, -1.574], + [3.432, 0], + [1.74, 1.705], + [0, 0], + [0, 1.278], + [-0.923, 0.568], + [-2.036, 0.249], + [-2.581, 0.308], + [-2.486, 0.592], + [-2.012, 1.16], + [-1.184, 1.989], + [0, 3.575], + [1.621, 2.462], + [2.793, 1.29], + [3.006, 0] + ], + "v": [ + [30.753, -0.107], + [36.044, -3.409], + [39.134, -7.457], + [39.56, -7.457], + [39.56, 0], + [49.929, 0], + [49.929, -36.222], + [47.869, -45.934], + [42.596, -51.705], + [35.707, -54.492], + [28.764, -55.256], + [19.354, -53.853], + [11.452, -49.379], + [6.25, -41.335], + [16.229, -39.062], + [20.472, -44.3], + [28.906, -46.662], + [36.665, -44.105], + [39.276, -36.896], + [39.276, -36.648], + [37.891, -33.878], + [33.452, -32.653], + [25.497, -31.712], + [17.898, -30.362], + [11.151, -27.734], + [6.357, -23.011], + [4.581, -15.412], + [7.013, -6.357], + [13.636, -0.728], + [23.011, 1.207] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "a", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.941, 1.338], + [0, 2.628], + [-1.007, 1.149], + [-1.693, 0.616], + [-2.06, 0.261], + [-1.302, 0.178], + [-1.373, 0.225], + [-1.078, 0.32], + [-0.379, 0.379], + [0, 0], + [1.101, -1.882], + [2.095, -1.16], + [2.935, 0] + ], + "o": [ + [-1.941, -1.337], + [0, -1.894], + [1.006, -1.148], + [1.692, -0.615], + [0.876, -0.118], + [1.302, -0.178], + [1.373, -0.225], + [1.077, -0.32], + [0, 0], + [0, 2.155], + [-1.101, 1.882], + [-2.095, 1.16], + [-3.007, 0] + ], + "v": [ + [17.898, -9.322], + [14.986, -15.27], + [16.495, -19.833], + [20.543, -22.479], + [26.172, -23.793], + [29.439, -24.237], + [33.452, -24.84], + [37.127, -25.657], + [39.311, -26.705], + [39.311, -19.673], + [37.66, -13.619], + [32.866, -9.055], + [25.32, -7.315] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "r", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 38.42, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "r", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "r", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.136, 1.859], + [-1.953, 1.054], + [-2.51, 0], + [-1.089, -0.154], + [-0.426, -0.118], + [0, 0], + [0.911, 0.048], + [0.663, 0], + [2.521, -1.692], + [0.994, -2.935], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -2.367], + [1.136, -1.858], + [1.953, -1.053], + [1.089, 0], + [1.089, 0.154], + [0, 0], + [-0.521, -0.071], + [-0.912, -0.047], + [-3.196, 0], + [-2.521, 1.693], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [17.756, 0], + [17.756, -33.31], + [19.46, -39.648], + [24.094, -44.016], + [30.788, -45.597], + [34.055, -45.366], + [36.328, -44.957], + [36.328, -55.114], + [34.18, -55.291], + [31.818, -55.362], + [23.242, -52.823], + [17.969, -45.881], + [17.401, -45.881], + [17.401, -54.545], + [7.138, -54.545], + [7.138, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "d", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 62.57, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "d", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "d", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-2.084, 1.113], + [-1.196, 1.491], + [-0.639, 1.16], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.148, 1.491], + [2.071, 1.125], + [3.385, 0], + [3.456, -2.225], + [1.976, -4.19], + [0, -5.895], + [-1.953, -4.202], + [-3.445, -2.261], + [-4.403, 0] + ], + "o": [ + [2.083, -1.113], + [1.195, -1.491], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.639, -1.136], + [-1.149, -1.491], + [-2.072, -1.124], + [-4.38, 0], + [-3.457, 2.226], + [-1.977, 4.19], + [0, 5.895], + [1.953, 4.203], + [3.445, 2.261], + [3.314, 0] + ], + "v": [ + [35.653, -0.604], + [40.572, -4.51], + [43.324, -8.487], + [44.212, -8.487], + [44.212, 0], + [54.581, 0], + [54.581, -72.727], + [43.963, -72.727], + [43.963, -45.703], + [43.324, -45.703], + [40.643, -49.645], + [35.813, -53.569], + [27.628, -55.256], + [15.874, -51.918], + [7.724, -42.294], + [4.759, -27.166], + [7.688, -12.021], + [15.785, -2.326], + [27.557, 1.065] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "d", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.142, 1.693], + [1.089, 2.912], + [0, 3.646], + [-1.078, 2.865], + [-2.131, 1.657], + [-3.196, 0], + [-2.107, -1.586], + [-1.089, -2.841], + [0, -3.788], + [1.101, -2.888], + [2.118, -1.621], + [3.054, 0] + ], + "o": [ + [-2.143, -1.692], + [-1.089, -2.912], + [0, -3.598], + [1.077, -2.864], + [2.131, -1.657], + [3.101, 0], + [2.107, 1.586], + [1.089, 2.841], + [0, 3.835], + [-1.101, 2.889], + [-2.119, 1.622], + [-3.149, 0] + ], + "v": [ + [21.964, -10.529], + [17.116, -17.436], + [15.483, -27.273], + [17.099, -36.967], + [21.911, -43.75], + [29.901, -46.236], + [37.713, -43.857], + [42.507, -37.216], + [44.141, -27.273], + [42.489, -17.188], + [37.66, -10.423], + [29.901, -7.99] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "h", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 60.19, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "h", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "h", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.125, 2.048], + [-1.977, 1.065], + [-2.51, 0], + [-2.06, -2.213], + [0, -4.001], + [0, 0], + [0, 0], + [0, 0], + [1.55, 3.042], + [2.805, 1.539], + [3.74, 0], + [2.628, -1.728], + [1.278, -2.935], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [1.124, -2.047], + [1.976, -1.065], + [3.669, 0], + [2.06, 2.214], + [0, 0], + [0, 0], + [0, 0], + [0, -4.545], + [-1.551, -3.042], + [-2.805, -1.539], + [-4.238, 0], + [-2.628, 1.728], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -2.888] + ], + "v": [ + [19.442, -39.79], + [24.094, -44.46], + [30.824, -46.058], + [39.418, -42.738], + [42.507, -33.416], + [42.507, 0], + [53.125, 0], + [53.125, -34.695], + [50.799, -46.076], + [44.265, -52.947], + [34.446, -55.256], + [24.148, -52.663], + [18.288, -45.668], + [17.614, -45.668], + [17.614, -72.727], + [7.138, -72.727], + [7.138, 0], + [17.756, 0], + [17.756, -32.386] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "o", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 60.23, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "o", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "o", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.812, 2.344], + [-2.107, 4.214], + [0, 5.635], + [2.107, 4.238], + [3.811, 2.344], + [5.114, 0], + [3.811, -2.344], + [2.107, -4.238], + [0, -5.658], + [-2.107, -4.214], + [-3.812, -2.344], + [-5.114, 0] + ], + "o": [ + [3.811, -2.344], + [2.107, -4.214], + [0, -5.658], + [-2.107, -4.238], + [-3.812, -2.344], + [-5.114, 0], + [-3.812, 2.344], + [-2.107, 4.238], + [0, 5.635], + [2.107, 4.214], + [3.811, 2.344], + [5.114, 0] + ], + "v": [ + [43.501, -2.415], + [52.379, -12.251], + [55.54, -27.024], + [52.379, -41.868], + [43.501, -51.74], + [30.114, -55.256], + [16.726, -51.74], + [7.848, -41.868], + [4.688, -27.024], + [7.848, -12.251], + [16.726, -2.415], + [30.114, 1.101] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "o", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.189, 1.752], + [1.053, 2.912], + [0, 3.504], + [-1.054, 2.924], + [-2.19, 1.776], + [-3.338, 0], + [-2.178, -1.776], + [-1.054, -2.924], + [0, -3.48], + [1.053, -2.912], + [2.178, -1.752], + [3.314, 0] + ], + "o": [ + [-2.19, -1.752], + [-1.054, -2.912], + [0, -3.48], + [1.053, -2.924], + [2.189, -1.776], + [3.314, 0], + [2.178, 1.776], + [1.053, 2.924], + [0, 3.504], + [-1.054, 2.912], + [-2.178, 1.752], + [-3.338, 0] + ], + "v": [ + [21.857, -10.44], + [16.992, -17.436], + [15.412, -27.06], + [16.992, -36.665], + [21.857, -43.714], + [30.149, -46.378], + [38.388, -43.714], + [43.235, -36.665], + [44.815, -27.06], + [43.235, -17.436], + [38.388, -10.44], + [30.149, -7.812] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "l", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 24.89, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "l", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "l", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [7.138, -72.727], + [7.138, 0], + [17.756, 0], + [17.756, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "e", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 58.74, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "e", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "e", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.113, 1.219], + [-2.072, 2.214], + [-0.805, 2.96], + [0, 0], + [1.207, -1.16], + [1.657, -0.58], + [2.012, 0], + [2.32, 1.338], + [1.29, 2.557], + [0, 3.646], + [0, 0], + [-1.196, 2.332], + [-2.214, 1.456], + [-2.983, 0], + [-2.048, -1.255], + [-1.136, -2.166], + [0, -2.793], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.326, 3.468], + [2.296, 2.178], + [2.888, 1.018], + [3.077, 0], + [3.776, -2.391], + [2.095, -4.261], + [0, -5.587], + [-2.095, -4.202], + [-3.871, -2.308], + [-5.374, 0] + ], + "o": [ + [3.113, -1.219], + [2.071, -2.213], + [0, 0], + [-0.639, 1.705], + [-1.207, 1.16], + [-1.657, 0.58], + [-3.102, 0], + [-2.32, -1.337], + [-1.291, -2.557], + [0, 0], + [0, -2.722], + [1.195, -2.332], + [2.213, -1.456], + [2.746, 0], + [2.047, 1.255], + [1.136, 2.166], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -4.948], + [-1.326, -3.468], + [-2.297, -2.178], + [-2.889, -1.018], + [-5.066, 0], + [-3.776, 2.391], + [-2.095, 4.261], + [0, 5.659], + [2.095, 4.203], + [3.871, 2.308], + [3.977, 0] + ], + "v": [ + [41.282, -0.728], + [49.059, -5.877], + [53.374, -13.636], + [43.324, -15.447], + [40.554, -11.151], + [36.257, -8.54], + [30.753, -7.67], + [22.621, -9.677], + [17.205, -15.518], + [15.27, -24.822], + [15.27, -31.037], + [17.063, -38.619], + [22.177, -44.3], + [29.972, -46.484], + [37.163, -44.602], + [41.939, -39.471], + [43.643, -32.031], + [10.689, -32.031], + [10.689, -24.077], + [54.048, -24.077], + [54.048, -27.841], + [52.06, -40.465], + [46.626, -48.935], + [38.849, -53.729], + [29.901, -55.256], + [16.637, -51.669], + [7.83, -41.69], + [4.688, -26.918], + [7.83, -12.127], + [16.779, -2.362], + [30.646, 1.101] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": " ", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 26.49, + "data": {} + }, + { + "ch": "n", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 59.73, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "n", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "n", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.101, 2.048], + [-1.906, 1.065], + [-2.462, 0], + [-2.06, -2.237], + [0, -3.953], + [0, 0], + [0, 0], + [0, 0], + [1.539, 3.054], + [2.793, 1.551], + [3.716, 0], + [2.687, -1.752], + [1.255, -2.888], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [1.101, -2.047], + [1.905, -1.065], + [3.598, 0], + [2.06, 2.237], + [0, 0], + [0, 0], + [0, 0], + [0, -4.498], + [-1.539, -3.054], + [-2.794, -1.55], + [-4.096, 0], + [-2.687, 1.752], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, -2.888] + ], + "v": [ + [19.407, -39.79], + [23.917, -44.46], + [30.469, -46.058], + [38.956, -42.702], + [42.045, -33.416], + [42.045, 0], + [52.663, 0], + [52.663, -34.695], + [50.355, -46.023], + [43.857, -52.93], + [34.091, -55.256], + [23.917, -52.628], + [18.004, -45.668], + [17.33, -45.668], + [17.33, -54.545], + [7.138, -54.545], + [7.138, 0], + [17.756, 0], + [17.756, -32.386] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "m", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 88.35, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "m", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "m", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.03, 1.87], + [-1.693, 1.054], + [-2.012, 0], + [-1.847, -1.799], + [0, -2.959], + [0, 0], + [0, 0], + [0, 0], + [-1.918, 2.119], + [-3.457, 0], + [-2.012, -1.657], + [0, -3.693], + [0, 0], + [0, 0], + [0, 0], + [3.137, 3.102], + [4.948, 0], + [2.841, -1.74], + [1.302, -2.912], + [0, 0], + [2.474, 1.705], + [3.645, 0], + [2.58, -1.692], + [1.136, -3.006], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -2.462], + [1.03, -1.87], + [1.692, -1.053], + [2.959, 0], + [1.847, 1.799], + [0, 0], + [0, 0], + [0, 0], + [0, -3.314], + [1.918, -2.118], + [2.793, 0], + [2.012, 1.657], + [0, 0], + [0, 0], + [0, 0], + [0, -6.25], + [-3.137, -3.101], + [-3.93, 0], + [-2.841, 1.74], + [0, 0], + [-1.184, -2.983], + [-2.474, -1.705], + [-3.599, 0], + [-2.581, 1.693], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [17.756, 0], + [17.756, -33.629], + [19.3, -40.128], + [23.384, -44.514], + [28.942, -46.094], + [36.151, -43.395], + [38.92, -36.257], + [38.92, 0], + [49.503, 0], + [49.503, -34.766], + [52.379, -42.915], + [60.44, -46.094], + [67.649, -43.608], + [70.668, -35.582], + [70.668, 0], + [81.286, 0], + [81.286, -36.577], + [76.58, -50.604], + [64.453, -55.256], + [54.297, -52.646], + [48.082, -45.668], + [47.514, -45.668], + [42.028, -52.699], + [32.848, -55.256], + [23.58, -52.717], + [18.004, -45.668], + [17.33, -45.668], + [17.33, -54.545], + [7.138, -54.545], + [7.138, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "J", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 55.18, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "J", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "J", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0.852, -1.918], + [1.621, -0.982], + [2.32, 0], + [1.645, 0.817], + [0.935, 1.468], + [0, 2.012], + [0, 0], + [-1.882, -2.853], + [-3.255, -1.491], + [-4.096, 0], + [-3.315, 1.74], + [-1.835, 3.315], + [0, 4.664], + [0, 0], + [0, 0] + ], + "o": [ + [0, 2.77], + [-0.852, 1.918], + [-1.622, 0.983], + [-2.131, 0], + [-1.646, -0.817], + [-0.936, -1.468], + [0, 0], + [0, 4.096], + [1.882, 2.853], + [3.255, 1.491], + [4.451, 0], + [3.314, -1.74], + [1.834, -3.314], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [36.257, -21.165], + [34.979, -14.134], + [31.268, -9.783], + [25.355, -8.31], + [19.691, -9.535], + [15.82, -12.962], + [14.418, -18.182], + [3.516, -18.182], + [6.339, -7.759], + [14.045, -1.243], + [25.071, 0.994], + [36.719, -1.616], + [44.442, -9.197], + [47.195, -21.165], + [47.195, -72.727], + [36.257, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "D", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 72.16, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "D", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "D", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-5.209, 2.924], + [-2.758, 5.445], + [0, 7.576], + [2.734, 5.41], + [5.114, 2.9], + [7.126, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [5.208, -2.924], + [2.758, -5.445], + [0, -7.552], + [-2.734, -5.409], + [-5.114, -2.9], + [0, 0], + [0, 0], + [0, 0], + [7.386, 0] + ], + "v": [ + [50.426, -4.386], + [62.376, -16.939], + [66.513, -36.47], + [62.411, -55.913], + [50.639, -68.377], + [32.28, -72.727], + [7.99, -72.727], + [7.99, 0], + [31.534, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "D", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-3.575, -2.06], + [-1.811, -3.977], + [0, -5.705], + [1.823, -3.989], + [3.669, -2.095], + [5.54, 0], + [0, 0] + ], + "o": [ + [0, 0], + [5.303, 0], + [3.574, 2.06], + [1.811, 3.977], + [0, 5.753], + [-1.823, 3.989], + [-3.67, 2.095], + [0, 0], + [0, 0] + ], + "v": [ + [18.963, -63.139], + [31.605, -63.139], + [44.922, -60.05], + [53.001, -50.994], + [55.717, -36.47], + [52.983, -21.857], + [44.744, -12.731], + [30.93, -9.588], + [18.963, -9.588] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "u", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 59.45, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "u", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "u", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [1.314, -2.012], + [1.976, -0.994], + [1.989, 0], + [2.06, 2.202], + [0, 3.717], + [0, 0], + [0, 0], + [0, 0], + [-1.527, -3.054], + [-2.687, -1.55], + [-3.504, 0], + [-2.758, 1.93], + [-1.255, 2.912], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [-1.314, 2.012], + [-1.977, 0.994], + [-3.291, 0], + [-2.06, -2.202], + [0, 0], + [0, 0], + [0, 0], + [0, 4.498], + [1.527, 3.054], + [2.687, 1.551], + [4.095, 0], + [2.758, -1.929], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.023, 3.102] + ], + "v": [ + [39.755, -14.95], + [34.819, -10.44], + [28.871, -8.949], + [20.845, -12.251], + [17.756, -21.129], + [17.756, -54.545], + [7.138, -54.545], + [7.138, -19.851], + [9.428, -8.523], + [15.749, -1.616], + [25.036, 0.71], + [35.316, -2.184], + [41.335, -9.446], + [41.903, -9.446], + [41.903, 0], + [52.344, 0], + [52.344, -54.545], + [41.69, -54.545], + [41.69, -22.621] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "b", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 62.57, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "b", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "b", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.184, -1.491], + [-2.095, -1.113], + [-3.315, 0], + [-3.433, 2.261], + [-1.965, 4.203], + [0, 5.895], + [1.976, 4.19], + [3.456, 2.226], + [4.403, 0], + [2.06, -1.124], + [1.16, -1.491], + [0.615, -1.136], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0.639, 1.16], + [1.184, 1.491], + [2.095, 1.113], + [4.403, 0], + [3.432, -2.261], + [1.965, -4.202], + [0, -5.895], + [-1.977, -4.19], + [-3.457, -2.225], + [-3.386, 0], + [-2.06, 1.125], + [-1.16, 1.491], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18.359, 0], + [18.359, -8.487], + [19.247, -8.487], + [21.982, -4.51], + [26.9, -0.604], + [35.014, 1.065], + [46.768, -2.326], + [54.865, -12.021], + [57.812, -27.166], + [54.847, -42.294], + [46.697, -51.918], + [34.908, -55.256], + [26.74, -53.569], + [21.911, -49.645], + [19.247, -45.703], + [18.608, -45.703], + [18.608, -72.727], + [7.99, -72.727], + [7.99, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "b", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.089, 2.841], + [-2.119, 1.586], + [-3.078, 0], + [-2.143, -1.657], + [-1.078, -2.864], + [0, -3.598], + [1.101, -2.912], + [2.131, -1.692], + [3.172, 0], + [2.107, 1.622], + [1.113, 2.889], + [0, 3.835] + ], + "o": [ + [1.089, -2.841], + [2.118, -1.586], + [3.196, 0], + [2.142, 1.657], + [1.077, 2.865], + [0, 3.646], + [-1.101, 2.912], + [-2.131, 1.693], + [-3.054, 0], + [-2.107, -1.621], + [-1.113, -2.888], + [0, -3.788] + ], + "v": [ + [20.028, -37.216], + [24.84, -43.857], + [32.635, -46.236], + [40.643, -43.75], + [45.472, -36.967], + [47.088, -27.273], + [45.437, -17.436], + [40.589, -10.529], + [32.635, -7.99], + [24.893, -10.423], + [20.064, -17.188], + [18.395, -27.273] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "7", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 59.87, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "7", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "7", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [20.916, 0], + [52.557, -62.997], + [52.557, -72.727], + [4.474, -72.727], + [4.474, -63.317], + [41.193, -63.317], + [41.193, -62.784], + [9.446, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "1", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 47.27, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "1", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "1", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [23.899, -72.727], + [5.753, -60.866], + [5.753, -50.355], + [23.153, -61.719], + [23.58, -61.719], + [23.58, 0], + [34.588, 0], + [34.588, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "6", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 63.57, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "6", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "6", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.788, 2.19], + [-2.095, 3.764], + [0, 4.64], + [2.036, 3.599], + [3.421, 2.048], + [4.214, 0], + [2.284, -0.793], + [1.834, -1.456], + [1.255, -2.06], + [0, 0], + [-2.971, 4.64], + [-5.327, 0], + [-2.178, -1.918], + [-0.734, -3.03], + [0, 0], + [2.095, 3.007], + [3.361, 1.705], + [4.332, 0], + [3.385, -1.776], + [2.391, -3.397], + [1.266, -4.924], + [0, -6.344], + [-1.527, -4.474], + [-2.557, -2.651], + [-3.137, -1.136], + [-3.244, -0.048] + ], + "o": [ + [3.788, -2.189], + [2.095, -3.764], + [0, -4.64], + [-2.036, -3.598], + [-3.421, -2.047], + [-2.534, 0], + [-2.285, 0.793], + [-1.835, 1.456], + [0, 0], + [0.023, -8.262], + [2.971, -4.64], + [3.503, 0], + [2.178, 1.918], + [0, 0], + [-0.568, -3.835], + [-2.095, -3.006], + [-3.362, -1.705], + [-4.214, 0], + [-3.386, 1.776], + [-2.391, 3.397], + [-1.267, 4.924], + [0, 6.7], + [1.527, 4.474], + [2.557, 2.652], + [3.137, 1.136], + [5.066, 0.047] + ], + "v": [ + [45.668, -2.219], + [54.492, -11.151], + [57.635, -23.757], + [54.581, -36.115], + [46.396, -44.585], + [34.943, -47.656], + [27.717, -46.467], + [21.538, -43.093], + [16.903, -37.82], + [16.371, -37.82], + [20.863, -57.173], + [33.31, -64.134], + [41.832, -61.257], + [46.2, -53.835], + [57.031, -53.835], + [53.036, -64.098], + [44.851, -71.165], + [33.31, -73.722], + [21.911, -71.058], + [13.246, -63.299], + [7.759, -50.817], + [5.859, -33.913], + [8.15, -17.152], + [14.276, -6.463], + [22.816, -0.781], + [32.386, 0.994] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "6", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.213, 1.409], + [1.266, 2.32], + [0, 2.723], + [-0.77, 1.835], + [-1.349, 1.42], + [-1.788, 0.805], + [-2.107, 0], + [-2.166, -1.349], + [-1.243, -2.296], + [0, -2.793], + [1.278, -2.32], + [2.202, -1.373], + [2.793, 0] + ], + "o": [ + [-2.214, -1.408], + [-1.267, -2.32], + [0, -2.036], + [0.769, -1.834], + [1.349, -1.42], + [1.787, -0.805], + [2.77, 0], + [2.166, 1.349], + [1.243, 2.297], + [0, 2.865], + [-1.278, 2.32], + [-2.202, 1.373], + [-2.794, 0] + ], + "v": [ + [24.84, -10.352], + [19.62, -15.945], + [17.72, -23.509], + [18.874, -29.315], + [22.053, -34.197], + [26.758, -37.536], + [32.599, -38.743], + [40.004, -36.719], + [45.117, -31.25], + [46.982, -23.615], + [45.064, -15.838], + [39.844, -10.298], + [32.351, -8.239] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "9", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 63.57, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "9", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "9", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [3.776, -2.189], + [2.095, -3.74], + [0, -4.593], + [-2.036, -3.598], + [-3.433, -2.06], + [-4.19, 0], + [-2.273, 0.805], + [-1.835, 1.468], + [-1.231, 2.036], + [0, 0], + [2.983, -4.652], + [5.327, 0], + [2.189, 1.93], + [0.71, 3.125], + [0, 0], + [-2.107, -3.018], + [-3.362, -1.705], + [-4.332, 0], + [-3.386, 1.776], + [-2.379, 3.409], + [-1.278, 4.96], + [0, 6.369], + [1.527, 4.463], + [2.545, 2.628], + [3.148, 1.16], + [3.243, 0.024] + ], + "o": [ + [-3.776, 2.19], + [-2.095, 3.741], + [0, 4.616], + [2.036, 3.599], + [3.432, 2.06], + [2.58, 0], + [2.273, -0.805], + [1.834, -1.468], + [0, 0], + [-0.024, 8.357], + [-2.983, 4.652], + [-3.48, 0], + [-2.19, -1.929], + [0, 0], + [0.52, 3.93], + [2.107, 3.018], + [3.361, 1.705], + [4.238, 0], + [3.385, -1.776], + [2.379, -3.409], + [1.278, -4.959], + [-0.024, -6.628], + [-1.527, -4.462], + [-2.545, -2.628], + [-3.149, -1.16], + [-5.09, -0.047] + ], + "v": [ + [17.88, -70.508], + [9.073, -61.612], + [5.93, -49.112], + [8.984, -36.79], + [17.188, -28.303], + [28.622, -25.213], + [35.902, -26.42], + [42.063, -29.83], + [46.662, -35.085], + [47.23, -35.085], + [42.72, -15.572], + [30.256, -8.594], + [21.751, -11.488], + [17.401, -19.07], + [6.57, -19.07], + [10.511, -8.647], + [18.714, -1.562], + [30.256, 0.994], + [41.69, -1.669], + [50.337, -9.446], + [55.824, -21.999], + [57.741, -38.991], + [55.415, -55.629], + [49.308, -66.264], + [40.767, -71.946], + [31.179, -73.722] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "9", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-2.202, -1.408], + [-1.267, -2.296], + [0, -2.675], + [0.757, -1.823], + [1.349, -1.432], + [1.799, -0.805], + [2.083, 0], + [2.166, 1.338], + [1.243, 2.285], + [0, 2.818], + [-1.278, 2.308], + [-2.214, 1.362], + [-2.77, 0] + ], + "o": [ + [2.202, 1.409], + [1.266, 2.297], + [0, 2.012], + [-0.758, 1.823], + [-1.349, 1.433], + [-1.799, 0.805], + [-2.794, 0], + [-2.166, -1.337], + [-1.243, -2.284], + [0, -2.817], + [1.278, -2.308], + [2.213, -1.361], + [2.817, 0] + ], + "v": [ + [38.743, -62.376], + [43.945, -56.818], + [45.845, -49.361], + [44.709, -43.608], + [41.548, -38.725], + [36.825, -35.369], + [31.001, -34.162], + [23.562, -36.168], + [18.448, -41.602], + [16.584, -49.254], + [18.501, -56.942], + [23.739, -62.447], + [31.214, -64.489] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "8", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 63.14, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "8", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "8", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.895, 1.752], + [-2.202, 3.078], + [-0.024, 3.93], + [1.314, 2.592], + [2.189, 1.74], + [2.722, 0.474], + [0, 0], + [-2.202, 3.007], + [-0.024, 3.906], + [2.012, 2.924], + [3.492, 1.693], + [4.427, 0], + [3.503, -1.681], + [2, -2.924], + [-0.024, -3.716], + [-2.178, -3.006], + [-3.622, -0.876], + [0, 0], + [2.225, -1.74], + [1.29, -2.592], + [-0.024, -3.077], + [-2.202, -3.077], + [-3.895, -1.752], + [-5.09, 0] + ], + "o": [ + [3.894, -1.752], + [2.202, -3.077], + [-0.024, -3.077], + [-1.314, -2.592], + [-2.19, -1.74], + [0, 0], + [3.527, -0.876], + [2.202, -3.006], + [-0.024, -3.693], + [-2.013, -2.924], + [-3.492, -1.692], + [-4.474, 0], + [-3.504, 1.681], + [-2.001, 2.924], + [-0.024, 3.906], + [2.178, 3.007], + [0, 0], + [-2.747, 0.474], + [-2.226, 1.74], + [-1.291, 2.592], + [-0.024, 3.93], + [2.202, 3.078], + [3.894, 1.752], + [5.043, 0] + ], + "v": [ + [44.975, -1.634], + [54.119, -8.878], + [57.457, -19.389], + [55.451, -27.894], + [50.195, -34.393], + [42.827, -37.713], + [42.827, -38.139], + [51.42, -43.963], + [54.759, -54.332], + [51.705, -64.258], + [43.448, -71.183], + [31.57, -73.722], + [19.602, -71.2], + [11.346, -64.293], + [8.381, -54.332], + [11.612, -43.963], + [20.312, -38.139], + [20.312, -37.713], + [12.855, -34.393], + [7.582, -27.894], + [5.682, -19.389], + [8.949, -8.878], + [18.093, -1.634], + [31.57, 0.994] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "8", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.225, 1.007], + [1.195, 1.811], + [-0.024, 2.439], + [-1.278, 1.941], + [-2.226, 1.113], + [-2.865, 0], + [-2.202, -1.113], + [-1.291, -1.941], + [-0.024, -2.533], + [1.207, -1.811], + [2.202, -1.006], + [3.006, 0] + ], + "o": [ + [-2.226, -1.006], + [-1.196, -1.811], + [-0.024, -2.533], + [1.278, -1.941], + [2.225, -1.113], + [2.841, 0], + [2.202, 1.113], + [1.29, 1.941], + [-0.024, 2.439], + [-1.207, 1.811], + [-2.202, 1.007], + [-3.031, 0] + ], + "v": [ + [23.686, -9.499], + [18.555, -13.725], + [16.797, -20.099], + [18.679, -26.811], + [23.935, -31.392], + [31.57, -33.061], + [39.134, -31.392], + [44.371, -26.811], + [46.342, -20.099], + [44.496, -13.725], + [39.382, -9.499], + [31.57, -7.99] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "8", + "ind": 2, + "hd": false, + "ks": { + "k": { + "i": [ + [1.882, 0.971], + [1.065, 1.728], + [-0.024, 2.32], + [-1.042, 1.705], + [-1.882, 0.936], + [-2.51, 0], + [-1.87, -0.935], + [-1.054, -1.705], + [-0.024, -2.273], + [1.077, -1.728], + [1.87, -0.97], + [2.415, 0] + ], + "o": [ + [-1.882, -0.97], + [-1.065, -1.728], + [-0.024, -2.273], + [1.041, -1.705], + [1.882, -0.935], + [2.462, 0], + [1.87, 0.936], + [1.053, 1.705], + [-0.024, 2.32], + [-1.078, 1.728], + [-1.87, 0.971], + [-2.462, 0] + ], + "v": [ + [25.053, -43.288], + [20.632, -47.337], + [19.07, -53.409], + [20.597, -59.375], + [24.982, -63.335], + [31.57, -64.737], + [38.068, -63.335], + [42.454, -59.375], + [44.07, -53.409], + [42.418, -47.337], + [37.997, -43.288], + [31.57, -41.832] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "5", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 62, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "5", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "5", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.776, 2.119], + [-2.143, 3.693], + [0.023, 4.711], + [2, 3.634], + [3.468, 2.107], + [4.427, 0], + [2.355, -0.923], + [1.42, -1.373], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.226, 0.758], + [-2.202, 0], + [-2.237, -1.326], + [-1.278, -2.32], + [0, -2.959], + [1.243, -2.273], + [2.166, -1.29], + [2.793, 0], + [2.509, 2.012], + [0.26, 3.125], + [0, 0], + [-2.107, -3.006], + [-3.539, -1.716], + [-4.451, 0] + ], + "o": [ + [3.776, -2.118], + [2.142, -3.693], + [0.023, -4.711], + [-2.001, -3.634], + [-3.468, -2.107], + [-2.699, 0], + [-2.356, 0.923], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.373, -1.231], + [2.225, -0.757], + [2.888, 0.024], + [2.237, 1.326], + [1.278, 2.32], + [0, 2.912], + [-1.243, 2.273], + [-2.166, 1.291], + [-3.504, 0], + [-2.51, -2.012], + [0, 0], + [0.142, 3.859], + [2.107, 3.007], + [3.539, 1.716], + [4.877, 0] + ], + "v": [ + [43.981, -2.184], + [52.859, -10.902], + [56.037, -23.509], + [53.072, -36.026], + [44.869, -44.638], + [33.026, -47.798], + [25.444, -46.413], + [19.78, -42.969], + [19.354, -42.969], + [21.662, -63.317], + [52.521, -63.317], + [52.521, -72.727], + [12.536, -72.727], + [8.452, -36.08], + [18.501, -34.588], + [23.899, -37.571], + [30.54, -38.707], + [38.228, -36.683], + [43.501, -31.214], + [45.419, -23.295], + [43.555, -15.518], + [38.441, -10.174], + [31.001, -8.239], + [21.982, -11.257], + [17.827, -18.963], + [7.173, -18.963], + [10.547, -8.665], + [19.016, -1.58], + [31.001, 0.994] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "3", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 64.42, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "3", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "3", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.859, 1.811], + [-2.237, 3.173], + [0.023, 4.001], + [2.663, 3.102], + [4.83, 0.734], + [0, 0], + [-2.285, 2.841], + [0.023, 4.072], + [1.858, 3.007], + [3.397, 1.811], + [4.664, 0], + [3.645, -1.681], + [2.213, -2.983], + [0.118, -3.93], + [0, 0], + [-1.278, 1.598], + [-2.048, 0.864], + [-2.368, 0], + [-1.835, -0.947], + [-1.007, -1.669], + [0, -2.249], + [1.16, -1.74], + [2.047, -0.97], + [2.699, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.379, -1.065], + [-1.243, -1.858], + [0, -2.438], + [1.255, -1.787], + [2.213, -0.994], + [2.864, 0], + [2.131, 0.852], + [1.314, 1.575], + [0.142, 2.155], + [0, 0], + [-2.214, -2.995], + [-3.824, -1.681], + [-4.877, 0] + ], + "o": [ + [3.859, -1.811], + [2.237, -3.172], + [0.023, -4.593], + [-2.663, -3.101], + [0, 0], + [3.788, -0.97], + [2.284, -2.841], + [0.023, -3.574], + [-1.859, -3.006], + [-3.397, -1.811], + [-4.451, 0], + [-3.646, 1.681], + [-2.214, 2.983], + [0, 0], + [0.094, -2.225], + [1.278, -1.598], + [2.047, -0.864], + [2.486, 0], + [1.834, 0.947], + [1.006, 1.669], + [0, 2.344], + [-1.16, 1.74], + [-2.048, 0.971], + [0, 0], + [0, 0], + [0, 0], + [3.361, 0], + [2.379, 1.065], + [1.243, 1.859], + [0, 2.344], + [-1.255, 1.788], + [-2.214, 0.994], + [-2.605, 0], + [-2.131, -0.852], + [-1.314, -1.574], + [0, 0], + [0.165, 3.954], + [2.213, 2.995], + [3.823, 1.681], + [4.972, 0] + ], + "v": [ + [45.561, -1.722], + [54.705, -9.197], + [58.026, -19.957], + [54.066, -31.499], + [42.827, -37.251], + [42.827, -37.82], + [51.935, -43.537], + [55.327, -53.906], + [52.575, -63.778], + [44.691, -71.005], + [32.599, -73.722], + [20.455, -71.2], + [11.665, -64.205], + [8.168, -53.835], + [18.786, -53.835], + [20.845, -59.57], + [25.835, -63.263], + [32.457, -64.56], + [38.938, -63.139], + [43.2, -59.215], + [44.709, -53.338], + [42.969, -47.212], + [38.157, -43.146], + [31.037, -41.69], + [24.893, -41.69], + [24.893, -32.741], + [31.037, -32.741], + [39.648, -31.143], + [45.082, -26.758], + [46.946, -20.312], + [45.064, -14.116], + [39.862, -9.943], + [32.244, -8.452], + [25.142, -9.73], + [19.975, -13.37], + [17.791, -18.963], + [6.641, -18.963], + [10.21, -8.54], + [19.265, -1.527], + [32.315, 0.994] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "4", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 65.41, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "4", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "4", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [60.05, -14.205], + [60.05, -23.509], + [16.974, -23.509], + [16.974, -24.077], + [39.453, -59.659], + [43.892, -59.659], + [43.892, -72.727], + [36.896, -72.727], + [5.469, -23.082], + [5.469, -14.205] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "4", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [50.426, 0], + [50.426, -72.727], + [40.021, -72.727], + [40.021, -20.952], + [39.95, -16.903], + [39.95, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "O", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 76.81, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "O", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "O", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [2.841, 5.575], + [4.936, 2.995], + [6.273, 0], + [4.936, -2.995], + [2.841, -5.575], + [0, -7.765], + [-2.841, -5.587], + [-4.936, -2.995], + [-6.298, 0], + [-4.936, 2.995], + [-2.841, 5.575], + [0, 7.765] + ], + "o": [ + [-2.841, -5.575], + [-4.936, -2.995], + [-6.298, 0], + [-4.936, 2.995], + [-2.841, 5.575], + [0, 7.741], + [2.841, 5.587], + [4.936, 2.995], + [6.273, 0], + [4.936, -2.995], + [2.841, -5.575], + [0, -7.765] + ], + "v": [ + [66.903, -56.374], + [55.238, -69.229], + [38.423, -73.722], + [21.573, -69.229], + [9.908, -56.374], + [5.646, -36.364], + [9.908, -16.371], + [21.573, -3.498], + [38.423, 0.994], + [55.238, -3.498], + [66.903, -16.353], + [71.165, -36.364] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "O", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.905, -4.06], + [3.303, -2.095], + [4.166, 0], + [3.29, 2.095], + [1.905, 4.061], + [0, 5.919], + [-1.906, 4.061], + [-3.291, 2.095], + [-4.19, 0], + [-3.303, -2.095], + [-1.906, -4.06], + [0, -5.918] + ], + "o": [ + [-1.906, 4.061], + [-3.303, 2.095], + [-4.19, 0], + [-3.291, -2.095], + [-1.906, -4.06], + [0, -5.918], + [1.905, -4.06], + [3.29, -2.095], + [4.166, 0], + [3.303, 2.095], + [1.905, 4.061], + [0, 5.919] + ], + "v": [ + [57.44, -21.396], + [49.627, -12.163], + [38.423, -9.02], + [27.202, -12.163], + [19.407, -21.396], + [16.548, -36.364], + [19.407, -51.332], + [27.202, -60.565], + [38.423, -63.707], + [49.627, -60.565], + [57.44, -51.332], + [60.298, -36.364] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "s", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 53.59, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "s", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "s", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [3.385, 2.545], + [5.895, 0], + [3.172, -1.361], + [1.799, -2.415], + [0, -3.219], + [-2.427, -2.533], + [-5.09, -1.16], + [0, 0], + [-1.267, -1.16], + [0, -1.705], + [2.083, -1.456], + [3.48, 0], + [1.989, 1.362], + [0.639, 2.676], + [0, 0], + [-3.859, -2.616], + [-6.108, 0], + [-3.35, 1.444], + [-1.882, 2.545], + [0, 3.267], + [2.462, 2.415], + [5.019, 1.16], + [0, 0], + [1.349, 1.113], + [0, 1.823], + [-2.012, 1.338], + [-3.007, 0], + [-1.468, -0.71], + [-0.864, -1.113], + [-0.403, -1.231], + [0, 0] + ], + "o": [ + [-3.386, -2.545], + [-4.096, 0], + [-3.173, 1.362], + [-1.799, 2.415], + [0, 3.883], + [2.426, 2.534], + [0, 0], + [2.604, 0.592], + [1.266, 1.16], + [0, 2.107], + [-2.084, 1.456], + [-3.196, 0], + [-1.989, -1.361], + [0, 0], + [0.876, 4.83], + [3.859, 2.616], + [4.403, 0], + [3.35, -1.444], + [1.882, -2.545], + [0, -3.859], + [-2.462, -2.415], + [0, 0], + [-3.007, -0.71], + [-1.349, -1.113], + [0, -2.107], + [2.012, -1.337], + [2.202, 0], + [1.468, 0.71], + [0.864, 1.113], + [0, 0], + [-1.089, -4.261] + ], + "v": [ + [41.3, -51.438], + [27.379, -55.256], + [16.477, -53.214], + [9.02, -47.55], + [6.321, -39.098], + [9.961, -29.474], + [21.236, -23.935], + [30.469, -21.911], + [36.275, -19.283], + [38.175, -14.986], + [35.05, -9.641], + [26.705, -7.457], + [18.928, -9.499], + [14.986, -15.554], + [4.723, -13.991], + [11.825, -2.823], + [26.776, 1.101], + [38.406, -1.065], + [46.254, -7.049], + [49.077, -15.767], + [45.384, -25.178], + [34.162, -30.54], + [25.497, -32.528], + [18.963, -35.263], + [16.939, -39.666], + [19.957, -44.833], + [27.486, -46.839], + [32.99, -45.774], + [36.488, -43.04], + [38.388, -39.524], + [48.011, -41.229] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "c", + "fFamily": "Inter", + "size": 24.1790409088135, + "style": "Medium", + "w": 56.78, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "c", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "c", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.208, 1.586], + [-1.918, 2.77], + [-0.379, 3.528], + [0, 0], + [1.124, -1.397], + [1.645, -0.746], + [2.012, 0], + [2.213, 1.586], + [1.207, 2.889], + [0, 3.977], + [-1.231, 2.853], + [-2.214, 1.551], + [-2.96, 0], + [-2.024, -1.847], + [-0.568, -2.557], + [0, 0], + [2, 2.747], + [3.243, 1.527], + [4.143, 0], + [3.788, -2.391], + [2.083, -4.249], + [0, -5.54], + [-2.036, -4.238], + [-3.8, -2.403], + [-5.28, 0] + ], + "o": [ + [3.208, -1.586], + [1.918, -2.77], + [0, 0], + [-0.45, 1.965], + [-1.125, 1.397], + [-1.646, 0.746], + [-3.007, 0], + [-2.214, -1.586], + [-1.207, -2.888], + [0, -3.882], + [1.231, -2.853], + [2.213, -1.55], + [3.385, 0], + [2.024, 1.847], + [0, 0], + [-0.379, -3.669], + [-2.001, -2.746], + [-3.244, -1.527], + [-5.137, 0], + [-3.788, 2.391], + [-2.084, 4.25], + [0, 5.469], + [2.036, 4.238], + [3.8, 2.403], + [4.309, 0] + ], + "v": [ + [41.389, -1.278], + [49.077, -7.812], + [52.521, -17.259], + [42.188, -17.259], + [39.826, -12.216], + [35.671, -9.002], + [30.185, -7.884], + [22.354, -10.263], + [17.223, -16.974], + [15.412, -27.273], + [17.259, -37.376], + [22.425, -43.981], + [30.185, -46.307], + [38.299, -43.537], + [42.188, -36.932], + [52.521, -36.932], + [48.952, -46.555], + [41.087, -52.965], + [30.007, -55.256], + [16.619, -51.669], + [7.812, -41.708], + [4.688, -27.024], + [7.741, -12.464], + [16.495, -2.504], + [30.114, 1.101] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "g", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 61.72, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "g", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "g", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-3.705, 1.444], + [-2.178, 3.006], + [0, 4.688], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [1.172, 1.491], + [2.083, 1.125], + [3.385, 0], + [3.456, -2.213], + [1.976, -4.143], + [0, -5.8], + [-2.001, -3.965], + [-3.445, -2.024], + [-4.309, 0], + [-2.084, 1.042], + [-1.196, 1.42], + [-0.639, 1.16], + [0, 0], + [0, 0], + [2.628, -1.953], + [4.024, 0], + [1.858, 0.828], + [1.077, 1.172], + [0.639, 1.041], + [0, 0], + [-1.965, -1.87], + [-3.113, -1.136], + [-4.332, 0] + ], + "o": [ + [3.705, -1.444], + [2.178, -3.007], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [-0.639, -1.136], + [-1.172, -1.491], + [-2.084, -1.124], + [-4.38, 0], + [-3.457, 2.214], + [-1.977, 4.143], + [0, 5.801], + [2, 3.966], + [3.445, 2.024], + [3.338, 0], + [2.083, -1.041], + [1.195, -1.42], + [0, 0], + [0, 0], + [0, 4.261], + [-2.628, 1.953], + [-2.936, 0], + [-1.859, -0.829], + [-1.078, -1.172], + [0, 0], + [0.97, 2.225], + [1.965, 1.87], + [3.113, 1.136], + [4.64, 0] + ], + "v": [ + [42.525, 19.425], + [51.349, 12.749], + [54.616, 1.207], + [54.616, -54.545], + [44.212, -54.545], + [44.212, -45.703], + [43.43, -45.703], + [40.714, -49.645], + [35.831, -53.569], + [27.628, -55.256], + [15.874, -51.935], + [7.724, -42.401], + [4.759, -27.486], + [7.759, -12.837], + [15.927, -3.853], + [27.557, -0.817], + [35.689, -2.379], + [40.607, -6.072], + [43.359, -9.943], + [44.034, -9.943], + [44.034, 0.781], + [40.092, 10.103], + [30.114, 13.033], + [22.923, 11.79], + [18.519, 8.789], + [15.945, 5.469], + [6.818, 9.233], + [11.222, 15.376], + [18.839, 19.886], + [30.007, 21.591] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "g", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [2.142, 1.515], + [1.089, 2.699], + [0, 3.575], + [-1.078, 2.818], + [-2.131, 1.646], + [-3.196, 0], + [-2.107, -1.574], + [-1.089, -2.793], + [0, -3.669], + [1.101, -2.687], + [2.118, -1.432], + [3.054, 0] + ], + "o": [ + [-2.143, -1.515], + [-1.089, -2.699], + [0, -3.48], + [1.077, -2.817], + [2.131, -1.645], + [3.101, 0], + [2.107, 1.575], + [1.089, 2.794], + [0, 3.764], + [-1.101, 2.687], + [-2.119, 1.433], + [-3.149, 0] + ], + "v": [ + [21.964, -11.896], + [17.116, -18.217], + [15.483, -27.628], + [17.099, -37.074], + [21.911, -43.768], + [29.901, -46.236], + [37.713, -43.874], + [42.507, -37.322], + [44.141, -27.628], + [42.489, -17.951], + [37.66, -11.772], + [29.901, -9.624] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "t", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 37.18, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "t", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "t", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [2.805, -54.545], + [2.805, -46.023], + [32.599, -46.023], + [32.599, -54.545] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "t", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [-1.491, -2.178], + [-2.415, -1.041], + [-2.794, 0.047], + [-1.136, 0.249], + [-0.616, 0.237], + [0, 0], + [0.639, -0.118], + [0.852, 0], + [0.982, 0.367], + [0.615, 1.03], + [0, 2.06], + [0, 0], + [0, 0] + ], + "o": [ + [0, 3.291], + [1.491, 2.178], + [2.415, 1.041], + [1.705, -0.024], + [1.136, -0.249], + [0, 0], + [-0.355, 0.071], + [-0.639, 0.119], + [-1.16, 0], + [-0.983, -0.367], + [-0.616, -1.03], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [10.795, -13.814], + [13.033, -5.611], + [18.892, -0.781], + [26.705, 0.71], + [30.966, 0.302], + [33.594, -0.426], + [31.676, -9.197], + [30.185, -8.913], + [27.947, -8.736], + [24.734, -9.286], + [22.337, -11.381], + [21.413, -16.016], + [21.413, -67.614], + [10.795, -67.614] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "i", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 24.89, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "i", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "i", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [17.756, 0], + [17.756, -54.545], + [7.138, -54.545], + [7.138, 0] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "i", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.314, 1.243], + [0, 1.728], + [1.314, 1.243], + [1.847, 0], + [1.314, -1.243], + [0, -1.752], + [-1.314, -1.243], + [-1.847, 0] + ], + "o": [ + [1.314, -1.243], + [0, -1.752], + [-1.314, -1.243], + [-1.847, 0], + [-1.314, 1.243], + [0, 1.728], + [1.314, 1.243], + [1.847, 0] + ], + "v": [ + [17.241, -64.826], + [19.212, -69.283], + [17.241, -73.775], + [12.5, -75.639], + [7.759, -73.775], + [5.788, -69.283], + [7.759, -64.826], + [12.5, -62.962] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "!", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 29.37, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "!", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "!", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [8.842, -72.727], + [9.766, -20.916], + [19.602, -20.916], + [20.526, -72.727] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "!", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.065, 0.639], + [-0.651, 1.078], + [-0.024, 1.302], + [1.397, 1.385], + [1.918, 0], + [1.397, -1.385], + [-0.024, -1.941], + [-1.397, -1.385], + [-1.965, 0] + ], + "o": [ + [1.065, -0.639], + [0.651, -1.077], + [-0.024, -1.941], + [-1.397, -1.385], + [-1.965, 0], + [-1.397, 1.385], + [-0.024, 1.965], + [1.397, 1.385], + [1.278, 0] + ], + "v": [ + [18.217, -0.284], + [20.792, -2.859], + [21.804, -6.428], + [19.673, -11.417], + [14.702, -13.494], + [9.659, -11.417], + [7.599, -6.428], + [9.659, -1.403], + [14.702, 0.675] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "Y", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 68.47, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "Y", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "Y", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [28.764, -28.551], + [28.764, 0], + [39.702, 0], + [39.702, -28.551], + [66.087, -72.727], + [53.622, -72.727], + [34.624, -39.666], + [33.842, -39.666], + [14.844, -72.727], + [2.379, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "p", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 61.72, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "p", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "p", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.184, -1.491], + [-2.095, -1.113], + [-3.315, 0], + [-3.433, 2.261], + [-1.965, 4.203], + [0, 5.895], + [1.976, 4.19], + [3.456, 2.226], + [4.403, 0], + [2.06, -1.124], + [1.16, -1.491], + [0.615, -1.136], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0.639, 1.16], + [1.184, 1.491], + [2.095, 1.113], + [4.403, 0], + [3.432, -2.261], + [1.965, -4.202], + [0, -5.895], + [-1.977, -4.19], + [-3.457, -2.225], + [-3.386, 0], + [-2.06, 1.125], + [-1.16, 1.491], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [17.756, 20.455], + [17.756, -8.487], + [18.395, -8.487], + [21.129, -4.51], + [26.048, -0.604], + [34.162, 1.065], + [45.916, -2.326], + [54.013, -12.021], + [56.96, -27.166], + [53.995, -42.294], + [45.845, -51.918], + [34.055, -55.256], + [25.888, -53.569], + [21.058, -49.645], + [18.395, -45.703], + [17.507, -45.703], + [17.507, -54.545], + [7.138, -54.545], + [7.138, 20.455] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "p", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.089, 2.841], + [-2.119, 1.586], + [-3.078, 0], + [-2.143, -1.657], + [-1.078, -2.864], + [0, -3.598], + [1.101, -2.912], + [2.131, -1.692], + [3.172, 0], + [2.107, 1.622], + [1.113, 2.889], + [0, 3.835] + ], + "o": [ + [1.089, -2.841], + [2.118, -1.586], + [3.196, 0], + [2.142, 1.657], + [1.077, 2.865], + [0, 3.646], + [-1.101, 2.912], + [-2.131, 1.693], + [-3.054, 0], + [-2.107, -1.621], + [-1.113, -2.888], + [0, -3.788] + ], + "v": [ + [19.176, -37.216], + [23.988, -43.857], + [31.783, -46.236], + [39.79, -43.75], + [44.62, -36.967], + [46.236, -27.273], + [44.585, -17.436], + [39.737, -10.529], + [31.783, -7.99], + [24.041, -10.423], + [19.212, -17.188], + [17.543, -27.273] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "\r", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 0 + }, + { + "ch": ":", + "fFamily": "Inter", + "size": 21.8376598358154, + "style": "Medium", + "w": 28.3, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": ":", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": ":", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.065, 0.639], + [-0.651, 1.078], + [0, 1.302], + [1.397, 1.385], + [1.941, 0], + [1.397, -1.385], + [0, -1.941], + [-1.397, -1.385], + [-1.941, 0] + ], + "o": [ + [1.065, -0.639], + [0.651, -1.077], + [0, -1.941], + [-1.397, -1.385], + [-1.941, 0], + [-1.397, 1.385], + [0, 1.965], + [1.397, 1.385], + [1.302, 0] + ], + "v": [ + [17.685, -0.284], + [20.259, -2.859], + [21.236, -6.428], + [19.141, -11.417], + [14.134, -13.494], + [9.126, -11.417], + [7.031, -6.428], + [9.126, -1.403], + [14.134, 0.675] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": ":", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.065, 0.639], + [-0.651, 1.078], + [0, 1.302], + [1.397, 1.385], + [1.941, 0], + [1.397, -1.385], + [0, -1.941], + [-1.397, -1.397], + [-1.941, 0] + ], + "o": [ + [1.065, -0.639], + [0.651, -1.077], + [0, -1.941], + [-1.397, -1.385], + [-1.941, 0], + [-1.397, 1.385], + [0, 1.941], + [1.397, 1.397], + [1.302, 0] + ], + "v": [ + [17.685, -39.986], + [20.259, -42.56], + [21.236, -46.129], + [19.141, -51.119], + [14.134, -53.196], + [9.126, -51.119], + [7.031, -46.129], + [9.126, -41.122], + [14.134, -39.027] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "Y", + "fFamily": "Inter", + "size": 38.4402389526367, + "style": "Bold", + "w": 72.44, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "Y", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "Y", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [28.587, -25.71], + [28.587, 0], + [43.857, 0], + [43.857, -25.71], + [70.384, -72.727], + [53.161, -72.727], + [36.577, -41.406], + [35.866, -41.406], + [19.283, -72.727], + [2.06, -72.727] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "r", + "fFamily": "Inter", + "size": 38.4402389526367, + "style": "Bold", + "w": 40.87, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "r", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "r", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-1.007, 1.705], + [-1.74, 0.959], + [-2.226, 0], + [-1.255, -0.165], + [-0.71, -0.213], + [0, 0], + [0.876, 0.095], + [0.757, 0], + [2.344, -1.74], + [0.994, -3.385], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -2.225], + [1.006, -1.705], + [1.74, -0.959], + [1.041, 0], + [1.255, 0.166], + [0, 0], + [-0.663, -0.165], + [-0.876, -0.094], + [-3.054, 0], + [-2.344, 1.74], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.165, 0], + [21.165, -30.859], + [22.674, -36.754], + [26.793, -40.749], + [32.741, -42.188], + [36.186, -41.939], + [39.134, -41.371], + [39.134, -54.794], + [36.825, -55.185], + [34.375, -55.327], + [26.278, -52.717], + [21.271, -45.028], + [20.703, -45.028], + [20.703, -54.545], + [6.037, -54.545], + [6.037, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "p", + "fFamily": "Inter", + "size": 38.4402389526367, + "style": "Bold", + "w": 63.25, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "p", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "p", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [-1.302, -1.479], + [-2.048, -0.97], + [-2.936, 0], + [-3.35, 2.143], + [-1.953, 4.179], + [0, 6.085], + [2.012, 4.155], + [3.361, 2.072], + [3.977, 0], + [2.047, -1.03], + [1.266, -1.527], + [0.663, -1.468], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0.686, 1.515], + [1.302, 1.48], + [2.047, 0.97], + [4.143, 0], + [3.35, -2.142], + [1.953, -4.178], + [0, -6.25], + [-2.012, -4.155], + [-3.362, -2.071], + [-3.054, 0], + [-2.048, 1.03], + [-1.267, 1.527], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.165, 20.455], + [21.165, -8.736], + [21.626, -8.736], + [24.609, -4.244], + [29.634, -0.568], + [37.109, 0.888], + [48.349, -2.326], + [56.303, -11.808], + [59.233, -27.202], + [56.214, -42.809], + [48.153, -52.148], + [37.145, -55.256], + [29.492, -53.711], + [24.521, -49.876], + [21.626, -45.384], + [20.952, -45.384], + [20.952, -54.545], + [6.037, -54.545], + [6.037, 20.455] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "p", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [-0.9, 2.391], + [-1.693, 1.302], + [-2.462, 0], + [-1.705, -1.349], + [-0.876, -2.391], + [0, -3.148], + [0.888, -2.426], + [1.705, -1.361], + [2.462, 0], + [1.705, 1.338], + [0.899, 2.415], + [0, 3.244] + ], + "o": [ + [0.899, -2.391], + [1.692, -1.302], + [2.486, 0], + [1.705, 1.349], + [0.876, 2.391], + [0, 3.173], + [-0.888, 2.427], + [-1.705, 1.362], + [-2.439, 0], + [-1.705, -1.337], + [-0.9, -2.415], + [0, -3.243] + ], + "v": [ + [22.195, -35.724], + [26.083, -41.264], + [32.315, -43.217], + [38.601, -41.193], + [42.472, -35.582], + [43.786, -27.273], + [42.454, -18.874], + [38.565, -13.192], + [32.315, -11.151], + [26.101, -13.157], + [22.195, -18.786], + [20.845, -27.273] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "h", + "fFamily": "Inter", + "size": 38.4402389526367, + "style": "Bold", + "w": 62.43, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "h", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "h", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-0.888, 1.669], + [-1.575, 0.876], + [-2.06, 0], + [-1.717, -1.87], + [0.023, -3.361], + [0, 0], + [0, 0], + [0, 0], + [1.574, 3.066], + [2.829, 1.646], + [3.788, 0], + [2.746, -1.834], + [1.231, -3.219], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0.888, -1.669], + [1.574, -0.876], + [3.077, 0], + [1.716, 1.87], + [0, 0], + [0, 0], + [0, 0], + [0.023, -4.261], + [-1.575, -3.066], + [-2.829, -1.645], + [-4.143, 0], + [-2.747, 1.835], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.023, -2.344] + ], + "v": [ + [22.532, -37.553], + [26.225, -41.371], + [31.676, -42.685], + [38.867, -39.879], + [41.406, -32.031], + [41.406, 0], + [56.534, 0], + [56.534, -34.73], + [54.208, -45.721], + [47.603, -52.788], + [37.678, -55.256], + [27.344, -52.504], + [21.378, -44.922], + [20.739, -44.922], + [20.739, -72.727], + [6.037, -72.727], + [6.037, 0], + [21.165, 0], + [21.165, -31.534] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "s", + "fFamily": "Inter", + "size": 38.4402389526367, + "style": "Bold", + "w": 56.18, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "s", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "s", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [3.965, 2.912], + [6.889, 0], + [3.468, -1.373], + [1.905, -2.533], + [0, -3.503], + [-2.592, -2.628], + [-5.327, -1.065], + [0, 0], + [-1.136, -0.888], + [-0.024, -1.373], + [1.621, -1.03], + [2.651, 0], + [1.728, 1.149], + [0.449, 2.202], + [0, 0], + [-4.274, -3.018], + [-7.221, 0], + [-3.634, 1.503], + [-2.095, 2.699], + [0, 3.575], + [2.604, 2.415], + [5.303, 1.089], + [0, 0], + [1.041, 0.9], + [0, 1.302], + [-1.61, 0.983], + [-2.344, 0], + [-1.267, -0.58], + [-0.781, -0.959], + [-0.237, -1.184], + [0, 0] + ], + "o": [ + [-3.966, -2.912], + [-4.664, 0], + [-3.468, 1.373], + [-1.906, 2.534], + [0, 4.072], + [2.592, 2.628], + [0, 0], + [2.367, 0.474], + [1.136, 0.888], + [-0.024, 1.634], + [-1.622, 1.03], + [-2.699, 0], + [-1.728, -1.148], + [0, 0], + [0.734, 5.209], + [4.273, 3.018], + [4.735, 0], + [3.634, -1.503], + [2.095, -2.699], + [0, -3.93], + [-2.605, -2.415], + [0, 0], + [-2.534, -0.544], + [-1.042, -0.899], + [0, -1.634], + [1.61, -0.982], + [1.752, 0], + [1.266, 0.58], + [0.781, 0.959], + [0, 0], + [-0.663, -5.019] + ], + "v": [ + [44.478, -50.888], + [28.196, -55.256], + [15.998, -53.196], + [7.937, -47.337], + [5.078, -38.281], + [8.967, -28.232], + [20.845, -22.692], + [30.291, -20.81], + [35.547, -18.768], + [37.287, -15.376], + [34.819, -11.381], + [28.409, -9.837], + [21.768, -11.559], + [18.501, -16.584], + [3.622, -15.803], + [11.133, -3.462], + [28.374, 1.065], + [40.927, -1.19], + [49.521, -7.493], + [52.663, -16.903], + [48.757, -26.42], + [36.896, -31.676], + [27.024, -33.665], + [21.662, -35.831], + [20.099, -39.134], + [22.514, -43.058], + [28.445, -44.531], + [32.972, -43.661], + [36.044, -41.353], + [37.571, -38.139], + [51.42, -38.991] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "m", + "fFamily": "Inter", + "size": 38.4402389526367, + "style": "Bold", + "w": 91.19, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "m", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "m", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [-0.781, 1.504], + [-1.338, 0.841], + [-1.681, 0], + [-1.527, -1.586], + [0, -2.675], + [0, 0], + [0, 0], + [0, 0], + [-1.539, 1.74], + [-2.747, 0], + [-1.61, -1.515], + [0, -3.03], + [0, 0], + [0, 0], + [0, 0], + [3.184, 3.232], + [5.09, 0], + [2.924, -1.882], + [1.113, -3.125], + [0, 0], + [2.628, 1.859], + [3.74, 0], + [2.651, -1.847], + [1.136, -3.196], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, -2.012], + [0.781, -1.503], + [1.337, -0.84], + [2.486, 0], + [1.527, 1.586], + [0, 0], + [0, 0], + [0, 0], + [0, -2.841], + [1.539, -1.74], + [2.415, 0], + [1.61, 1.515], + [0, 0], + [0, 0], + [0, 0], + [0, -5.918], + [-3.184, -3.232], + [-4.001, 0], + [-2.924, 1.882], + [0, 0], + [-0.876, -3.172], + [-2.628, -1.858], + [-3.693, 0], + [-2.652, 1.847], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [21.165, 0], + [21.165, -32.741], + [22.337, -38.015], + [25.515, -41.531], + [30.043, -42.791], + [36.062, -40.412], + [38.352, -34.02], + [38.352, 0], + [53.018, 0], + [53.018, -33.31], + [55.327, -40.181], + [61.754, -42.791], + [67.791, -40.518], + [70.206, -33.7], + [70.206, 0], + [85.298, 0], + [85.298, -36.683], + [80.522, -50.408], + [68.111, -55.256], + [57.724, -52.433], + [51.669, -44.922], + [51.101, -44.922], + [45.845, -52.468], + [36.293, -55.256], + [26.776, -52.486], + [21.094, -44.922], + [20.455, -44.922], + [20.455, -54.545], + [6.037, -54.545], + [6.037, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "n", + "fFamily": "Inter", + "size": 18.770959854126, + "style": "Bold", + "w": 62.18, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "n", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "n", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-0.864, 1.669], + [-1.551, 0.876], + [-2.036, 0], + [-1.728, -1.882], + [0.023, -3.338], + [0, 0], + [0, 0], + [0, 0], + [1.562, 3.066], + [2.817, 1.657], + [3.788, 0], + [2.841, -1.858], + [1.207, -3.172], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0.864, -1.669], + [1.55, -0.876], + [3.03, 0], + [1.728, 1.882], + [0, 0], + [0, 0], + [0, 0], + [0, -4.238], + [-1.562, -3.066], + [-2.818, -1.657], + [-4.048, 0], + [-2.841, 1.859], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0.023, -2.344] + ], + "v": [ + [22.496, -37.553], + [26.119, -41.371], + [31.499, -42.685], + [38.636, -39.862], + [41.193, -32.031], + [41.193, 0], + [56.321, 0], + [56.321, -34.73], + [53.977, -45.685], + [47.408, -52.77], + [37.5, -55.256], + [27.166, -52.468], + [21.094, -44.922], + [20.455, -44.922], + [20.455, -54.545], + [6.037, -54.545], + [6.037, 0], + [21.165, 0], + [21.165, -31.534] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": ".", + "fFamily": "Inter", + "size": 18.770959854126, + "style": "Bold", + "w": 29.76, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": ".", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": ".", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-1.278, 0.769], + [-0.793, 1.291], + [0, 1.562], + [1.705, 1.657], + [2.273, 0], + [1.669, -1.657], + [0, -2.32], + [-1.669, -1.669], + [-2.344, 0] + ], + "o": [ + [1.278, -0.769], + [0.793, -1.29], + [0, -2.32], + [-1.705, -1.657], + [-2.344, 0], + [-1.669, 1.657], + [0, 2.344], + [1.669, 1.669], + [1.539, 0] + ], + "v": [ + [19.105, -0.231], + [22.212, -3.32], + [23.402, -7.599], + [20.845, -13.565], + [14.879, -16.051], + [8.86, -13.565], + [6.357, -7.599], + [8.86, -1.58], + [14.879, 0.923] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "w", + "fFamily": "Inter", + "size": 18.770959854126, + "style": "Bold", + "w": 85.01, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "w", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "w", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [32.777, 0], + [42.152, -34.304], + [42.827, -34.304], + [52.202, 0], + [68.217, 0], + [83.026, -54.545], + [67.756, -54.545], + [59.446, -18.111], + [58.984, -18.111], + [50.036, -54.545], + [35.014, -54.545], + [26.207, -17.898], + [25.71, -17.898], + [17.259, -54.545], + [1.953, -54.545], + [16.797, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "x", + "fFamily": "Inter", + "size": 19.0044193267822, + "style": "Bold", + "w": 57.39, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "x", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "x", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [3.054, -54.545], + [18.679, -27.273], + [2.486, 0], + [18.111, 0], + [28.693, -18.857], + [39.453, 0], + [54.901, 0], + [38.672, -27.273], + [54.474, -54.545], + [38.956, -54.545], + [28.693, -35.476], + [18.679, -54.545] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "7", + "fFamily": "Inter", + "size": 19.0044193267822, + "style": "Bold", + "w": 61.47, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "7", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "7", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [24.645, 0], + [54.83, -59.979], + [54.83, -72.727], + [3.8, -72.727], + [3.8, -60.156], + [38.92, -60.156], + [38.92, -59.659], + [8.771, 0] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "8", + "fFamily": "Inter", + "size": 19.0044193267822, + "style": "Bold", + "w": 66.09, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "8", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "8", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.25, 1.787], + [-2.415, 3.102], + [-0.024, 3.93], + [1.408, 2.545], + [2.379, 1.693], + [2.912, 0.474], + [0, 0], + [-2.439, 2.983], + [-0.024, 4.001], + [2.202, 2.947], + [3.847, 1.705], + [4.901, 0], + [3.847, -1.692], + [2.202, -2.947], + [0, -3.764], + [-2.415, -2.995], + [-3.883, -0.781], + [0, 0], + [2.391, -1.692], + [1.385, -2.545], + [0, -3.03], + [-2.415, -3.101], + [-4.25, -1.787], + [-5.469, 0] + ], + "o": [ + [4.249, -1.787], + [2.415, -3.101], + [-0.024, -3.03], + [-1.409, -2.545], + [-2.379, -1.692], + [0, 0], + [3.811, -0.781], + [2.438, -2.983], + [-0.024, -3.74], + [-2.202, -2.947], + [-3.847, -1.705], + [-4.901, 0], + [-3.847, 1.693], + [-2.202, 2.947], + [0, 3.977], + [2.415, 2.995], + [0, 0], + [-2.96, 0.474], + [-2.391, 1.693], + [-1.385, 2.545], + [0, 3.93], + [2.415, 3.102], + [4.249, 1.787], + [5.469, 0] + ], + "v": [ + [47.603, -1.687], + [57.599, -9.02], + [61.257, -19.567], + [59.109, -27.93], + [53.427, -34.286], + [45.49, -37.536], + [45.49, -38.033], + [54.865, -43.679], + [58.558, -54.155], + [55.22, -64.187], + [46.147, -71.165], + [33.026, -73.722], + [19.904, -71.183], + [10.831, -64.222], + [7.528, -54.155], + [11.151, -43.697], + [20.597, -38.033], + [20.597, -37.536], + [12.571, -34.286], + [6.907, -27.93], + [4.83, -19.567], + [8.452, -9.02], + [18.448, -1.687], + [33.026, 0.994] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "8", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.847, 0.888], + [1.018, 1.575], + [0, 2.06], + [-1.054, 1.622], + [-1.847, 0.936], + [-2.344, 0], + [-1.823, -0.935], + [-1.065, -1.621], + [0, -2.107], + [1.03, -1.574], + [1.823, -0.888], + [2.438, 0] + ], + "o": [ + [-1.847, -0.888], + [-1.018, -1.574], + [0, -2.107], + [1.053, -1.621], + [1.847, -0.935], + [2.367, 0], + [1.823, 0.936], + [1.065, 1.622], + [0, 2.06], + [-1.03, 1.575], + [-1.823, 0.888], + [-2.415, 0] + ], + "v": [ + [26.634, -11.63], + [22.337, -15.323], + [20.81, -20.774], + [22.39, -26.367], + [26.74, -30.202], + [33.026, -31.605], + [39.311, -30.202], + [43.643, -26.367], + [45.241, -20.774], + [43.697, -15.323], + [39.418, -11.63], + [33.026, -10.298] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "8", + "ind": 2, + "hd": false, + "ks": { + "k": { + "i": [ + [1.586, 0.829], + [0.899, 1.468], + [0, 1.918], + [-0.888, 1.433], + [-1.586, 0.817], + [-2.06, 0], + [-1.562, -0.817], + [-0.9, -1.432], + [0, -1.894], + [0.899, -1.468], + [1.586, -0.828], + [2.036, 0] + ], + "o": [ + [-1.586, -0.828], + [-0.9, -1.468], + [0, -1.894], + [0.888, -1.432], + [1.586, -0.817], + [2.083, 0], + [1.562, 0.817], + [0.899, 1.433], + [0, 1.918], + [-0.9, 1.468], + [-1.586, 0.829], + [-2.036, 0] + ], + "v": [ + [27.592, -44.034], + [23.864, -47.479], + [22.514, -52.557], + [23.846, -57.546], + [27.557, -60.92], + [33.026, -62.145], + [38.494, -60.92], + [42.188, -57.546], + [43.537, -52.557], + [42.188, -47.479], + [38.459, -44.034], + [33.026, -42.791] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "3", + "fFamily": "Inter", + "size": 19.0044193267822, + "style": "Bold", + "w": 65.94, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "3", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "3", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.214, 1.847], + [-2.403, 3.22], + [0.023, 4.143], + [2.805, 3.018], + [5.35, 0.687], + [0, 0], + [-2.545, 2.723], + [0.023, 4.072], + [2.095, 3.09], + [3.764, 1.823], + [5.019, 0], + [3.942, -1.811], + [2.32, -3.196], + [0.071, -4.19], + [0, 0], + [-1.042, 1.373], + [-1.728, 0.746], + [-2.084, 0], + [-1.551, -0.781], + [-0.864, -1.385], + [0, -1.823], + [0.994, -1.432], + [1.787, -0.805], + [2.32, 0], + [0, 0], + [0, 0], + [0, 0], + [-2.001, -0.852], + [-1.078, -1.503], + [0, -1.941], + [1.018, -1.468], + [1.799, -0.828], + [2.344, 0], + [1.799, 0.734], + [1.077, 1.338], + [0.094, 1.776], + [0, 0], + [-2.379, -3.232], + [-4.132, -1.834], + [-5.303, 0] + ], + "o": [ + [4.214, -1.847], + [2.403, -3.219], + [0.023, -4.522], + [-2.805, -3.018], + [0, 0], + [4.072, -0.734], + [2.545, -2.722], + [0.023, -3.835], + [-2.095, -3.089], + [-3.764, -1.823], + [-4.972, 0], + [-3.942, 1.811], + [-2.32, 3.196], + [0, 0], + [0.071, -1.847], + [1.041, -1.373], + [1.728, -0.746], + [2.06, 0], + [1.55, 0.781], + [0.864, 1.385], + [0, 1.918], + [-0.994, 1.433], + [-1.788, 0.805], + [0, 0], + [0, 0], + [0, 0], + [2.746, 0], + [2, 0.852], + [1.077, 1.504], + [0, 1.918], + [-1.018, 1.468], + [-1.799, 0.829], + [-2.249, 0], + [-1.799, -0.734], + [-1.078, -1.337], + [0, 0], + [0.071, 4.238], + [2.379, 3.232], + [4.131, 1.834], + [5.445, 0] + ], + "v": [ + [47.266, -1.776], + [57.191, -9.375], + [60.76, -20.419], + [56.587, -31.729], + [44.354, -37.287], + [44.354, -37.855], + [54.279, -43.04], + [58.061, -53.232], + [54.954, -63.619], + [46.165, -70.987], + [32.99, -73.722], + [19.62, -71.005], + [10.227, -63.494], + [6.641, -52.415], + [21.378, -52.415], + [23.047, -57.244], + [27.202, -60.423], + [32.919, -61.541], + [38.335, -60.369], + [41.957, -57.12], + [43.253, -52.308], + [41.761, -47.283], + [37.589, -43.928], + [31.428, -42.72], + [24.645, -42.72], + [24.645, -31.428], + [31.428, -31.428], + [38.548, -30.149], + [43.164, -26.616], + [44.78, -21.449], + [43.253, -16.371], + [39.027, -12.926], + [32.812, -11.683], + [26.74, -12.784], + [22.425, -15.891], + [20.668, -20.561], + [5.185, -20.561], + [8.86, -9.357], + [18.626, -1.758], + [32.777, 0.994] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + }, + { + "ch": "6", + "fFamily": "Inter", + "size": 19.0044193267822, + "style": "Bold", + "w": 66.02, + "data": { + "shapes": [ + { + "ty": "gr", + "nm": "6", + "bm": 0, + "hd": false, + "it": [ + { + "ty": "sh", + "nm": "6", + "ind": 0, + "hd": false, + "ks": { + "k": { + "i": [ + [-4.084, 2.166], + [-2.285, 3.835], + [0, 4.924], + [1.941, 3.528], + [3.361, 2.024], + [4.309, 0], + [2.379, -0.817], + [1.858, -1.527], + [1.089, -2.154], + [0, 0], + [-2.45, 4.119], + [-4.735, 0], + [-1.894, -1.444], + [-0.592, -2.533], + [0, 0], + [2.261, 3.22], + [3.716, 1.882], + [4.853, 0], + [3.622, -1.763], + [2.592, -3.361], + [1.385, -4.817], + [0.023, -6.108], + [-1.598, -4.569], + [-2.747, -2.77], + [-3.468, -1.231], + [-3.741, -0.024] + ], + "o": [ + [4.084, -2.166], + [2.284, -3.835], + [0, -4.545], + [-1.941, -3.527], + [-3.362, -2.024], + [-2.652, 0], + [-2.379, 0.817], + [-1.859, 1.527], + [0, 0], + [0.047, -7.078], + [2.45, -4.119], + [2.793, 0], + [1.894, 1.444], + [0, 0], + [-0.474, -4.001], + [-2.261, -3.219], + [-3.717, -1.882], + [-4.498, 0], + [-3.622, 1.764], + [-2.592, 3.362], + [-1.385, 4.818], + [0, 6.653], + [1.598, 4.569], + [2.746, 2.77], + [3.468, 1.231], + [5.398, 0.023] + ], + "v": [ + [48.029, -2.219], + [57.582, -11.222], + [61.009, -24.361], + [58.097, -36.47], + [50.142, -44.798], + [38.636, -47.834], + [31.09, -46.609], + [24.734, -43.093], + [20.312, -37.571], + [19.815, -37.571], + [23.562, -54.368], + [34.339, -60.547], + [41.371, -58.381], + [45.099, -52.415], + [60.263, -52.415], + [56.161, -63.246], + [47.195, -70.898], + [34.339, -73.722], + [22.159, -71.076], + [12.837, -63.388], + [6.871, -51.119], + [4.759, -34.73], + [7.156, -17.898], + [13.672, -6.889], + [22.994, -0.888], + [33.807, 0.994] + ], + "c": true + }, + "a": 0 + } + }, + { + "ty": "sh", + "nm": "6", + "ind": 1, + "hd": false, + "ks": { + "k": { + "i": [ + [1.858, 1.16], + [1.077, 1.941], + [0, 2.344], + [-0.639, 1.551], + [-1.125, 1.184], + [-1.504, 0.663], + [-1.776, 0], + [-1.847, -1.136], + [-1.054, -1.918], + [0, -2.415], + [1.065, -1.941], + [1.87, -1.136], + [2.367, 0] + ], + "o": [ + [-1.859, -1.16], + [-1.078, -1.941], + [0, -1.752], + [0.639, -1.55], + [1.124, -1.184], + [1.503, -0.663], + [2.367, 0], + [1.847, 1.136], + [1.053, 1.918], + [0, 2.415], + [-1.065, 1.941], + [-1.87, 1.136], + [-2.368, 0] + ], + "v": [ + [27.397, -12.82], + [22.994, -17.472], + [21.378, -23.899], + [22.337, -28.853], + [24.982, -32.955], + [28.924, -35.724], + [33.842, -36.719], + [40.163, -35.014], + [44.514, -30.433], + [46.094, -23.935], + [44.496, -17.401], + [40.092, -12.784], + [33.736, -11.08] + ], + "c": true + }, + "a": 0 + } + } + ] + } + ] + } + } + ], + "fonts": { + "list": [ + { + "ascent": 72.7264404296875, + "fFamily": "Inter", + "fName": "Inter-Medium", + "fStyle": "Medium" + }, + { + "ascent": 72.7264404296875, + "fFamily": "Inter", + "fName": "Inter-Bold", + "fStyle": "Bold" + } + ] + }, + "markers": [] +} diff --git a/apps/dashboard/public/assets/product-pages/connect/account-abstraction.png b/apps/dashboard/public/assets/product-pages/connect/account-abstraction.png new file mode 100644 index 00000000000..4c1af032df1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/account-abstraction.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/connect-lottie.json b/apps/dashboard/public/assets/product-pages/connect/connect-lottie.json new file mode 100644 index 00000000000..82e3e7c1646 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/connect/connect-lottie.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.5.4","a":"","k":"","d":"","tc":""},"fr":24,"ip":0,"op":200,"w":1920,"h":1920,"nm":"C","assets":[{"id":"comp_0","layers":[{"ind":1,"ty":5,"nm":"M","parent":2,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":128,"s":[100]},{"t":133,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[138.298,-19.853,0]},"a":{"a":0,"k":[-0.536,-10.001,0]},"s":{"a":0,"k":[38.017,38.017,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":60,"f":"VCROSDMono","t":"Make offer","j":2,"tr":-10,"lh":72,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":108,"op":133,"st":108},{"ind":2,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":128,"s":[100]},{"t":133,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[1373.829,926.073,0]},"a":{"a":0,"k":[136.35,-23.637,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.013,0.013,0]},"t":106,"s":[212,212,100]},{"t":115,"s":[332,332,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.539,0],[0,0],[0,-4.539],[0,0],[4.539,0],[0,0],[0,4.539],[0,0]],"o":[[0,0],[4.539,0],[0,0],[0,4.539],[0,0],[-4.539,0],[0,0],[0,-4.539]],"v":[[51.216,-54.334],[221.484,-54.334],[229.701,-46.116],[229.701,-1.158],[221.484,7.06],[51.216,7.06],[42.998,-1.158],[42.998,-46.116]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.055,0.094,0.078,1]},"o":{"a":0,"k":60},"r":1,"nm":"F"},{"ty":"st","c":{"a":0,"k":[0.043,0.584,0.459,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":1.714},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":108,"op":133,"st":108},{"ind":3,"ty":5,"nm":"B","parent":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":128,"s":[100]},{"t":133,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[135.888,-99.974,0]},"a":{"a":0,"k":[-0.536,-10.001,0]},"s":{"a":0,"k":[38.017,38.017,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":70,"f":"VCROSDMono","t":"Buy now","j":2,"tr":-10,"lh":84,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":106,"op":133,"st":106},{"ind":4,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":128,"s":[100]},{"t":133,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[1373.829,651.389,0]},"a":{"a":0,"k":[136.35,-106.373,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.013,0.013,0]},"t":104,"s":[212,212,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":113,"s":[332,332,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":122,"s":[332,332,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":125,"s":[281,281,100]},{"t":128,"s":[332,332,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.012,0],[0,0],[0,-5.012],[0,0],[5.012,0],[0,0],[0,5.012],[0,0]],"o":[[0,0],[5.012,0],[0,0],[0,5.012],[0,0],[-5.012,0],[0,0],[0,-5.012]],"v":[[51.216,-137.927],[221.483,-137.927],[230.558,-128.852],[230.558,-83.894],[221.483,-74.819],[51.216,-74.819],[42.141,-83.894],[42.141,-128.852]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":122,"s":[0.043,0.584,0.459,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":125,"s":[0.046,0.326,0.261,1]},{"t":128,"s":[0.043,0.584,0.459,1]}]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":106,"op":133,"st":106},{"ind":5,"ty":0,"nm":"l","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,972,0]},"a":{"a":0,"k":[960,960,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":3,"s":[50,50,100]},{"t":14,"s":[102,102,100]}]}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[11.046,0],[0,0],[0,-11.046],[0,0],[-11.046,0],[0,0],[0,11.046],[0,0]],"o":[[0,0],[-11.046,0],[0,0],[0,11.046],[0,0],[11.046,0],[0,0],[0,-11.046]],"v":[[1571.453,192],[348,192],[328,212],[328,1662.656],[348,1682.656],[1571.453,1682.656],[1591.453,1662.656],[1591.453,212]],"c":true}},"o":{"a":0,"k":100},"x":{"a":0,"k":0},"nm":"M"}],"w":1920,"h":1920,"ip":5,"op":55,"st":5},{"ind":6,"ty":5,"nm":"c","cl":"eth 7","parent":12,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":153,"s":[90]},{"t":159,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[496,-694,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":61,"f":"Inter-Medium","t":"catty.eth\r124.7 MATIC\r","j":0,"tr":0,"lh":74,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":129,"op":163,"st":129},{"ind":7,"ty":5,"nm":"c","cl":"eth 7","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":87,"s":[90]},{"t":97,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[496,-694,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":61,"f":"Inter-Medium","t":"catty.eth\r124.7 MATIC\r","j":0,"tr":0,"lh":74,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":55,"op":97,"st":55},{"ind":8,"ty":4,"nm":"L","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":87,"s":[90]},{"t":97,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[384,-676,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[280,280,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.862],[0.609,0.609],[0.862,0],[0.609,-0.609],[0,-0.862],[-0.609,-0.609],[-0.862,0],[-0.609,0.609]],"o":[[0,-0.862],[-0.609,-0.609],[-0.862,0],[-0.609,0.609],[0,0.862],[0.609,0.609],[0.862,0],[0.609,-0.609]],"v":[[3.25,0],[2.298,-2.298],[0,-3.25],[-2.298,-2.298],[-3.25,0],[-2.298,2.298],[0,3.25],[2.298,2.298]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[5.383,0],[0,-5.383],[-5.383,0],[0,-0.899],[0.899,0],[0,7.18],[-7.18,0],[0,-7.18],[0,0],[2.691,0],[0.894,1.051],[1.701,0],[0,3.59],[-3.59,0],[-1.066,-0.772],[-0.416,0],[0,-0.899],[0,0],[-0.899,0],[0,0.899],[0,0]],"o":[[-5.383,0],[0,5.383],[0.899,0],[0,0.899],[-7.18,0],[0,-7.18],[7.18,0],[0,0],[0,2.691],[-1.488,0],[-1.158,1.066],[-3.59,0],[0,-3.59],[1.417,0],[0.289,-0.254],[0.899,0],[0,0],[0,0.899],[0.899,0],[0,0],[0,-5.383]],"v":[[0,-9.75],[-9.75,0],[0,9.75],[1.625,11.375],[0,13],[-13,0],[0,-13],[13,0],[13,1.625],[8.125,6.5],[4.408,4.779],[0,6.5],[-6.5,0],[0,-6.5],[3.793,-5.276],[4.875,-5.688],[6.5,-4.062],[6.5,1.625],[8.125,3.25],[9.75,1.625],[9.75,0]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.412,0],[0,0],[0,-5.412],[0,0],[5.412,0],[0,0],[0,5.412],[0,0]],"o":[[0,0],[5.412,0],[0,0],[0,5.412],[0,0],[-5.412,0],[0,0],[0,-5.412]],"v":[[-15.2,-25],[15.2,-25],[25,-15.2],[25,15.2],[15.2,25],[-15.2,25],[-25,15.2],[-25,-15.2]],"c":true}},"nm":"P"},{"ty":"gf","o":{"a":0,"k":100},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.514,0.345,0.729,0.5,0.498,0.227,0.849,1,0.482,0.11,0.969]}},"s":{"a":0,"k":[-3,-26]},"e":{"a":0,"k":[1.898,-75.516]},"t":1,"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":55,"op":97,"st":55},{"ind":9,"ty":4,"nm":"S","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":87,"s":[90]},{"t":97,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.013},"t":52,"s":[1651.961,231.711,0],"to":[-26.667,0,0],"ti":[26.667,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":64,"s":[1491.961,231.711,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":0.37,"y":0},"t":87,"s":[1491.961,231.711,0],"to":[40,0,0],"ti":[-40,0,0]},{"t":97,"s":[1731.961,231.711,0]}]},"a":{"a":0,"k":[583.961,-676.289,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[639.922,247.422]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":71},"nm":"R"},{"ty":"st","c":{"a":0,"k":[0.043,0.584,0.459,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.055,0.094,0.078,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[583.961,-676.289]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"R"}],"ip":55,"op":97,"st":55},{"ind":10,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.45,"y":0.965},"o":{"x":0.72,"y":0.023},"t":125,"s":[706.057,796.799,0],"to":[97.667,-94.667,0],"ti":[-521.333,-70.667,0]},{"t":145,"s":[1292.057,228.799,0]}]},"a":{"a":0,"k":[16.386,-33.073,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.013,0.013,0]},"t":104,"s":[242,242,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":113,"s":[332,332,100]},{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[1,1,1],"y":[0.018,0.018,0]},"t":125,"s":[332,332,100]},{"t":149,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.008,-0.374],[1.192,-0.419],[-1.135,0.828]],"o":[[-0.656,0.907],[0.25,-1.297],[0.157,0.294]],"v":[[-19.481,-13.346],[-21.726,-10.877],[-19.953,-14.226]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.024,0.021],[-0.036,-0.009]],"o":[[-0.024,-0.021],[0.036,0.009],[0,0]],"v":[[-27.978,-6.851],[-28.051,-6.915],[-27.942,-6.887]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.255,0.802],[0.311,-0.923]],"o":[[1.533,0.471],[-0.592,-0.508]],"v":[[-27.506,-9.509],[-25.981,-7.767]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.578,-0.486],[-0.019,1.057],[-0.479,0.152],[-0.557,-0.786]],"o":[[-0.205,-1.042],[0.006,-0.351],[0.042,0.893],[-1.283,0.001]],"v":[[-30.184,-9.097],[-30.395,-12.25],[-30.006,-13.158],[-28.855,-10.821]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.205,-1.042],[0.174,-0.354],[-0.136,0.653],[-0.082,2.207],[-1.114,-0.662],[-0.41,-0.666],[0.36,0.17],[-0.204,-0.707],[-0.348,-0.565],[0.006,-0.351]],"o":[[-0.013,0.248],[-0.449,-0.258],[0.462,-2.215],[0.047,-1.269],[0.532,0.316],[-0.57,0.243],[-0.955,-0.452],[0.174,0.605],[-0.479,0.152],[-0.019,1.057]],"v":[[-30.184,-9.097],[-30.084,-8.295],[-31.011,-9.338],[-31.033,-15.96],[-29.835,-16.632],[-28.185,-15.549],[-29.526,-15.736],[-30.352,-14.993],[-30.006,-13.158],[-30.395,-12.25]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.306,-0.497],[-0.049,-0.14],[0.167,-0.122],[2.896,1.706],[-1.031,-0.573],[-0.836,0.086]],"o":[[0.049,0.14],[0.047,0.213],[-3.009,-1.491],[1.327,-0.503],[0.645,0.359],[0.932,1.172]],"v":[[-19.685,-25.32],[-19.537,-24.901],[-19.747,-24.411],[-28.654,-29.114],[-25.34,-28.2],[-23.314,-27.332]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.577,-0.304],[-2.015,0.307]],"o":[[-0.368,-1.502],[-0.016,1.445]],"v":[[-7.016,-52.977],[-5.044,-55.142]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.306,-0.636],[0.21,-0.02],[0.185,0.339],[0.425,0.316],[-0.28,0.311],[-0.235,-0.355]],"o":[[0.057,0.293],[-0.326,0.031],[-0.247,-0.454],[-0.38,-0.282],[0.316,-0.35],[0.419,0.634]],"v":[[-5.143,-43.397],[-5.413,-42.963],[-6.316,-43.185],[-7.285,-44.306],[-7.199,-45.385],[-6.139,-45.399]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.031,-0.269],[0.576,0.511],[-0.935,1.515],[-0.077,0.076],[-0.561,-0.433],[0.248,-0.345],[0.887,-1.174]],"o":[[-0.757,-0.183],[1.983,-0.404],[0.058,-0.094],[0.32,-0.317],[0.481,0.371],[-0.86,1.194],[-0.158,0.21]],"v":[[-15.06,-36.483],[-17.034,-37.569],[-13.279,-41.108],[-13.095,-41.383],[-11.945,-41.87],[-12.079,-40.702],[-14.711,-37.157]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.136,0.566],[0.129,0.453],[0.221,0.599],[-0.782,-0.656],[0.411,-0.82],[-0.244,-0.491],[0.178,-0.62],[0.46,0.135],[-0.038,0.456],[0.129,0.137]],"o":[[0.419,-0.532],[-0.119,-0.417],[1.164,0.402],[0.808,0.678],[-0.219,0.436],[0.273,0.55],[-0.122,0.424],[-0.392,-0.115],[0.018,-0.209],[0.093,-0.59]],"v":[[-5.511,-1.288],[-5.709,-2.685],[-6.224,-4.102],[-3.337,-2.645],[-3.055,-0.226],[-3.13,0.949],[-3.166,2.796],[-3.965,3.32],[-4.573,2.516],[-5.329,0.435]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.069,0.08],[-0.069,-0.08]],"o":[[0.07,0.08],[-0.07,-0.08]],"v":[[-18.828,-1.307],[-18.62,-1.066]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.13,-0.014],[-0.352,0.835],[0.02,-0.461],[-0.072,-0.422],[0.536,-0.123]],"o":[[0.183,-0.921],[0.374,0.103],[-0.018,0.418],[-0.536,0.123],[-0.13,0.013]],"v":[[-20.165,-10.454],[-18.93,-12.865],[-18.363,-12.129],[-18.165,-10.864],[-19.774,-10.495]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.385,-0.752],[-0.336,-0.544],[0.01,-0.85],[0.196,2.31],[-0.331,0.089],[-0.123,-0.234]],"o":[[-0.699,0.457],[0.401,0.649],[-2.363,-1.099],[-0.028,-0.331],[0.315,-0.084],[0.392,0.748]],"v":[[-19.699,-4.877],[-19.819,-3.351],[-18.821,-1.301],[-21.916,-6.833],[-21.459,-7.497],[-20.856,-7.132]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.656,0.907],[-0.086,-0.271],[0.183,-0.921],[1.552,0.555],[0.082,-1.021],[0.182,-0.441],[-0.497,-0.289],[0.339,-0.98],[0.918,0.384],[0.609,0.886],[0,0],[-1.061,-0.06],[0.245,0.293],[1.533,0.471],[-0.625,0.012],[-0.496,0.632],[-0.165,0.669],[-0.056,0.173],[-1.257,-0.109]],"o":[[0.305,0.021],[-0.352,0.835],[-0.904,1.404],[-0.839,-0.3],[-0.037,0.464],[-0.233,0.564],[1.157,0.672],[-0.374,-0.901],[-0.901,-0.377],[0,0],[0.886,0.05],[-0.381,-0.455],[0.311,-0.923],[-0.276,-0.315],[0.687,-0.013],[0.387,-0.493],[0.044,-0.177],[0.57,1.215],[1.192,-0.419]],"v":[[-19.481,-13.346],[-18.93,-12.865],[-20.165,-10.454],[-22.63,-9.579],[-24.031,-8.776],[-24.468,-7.414],[-24.101,-6.055],[-23.518,-3.474],[-25.458,-5.309],[-27.978,-6.851],[-27.942,-6.888],[-25.108,-6.728],[-25.981,-7.767],[-27.506,-9.509],[-27.304,-10.108],[-25.288,-10.164],[-24.76,-12.139],[-24.594,-12.66],[-21.726,-10.877]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.071,-0.442],[0.558,0.419],[-0.779,-0.358]],"o":[[-0.683,-0.152],[0.655,-0.314],[-0.094,0.414]],"v":[[-0.349,-28.943],[-2.203,-29.814],[-0.135,-30.197]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.073,-0.076],[0,0],[0.076,0.073]],"o":[[0.073,0.076],[0,0],[-0.076,-0.073],[0,0]],"v":[[21.7,-54.296],[21.919,-54.068],[21.926,-54.075],[21.698,-54.294]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.252,0.029],[0.011,0.301],[-0.281,0.021],[0,0],[0.021,-0.484]],"o":[[-0.254,-0.008],[-0.27,-0.031],[-0.016,-0.443],[0,0],[0.222,0.3],[0,0]],"v":[[21.698,-54.294],[20.936,-54.323],[20.411,-54.783],[21.035,-55.182],[21.025,-55.189],[21.7,-54.296]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.035,-0.271],[0.661,0.723]],"o":[[1.024,0.029],[-1.245,0.811],[0,0]],"v":[[21.919,-54.068],[24.979,-54.215],[21.926,-54.075]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.063,-0.232],[0.151,0.106]],"o":[[-0.151,-0.106],[0.229,-0.005]],"v":[[-5.244,-38.608],[-5.698,-38.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.732,0.103],[-0.166,0.626],[-0.348,-0.387],[0.219,-0.4]],"o":[[0.166,-0.626],[0.355,-0.106],[0.293,0.326],[-0.316,0.578]],"v":[[-3.122,-48.146],[-2.623,-50.023],[-1.573,-50.273],[-1.643,-49.032]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.657,0.446],[-0.916,-1.181],[0.07,0.663]],"o":[[-0.333,1.009],[-0.841,0.145],[-0.1,-0.959]],"v":[[12.905,-44.641],[13.488,-42.451],[11.441,-43.505]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.166,-0.626],[0.058,0.019],[0.026,0.482],[-0.472,0.232],[-0.248,0.065]],"o":[[-0.071,0.019],[-0.568,-0.187],[-0.031,-0.574],[0.225,-0.111],[-0.166,0.626]],"v":[[-3.122,-48.146],[-3.333,-48.094],[-4.683,-49.075],[-3.364,-49.821],[-2.623,-50.023]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.957,-0.123],[0.525,-0.781],[0.375,0.193],[-0.046,0.595],[-0.645,0.173]],"o":[[-0.29,1.006],[-0.233,0.346],[-0.439,-0.226],[0.039,-0.514],[0.832,-0.224]],"v":[[3.086,-44.871],[1.616,-42.372],[0.633,-42.159],[-0.124,-43.25],[0.447,-44.54]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.545,1.384],[-0.731,0.238],[-0.557,-1.172],[0.3,-0.179]],"o":[[0.833,-0.282],[1.228,-0.4],[0.089,0.186],[-1.416,0.843]],"v":[[6.598,-41.494],[8.888,-42.268],[11.17,-41.28],[11.101,-40.734]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.049,0.14],[0.429,0.339],[-0.897,1.358],[-1.829,-1.288],[0.415,-0.62],[0.679,-0.376]],"o":[[-0.068,-0.637],[-1.475,-1.166],[1.952,1.077],[-0.555,0.475],[-0.679,0.376],[-0.049,-0.139]],"v":[[-19.685,-25.32],[-20.71,-26.538],[-21.702,-30.916],[-15.926,-27.55],[-17.5,-26.029],[-19.537,-24.901]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.085,-0.185],[0.136,0.054]],"o":[[-0.137,-0.054],[0.167,-0.022]],"v":[[-22.157,-32.254],[-22.567,-32.416]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.77,-1.013],[1.713,1.125]],"o":[[-1.966,-0.632],[1.966,0.633]],"v":[[-14.693,-30.309],[-20.129,-33.105]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.056,-0.123],[1.702,0.75],[-0.07,0.153],[-1.688,-0.781]],"o":[[-1.702,-0.75],[0.07,-0.153],[1.688,0.781],[-0.056,0.123]],"v":[[-21.501,-33.591],[-26.607,-35.842],[-26.398,-36.302],[-21.334,-33.96]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.403,0.148],[-0.208,0.153],[-0.166,-0.283],[-0.137,-0.054],[0,0],[0.092,-0.536],[-1.475,-1.166],[-0.068,-0.637],[0.932,1.172],[0.167,1.37]],"o":[[0.208,-0.153],[0.267,0.039],[0.136,0.054],[0,0],[0.026,0.496],[-0.897,1.358],[0.429,0.339],[-1.306,-0.497],[0.82,-1.325],[-0.051,-0.417]],"v":[[-23.917,-32.254],[-23.293,-32.714],[-22.567,-32.416],[-22.157,-32.254],[-22.167,-32.271],[-21.702,-30.916],[-20.71,-26.538],[-19.685,-25.32],[-23.315,-27.332],[-23.115,-31.423]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.208,-0.153],[1.488,0.498],[-0.194,1.207],[-0.312,-0.176],[-1.709,-1.363]],"o":[[-1.442,-0.636],[-1.205,-0.403],[0.338,-0.058],[1.896,1.072],[-0.208,0.153]],"v":[[-23.917,-32.254],[-28.255,-34.128],[-29.735,-36.405],[-28.782,-36.237],[-23.293,-32.714]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.229,-2.045],[-0.116,1.112],[-0.546,-0.306]],"o":[[-1.314,-0.657],[0.059,-0.562],[0.995,0.557]],"v":[[21.378,-29.729],[19.701,-32.278],[20.476,-32.699]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.005,0.261],[1.157,0.546]],"o":[[-0.832,1.181],[0.744,-0.522]],"v":[[-0.316,-18.425],[-2.906,-17.637]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.029,-0.088],[0.059,0.055]],"o":[[-0.059,-0.055],[0.151,-0.045]],"v":[[-11.538,-8.94],[-11.717,-9.104]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.536,0.123],[-0.21,-0.136],[-0.353,-0.828],[1.121,0.811]],"o":[[0.21,0.137],[0.352,0.827],[-1.38,-0.475],[0.536,-0.123]],"v":[[-18.165,-10.864],[-17.535,-10.455],[-16.477,-7.972],[-19.774,-10.495]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.052,-1.269],[0.102,1.262],[-0.574,0.325]],"o":[[-0.805,-0.643],[0.623,-0.277],[0.575,1.15]],"v":[[-15.07,-1.685],[-17.084,-3.968],[-15.762,-5.333]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.157,0.294],[-0.387,-1.806],[0.141,-0.691],[0.21,0.137],[-0.018,0.418],[0.373,0.103],[0.305,0.021]],"o":[[1.289,-0.804],[-0.142,0.691],[-0.21,-0.136],[-0.072,-0.422],[0.02,-0.461],[-0.087,-0.272],[-0.008,-0.374]],"v":[[-19.953,-14.226],[-17.111,-12.528],[-17.535,-10.455],[-18.165,-10.864],[-18.363,-12.129],[-18.928,-12.865],[-19.481,-13.346]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.6,-0.094],[0.975,0.408],[-0.555,0.475],[-0.574,-0.922],[-0.111,-0.38]],"o":[[-0.832,-0.606],[0.415,-0.62],[0.925,0.35],[-0.08,0.399],[-0.682,-0.118]],"v":[[-14.992,-24.225],[-17.5,-26.029],[-15.926,-27.55],[-13.443,-26.025],[-13.327,-24.863]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.034,-0.251],[0.203,0.352],[1.101,1.95],[0.024,0.18],[-0.393,-0.781],[-0.441,-1.979]],"o":[[-0.403,-0.141],[-1.122,-1.939],[-0.083,-0.146],[0.837,-0.113],[0.891,1.771],[0.055,0.247]],"v":[[-11.689,-9.088],[-12.574,-9.877],[-15.91,-15.71],[-15.989,-16.244],[-14.292,-15.229],[-11.794,-9.841]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.699,0.457],[-0.821,0.055],[-0.063,-0.229],[-0.805,-0.643],[1.608,1.048],[0.07,0.08],[0,0],[0.401,0.649]],"o":[[0.784,0.349],[0.062,0.23],[0.102,1.262],[-1.158,1.53],[-0.069,-0.08],[0,0],[0.01,-0.85],[-0.336,-0.544]],"v":[[-19.699,-4.877],[-17.271,-4.657],[-17.084,-3.968],[-15.07,-1.685],[-18.62,-1.066],[-18.828,-1.307],[-18.821,-1.301],[-19.819,-3.351]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.384,0.434],[0.2,0.281],[0.047,0.213],[-0.679,0.376],[-0.832,-0.606],[0.052,-1.031],[0.24,-0.115],[0.109,0.209],[1.156,0.042]],"o":[[-0.017,-0.327],[0.167,-0.122],[0.679,-0.376],[0.975,0.408],[-0.186,1.04],[-0.011,0.214],[-0.321,0.154],[-0.549,-1.052],[-0.662,-0.024]],"v":[[-19.507,-23.477],[-19.747,-24.411],[-19.538,-24.901],[-17.5,-26.029],[-14.992,-24.225],[-14.792,-21.155],[-14.979,-20.566],[-15.58,-20.897],[-18.163,-22.426]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.394,-0.517],[0.739,0.019],[-0.5,0.457],[-0.074,1.871],[0.006,1.029],[-0.082,-0.677],[-0.17,-1.376],[-0.088,-0.238],[0.673,-0.482]],"o":[[-0.74,-0.019],[0.364,-0.616],[1.424,-1.301],[0.041,-1.027],[0.887,0.039],[0.168,1.377],[0.03,0.245],[-0.348,0.854],[-0.504,0.361]],"v":[[-14.609,3.149],[-16.827,3.091],[-15.191,2.134],[-13.044,-2.645],[-13.054,-5.732],[-11.941,-4.358],[-11.469,-0.224],[-11.214,0.49],[-13.078,2.1]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.118,1.179],[-0.241,0.418],[-0.864,0.488],[0.219,0.481],[-0.585,0.487],[-0.326,-1.867],[-0.538,-1.068],[-0.083,-0.146],[-1.122,-1.939],[-0.403,-0.141],[0,0],[-0.059,-0.055],[0.709,-0.192],[0.6,0.944],[0.972,1.476],[1.289,-0.804],[0.25,-1.297],[0.57,1.215]],"o":[[0.241,-0.418],[0.849,-0.515],[0.642,-0.362],[-0.286,-0.627],[1.89,-0.535],[0.199,1.143],[0.024,0.18],[1.101,1.95],[0.203,0.352],[0,0],[0.059,0.055],[-0.023,0.546],[-0.813,0.22],[-0.948,-1.491],[-0.387,-1.806],[-1.135,0.828],[-1.257,-0.109],[0.48,-0.95]],"v":[[-23.455,-15.626],[-22.732,-16.881],[-20.181,-18.418],[-19.931,-19.746],[-19.681,-21.426],[-16.768,-19.64],[-15.989,-16.244],[-15.91,-15.71],[-12.574,-9.877],[-11.689,-9.088],[-11.717,-9.104],[-11.538,-8.94],[-11.829,-7.388],[-14.2,-8.096],[-17.111,-12.528],[-19.953,-14.226],[-21.726,-10.877],[-24.594,-12.66]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.241,-0.418],[2.885,1.582],[0.013,-1.154],[0.227,-2.14],[-0.505,-0.799],[0.071,-0.068],[0.197,-1.084],[0.021,0.896],[0.043,4.583],[-1.147,-0.6],[-2.654,-1.52]],"o":[[-2.881,-1.588],[-0.977,-0.536],[-0.024,2.144],[-0.094,0.888],[0.088,0.139],[-0.995,0.946],[-0.834,-0.328],[-0.109,-4.586],[1.339,0.03],[2.708,1.417],[-0.241,0.418]],"v":[[-23.455,-15.626],[-32.1,-20.387],[-33.318,-19.628],[-33.506,-13.199],[-33.04,-10.625],[-32.954,-10.119],[-33.572,-6.86],[-34.672,-8.684],[-34.432,-22.427],[-30.852,-21.138],[-22.732,-16.881]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.042,0.893],[0.174,0.605],[-0.955,-0.452],[-0.57,0.243],[0.532,0.316],[0.047,-1.269],[0.462,-2.215],[-0.449,-0.258],[-0.013,0.248],[-1.283,0.001]],"o":[[-0.348,-0.565],[-0.204,-0.707],[0.36,0.17],[-0.41,-0.666],[-1.114,-0.662],[-0.082,2.207],[-0.136,0.653],[0.174,-0.354],[0.578,-0.486],[-0.557,-0.786]],"v":[[-30.007,-13.158],[-30.352,-14.993],[-29.526,-15.736],[-28.185,-15.549],[-29.835,-16.632],[-31.033,-15.96],[-31.011,-9.338],[-30.084,-8.295],[-30.184,-9.097],[-28.855,-10.821]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.257,-0.247],[0.966,1.503],[0.64,-0.127],[0.862,0.131],[0.125,0.778],[-0.995,0.946],[0.088,0.139],[-0.094,0.888],[-0.024,2.144],[-0.977,-0.536],[-2.881,-1.588],[0.481,-0.95],[0.044,-0.177],[0.387,-0.493],[0.687,-0.013],[-0.276,-0.315],[-0.592,-0.508],[-0.381,-0.455],[0.886,0.05],[0.036,0.009],[-0.024,-0.021],[-0.901,-0.377],[-0.374,-0.901]],"o":[[-1.757,0.071],[-0.356,-0.554],[-0.918,0.183],[-0.57,-0.249],[0.197,-1.084],[0.071,-0.068],[-0.505,-0.799],[0.227,-2.14],[0.013,-1.154],[2.885,1.582],[0.118,1.179],[-0.056,0.173],[-0.165,0.669],[-0.496,0.632],[-0.625,0.012],[0.255,0.802],[0.246,0.293],[-1.061,-0.06],[-0.036,-0.009],[0.024,0.021],[0.609,0.886],[0.918,0.384],[-0.024,0.368]],"v":[[-23.984,-2.573],[-28.105,-4.645],[-29.615,-5.301],[-32.202,-5.709],[-33.572,-6.86],[-32.954,-10.119],[-33.04,-10.625],[-33.506,-13.199],[-33.318,-19.628],[-32.1,-20.387],[-23.455,-15.626],[-24.594,-12.66],[-24.76,-12.139],[-25.288,-10.164],[-27.304,-10.108],[-27.506,-9.509],[-25.981,-7.768],[-25.108,-6.728],[-27.942,-6.887],[-28.051,-6.915],[-27.978,-6.851],[-25.458,-5.309],[-23.518,-3.473]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.722,-0.591],[0.817,0.391],[0.285,-0.481],[-0.121,0.723]],"o":[[-0.116,1.126],[-0.395,-0.189],[-0.105,-0.744],[0.834,0.381]],"v":[[-31.977,-37.82],[-33.566,-37.073],[-34.601,-36.928],[-34.399,-39.113]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.017,1.032],[-0.294,-0.31],[-0.23,-1.46],[0.381,0.059],[-0.036,0.837]],"o":[[0.233,0.367],[1.138,1.199],[-0.381,-0.06],[-0.676,-0.511],[0.044,-1.031]],"v":[[-34.597,-36.481],[-33.889,-35.388],[-32.618,-31.176],[-33.762,-31.355],[-34.656,-33.385]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.328,-0.503],[1.26,0.805],[1.138,1.199],[0.233,0.367],[0.001,0.149],[-0.395,-0.189],[-0.116,1.126],[-0.539,-0.802],[-1.205,-0.403],[-1.442,-0.636],[-0.051,-0.417],[0.82,-1.325],[0.645,0.359]],"o":[[-1.409,-0.519],[-0.23,-1.46],[-0.294,-0.31],[-0.001,-0.149],[0.285,-0.481],[0.817,0.391],[0.771,0.434],[-0.194,1.207],[1.488,0.498],[0.403,0.148],[0.167,1.37],[-0.836,0.086],[-1.031,-0.573]],"v":[[-28.654,-29.114],[-32.618,-31.176],[-33.889,-35.388],[-34.597,-36.481],[-34.601,-36.928],[-33.566,-37.073],[-31.977,-37.82],[-29.735,-36.405],[-28.255,-34.128],[-23.917,-32.254],[-23.115,-31.423],[-23.314,-27.332],[-25.34,-28.2]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.163,-0.348],[-0.134,-0.167],[-0.522,-0.276],[-1.194,-0.613],[-0.395,-0.06],[-1.142,-0.225],[-0.757,-0.183],[-4.389,-2.024],[-0.683,-0.152],[-1.457,-0.587],[0.584,-0.562],[0.527,0.289],[6.231,3.392],[2.415,1.468],[2.34,1.344],[0.182,0.027],[-1.318,0.646],[-0.426,-0.021],[-0.732,-0.301]],"o":[[0.134,0.167],[0.522,0.276],[1.194,0.612],[0.201,0.328],[0.851,0.766],[0.576,0.511],[4.21,2.368],[0.558,0.419],[1.279,0.95],[-0.553,0.596],[-0.566,0.544],[-6.222,-3.409],[-2.488,-1.354],[-2.326,-1.414],[-0.149,-0.085],[-0.921,-1.161],[0.365,-0.179],[0.732,0.301],[1.045,0.648]],"v":[[-26.389,-42.939],[-25.986,-42.438],[-24.419,-41.609],[-20.837,-39.772],[-19.974,-39.147],[-17.034,-37.569],[-15.06,-36.483],[-2.203,-29.814],[-0.349,-28.943],[3.873,-26.88],[2.208,-25.101],[0.491,-25.173],[-18.159,-35.428],[-25.701,-39.341],[-32.978,-42.856],[-33.52,-42.943],[-33.106,-44.822],[-31.959,-45.179],[-29.763,-44.276]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.017,-0.327],[-0.113,-0.698],[-0.286,-0.627],[0.642,-0.362],[0.849,-0.515],[2.708,1.417],[1.339,0.03],[-0.428,1.727],[0.333,0.298],[-0.255,1.047],[-0.381,-0.059],[-1.409,-0.519],[-3.009,-1.491]],"o":[[-0.118,0.678],[-0.585,0.487],[0.219,0.481],[-0.864,0.488],[-2.654,-1.52],[-1.147,-0.6],[-0.594,-1.626],[0.086,-0.347],[-0.014,-1.17],[0.381,0.059],[1.26,0.805],[2.896,1.706],[0.2,0.28]],"v":[[-19.507,-23.477],[-19.681,-21.426],[-19.931,-19.746],[-20.181,-18.418],[-22.732,-16.881],[-30.852,-21.138],[-34.432,-22.427],[-34.899,-27.428],[-35.082,-28.469],[-33.762,-31.355],[-32.618,-31.177],[-28.654,-29.114],[-19.747,-24.411]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.011,0.564],[-0.701,0.109],[0.106,-0.508],[0.688,-0.217]],"o":[[-0.006,-0.859],[0.55,-0.086],[-0.194,0.927],[-0.506,0.159]],"v":[[-22.175,-53.42],[-20.66,-54.474],[-19.755,-53.634],[-21.603,-52.548]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.534,-0.295],[0.185,0.377],[-0.252,0.253],[-0.939,0.261],[0.512,-0.267]],"o":[[-0.346,0.032],[-0.166,-0.34],[0.735,-0.739],[0.207,0.593],[-0.54,0.283]],"v":[[-27.99,-53.224],[-28.983,-53.309],[-28.495,-54.212],[-25.818,-55.332],[-26.386,-54.106]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.734,0.412],[-0.115,-0.477],[1.225,0.743],[0.246,0.604]],"o":[[0.464,0.177],[-0.337,1.419],[-0.452,-0.274],[0.811,-0.228]],"v":[[-17.222,-58.119],[-16.369,-57.124],[-18.183,-56.316],[-19.536,-57.151]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.049,-0.415],[0.334,-0.998],[0.234,-0.091],[0.134,0.167],[-0.017,0.584]],"o":[[-0.496,0.922],[-0.234,0.091],[-0.134,-0.167],[0.017,-0.584],[0.804,-0.27]],"v":[[-23.944,-45.548],[-25.284,-42.712],[-25.986,-42.438],[-26.389,-42.939],[-26.339,-44.691]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.018,-0.449],[0.449,-0.365],[0.732,0.301],[-1.065,0.594]],"o":[[-0.449,0.365],[-0.732,-0.301],[0.957,-0.831],[0.262,0.408]],"v":[[-28.416,-45.371],[-29.763,-44.276],[-31.959,-45.179],[-28.641,-46.69]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.507,-0.153],[2.401,-0.597],[-0.496,0.922]],"o":[[0.39,1.722],[0.334,-0.998],[0.428,-0.222]],"v":[[-22.579,-45.833],[-25.284,-42.712],[-23.944,-45.548]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.449,0.365],[-0.692,-0.227],[0.017,-0.584],[1.045,0.648]],"o":[[0.693,0.227],[-0.017,0.584],[-1.163,-0.348],[0.449,-0.365]],"v":[[-28.416,-45.371],[-26.339,-44.691],[-26.389,-42.939],[-29.763,-44.276]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.207,-0.344],[0.204,-0.775],[0.033,1.457],[-0.158,0.448],[-0.504,0.032]],"o":[[-0.381,0.734],[-1.192,0.629],[-0.011,-0.495],[0.169,-0.482],[0.619,-0.039]],"v":[[-17.04,-50.823],[-17.581,-48.481],[-19.057,-49.488],[-18.749,-50.876],[-17.733,-51.782]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.201,0.328],[-1.639,-0.151],[0.213,0.615],[-0.108,0.455],[-0.349,-0.023],[0.012,-0.323],[1.356,-0.281],[0.656,-0.781]],"o":[[0.859,-0.88],[0.582,0.054],[-0.141,-0.409],[0.236,-0.237],[0.06,0.326],[-0.037,0.992],[-1.084,0.225],[-0.395,-0.06]],"v":[[-20.837,-39.772],[-17.879,-41.903],[-17.263,-42.828],[-17.457,-44.116],[-16.604,-44.491],[-16.434,-43.514],[-17.834,-41.292],[-19.974,-39.147]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.454,-0.349],[0.462,-1.235],[0.862,-1.038],[0.522,0.276],[-0.234,0.091],[0.39,1.722]],"o":[[-0.322,1.088],[-0.99,-1.187],[-0.522,-0.276],[0.234,-0.091],[2.401,-0.597],[0.562,0.088]],"v":[[-21.046,-45.199],[-21.633,-41.707],[-24.419,-41.609],[-25.986,-42.438],[-25.284,-42.712],[-22.579,-45.833]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.427,0.113],[-0.795,0.038],[-1.07,-0.338],[-0.494,-0.383],[0.123,-0.193],[0.184,0.036],[0.375,0.14],[0.378,-0.841],[0.509,0.025],[-0.336,0.665],[-0.241,0.379]],"o":[[0.107,-1.179],[-0.388,0.916],[0.563,0.178],[0.144,0.111],[-0.112,0.175],[-0.398,-0.078],[-0.896,-0.335],[-0.246,0.547],[-0.076,-0.878],[0.197,-0.389],[-0.334,-0.473]],"v":[[-14.391,-48.758],[-12.591,-49.843],[-11.757,-47.997],[-10.245,-46.909],[-10.08,-46.436],[-10.583,-46.322],[-11.772,-46.574],[-13.68,-45.799],[-14.859,-45.193],[-13.821,-47.17],[-13.116,-48.291]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.315,0.238],[0.792,0.015],[0.957,0.077],[-1.402,0.465],[-0.318,-0.176],[0.215,-0.234],[-0.483,-0.207],[-0.624,-0.21],[0.511,-0.287],[0.305,0.648]],"o":[[0.095,-0.741],[-0.957,-0.018],[1.367,-0.6],[0.311,0.189],[0.234,0.13],[-0.698,0.759],[0.433,0.186],[-0.59,0.452],[-0.605,0.34],[-0.155,-0.329]],"v":[[-10.607,-49.865],[-11.585,-50.971],[-14.455,-51.19],[-10.173,-52.29],[-9.239,-51.725],[-9.105,-51.222],[-8.604,-50.108],[-7.088,-49.59],[-8.628,-48.432],[-10.083,-48.921]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.095,-0.741],[0.662,-0.007],[0.107,-1.179],[0.572,-0.668],[0.359,0.137],[0.044,0.306],[0.03,0.326],[-0.381,0.734],[-0.065,-0.126],[-0.547,0.927],[-0.435,0.093],[-0.957,-0.018]],"o":[[-0.662,0.007],[-0.795,0.038],[-0.691,0.527],[-0.216,0.252],[-0.376,-0.143],[-0.047,-0.323],[0.204,-0.775],[0.087,0.114],[0.455,0.881],[0.197,-0.334],[0.957,0.077],[0.792,0.015]],"v":[[-10.607,-49.865],[-12.591,-49.843],[-14.391,-48.758],[-16.324,-47.021],[-17.277,-46.621],[-17.487,-47.505],[-17.581,-48.481],[-17.04,-50.823],[-16.783,-50.478],[-15.319,-50.417],[-14.455,-51.19],[-11.585,-50.971]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.322,1.088],[-1.222,-0.276],[-0.141,-0.409],[0.582,0.054],[0.859,-0.88],[1.194,0.612],[-0.99,-1.187]],"o":[[1.263,0.141],[-0.108,0.455],[0.213,0.615],[-1.639,-0.151],[-1.194,-0.613],[0.863,-1.038],[0.462,-1.235]],"v":[[-21.046,-45.199],[-17.457,-44.116],[-17.263,-42.828],[-17.879,-41.903],[-20.837,-39.772],[-24.419,-41.609],[-21.633,-41.707]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.069,-0.06],[-0.069,0.06]],"o":[[0.069,-0.06],[-0.069,0.06]],"v":[[3.436,-68.81],[3.644,-68.99]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.015,-0.449],[0.697,0.007],[0.068,0.356],[-0.715,0.187]],"o":[[-0.61,0.151],[-0.068,-0.356],[0.595,-0.369],[0.015,0.449]],"v":[[3.44,-67.439],[1.84,-66.565],[1.637,-67.634],[3.394,-68.785]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.557,0.201],[-0.569,-0.465],[0.992,-0.022],[0.097,0.152]],"o":[[0.551,0.15],[-0.951,0.427],[-0.096,-0.152],[0.407,-0.407]],"v":[[-3.256,-57.297],[-1.533,-56.679],[-4.346,-55.839],[-4.635,-56.294]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.199,-1.524],[1.353,0.272],[0.298,0.793],[-0.951,0.427],[0.551,0.15]],"o":[[-0.607,0.882],[-0.764,-0.154],[0.992,-0.022],[-0.569,-0.465],[1.393,-0.63]],"v":[[-0.125,-56.217],[-2.634,-54.697],[-4.346,-55.839],[-1.533,-56.679],[-3.256,-57.297]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.59,0.586],[-0.145,0.032],[-1.109,-0.612],[1.44,0.373],[0.716,0.271]],"o":[[0.145,-0.032],[1.229,0.171],[-0.027,1.458],[-0.741,-0.192],[-0.718,-0.272]],"v":[[-0.331,-64.048],[0.104,-64.144],[3.667,-63.178],[2.144,-62.037],[-0.046,-62.735]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.545,0.214],[-0.155,-0.444],[0.222,-0.226],[1.335,-1.059],[0.247,0.37],[-0.442,0.442]],"o":[[0.587,0.026],[0.102,0.291],[-1.191,1.211],[-0.164,0.13],[-0.361,-0.54],[1.163,-1.165]],"v":[[11.909,-64.366],[12.989,-64.197],[12.846,-63.361],[9.177,-59.829],[8.54,-59.748],[8.218,-61.488]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.814,-0.119],[-0.146,0.448],[-0.442,0.31],[-1.005,-0.079],[-0.61,0.151],[-0.295,-0.154],[1.119,-0.606],[0.4,-0.186],[0.145,-0.032]],"o":[[0.146,-0.448],[0.467,-0.275],[0.844,-0.593],[0.697,0.007],[0.295,0.154],[-0.581,1.325],[-0.387,0.21],[-0.145,0.032],[-0.814,0.119]],"v":[[-2.773,-63.692],[-2.336,-65.036],[-0.941,-65.867],[1.84,-66.565],[3.44,-67.439],[4.324,-66.976],[1.301,-64.705],[0.104,-64.144],[-0.331,-64.048]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.368,-1.502],[0.482,-0.019],[0.109,0.418],[0.402,1.553],[-1.564,-0.484],[-0.002,-0.317],[0.017,-0.037]],"o":[[-0.001,0.431],[-0.527,0.021],[-0.405,-1.552],[1.563,0.483],[0.002,0.318],[-0.018,0.036],[-2.015,0.307]],"v":[[-7.016,-52.977],[-7.663,-52.292],[-8.48,-52.995],[-9.689,-57.654],[-4.998,-56.203],[-4.992,-55.251],[-5.044,-55.142]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.404,0.198],[-0.565,-0.555],[0.146,-0.448],[1.329,0.645],[0.582,0.452],[-0.651,0.166],[-0.872,-1.25]],"o":[[0.667,0.363],[-0.146,0.448],[-1.345,-0.395],[-0.667,-0.324],[-0.629,-0.488],[1.06,-0.271],[0.354,0.508]],"v":[[-4.348,-66.103],[-2.336,-65.036],[-2.773,-63.692],[-6.904,-64.301],[-8.82,-65.387],[-8.643,-66.642],[-5.521,-66.168]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.58,1.325],[-0.465,0.095],[-0.218,-0.311],[2.394,-0.773],[0.576,-0.454],[1.229,0.171],[-0.387,0.21]],"o":[[0.479,-0.029],[0.404,-0.083],[1.467,2.091],[-0.657,0.212],[-1.109,-0.612],[0.4,-0.186],[1.119,-0.606]],"v":[[4.324,-66.976],[5.758,-67.078],[6.574,-66.715],[5.635,-63.831],[3.667,-63.178],[0.104,-64.144],[1.301,-64.705]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.3,0.747],[-0.068,0.185],[-0.762,-0.456],[-0.565,0.825],[-0.635,-0.337],[-0.113,-0.349],[0.905,-0.153],[1.572,0.035]],"o":[[0.156,-0.152],[0.308,-0.835],[0.727,0.435],[0.674,0.132],[0.101,0.353],[0.287,0.885],[-1.585,0.268],[-0.978,-0.022]],"v":[[17.663,-70.752],[18.119,-71.213],[19.637,-71.705],[21.69,-72.046],[23.715,-71.665],[24.02,-70.607],[23.067,-69.179],[18.342,-69.233]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.928,-0.109],[0.584,-2.374],[0.316,-0.012],[0,0],[0.648,0.044],[0.873,0.318],[0.789,1.259]],"o":[[2.178,1.019],[-0.316,0.012],[0,0],[-0.308,-0.486],[0.264,0.885],[-1.179,-0.43],[1.438,-1.202]],"v":[[20.38,-58.618],[21.973,-55.225],[21.025,-55.189],[21.035,-55.182],[19.674,-56.044],[18.801,-55.171],[15.411,-56.764]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.725,-0.403],[-1.089,-1.84],[-0.233,-0.457],[0.944,-0.541],[0.182,-0.018],[0.122,0.649],[-0.469,0.213],[-0.961,0.782],[0.827,0.848],[0.464,0.177],[0.246,0.369],[-1.06,-0.047],[-0.379,0.109]],"o":[[-1.652,1.25],[0.261,0.441],[-1.013,0.344],[-0.153,0.088],[-0.66,0.064],[-0.11,-0.587],[0.65,-0.295],[-1.94,0.157],[-0.115,-0.477],[-0.246,-0.369],[0.75,-1.071],[0.363,0.016],[0.301,0.903]],"v":[[-12.087,-58.349],[-12.644,-55.262],[-11.942,-53.892],[-14.963,-52.809],[-15.5,-52.687],[-17.095,-53.349],[-15.861,-54.174],[-13.434,-54.896],[-16.369,-57.124],[-17.222,-58.119],[-17.96,-59.225],[-15.036,-60.044],[-13.948,-59.929]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.057,0.293],[0.419,0.634],[0.316,-0.35],[-0.38,-0.282],[-0.247,-0.454],[-0.326,0.031]],"o":[[-0.306,-0.636],[-0.235,-0.355],[-0.28,0.311],[0.425,0.316],[0.185,0.339],[0.21,-0.02]],"v":[[-5.143,-43.397],[-6.139,-45.399],[-7.199,-45.385],[-7.285,-44.306],[-6.316,-43.185],[-5.413,-42.963]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.961,-0.229],[0.03,-0.292],[-0.006,-0.834],[0.682,0.394],[0.501,0.009],[0.655,-0.314],[4.21,2.368],[-0.158,0.21],[-0.86,1.194],[0.481,0.371],[0.32,-0.317],[0.058,-0.094],[1.983,-0.404],[0.851,0.766],[-1.084,0.225],[-0.037,0.992],[0.06,0.326],[-0.582,0.234],[-0.246,0.547],[-0.896,-0.335],[-0.398,-0.078],[-0.112,0.175],[0.144,0.111],[0.563,0.178],[-0.388,0.916],[-0.662,0.007],[-0.155,-0.329],[-0.605,0.34],[-0.59,0.452],[0.433,0.186],[-0.698,0.759],[0.234,0.13],[0.311,0.189],[0.803,0.079],[0.29,0.127],[0.261,0.441],[-1.652,1.25],[-0.694,-0.594],[-0.405,-1.552],[-0.527,0.021],[-0.001,0.431],[-0.016,1.445],[-0.018,0.036],[0.101,-0.797],[0.419,-0.136],[-0.158,-0.442],[-0.232,-0.662],[1.21,-0.211],[-0.02,-0.277],[-0.256,-0.008],[-0.371,0.002],[-0.622,-2.224],[0.441,-0.101],[0.311,0.282],[0.524,-0.157],[-0.087,-0.554],[0.763,-0.778],[-0.161,-0.135],[-0.177,-0.025],[0.188,-0.477],[0.869,0.308],[1.014,0.203],[0.332,0],[-0.478,-0.341],[-0.068,-0.629],[1.392,0.486],[0.259,-0.344],[-0.224,-0.225],[-1.528,-0.773],[-1.707,-1.298]],"o":[[-0.03,0.292],[-0.07,0.835],[0.006,0.939],[-0.4,-0.231],[-0.779,-0.358],[-4.389,-2.024],[0.031,-0.269],[0.887,-1.174],[0.248,-0.345],[-0.561,-0.433],[-0.077,0.076],[-0.935,1.515],[-1.142,-0.225],[0.656,-0.781],[1.356,-0.281],[0.012,-0.323],[0.582,-0.234],[0.509,0.025],[0.378,-0.841],[0.375,0.14],[0.184,0.036],[0.123,-0.193],[-0.494,-0.383],[-1.07,-0.338],[0.662,-0.007],[0.315,0.238],[0.305,0.648],[0.511,-0.287],[-0.624,-0.21],[-0.483,-0.207],[0.215,-0.234],[-0.318,-0.176],[0.145,-0.733],[-0.3,-0.03],[-0.233,-0.457],[-1.089,-1.84],[0.798,0.235],[0.402,1.553],[0.109,0.418],[0.482,-0.019],[1.577,-0.304],[0.017,-0.037],[1.591,0.503],[-0.462,0.011],[-0.549,0.178],[0.237,0.66],[0.252,0.72],[-0.238,0.042],[0.027,0.361],[0.37,0.011],[2.157,-0.01],[-0.425,0.097],[-0.32,-0.289],[-0.408,-0.37],[-0.621,0.186],[0.102,0.651],[-0.028,0.029],[0.129,0.109],[0.658,0.094],[-0.216,0.548],[-0.967,-0.342],[-0.21,-0.042],[0.331,0.74],[0.368,0.263],[-1.48,-0.281],[-0.293,-0.102],[-0.348,0.461],[1.211,1.22],[1.876,0.949],[0.808,0.614]],"v":[[2.456,-33.577],[2.365,-32.701],[2.171,-30.198],[1.153,-29.654],[-0.135,-30.197],[-2.203,-29.814],[-15.06,-36.483],[-14.711,-37.157],[-12.079,-40.702],[-11.945,-41.87],[-13.095,-41.383],[-13.279,-41.108],[-17.033,-37.569],[-19.974,-39.147],[-17.834,-41.292],[-16.434,-43.514],[-16.604,-44.491],[-14.859,-45.193],[-13.68,-45.799],[-11.772,-46.574],[-10.583,-46.322],[-10.08,-46.436],[-10.245,-46.909],[-11.757,-47.997],[-12.591,-49.843],[-10.607,-49.865],[-10.083,-48.921],[-8.628,-48.432],[-7.088,-49.59],[-8.604,-50.108],[-9.105,-51.222],[-9.239,-51.725],[-10.173,-52.29],[-11.069,-53.525],[-11.942,-53.892],[-12.644,-55.262],[-12.087,-58.349],[-9.689,-57.654],[-8.48,-52.995],[-7.663,-52.292],[-7.016,-52.977],[-5.044,-55.142],[-4.992,-55.252],[-4.598,-52.981],[-5.854,-52.563],[-6.225,-51.606],[-5.555,-49.611],[-6.158,-47.954],[-6.509,-47.314],[-5.926,-46.957],[-4.814,-46.952],[-1.863,-44.603],[-3.153,-44.309],[-3.156,-45.176],[-4.535,-45.945],[-4.976,-44.499],[-4.733,-42.519],[-4.37,-42.014],[-3.861,-41.837],[-2.565,-40.827],[-4.459,-40.242],[-7.483,-40.915],[-8.251,-40.921],[-6.745,-39.782],[-5.696,-38.922],[-9.759,-40.65],[-10.655,-40.792],[-10.193,-39.963],[-6.012,-37.083],[-0.437,-34.124]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.169,-0.761],[-0.169,0.621],[-0.209,-0.224]],"o":[[-0.534,-0.453],[0.084,-0.311],[0.398,0.428]],"v":[[21.083,-47.786],[20.109,-49.121],[21.074,-49.618]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.178,0.427],[-0.878,0.306],[-0.166,-0.255],[1.215,-0.23]],"o":[[0.878,-0.305],[0.286,0.06],[-0.971,0.694],[-0.239,-0.357]],"v":[[39.304,-64.532],[41.936,-65.448],[42.64,-65.018],[39.496,-63.373]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.128,0.439],[-0.394,0.228],[-0.243,-0.071],[-0.025,-0.448],[0.477,-0.18],[0.551,0.085]],"o":[[0.394,-0.227],[0.245,0.067],[0.284,0.082],[0.025,0.452],[-0.536,0.203],[-0.755,-0.116]],"v":[[28.149,-58.983],[29.332,-59.665],[30.065,-59.462],[30.876,-59.186],[30.276,-57.971],[28.557,-57.706]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.878,-0.305],[1.347,0.203],[0.078,0.511],[-1.219,-1.224]],"o":[[0.059,-1.05],[-0.078,-0.511],[1.503,0.804],[-0.878,0.306]],"v":[[39.304,-64.532],[37.959,-66.765],[37.725,-68.298],[41.936,-65.448]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.011,-0.909],[0.348,0.08],[2.178,1.019],[-1.108,-0.378],[-0.156,-0.291],[0.4,-0.156]],"o":[[-0.385,0.072],[0.584,-2.374],[1.079,-1.139],[0.158,0.29],[0.121,0.227],[-1.047,0.409]],"v":[[23.016,-54.976],[21.973,-55.225],[20.38,-58.618],[23.682,-58.682],[24.155,-57.811],[24.058,-57.198]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.239,-0.357],[0.774,0.125],[0.051,0.552],[0.813,0.319],[-0.129,0.148],[-0.318,0.353],[0.059,-1.05]],"o":[[-0.13,0.632],[-0.719,-0.116],[-0.055,-0.591],[-0.326,-0.128],[0.311,-0.358],[1.347,0.203],[-0.178,0.427]],"v":[[39.497,-63.373],[38.341,-62.337],[37.555,-63.619],[36.913,-65.199],[37.007,-65.705],[37.959,-66.765],[39.304,-64.532]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.637,1.165],[-3.217,0.21]],"o":[[2.997,-0.476],[-2.503,2.265]],"v":[[20.537,-46.865],[29.211,-49.616]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.422,-1.088],[-0.184,1.429],[0.018,-0.209],[-0.392,-0.115],[-0.122,0.424],[0.273,0.55],[-0.219,0.436],[0.808,0.678],[1.164,0.402],[-0.119,-0.417],[0.419,-0.532],[1.088,0.448],[0.08,1.254],[-0.449,0.285],[-0.939,-0.742],[-0.647,-0.383],[-1.036,-0.571],[0.473,-0.644],[-1.159,-1.366],[-0.386,-0.432]],"o":[[-0.164,-1.445],[0.129,0.137],[-0.038,0.456],[0.46,0.135],[0.178,-0.62],[-0.244,-0.491],[0.411,-0.82],[-0.782,-0.656],[0.221,0.599],[0.129,0.453],[-1.088,-0.449],[-0.081,-1.253],[-0.029,-0.454],[0.992,0.635],[-0.443,0.668],[1.018,0.603],[0.546,0.301],[-1.034,1.408],[0.229,0.27],[-1.853,0.047]],"v":[[-5.526,4.738],[-5.329,0.435],[-4.573,2.516],[-3.965,3.32],[-3.166,2.796],[-3.13,0.949],[-3.055,-0.226],[-3.337,-2.645],[-6.224,-4.102],[-5.709,-2.685],[-5.511,-1.288],[-8.776,-2.633],[-9.018,-6.394],[-8.596,-7.578],[-5.446,-6.028],[-5.052,-4.453],[-1.974,-2.684],[-1.693,-1.525],[-1.403,2.851],[-0.546,3.811]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.093,0.074],[-0.093,-0.074]],"o":[[0.093,0.074],[-0.093,-0.074]],"v":[[-21.727,-0.199],[-21.447,0.022]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.123,0.214],[-0.143,-0.167]],"o":[[0.236,-0.051],[-0.213,-0.003]],"v":[[-7.248,7.593],[-6.705,7.827]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.105,0.179],[-0.113,-0.164]],"o":[[0.193,-0.003],[-0.186,-0.011]],"v":[[-13.267,4.943],[-12.801,5.17]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.74,-0.019],[-0.11,-0.849],[1.127,0.909],[-0.086,0.013]],"o":[[0.322,0.691],[-1.447,-0.235],[0.086,-0.013],[0.739,0.019]],"v":[[-14.609,3.149],[-13.271,4.944],[-17.085,3.13],[-16.827,3.091]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.757,0.071],[-0.758,-0.795],[1.104,0.567],[2.328,1.279],[-0.001,0.126],[-0.918,0.183],[-0.356,-0.554]],"o":[[0.758,0.795],[-1.286,-0.123],[-2.362,-1.212],[0.001,-0.126],[0.862,0.131],[0.64,-0.127],[0.966,1.503]],"v":[[-23.984,-2.573],[-21.711,-0.189],[-25.211,-1.514],[-32.204,-5.331],[-32.202,-5.709],[-29.615,-5.301],[-28.105,-4.645]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.349,0.854],[-0.664,1.157],[-1.088,-0.449],[0.093,-0.59],[-0.164,-1.445],[0.301,0.11],[0.327,-0.107],[0.241,-0.607],[-0.397,-0.401],[-0.107,-0.139],[0.426,0.205],[1.545,0.375],[0.193,-0.003],[0,0],[0.322,0.691],[-0.504,0.361]],"o":[[0.981,-0.909],[1.088,0.448],[0.136,0.566],[-0.184,1.429],[-0.03,0.351],[-0.319,-0.117],[-0.704,0.23],[-0.163,0.411],[0.122,0.124],[-0.513,0.064],[-1.403,-0.675],[-0.113,-0.164],[0,0],[-0.11,-0.849],[0.394,-0.517],[0.673,-0.482]],"v":[[-11.214,0.49],[-8.776,-2.633],[-5.511,-1.288],[-5.33,0.435],[-5.526,4.738],[-6.054,5.052],[-7.018,5.028],[-8.797,6.167],[-7.559,7.181],[-7.236,7.597],[-8.578,7.167],[-12.801,5.17],[-13.267,4.943],[-13.271,4.944],[-14.609,3.149],[-13.078,2.1]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.38,-0.475],[0.391,-1.075],[0.784,0.349],[0.392,0.748],[0.315,-0.084],[-0.028,-0.331],[-2.363,-1.099],[0,0],[-0.069,-0.08],[-1.158,1.53],[0.576,1.15],[-1.901,-1.09],[0.041,-1.027],[1.424,-1.301],[0.363,-0.616],[0.086,-0.013],[1.152,1.164],[0.163,0.059],[0.093,0.074],[0,0],[0.758,0.795],[-0.025,0.369],[1.157,0.672],[-0.233,0.564],[-0.037,0.464],[-0.839,-0.3],[-0.904,1.404],[-0.13,0.014]],"o":[[-0.057,1.155],[-0.821,0.055],[-0.385,-0.752],[-0.123,-0.234],[-0.331,0.089],[0.196,2.31],[0,0],[0.069,0.08],[1.608,1.048],[0.052,-1.269],[0.595,-1.458],[0.006,1.029],[-0.074,1.871],[-0.5,0.457],[-0.086,0.013],[-1.347,-0.903],[-0.11,-0.111],[-0.093,-0.074],[0,0],[-0.758,-0.795],[0.257,-0.247],[0.339,-0.98],[-0.497,-0.289],[0.182,-0.441],[0.082,-1.021],[1.552,0.555],[0.13,-0.014],[1.122,0.812]],"v":[[-16.477,-7.972],[-17.271,-4.657],[-19.699,-4.877],[-20.856,-7.132],[-21.459,-7.497],[-21.916,-6.833],[-18.821,-1.301],[-18.828,-1.307],[-18.62,-1.066],[-15.07,-1.685],[-15.762,-5.333],[-13.054,-5.732],[-13.044,-2.645],[-15.191,2.134],[-16.827,3.091],[-17.085,3.13],[-20.964,0.205],[-21.447,0.022],[-21.727,-0.199],[-21.711,-0.189],[-23.984,-2.573],[-23.518,-3.474],[-24.101,-6.055],[-24.468,-7.414],[-24.031,-8.776],[-22.63,-9.579],[-20.165,-10.454],[-19.774,-10.496]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.568,1.01],[-0.367,0.015],[-0.275,-0.108],[0.539,-0.271]],"o":[[0.367,-0.015],[0.275,0.108],[0.762,1.33],[-0.907,-0.173]],"v":[[28.61,-38.478],[29.712,-38.523],[30.538,-38.198],[29.495,-36.918]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.353,-1.472],[0.214,-0.037],[0.364,0.634],[-0.616,0.405]],"o":[[-0.207,0.076],[-0.527,0.091],[-0.374,-0.65],[0.89,0.224]],"v":[[16.034,-43.703],[15.411,-43.481],[13.93,-43.778],[14.357,-45.372]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.036,-0.763],[1.076,0.13],[-0.03,0.292],[-0.693,0.379]],"o":[[-1.071,-0.067],[0.03,-0.292],[0.693,-0.379],[0.449,0.528]],"v":[[5.546,-32.938],[2.365,-32.701],[2.456,-33.577],[4.536,-34.714]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.181,1.125],[-0.155,0.159],[-0.881,-0.053],[0.011,-0.457],[0.56,0.043],[0.499,-0.842]],"o":[[0.155,-0.159],[0.882,0.027],[0.288,0.017],[-0.011,0.48],[-0.655,-0.05],[-0.297,0.501]],"v":[[32.131,-36.496],[32.596,-36.972],[35.243,-36.88],[36.03,-36.57],[35.127,-35.639],[33.43,-35.132]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.19,0.416],[-1.013,0.113],[0.221,-0.623],[0.495,-0.831],[0.226,0.083],[-0.022,0.057]],"o":[[1.04,-0.48],[0.279,-0.031],[-0.322,0.905],[-0.091,0.153],[-0.077,-0.028],[0.662,-1.739]],"v":[[7.154,-33.893],[10.208,-34.668],[10.747,-34.203],[9.631,-31.552],[9.211,-31.289],[9.05,-31.534]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.512,0.513],[-0.881,0.035],[-0.008,-0.443],[0.534,-0.186],[0.415,0.596]],"o":[[0.881,-0.035],[0.008,0.443],[-0.445,0.312],[-0.68,0.237],[-0.472,-0.678]],"v":[[-4.562,-52.616],[-1.918,-52.722],[-1.895,-51.392],[-3.324,-50.634],[-5.123,-50.798]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.334,0.029],[-0.014,0.251],[-2.071,0.42],[0.101,-0.531]],"o":[[0.214,-0.206],[0.116,-2.066],[0.81,0.142],[-0.226,1.181]],"v":[[0.775,-50.505],[0.94,-51.231],[3.654,-54.316],[4.282,-53.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.881,-0.035],[0.012,0.121],[1.592,0.503],[0.002,0.317],[-0.121,0.03],[-0.097,-0.152],[-0.764,-0.154],[-0.607,0.882],[-0.057,-0.03],[0.996,-0.537],[0.317,-0.406]],"o":[[-0.012,-0.122],[0.101,-0.797],[-0.002,-0.317],[0.121,-0.03],[0.097,0.152],[0.297,0.793],[1.353,0.272],[0.058,-0.03],[0.177,0.99],[-0.415,0.224],[-0.881,0.035]],"v":[[-4.562,-52.616],[-4.598,-52.981],[-4.992,-55.251],[-4.997,-56.203],[-4.635,-56.294],[-4.346,-55.838],[-2.634,-54.697],[-0.125,-56.217],[0.048,-56.218],[-0.952,-53.91],[-1.918,-52.722]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.527,0.554],[-0.563,0.639],[-0.614,-0.422],[0.541,-0.418],[-0.297,-0.75],[0.292,-0.489],[0.116,-2.066],[0.214,-0.206],[-1.225,1.029]],"o":[[0.584,-0.62],[0.453,-0.514],[-0.356,0.547],[-0.654,0.506],[0.151,0.382],[-2.071,0.42],[-0.014,0.251],[-0.584,-1.52],[0.83,-0.697]],"v":[[1.706,-56.832],[3.452,-58.697],[4.995,-58.992],[3.743,-57.504],[3.373,-55.517],[3.654,-54.316],[0.94,-51.231],[0.775,-50.505],[1.945,-54.998]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.341,-0.81],[1.11,-0.213],[0.227,0.214],[-0.526,0.598],[0.322,0.374],[-1.156,0.436],[-0.27,0.564],[0.707,-1.269]],"o":[[-1.11,0.213],[-0.227,-0.214],[0.635,-0.088],[0.231,-0.262],[-0.748,-0.868],[0.464,-0.175],[1.44,0.135],[-0.425,0.763]],"v":[[25.687,-36.454],[22.358,-35.815],[21.677,-36.457],[23.549,-36.879],[23.656,-37.715],[24.451,-40.104],[25.78,-40.774],[26.727,-38.874]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.26,-0.301],[1.396,-0.509],[0.649,-0.776],[0.323,0.472],[-0.911,0.687],[-1.11,0.213],[-1.094,-0.329]],"o":[[-1.429,-0.002],[-0.953,0.348],[-0.595,0.711],[-0.616,-0.902],[1.11,-0.213],[1.086,0.356],[0.358,0.108]],"v":[[29.931,-34.934],[25.671,-34.582],[23.183,-33.01],[21.779,-33.153],[22.358,-35.815],[25.687,-36.454],[28.948,-35.394]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.481,1.136],[-0.581,0.737],[-1.247,0.245],[-0.574,-0.216],[-0.15,-0.973],[0.664,0.998],[0.934,-1.613],[0.249,0.046],[0.082,-0.415],[-0.286,-0.266],[-0.315,-0.22],[-0.093,0.46],[-0.409,0.028],[-0.155,-0.286],[-0.217,-0.508],[0.305,-0.39],[0.45,0.18]],"o":[[0.49,-0.847],[1.247,-0.245],[0.603,0.139],[0.922,0.348],[-0.96,0.445],[-0.709,-1.066],[-0.092,0.159],[-0.423,-0.078],[-0.089,0.45],[0.231,0.215],[0.134,-0.545],[0.073,-0.363],[0.339,-0.023],[0.265,0.488],[0.177,0.415],[-0.33,0.422],[-1.716,-0.686]],"v":[[5.358,-27.59],[7.474,-29.353],[11.216,-30.088],[13.02,-29.657],[14.599,-27.606],[12.329,-28.289],[8.825,-28.291],[8.454,-27.979],[7.404,-27.637],[8.264,-26.91],[9.097,-26.317],[9.449,-27.776],[10.076,-28.433],[10.784,-27.997],[11.583,-26.537],[11.455,-25.27],[10.25,-25.042]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.826,-0.097],[0.24,0.091],[0.226,1.235],[-0.482,0.777],[-0.832,0.294],[-0.829,-0.547],[0.185,-0.931]],"o":[[-0.238,-0.097],[-0.761,-0.289],[-0.176,-0.963],[0.825,-0.314],[0.921,-0.325],[-0.165,0.935],[-0.349,1.756]],"v":[[16.336,-29.132],[15.621,-29.422],[13.735,-30.852],[14.131,-33.345],[16.607,-34.282],[19.247,-33.981],[18.747,-31.176]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.635,-0.088],[0.736,-0.146],[0.395,0.711],[-0.241,0.669],[-0.943,0.955],[-1.111,-0.884],[-0.574,-0.227],[0.464,-0.175],[-0.748,-0.868],[0.231,-0.262]],"o":[[-1,-0.692],[-0.581,-0.137],[-0.433,-0.778],[0.487,-1.352],[1.014,-1.027],[0.522,0.415],[-0.27,0.564],[-1.156,0.436],[0.322,0.374],[-0.526,0.598]],"v":[[21.677,-36.457],[19.541,-35.784],[17.799,-36.089],[18.343,-38.1],[20.828,-41.252],[24.073,-41.504],[25.78,-40.774],[24.451,-40.104],[23.656,-37.715],[23.549,-36.879]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.911,0.169],[-0.538,-0.116],[-1.184,-0.896],[-2.289,1.008],[-2.286,1.055],[-0.107,-0.33],[2.137,-1.255],[2.312,1.324],[1.95,1.149],[0.92,0.553],[-0.2,0.293],[-0.194,-0.083]],"o":[[0.691,-0.406],[1.215,0.846],[2.061,1.56],[2.303,-1.015],[0.292,0.077],[-2.157,1.221],[-2.293,1.346],[-1.955,-1.12],[-0.925,-0.545],[-0.225,-0.135],[0.167,-0.245],[0.777,0.332]],"v":[[12.55,-49.862],[14.132,-49.399],[17.776,-46.858],[24.393,-46.299],[31.254,-49.454],[31.935,-48.955],[25.468,-45.283],[18.651,-45.306],[12.569,-48.275],[9.797,-49.913],[9.533,-50.535],[10.127,-50.512]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.49,-0.847],[0.132,-0.152],[0.38,-0.009],[1.279,0.95],[-0.094,0.414],[-0.4,-0.231],[0.006,0.939],[-0.07,0.835],[-1.071,-0.067],[-0.939,0.449],[0.169,-0.709],[-0.048,-0.671]],"o":[[-0.132,0.152],[-0.335,0.204],[-1.457,-0.587],[-0.071,-0.442],[0.501,0.009],[0.682,0.394],[-0.006,-0.834],[1.076,0.13],[0.014,1.113],[0.984,-0.471],[-0.151,0.635],[-0.581,0.737]],"v":[[5.358,-27.59],[4.961,-27.134],[3.873,-26.88],[-0.349,-28.943],[-0.135,-30.197],[1.153,-29.654],[2.171,-30.198],[2.365,-32.701],[5.546,-32.938],[7.046,-32.044],[7.816,-31.283],[7.474,-29.353]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.151,-0.106],[-1.036,-0.128],[0.298,-0.792],[-0.315,-0.141],[-1.574,1.237],[-3.079,1.592],[-0.112,0.479],[-1.646,0.528],[-0.253,-0.701],[0.566,-0.256],[1.932,-0.925],[2.466,-1.096],[0.66,0.234],[0.006,-0.374],[0.693,-0.379],[0.808,0.614],[1.876,0.949],[1.211,1.22],[-0.348,0.461],[-0.293,-0.102],[-1.48,-0.281],[0,0]],"o":[[0.655,0.965],[0.542,0.067],[-0.17,0.453],[1.861,0.833],[2.822,-2.218],[0.497,-0.257],[1.76,-0.208],[0.408,-0.131],[0.17,0.471],[-1.952,0.882],[-2.426,1.162],[-0.577,0.257],[-0.382,-0.135],[-0.693,0.379],[-0.961,-0.229],[-1.707,-1.298],[-1.528,-0.773],[-0.224,-0.225],[0.259,-0.344],[1.392,0.486],[0,0],[0.151,0.106]],"v":[[-5.244,-38.608],[-2.524,-37.361],[-1.722,-36.464],[-1.28,-35.73],[4.238,-35.827],[13.559,-40.473],[14.355,-41.583],[19.246,-43.306],[20.462,-43.259],[19.754,-42.042],[13.929,-39.33],[6.838,-35.491],[5.089,-35.136],[4.536,-34.714],[2.456,-33.577],[-0.437,-34.124],[-6.012,-37.083],[-10.193,-39.963],[-10.655,-40.792],[-9.759,-40.65],[-5.696,-38.922],[-5.698,-38.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.418,0.414],[-1.319,0.017],[-1.179,-0.43],[0.264,0.885],[-0.308,-0.486],[-0.016,-0.443],[-0.27,-0.031],[-0.254,-0.008],[-0.076,-0.073],[-1.245,0.811],[1.024,0.029],[0.073,0.076],[0.223,0.3],[-0.316,0.012],[-0.385,0.072],[-1.004,0.36],[-0.202,-0.387],[-0.876,0.339],[0.722,-0.178],[0.617,-0.537],[0.966,0.469],[0.343,-0.85],[0.285,-0.023],[1.127,-0.671],[1.189,0.727],[0.056,-0.047],[0.691,-0.406],[0.184,0.577],[-0.894,1.413],[0.739,1.647]],"o":[[1.318,-0.017],[0.789,1.259],[0.873,0.318],[0.648,0.044],[-0.281,0.021],[0.011,0.301],[0.252,0.029],[0.076,0.073],[0.661,0.723],[-1.035,-0.271],[-0.073,-0.076],[0.021,-0.484],[0.316,-0.012],[0.348,0.08],[1.076,-0.17],[0.387,-0.139],[0.433,0.828],[-0.044,0.903],[-0.758,0.187],[-0.732,0.637],[-0.574,-0.278],[-0.115,0.285],[-1.379,0.113],[-0.924,0.55],[-0.02,-0.012],[-0.538,-0.116],[-0.061,-0.657],[1.35,-0.123],[-1.648,-0.628],[-0.206,-0.459]],"v":[[11.456,-56.712],[15.411,-56.764],[18.801,-55.171],[19.674,-56.044],[21.035,-55.182],[20.411,-54.783],[20.936,-54.323],[21.698,-54.294],[21.926,-54.075],[24.979,-54.215],[21.919,-54.068],[21.7,-54.296],[21.025,-55.189],[21.973,-55.225],[23.016,-54.976],[26.001,-56.126],[26.984,-55.988],[28.932,-55.436],[27.744,-53.869],[25.692,-52.904],[23.115,-52.549],[21.563,-52.13],[20.829,-51.686],[17.165,-50.201],[14.295,-49.531],[14.132,-49.399],[12.55,-49.862],[11.467,-50.687],[15.125,-52.185],[11.368,-55.392]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.333,1.009],[-0.1,-0.959],[-0.841,0.145]],"o":[[-0.657,0.446],[0.07,0.663],[-0.916,-1.181]],"v":[[12.905,-44.641],[11.441,-43.505],[13.488,-42.451]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.29,1.006],[0.832,-0.224],[0.039,-0.514],[-0.439,-0.226],[-0.233,0.346]],"o":[[-0.957,-0.123],[-0.645,0.173],[-0.046,0.595],[0.375,0.193],[0.525,-0.781]],"v":[[3.086,-44.871],[0.447,-44.54],[-0.124,-43.25],[0.633,-42.159],[1.616,-42.372]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.833,-0.282],[-1.416,0.843],[0.089,0.186],[1.228,-0.4]],"o":[[1.545,1.384],[0.3,-0.179],[-0.557,-1.172],[-0.731,0.238]],"v":[[6.598,-41.494],[11.101,-40.734],[11.17,-41.28],[8.888,-42.268]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.071,0.019],[-0.316,0.578],[0.293,0.326],[0.355,-0.106],[0.225,-0.111],[-0.031,-0.574],[-0.568,-0.187]],"o":[[0.732,0.103],[0.219,-0.4],[-0.348,-0.387],[-0.248,0.065],[-0.472,0.232],[0.026,0.482],[0.058,0.019]],"v":[[-3.122,-48.146],[-1.643,-49.032],[-1.573,-50.273],[-2.623,-50.022],[-3.364,-49.821],[-4.683,-49.075],[-3.333,-48.094]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.207,0.076],[-0.899,-0.068],[1.17,-0.469],[-0.066,-0.226],[0.497,-0.257],[2.822,-2.218],[1.861,0.833],[-0.17,0.453],[0.542,0.067],[0.655,0.965],[0.229,-0.005],[0,0],[0.368,0.263],[0.331,0.74],[-0.21,-0.042],[-0.967,-0.342],[-0.216,0.548],[0.658,0.094],[0.129,0.109],[-0.028,0.029],[0.102,0.651],[-0.621,0.186],[-0.408,-0.37],[-0.32,-0.289],[-0.425,0.097],[2.157,-0.01],[0.37,0.011],[0.027,0.361],[-0.238,0.042],[0.252,0.72],[0.237,0.66],[-0.549,0.178],[-0.462,0.012],[-0.012,-0.122],[-0.472,-0.678],[-0.68,0.237],[-0.445,0.312],[0.489,-1.337],[-1.181,0.103],[0.34,0.485],[0.365,0.421],[-1.163,1.787],[0.379,-0.574],[0.343,-0.437],[-0.15,-0.215],[-0.184,0.117],[-0.677,-0.913],[-0.746,-0.539],[-0.362,0.144],[-0.573,-0.713],[-0.021,-0.258],[-0.374,-0.65],[-0.527,0.091]],"o":[[0.683,0.051],[-1.292,0.729],[-0.306,0.123],[-0.112,0.479],[-3.079,1.592],[-1.574,1.237],[-0.315,-0.141],[0.298,-0.792],[-1.036,-0.128],[-0.063,-0.232],[0,0],[-0.068,-0.629],[-0.478,-0.341],[0.332,0],[1.014,0.203],[0.869,0.308],[0.188,-0.477],[-0.177,-0.025],[-0.161,-0.135],[0.763,-0.778],[-0.087,-0.554],[0.524,-0.157],[0.311,0.282],[0.441,-0.101],[-0.622,-2.224],[-0.371,0.002],[-0.256,-0.008],[-0.02,-0.277],[1.21,-0.211],[-0.232,-0.662],[-0.158,-0.442],[0.419,-0.136],[0.012,0.122],[-0.512,0.513],[0.415,0.596],[0.534,-0.186],[1.393,0.261],[-0.409,1.118],[0.478,-0.042],[-0.144,-0.205],[2.526,0.358],[0.386,0.762],[-0.305,0.462],[-0.144,0.184],[0.147,0.211],[0.822,-0.525],[0.477,0.644],[0.277,0.2],[0.865,-0.343],[0.177,0.22],[-0.616,0.405],[0.364,0.634],[0.214,-0.037]],"v":[[16.034,-43.703],[18.298,-43.533],[14.582,-42.062],[14.355,-41.583],[13.559,-40.473],[4.238,-35.827],[-1.28,-35.73],[-1.722,-36.464],[-2.524,-37.361],[-5.244,-38.608],[-5.698,-38.926],[-5.696,-38.922],[-6.745,-39.782],[-8.251,-40.921],[-7.483,-40.915],[-4.459,-40.242],[-2.565,-40.827],[-3.861,-41.837],[-4.37,-42.014],[-4.733,-42.519],[-4.976,-44.499],[-4.535,-45.945],[-3.156,-45.176],[-3.153,-44.309],[-1.863,-44.603],[-4.814,-46.952],[-5.926,-46.957],[-6.509,-47.314],[-6.158,-47.954],[-5.555,-49.611],[-6.225,-51.606],[-5.854,-52.563],[-4.598,-52.981],[-4.562,-52.616],[-5.123,-50.798],[-3.324,-50.634],[-1.895,-51.392],[-0.602,-49.107],[1.007,-46.994],[1.639,-49.276],[0.948,-50.08],[5.882,-52.988],[5.791,-51.036],[4.779,-49.714],[4.655,-49.113],[5.261,-49.006],[7.234,-48.573],[9.474,-47.034],[10.549,-47.06],[14.154,-46.108],[14.357,-45.372],[13.93,-43.778],[15.411,-43.481]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.353,-0.736],[1.035,0.467],[0.157,1.162],[-0.132,0.152],[-1.716,-0.686],[-0.33,0.422],[0.177,0.415],[0.265,0.488],[0.339,-0.023],[0.073,-0.363],[0.134,-0.545],[0.231,0.215],[-0.089,0.45],[-0.423,-0.078],[-0.092,0.159],[-0.709,-1.066],[-0.96,0.445],[-0.142,-0.094],[0.785,-0.399]],"o":[[-1.024,-0.491],[-1.047,-0.472],[0.132,-0.152],[1.481,1.136],[0.45,0.18],[0.305,-0.39],[-0.217,-0.508],[-0.155,-0.286],[-0.409,0.028],[-0.093,0.46],[-0.315,-0.22],[-0.286,-0.266],[0.082,-0.415],[0.249,0.046],[0.934,-1.613],[0.664,0.998],[0.142,0.094],[0.151,0.897],[-1.373,0.698]],"v":[[9.913,-23.293],[6.838,-24.76],[4.961,-27.134],[5.358,-27.59],[10.25,-25.042],[11.455,-25.27],[11.583,-26.537],[10.784,-27.997],[10.076,-28.433],[9.449,-27.776],[9.097,-26.317],[8.264,-26.91],[7.404,-27.637],[8.454,-27.979],[8.825,-28.291],[12.329,-28.289],[14.599,-27.607],[15.025,-27.324],[13.979,-25.491]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.654,-0.311],[-0.005,0.365],[-0.431,0.018]],"o":[[0.005,-0.365],[0.365,-0.185],[-0.29,0.583]],"v":[[36.181,-19.583],[36.195,-20.677],[37.332,-21.122]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.553,-0.838],[-0.786,0.765]],"o":[[0.104,-0.98],[-0.189,0.952]],"v":[[39.076,-23.721],[39.947,-26.483]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.192,-0.29],[-0.001,0.197]],"o":[[-0.182,-0.107],[0.153,0.121]],"v":[[0.342,-18.882],[0.109,-19.357]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.048,-0.57],[1.036,0.746],[-0.543,0.249],[-0.354,-0.477],[-0.756,1.038],[-0.206,-0.28],[0.304,-0.53]],"o":[[-1.247,-0.33],[0.043,-0.489],[0.501,-0.229],[0.68,0.915],[0.122,-0.168],[0.286,0.39],[-0.24,0.419]],"v":[[5.482,-7.356],[2.107,-9.069],[2.07,-10.47],[3.567,-9.724],[5.639,-9.615],[6.172,-9.718],[6.401,-8.401]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.026,0.496],[-1.742,-0.804],[-5.4,-3.087],[-0.3,-0.141],[0.258,-0.256],[3.143,1.631],[1.499,0.233],[0.925,0.351],[1.952,1.077]],"o":[[1.889,0.492],[5.659,2.612],[0.287,0.164],[-0.013,0.31],[-3.255,-1.404],[-1.304,-0.677],[-0.574,-0.922],[-1.829,-1.288],[0.092,-0.536]],"v":[[-22.167,-32.271],[-16.964,-29.815],[-0.59,-20.873],[0.307,-20.446],[0.11,-19.551],[-9.409,-24.264],[-13.443,-26.025],[-15.926,-27.55],[-21.702,-30.916]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.966,-0.632],[1.966,0.633]],"o":[[-1.77,-1.013],[1.713,1.125]],"v":[[-14.693,-30.309],[-20.129,-33.105]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.702,-0.75],[-0.056,0.123],[1.688,0.781],[0.07,-0.153]],"o":[[0.056,-0.123],[-1.688,-0.781],[-0.07,0.153],[1.702,0.75]],"v":[[-21.501,-33.591],[-21.334,-33.96],[-26.398,-36.302],[-26.607,-35.842]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.292,-0.077],[1.515,1.352],[1.196,-0.8],[0.56,-0.493],[0.287,0.164],[5.659,2.612],[1.888,0.492],[0,0],[0.166,-0.022],[0.267,0.039],[1.896,1.072],[0.338,-0.058],[0.771,0.434],[0.834,0.38],[-0.158,0.172],[0.018,1.063],[-0.149,-0.085],[-2.326,-1.414],[-2.488,-1.354],[-6.222,-3.409],[-0.566,0.544],[-0.553,0.595],[-0.335,0.204],[-1.047,-0.472],[-1.024,-0.491],[0.073,-0.427],[-1.223,-0.159]],"o":[[-2.003,0.035],[-0.923,-0.824],[-0.859,-0.109],[-0.3,-0.141],[-5.4,-3.087],[-1.742,-0.804],[0,0],[-0.085,-0.185],[-0.166,-0.283],[-1.709,-1.363],[-0.312,-0.176],[-0.539,-0.802],[-0.722,-0.591],[0.033,-0.287],[0.802,-0.873],[0.182,0.027],[2.34,1.344],[2.415,1.468],[6.231,3.392],[0.527,0.289],[0.584,-0.562],[0.38,-0.009],[0.157,1.162],[1.035,0.467],[-0.076,0.427],[-0.185,1.091],[-0.17,0.265]],"v":[[10.303,-19.524],[5.033,-21.446],[2.246,-21.407],[0.307,-20.446],[-0.59,-20.873],[-16.964,-29.815],[-22.167,-32.271],[-22.157,-32.254],[-22.567,-32.415],[-23.293,-32.714],[-28.782,-36.237],[-29.735,-36.405],[-31.977,-37.82],[-34.399,-39.113],[-34.283,-39.956],[-33.52,-42.943],[-32.978,-42.856],[-25.701,-39.341],[-18.159,-35.428],[0.491,-25.173],[2.208,-25.101],[3.873,-26.879],[4.961,-27.134],[6.838,-24.76],[9.913,-23.293],[9.687,-22.012],[11.026,-19.991]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.233,-0.082],[0.929,0.073],[-0.602,0.386],[-0.491,-0.43],[0.005,-0.365]],"o":[[-0.888,-0.163],[0.3,-0.63],[0.392,0.571],[-0.005,0.365],[-0.09,0.228]],"v":[[35.702,-19.113],[33.323,-20.215],[34.603,-21.798],[36.195,-20.677],[36.181,-19.583]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.748,0.324],[-0.659,-0.247],[0.606,-0.539],[0.291,0.159],[0.02,0.215]],"o":[[0.089,0.531],[-0.603,0.544],[-0.19,0.169],[-0.232,-0.127],[-0.165,-1.781]],"v":[[15.899,-14.891],[16.589,-13.509],[14.779,-11.881],[14.105,-11.649],[13.908,-12.244]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.003,0.035],[0.074,-0.288],[0.138,-0.147],[2.32,1.423],[-0.923,-0.824]],"o":[[-0.073,0.288],[-0.138,0.147],[-2.425,-1.179],[1.196,-0.8],[1.515,1.352]],"v":[[10.303,-19.524],[10.083,-18.66],[9.67,-18.22],[2.246,-21.407],[5.033,-21.446]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.771,0.732],[0.49,-1.475],[1.162,-0.374],[0.089,0.531]],"o":[[-0.115,1.493],[-1.225,-0.559],[-0.659,-0.247],[1.414,-1.208]],"v":[[20.354,-18.235],[20.135,-13.75],[16.589,-13.509],[15.899,-14.891]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.077,0.232,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.238,-0.097],[-1.145,0.188],[-0.738,-0.148],[0.509,-0.743],[1.16,0.18],[0.142,0.094],[0.922,0.348],[0.603,0.139],[-0.5,1.099],[-0.471,-0.715],[-0.176,-0.963],[-0.761,-0.289]],"o":[[0.134,1.108],[0.706,-0.116],[-0.531,0.716],[-1.201,-0.046],[-0.142,-0.094],[-0.15,-0.973],[-0.574,-0.216],[0.832,-0.903],[0.288,-0.632],[-0.482,0.777],[0.226,1.235],[0.24,0.091]],"v":[[16.336,-29.132],[18.182,-27.78],[20.343,-27.978],[18.355,-26.296],[15.025,-27.324],[14.599,-27.606],[13.02,-29.657],[11.216,-30.089],[13.059,-33.187],[14.131,-33.345],[13.735,-30.852],[15.621,-29.422]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.314,-0.657],[0.995,0.557],[0.059,-0.562]],"o":[[0.229,-2.045],[-0.546,-0.306],[-0.116,1.112]],"v":[[21.378,-29.729],[20.476,-32.699],[19.701,-32.278]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.429,-0.002],[-0.533,-0.447],[3.213,-1.538],[0.533,-0.038],[0.706,-0.116],[0.134,1.108],[-0.349,1.756],[-0.165,0.935],[-0.534,0.171],[0.427,0.39],[-1,-0.692],[-0.227,-0.214],[-0.616,-0.902],[-0.595,0.711],[-0.953,0.348]],"o":[[0.726,0.277],[-3.019,1.919],[-0.463,0.221],[-0.738,-0.148],[-1.145,0.188],[1.826,-0.097],[0.185,-0.931],[0.518,-0.166],[-0.269,-0.671],[0.736,-0.146],[0.227,0.214],[-0.911,0.687],[0.323,0.472],[0.649,-0.776],[1.396,-0.509]],"v":[[29.931,-34.934],[31.291,-33.385],[21.779,-28.52],[20.343,-27.978],[18.182,-27.78],[16.336,-29.132],[18.747,-31.176],[19.247,-33.981],[20.815,-34.484],[19.541,-35.784],[21.677,-36.457],[22.358,-35.815],[21.779,-33.153],[23.183,-33.01],[25.671,-34.582]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.188,0.082],[-0.008,0.27],[-0.952,-0.12],[0.618,-0.319]],"o":[[0.009,-0.27],[0.828,0.104],[-0.64,0.607],[-0.188,-0.083]],"v":[[-6.204,-17.195],[-6.178,-18.005],[-3.571,-17.677],[-5.64,-16.947]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.253,0.259],[-1.588,-1.209],[0.009,-0.27],[1.814,1.285]],"o":[[1.736,0.949],[-0.008,0.27],[-2.023,-0.873],[0.254,-0.259]],"v":[[-11.331,-20.948],[-6.178,-18.005],[-6.204,-17.195],[-12.092,-20.17]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.018,0.188],[0.089,1.249],[-0.575,0.004],[-0.984,-0.891],[0.288,-0.529],[0.36,0.126],[1.497,-0.365]],"o":[[0.908,-1.055],[0.576,0.122],[1.609,-0.011],[0.482,0.436],[-0.327,0.601],[-1.48,-0.517],[-0.178,-0.091]],"v":[[0.543,-13.302],[1.236,-16.863],[2.963,-16.517],[6.292,-14.354],[6.417,-12.7],[5.265,-12.742],[0.808,-12.865]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.832,1.181],[0.744,-0.522]],"o":[[-1.005,0.261],[1.157,0.546]],"v":[[-0.316,-18.425],[-2.906,-17.637]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.736,0.949],[0.592,0.633],[0.228,0.674],[-0.081,0.399],[-1.304,-0.677],[-3.255,-1.404],[0.004,-0.065],[-0.182,-0.107],[-0.245,-0.241],[0.028,-0.486],[0.908,-1.055],[2.034,1.26],[-0.64,0.607],[0.828,0.104]],"o":[[0.201,-0.92],[-0.47,-0.502],[-0.111,-0.38],[1.499,0.233],[3.143,1.631],[0.004,0.065],[-0.001,0.197],[-0.294,0.443],[0.319,0.313],[0.089,1.249],[-2.194,-0.989],[0.618,-0.319],[-0.952,-0.12],[-1.587,-1.209]],"v":[[-11.331,-20.948],[-12.144,-23.196],[-13.327,-24.863],[-13.442,-26.025],[-9.409,-24.264],[0.11,-19.551],[0.109,-19.357],[0.342,-18.882],[0.664,-17.982],[1.236,-16.863],[0.543,-13.302],[-5.64,-16.947],[-3.571,-17.677],[-6.178,-18.005]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.137,-1.988],[0.005,-0.501],[-0.029,-0.454],[-0.081,-1.254],[0.982,-0.909],[0.03,0.245],[0.168,1.377],[0.887,0.039],[0.595,-1.458],[0.623,-0.278],[0.062,0.23],[-0.057,1.155],[0.353,0.828],[-0.141,0.691],[-0.948,-1.491],[-0.813,0.22],[-0.023,0.546],[0.151,-0.045],[0,0],[0.055,0.247],[0.891,1.771],[0.837,-0.113],[0.199,1.143],[1.89,-0.534],[-0.118,0.678],[-0.662,-0.024],[-0.549,-1.052],[-0.321,0.154],[-0.011,0.214],[-0.186,1.04],[-0.682,-0.118],[-0.47,-0.502],[0.201,-0.92],[0.253,-0.259],[0.331,1.085],[0.145,-0.881],[-1.017,-1.512]],"o":[[-0.005,0.501],[-0.449,0.285],[0.08,1.254],[-0.664,1.157],[-0.088,-0.238],[-0.17,-1.376],[-0.082,-0.677],[-1.901,-1.09],[-0.574,0.325],[-0.062,-0.23],[0.391,-1.075],[-0.353,-0.828],[0.141,-0.691],[0.973,1.476],[0.6,0.944],[0.709,-0.192],[-0.029,-0.088],[0,0],[-0.034,-0.251],[-0.441,-1.979],[-0.393,-0.781],[-0.538,-1.067],[-0.326,-1.867],[-0.114,-0.698],[0.384,0.434],[1.156,0.042],[0.109,0.209],[0.24,-0.115],[0.052,-1.031],[0.6,-0.094],[0.228,0.674],[0.592,0.633],[-0.253,0.259],[-0.621,-0.657],[-0.293,1.191],[-0.301,1.835],[1.275,1.895]],"v":[[-8.58,-9.082],[-8.596,-7.578],[-9.018,-6.394],[-8.776,-2.633],[-11.214,0.49],[-11.469,-0.224],[-11.941,-4.358],[-13.054,-5.732],[-15.762,-5.333],[-17.084,-3.968],[-17.271,-4.657],[-16.477,-7.972],[-17.535,-10.455],[-17.111,-12.527],[-14.2,-8.096],[-11.829,-7.388],[-11.538,-8.94],[-11.717,-9.103],[-11.689,-9.088],[-11.794,-9.841],[-14.292,-15.229],[-15.989,-16.244],[-16.768,-19.64],[-19.68,-21.427],[-19.507,-23.477],[-18.163,-22.426],[-15.58,-20.897],[-14.979,-20.566],[-14.792,-21.155],[-14.992,-24.225],[-13.327,-24.863],[-12.144,-23.196],[-11.331,-20.948],[-12.092,-20.17],[-12.831,-22.831],[-13.283,-19.856],[-12.025,-15.024]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.393,-2.938],[-1.113,0.541],[-0.32,0.083],[-0.685,0.061]],"o":[[-0.799,-1.323],[0.296,-0.144],[0.633,-0.165],[-1.279,1.059]],"v":[[44.919,-13.898],[45.516,-16.777],[46.455,-17.105],[48.414,-17.469]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.431,0.116],[-0.014,-0.055],[0.174,-0.423],[0.439,0.208],[0.086,0.571],[-0.322,0.111]],"o":[[0.066,0.021],[0.133,0.516],[-0.123,0.3],[-0.418,-0.198],[-0.081,-0.536],[0.38,-0.131]],"v":[[37.525,-10.181],[37.78,-10.092],[37.349,-8.793],[36.634,-8.328],[35.588,-9.207],[36.318,-9.85]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.221,0.348],[-0.479,-0.926],[0.337,-0.218],[0.377,0.369]],"o":[[0.827,-0.721],[-0.318,0.247],[-0.396,0.256],[-0.482,-0.472]],"v":[[46.428,-20.883],[48.365,-20.474],[47.407,-19.737],[46.188,-19.754]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.991,-0.703],[0.265,-0.073],[-1.036,0.203],[-0.944,0.17]],"o":[[-0.266,0.073],[-0.298,-0.942],[0.921,-0.18],[-0.862,0.908]],"v":[[45.321,-24.043],[44.525,-23.823],[45.53,-25.535],[48.292,-26.182]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.827,-0.721],[-0.681,0.363],[-0.089,-0.659],[1.085,-0.663]],"o":[[-0.7,-1.232],[0.283,-0.151],[0.093,0.692],[-0.479,-0.926]],"v":[[46.428,-20.883],[47.512,-22.642],[48.455,-22.661],[48.365,-20.474]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.266,0.073],[-0.34,-2.181],[-0.008,0.718],[-0.028,1.435]],"o":[[-0.027,2.015],[-0.783,-0.463],[0.017,-1.435],[0.265,-0.073]],"v":[[45.321,-24.043],[45.566,-17.831],[44.443,-19.52],[44.525,-23.823]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.779,0.169],[0.359,0.703],[-1.069,0.371],[-0.146,-0.771],[0.418,-0.4]],"o":[[-0.2,-0.805],[1.068,-0.371],[0.507,0.404],[-0.45,0.365],[-0.563,0.539]],"v":[[44.038,-26.95],[42.765,-28.934],[45.97,-30.046],[47.349,-28.691],[46.004,-27.588]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.059,-1.272],[0.486,0],[-1.029,1.753],[-0.247,0.061],[-0.2,-0.805]],"o":[[-0.487,0],[-0.17,-1.776],[0.111,-0.189],[0.359,0.703],[-0.409,1.24]],"v":[[43.693,-23.151],[42.233,-23.151],[42.353,-28.466],[42.765,-28.934],[44.038,-26.95]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.501,0.224],[-0.659,0.02],[-0.855,0.268],[-1.065,0.509],[-0.233,0.534],[1.275,-0.378],[1.011,-0.209],[-0.052,-0.793],[-0.028,-1.139],[0.65,0.309],[0.021,0.947],[-0.039,0.886]],"o":[[0.494,-0.307],[0.531,0.853],[1.122,-0.352],[0.498,-0.238],[0.548,1.107],[-0.991,0.294],[-0.743,0.154],[0.074,1.134],[0.02,0.797],[-0.925,-0.44],[-0.019,-0.888],[0.024,-0.545]],"v":[[41.341,-12.638],[42.851,-13.509],[45.076,-12.708],[48.342,-14.076],[49.416,-15.316],[48.154,-12.709],[45.153,-11.931],[44.167,-10.654],[44.186,-7.238],[43.246,-6.665],[41.977,-8.823],[41.982,-11.487]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.431,0.006],[-1.633,-0.001],[-0.068,-0.356],[0.844,-0.593],[0.467,-0.275],[0.667,0.363],[0.07,0.506]],"o":[[1.634,0.001],[0.068,0.356],[-1.005,-0.079],[-0.442,0.31],[-0.565,-0.555],[-0.07,-0.506],[0.431,-0.005]],"v":[[-3.264,-67.638],[1.637,-67.634],[1.84,-66.565],[-0.941,-65.867],[-2.336,-65.036],[-4.348,-66.103],[-4.558,-67.621]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.934,-0.123],[0.028,-0.071],[0.069,-0.06],[0,0],[0.595,-0.369],[1.634,0.001],[-0.516,0.985],[-0.647,-0.401]],"o":[[-0.029,0.071],[-0.069,0.06],[0,0],[-0.715,0.187],[-1.634,-0.001],[0.558,-0.948],[0.738,0.049],[0.873,0.541]],"v":[[3.729,-69.204],[3.644,-68.99],[3.436,-68.81],[3.394,-68.785],[1.637,-67.633],[-3.264,-67.638],[-1.152,-70.108],[0.925,-69.497]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.071,-0.016],[0.023,-0.038],[0.054,0.047]],"o":[[0.071,0.016],[-0.023,0.038],[-0.054,-0.047],[0,0]],"v":[[66.247,-52.972],[66.459,-52.924],[66.391,-52.809],[66.229,-52.95]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.4,0.801],[-0.424,-0.776]],"o":[[-0.817,-0.297],[0.925,0.159],[0,0]],"v":[[66.229,-52.95],[64.386,-54.574],[66.247,-52.972]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.498,-0.15],[-0.65,0.427]],"o":[[0.317,-0.824],[0.123,1.408]],"v":[[68.112,-53.228],[69.608,-54.93]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.634,0.01],[-0.038,-0.635],[0.53,0.043],[0.075,0.523]],"o":[[0.444,0.075],[0.028,0.473],[-0.54,-0.044],[-0.074,-0.517]],"v":[[67.628,-56.31],[68.782,-55.614],[67.793,-54.775],[66.434,-55.519]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.27,0.45],[0.341,0.208],[-0.697,1.328],[-1.215,-0.757],[-1.114,0.884],[-0.915,0.291],[0.903,-0.408],[1.004,-0.524]],"o":[[-0.211,-0.384],[-1.256,-0.765],[1.229,0.734],[1.265,0.789],[0.76,-0.603],[-0.027,0.978],[-1.03,0.465],[-1.27,-0.45]],"v":[[63.772,-51.627],[62.812,-52.334],[62.237,-54.484],[65.922,-52.278],[69.486,-52.539],[72,-53.853],[70.601,-51.834],[67.583,-50.277]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.573,0.859],[-0.289,-0.352],[1.775,-0.138]],"o":[[0.361,0.058],[-0.442,1.283],[0.671,-1.006]],"v":[[-37.486,-49.67],[-36.425,-49.408],[-39.303,-46.946]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.026,0.039],[0.898,-0.386],[1.504,-0.681],[1.009,-0.139],[0.361,0.058],[0.501,0.469],[0.006,0.406],[-0.976,-1.045],[-1.034,1.055],[0.706,0.428],[-0.575,0.595],[-0.106,-0.199]],"o":[[0.886,0.531],[-1.517,0.651],[-0.749,-0.38],[-0.289,-0.352],[-0.483,-0.489],[-0.326,-0.306],[1.236,0.571],[0.649,0.695],[-0.716,0.072],[0.259,-0.862],[0.188,-0.195],[0.647,1.216]],"v":[[-29.522,-51.622],[-29.655,-50.315],[-34.171,-48.281],[-36.425,-49.408],[-37.486,-49.67],[-38.939,-51.131],[-39.333,-52.214],[-35.851,-50.119],[-32.495,-50.882],[-34.492,-50.669],[-32.88,-52.56],[-32.297,-52.489]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.081,0.3],[-0.924,-0.504],[0.304,-0.819],[0.247,0.456],[0.644,0.578]],"o":[[1.026,0.247],[-0.077,0.816],[-0.557,0.064],[-0.411,-0.758],[-0.081,-0.3]],"v":[[-34.466,-1.75],[-31.549,-0.601],[-31.52,1.845],[-32.609,1.141],[-34.221,-0.85]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.766,-0.89],[0.723,0.556],[-2.543,0.198]],"o":[[-0.87,-0.129],[0.324,-1.256],[0.462,1.037]],"v":[[-38.409,1.384],[-40.863,0.542],[-38.061,-1.519]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.037,0.982],[-1.057,-0.844],[-1.595,-1.076],[-0.037,-0.57],[0.084,-0.38],[1.026,0.247]],"o":[[0.717,-0.324],[-1.146,1.446],[0.396,0.267],[-0.084,0.38],[-0.924,-0.504],[-0.255,-0.951]],"v":[[-34.881,-4.653],[-32.636,-5.305],[-32.189,-2.78],[-31.298,-1.74],[-31.549,-0.601],[-34.466,-1.75]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.665,-0.22],[-0.098,-3.362],[0.089,-1.03],[-1.251,-1.545],[0.759,-0.139],[-0.015,1.233],[-0.17,4.729],[-0.05,1.066],[-0.497,-0.198]],"o":[[0.462,3.354],[0.03,1.036],[-0.171,1.979],[-0.762,0.121],[-1.226,0.225],[0.058,-4.729],[0.038,-1.066],[0.024,-0.515],[0.649,0.259]],"v":[[-37.312,-23.121],[-37.085,-13.034],[-37.105,-9.924],[-35.552,-4.642],[-37.838,-4.274],[-39.977,-5.973],[-40.194,-20.151],[-39.991,-23.346],[-39.303,-23.792]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.463,0.499],[-0.372,0.001],[0.086,-0.347],[-0.594,-1.626],[-0.109,-4.586],[-0.834,-0.328],[-0.57,-0.249],[0.001,-0.126],[0.144,-0.009],[0.717,-0.324],[0.224,-0.004],[-0.171,1.979],[0.03,1.036],[0.462,3.354],[0.005,0.079],[0.062,1.18]],"o":[[0.372,-0.001],[0.333,0.298],[-0.428,1.727],[0.043,4.583],[0.021,0.896],[0.125,0.778],[-0.001,0.126],[-0.144,0.009],[-1.057,-0.844],[-0.224,0.004],[-1.251,-1.545],[0.089,-1.03],[-0.098,-3.362],[-0.005,-0.078],[0.679,-1.031],[-0.033,-0.63]],"v":[[-36.197,-28.465],[-35.082,-28.469],[-34.899,-27.428],[-34.432,-22.427],[-34.672,-8.684],[-33.572,-6.86],[-32.202,-5.709],[-32.204,-5.331],[-32.636,-5.305],[-34.881,-4.653],[-35.552,-4.642],[-37.105,-9.924],[-37.085,-13.034],[-37.312,-23.121],[-37.327,-23.357],[-36.648,-26.724]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.077,0.232,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.616,0.084],[1.803,-0.509],[-0.034,-1.002],[-0.954,-0.04],[-0.031,-0.484],[-0.128,-0.763],[1.502,-0.037],[0.978,0.309],[0.317,0.1],[0.03,0.069],[0.013,3.878],[-0.419,0.204],[-0.306,-0.18],[-1.49,-0.164],[-0.036,-0.15]],"o":[[0.495,1.761],[-0.538,0.152],[0.033,0.953],[0.53,0.022],[0.049,0.772],[0.245,1.459],[-1.091,0.027],[-0.317,-0.1],[-0.03,-0.069],[-0.245,-3.874],[-0.001,-0.379],[0.332,-0.161],[1.195,0.701],[0.142,0.016],[0.211,0.882]],"v":[[-38.224,-42.747],[-39.848,-39.968],[-41.105,-38.918],[-39.768,-37.413],[-39.076,-36.624],[-38.8,-34.316],[-40.758,-31.974],[-43.689,-32.915],[-44.641,-33.213],[-44.73,-33.42],[-44.884,-45.052],[-44.68,-46.162],[-43.73,-45.712],[-40.064,-43.757],[-39.688,-43.387]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.185,-0.514],[0.497,0.368],[-0.092,0.2],[-0.181,-0.017],[-0.469,-0.053]],"o":[[-0.505,-0.358],[-0.148,-0.11],[0.094,-0.203],[0.47,0.044],[0.141,0.557]],"v":[[4.961,22.777],[3.45,21.699],[3.296,21.222],[3.764,21.034],[5.172,21.19]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.007,-0.155],[1.683,0.791],[0.367,0.162],[0.992,0.636],[-0.005,0.501],[-2.671,-2.562]],"o":[[-1.795,-0.54],[-0.363,-0.171],[-0.939,-0.742],[0.005,-0.501],[3.26,1.533],[-0.007,0.155]],"v":[[0.748,-3.269],[-4.346,-5.539],[-5.446,-6.028],[-8.596,-7.579],[-8.58,-9.082],[0.77,-3.733]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.778,0.436],[-0.509,-0.065],[-0.246,-0.369],[0.811,-0.229],[0.51,0.443]],"o":[[0.509,0.065],[0.246,0.369],[-0.734,0.412],[-0.618,-0.01],[0.619,-0.592]],"v":[[-19.488,-59.421],[-17.96,-59.225],[-17.222,-58.119],[-19.537,-57.15],[-21.289,-57.59]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.2,-0.343],[-0.025,-0.306],[0.049,-0.287],[0.363,0.016],[0.75,-1.071],[0.509,0.065],[-1.598,0.914]],"o":[[0.025,0.306],[-0.325,0.198],[-0.379,0.109],[-1.06,-0.047],[-0.509,-0.065],[1.617,-0.882],[0.571,-0.326]],"v":[[-13.756,-61.67],[-13.681,-60.752],[-13.948,-59.929],[-15.036,-60.044],[-17.96,-59.225],[-19.488,-59.421],[-14.645,-62.077]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.651,0.52],[-0.605,-0.166],[-0.289,-0.558],[-0.893,0.303],[-1.487,-1.793],[0.041,-0.12],[0.628,-0.378],[0.507,0.38],[0.266,-0.884],[0.746,-0.012],[0.229,0.608],[-0.222,0.788],[0.467,-0.412],[1.693,-0.107],[0.025,0.306],[-0.526,0.427]],"o":[[0.605,0.167],[0.578,0.158],[0.449,0.868],[2.196,-0.744],[0.111,0.134],[-0.259,0.755],[-0.453,0.272],[-0.779,-0.584],[-0.215,0.716],[-0.763,0.012],[-0.257,-0.681],[0.222,-0.785],[-1.501,1.326],[-0.025,-0.306],[0.088,-0.77],[0.647,-0.525]],"v":[[-10.586,-64.798],[-8.772,-64.296],[-7.285,-63.417],[-5.392,-62.768],[0.256,-61.088],[0.48,-60.614],[-1.08,-59.111],[-2.529,-59.104],[-4.803,-58.51],[-6.118,-57.424],[-7.514,-58.494],[-7.78,-60.647],[-8.721,-61.75],[-13.681,-60.752],[-13.756,-61.67],[-12.537,-63.237]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.128,0.998],[0.185,-0.46],[0.735,-0.739],[-0.166,-0.34],[-0.346,0.032],[-0.289,-0.035],[0.372,-0.543],[0.006,-0.384],[0.878,-1.331],[0.957,-0.831],[0.365,-0.179],[-0.921,-1.161],[0.802,-0.873],[0.033,-0.286],[-0.105,-0.744],[-0.001,-0.149],[0.044,-1.031],[-0.676,-0.511],[-0.014,-1.17],[0.372,-0.001],[2.333,1.811],[0.092,0.386],[-0.317,-0.1],[-1.091,0.027],[0.245,1.459],[0.049,0.772],[0.53,0.022],[0.033,0.953],[-0.538,0.152],[0.495,1.761],[0.659,0.396],[1.519,0.994],[0.083,0.568],[-1.071,-0.524],[-1.105,-0.737],[-0.531,0.233],[0.006,1.756],[-1.517,0.651],[0.886,0.531],[0.728,0.624]],"o":[[0.078,0.516],[-0.939,0.261],[-0.252,0.253],[0.185,0.377],[0.285,0.069],[0.577,0.069],[-0.27,0.394],[-0.028,1.735],[-1.065,0.594],[-0.426,-0.021],[-1.318,0.646],[0.018,1.063],[-0.158,0.172],[-0.121,0.723],[0.001,0.149],[-0.017,1.032],[-0.036,0.837],[-0.255,1.047],[-0.372,0.001],[-3.013,-0.455],[-0.283,-0.22],[0.317,0.1],[0.978,0.309],[1.502,-0.037],[-0.128,-0.763],[-0.031,-0.484],[-0.954,-0.04],[-0.034,-1.002],[1.803,-0.509],[0.152,-0.762],[-1.556,-0.935],[-0.385,-0.252],[1.3,0.038],[1.187,0.581],[0.506,0.338],[1.618,-0.711],[1.504,-0.681],[0.898,-0.386],[-0.36,-1.068],[1.885,-1.454]],"v":[[-25.518,-56.766],[-25.818,-55.332],[-28.495,-54.212],[-28.983,-53.309],[-27.99,-53.224],[-27.134,-53.022],[-26.679,-52.177],[-26.702,-51.005],[-28.641,-46.69],[-31.959,-45.179],[-33.106,-44.822],[-33.52,-42.943],[-34.283,-39.956],[-34.399,-39.113],[-34.6,-36.928],[-34.597,-36.481],[-34.656,-33.385],[-33.762,-31.355],[-35.082,-28.469],[-36.197,-28.465],[-43.975,-32.356],[-44.641,-33.213],[-43.689,-32.915],[-40.758,-31.974],[-38.8,-34.316],[-39.076,-36.624],[-39.768,-37.413],[-41.105,-38.918],[-39.848,-39.968],[-38.224,-42.747],[-39.051,-44.379],[-43.649,-47.3],[-44.63,-48.277],[-41.391,-46.741],[-38.005,-44.645],[-36.594,-44.639],[-34.171,-48.281],[-29.655,-50.315],[-29.522,-51.622],[-31.735,-53.459]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.006,-0.859],[-0.506,0.159],[-0.194,0.927],[0.55,-0.086]],"o":[[0.011,0.564],[0.688,-0.217],[0.106,-0.508],[-0.701,0.109]],"v":[[-22.175,-53.42],[-21.603,-52.548],[-19.755,-53.634],[-20.66,-54.474]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.078,0.516],[-1.481,-0.09],[-0.619,-0.009],[-0.452,-0.274],[-0.338,1.418],[-1.94,0.157],[0.65,-0.295],[-0.11,-0.587],[-0.66,0.064],[-0.153,0.088],[-1.013,0.344],[-0.3,-0.03],[0.144,-0.733],[1.368,-0.6],[0.197,-0.334],[0.455,0.881],[0.087,0.114],[0.619,-0.039],[0.169,-0.482],[-0.011,-0.495],[-1.191,0.629],[-0.047,-0.323],[-0.376,-0.143],[-0.216,0.252],[-0.691,0.527],[-0.334,-0.473],[0.197,-0.389],[-0.076,-0.878],[0.582,-0.234],[0.235,-0.236],[1.263,0.141],[0.562,0.088],[0.428,-0.222],[0.804,-0.27],[0.693,0.227],[0.262,0.408],[-0.028,1.735],[-0.27,0.394],[0.577,0.069],[0.285,0.069],[-0.54,0.283],[0.208,0.592]],"o":[[1.322,-0.722],[0.51,0.443],[0.246,0.604],[1.225,0.743],[0.827,0.847],[-0.961,0.782],[-0.469,0.213],[0.122,0.649],[0.182,-0.018],[0.944,-0.541],[0.29,0.128],[0.803,0.079],[-1.402,0.465],[-0.435,0.093],[-0.547,0.927],[-0.065,-0.126],[-0.207,-0.344],[-0.504,0.032],[-0.158,0.448],[0.033,1.457],[0.03,0.326],[0.044,0.306],[0.359,0.137],[0.572,-0.668],[0.427,0.113],[-0.241,0.379],[-0.336,0.665],[-0.582,0.234],[-0.349,-0.023],[-1.223,-0.276],[-0.454,-0.349],[-0.507,-0.153],[-1.049,-0.415],[-0.693,-0.227],[-0.018,-0.449],[0.878,-1.332],[0.006,-0.384],[0.372,-0.543],[-0.289,-0.035],[0.534,-0.295],[0.512,-0.267],[0.186,-0.46]],"v":[[-25.518,-56.766],[-21.289,-57.59],[-19.536,-57.151],[-18.183,-56.316],[-16.369,-57.124],[-13.434,-54.896],[-15.861,-54.174],[-17.095,-53.349],[-15.5,-52.687],[-14.963,-52.809],[-11.942,-53.892],[-11.069,-53.525],[-10.173,-52.29],[-14.456,-51.19],[-15.319,-50.417],[-16.783,-50.478],[-17.04,-50.823],[-17.733,-51.782],[-18.749,-50.876],[-19.057,-49.488],[-17.582,-48.481],[-17.487,-47.505],[-17.277,-46.621],[-16.324,-47.021],[-14.391,-48.758],[-13.116,-48.291],[-13.821,-47.17],[-14.859,-45.193],[-16.604,-44.491],[-17.456,-44.116],[-21.046,-45.199],[-22.579,-45.833],[-23.944,-45.548],[-26.338,-44.691],[-28.416,-45.371],[-28.641,-46.69],[-26.702,-51.005],[-26.679,-52.177],[-27.134,-53.022],[-27.99,-53.224],[-26.386,-54.106],[-25.819,-55.331]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.497,0.008],[-0.689,-0.394],[0.727,0.435],[0.308,-0.835],[0.156,-0.152],[-0.592,0.735]],"o":[[0.689,0.394],[-0.565,0.825],[-0.762,-0.456],[-0.068,0.185],[0.034,-0.841],[0.497,-0.007]],"v":[[19.623,-73.228],[21.69,-72.046],[19.637,-71.705],[18.119,-71.213],[17.663,-70.752],[18.131,-73.206]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.557,-1.417],[0.53,0.261],[-0.031,0.672],[-0.498,0.169],[0.042,0.617]],"o":[[0.931,1.265],[-0.529,-0.262],[-0.605,-0.299],[0.032,-0.701],[0.407,-0.138],[0,0]],"v":[[31.16,-71.872],[31.569,-67.834],[29.982,-68.622],[29.223,-70.068],[30.221,-71.053],[31.083,-71.879]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.454,-0.706],[0.831,-0.588],[0.167,-0.209],[0.674,0.132],[0.689,0.394]],"o":[[-0.83,0.588],[-0.235,-0.005],[-0.635,-0.337],[-0.689,-0.394],[2.343,-1.282]],"v":[[26.843,-73.63],[24.351,-71.866],[23.715,-71.665],[21.69,-72.046],[19.623,-73.228]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.702,0.269,0.204,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.519,1.65],[0.026,0.127],[0.931,1.265],[-0.932,-0.585],[-0.13,-0.91],[0.876,-1.404],[0.455,-0.011],[-0.222,0.298]],"o":[[-0.026,-0.127],[0.557,-1.417],[0.931,0.585],[0.132,0.909],[0.256,1.786],[-0.319,0.512],[-0.036,-0.397],[1.288,-1.725]],"v":[[31.647,-67.454],[31.569,-67.834],[31.16,-71.872],[33.954,-70.118],[34.351,-67.39],[32.85,-62.759],[31.517,-62.819],[31.893,-63.831]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.288,-0.11],[0.262,-1.225],[0.814,-0.562],[0.162,0.575],[0.002,1.249],[-0.258,0.149],[-0.798,0.457]],"o":[[0.163,1.305],[-0.194,0.906],[-0.401,0.277],[-0.346,-1.232],[-0.001,-0.348],[0.797,-0.459],[0.287,0.11]],"v":[[17.016,-72.994],[16.467,-69.217],[14.456,-67.099],[13.447,-67.564],[13.238,-71.3],[13.76,-71.955],[16.154,-73.325]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.026,-0.127],[0.879,0.477],[0.201,-0.743],[1.266,-0.14],[0.678,-0.18],[0.112,0.07],[1.23,-0.446],[-0.031,0.82],[-2.236,-0.515],[-0.842,-0.271],[-0.452,0.55],[0.251,0.413],[0.53,1.198],[-0.83,0.588],[-1.339,-0.763],[0.407,-0.138],[0.032,-0.701],[-0.605,-0.299],[-0.529,-0.263]],"o":[[-0.458,0.847],[-0.937,-0.509],[-0.375,1.389],[-0.689,0.076],[-0.177,0.047],[-1.423,-0.89],[-0.862,0.313],[0.086,-2.295],[0.864,0.199],[0.79,0.254],[0.484,-0.59],[-0.671,-1.105],[0.831,-0.588],[1.381,0.663],[0.042,0.617],[-0.498,0.169],[-0.031,0.672],[0.53,0.261],[0.026,0.127]],"v":[[31.647,-67.454],[29.628,-66.736],[27.905,-66.012],[25.339,-64.083],[23.304,-63.553],[22.773,-63.452],[18.907,-62.971],[17.888,-63.703],[22.493,-67.271],[25.071,-66.622],[26.785,-67.28],[26.489,-68.634],[24.351,-71.866],[26.843,-73.63],[31.083,-71.879],[30.221,-71.053],[29.223,-70.068],[29.982,-68.622],[31.569,-67.834]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.101,-0.181],[0.099,0.184]],"o":[[-0.236,0.114],[0.196,-0.027]],"v":[[-44.221,-5.733],[-44.676,-5.941]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.568,-0.581],[-1.189,-0.269],[-0.003,-0.315],[-0.008,-0.704],[0.461,-0.05],[1.06,-0.143],[0.15,0.319],[-0.306,0.456],[0.328,0.691],[0.535,0.243],[0.218,0.722],[-1.736,-0.869]],"o":[[0.036,0.801],[0.273,0.062],[0.006,0.704],[0.005,0.445],[-1.063,0.115],[-0.33,0.045],[-0.221,-0.47],[0.331,-0.493],[-0.207,-0.435],[-0.761,-0.345],[0.358,-1.958],[0.709,0.355]],"v":[[11.46,-72.984],[12.435,-70.995],[12.82,-70.245],[12.83,-68.132],[12.183,-67.411],[8.999,-67.011],[8.263,-67.353],[8.356,-68.712],[9.305,-70.152],[7.816,-71.037],[6.556,-72.762],[9.473,-74.305]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.587,0.026],[1.163,-1.165],[-0.361,-0.54],[-0.164,0.13],[-1.191,1.211],[0.102,0.291]],"o":[[-1.545,0.214],[-0.442,0.442],[0.247,0.37],[1.335,-1.059],[0.222,-0.226],[-0.155,-0.444]],"v":[[11.909,-64.366],[8.218,-61.488],[8.54,-59.748],[9.177,-59.829],[12.846,-63.361],[12.989,-64.197]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.036,-0.397],[0.345,-0.102],[-0.192,-0.953],[0.01,-0.471],[0.394,-0.227],[0.996,-0.799],[0.67,-0.156],[1.079,-1.139],[1.438,-1.202],[1.318,-0.017],[0.916,1.159],[1.105,-0.333],[0.453,-0.514],[0.584,-0.62],[0.552,-0.205],[0.058,-0.03],[1.393,-0.63],[0.407,-0.407],[0.121,-0.03],[1.563,0.483],[0.798,0.235],[0.301,0.903],[-0.325,0.198],[-1.501,1.326],[0.222,-0.785],[-0.257,-0.681],[-0.763,0.012],[-0.215,0.716],[-0.779,-0.584],[-0.453,0.272],[-0.259,0.755],[0.111,0.134],[2.196,-0.744],[0.449,0.868],[0.578,0.158],[0.605,0.167],[-0.159,0.528],[-0.06,0.015],[0.147,1.298],[-1.172,-0.166],[-0.265,-0.139],[-0.07,-0.506],[0.354,0.508],[1.06,-0.271],[-0.629,-0.488],[-0.667,-0.324],[-1.345,-0.395],[-0.814,0.119],[-0.718,-0.272],[-0.741,-0.192],[-0.027,1.458],[-0.657,0.212],[1.467,2.091],[0.404,-0.083],[0.479,-0.029],[0.295,0.154],[0.015,0.449],[0,0],[-0.069,0.06],[-0.029,0.071],[-0.514,0.009],[-0.089,0.26],[0.236,0.136],[0.539,0.307],[-0.485,-0.092],[0.414,0.933],[-0.518,-0.036],[-0.761,-0.345],[-0.207,-0.435],[0.331,-0.493],[-0.221,-0.47],[-0.33,0.045],[-1.063,0.115],[0.005,0.445],[0.006,0.704],[0.273,0.062],[0.036,0.801],[0.225,1.313],[-0.05,0.447],[-0.894,-1.424],[0.797,-0.459],[-0.001,-0.348],[-0.346,-1.232],[-0.401,0.277],[-0.194,0.906],[0.163,1.305],[-0.372,0.071],[0.034,-0.841],[-0.978,-0.022],[-1.585,0.268],[0.287,0.885],[0.101,0.353],[-0.235,-0.005],[-0.671,-1.105],[0.484,-0.59],[0.79,0.254],[0.864,0.199],[0.086,-2.295],[-0.862,0.313],[-1.423,-0.89],[-0.177,0.047],[-0.689,0.076],[-0.375,1.389],[-0.937,-0.509],[-0.458,0.847],[1.288,-1.725]],"o":[[-0.359,0.055],[-0.767,0.226],[0.091,0.451],[-0.394,0.228],[-0.736,-0.915],[-0.536,0.43],[-1.108,-0.378],[-1.928,-0.109],[-1.318,0.017],[-1.232,-0.408],[-0.732,-0.926],[-0.614,-0.422],[-0.563,0.639],[-0.553,0.205],[-0.057,-0.03],[-1.199,-1.524],[-0.557,0.201],[-0.121,0.03],[-1.564,-0.484],[-0.694,-0.594],[-0.725,-0.403],[0.05,-0.287],[1.693,-0.107],[0.467,-0.412],[-0.222,0.788],[0.229,0.608],[0.746,-0.012],[0.266,-0.884],[0.507,0.38],[0.628,-0.378],[0.041,-0.12],[-1.487,-1.793],[-0.893,0.303],[-0.289,-0.558],[-0.605,-0.166],[0.158,-0.527],[0.052,-0.05],[1.457,-0.373],[1.224,-0.015],[0.127,0.233],[0.07,0.506],[-0.404,0.198],[-0.872,-1.25],[-0.651,0.166],[0.582,0.452],[1.329,0.645],[0.814,-0.119],[-0.59,0.586],[0.716,0.271],[1.44,0.373],[0.576,-0.454],[2.394,-0.773],[-0.218,-0.311],[-0.465,0.095],[-0.295,-0.154],[-0.015,-0.449],[0,0],[0.069,-0.06],[0.029,-0.071],[0.514,0],[0.216,-0.004],[0.104,-0.305],[-0.537,-0.309],[0.329,-0.786],[0.745,0.142],[-0.216,-0.486],[0.218,0.722],[0.535,0.243],[0.328,0.691],[-0.306,0.456],[0.15,0.319],[1.06,-0.143],[0.461,-0.05],[-0.008,-0.704],[-0.003,-0.315],[-1.189,-0.269],[1.228,-0.54],[-0.075,-0.438],[1.029,1.302],[-0.798,0.457],[-0.258,0.149],[0.002,1.249],[0.162,0.575],[0.814,-0.562],[0.262,-1.225],[0.372,-0.071],[-0.592,0.735],[-0.3,0.747],[1.572,0.035],[0.905,-0.153],[-0.113,-0.349],[0.167,-0.21],[0.53,1.198],[0.251,0.413],[-0.452,0.55],[-0.842,-0.271],[-2.236,-0.515],[-0.031,0.82],[1.23,-0.446],[0.112,0.07],[0.678,-0.18],[1.266,-0.14],[0.201,-0.743],[0.879,0.477],[1.519,1.65],[-0.222,0.298]],"v":[[31.517,-62.819],[30.443,-62.647],[29.345,-61.075],[29.332,-59.665],[28.149,-58.983],[25.639,-59.294],[23.682,-58.682],[20.38,-58.618],[15.411,-56.764],[11.456,-56.712],[8.088,-58.562],[4.995,-58.992],[3.452,-58.697],[1.706,-56.832],[0.048,-56.218],[-0.125,-56.217],[-3.256,-57.297],[-4.635,-56.293],[-4.998,-56.203],[-9.689,-57.654],[-12.087,-58.349],[-13.948,-59.93],[-13.681,-60.752],[-8.721,-61.75],[-7.78,-60.647],[-7.514,-58.494],[-6.118,-57.424],[-4.803,-58.51],[-2.529,-59.104],[-1.08,-59.111],[0.48,-60.614],[0.256,-61.088],[-5.392,-62.768],[-7.285,-63.417],[-8.772,-64.296],[-10.586,-64.798],[-10.111,-66.381],[-9.954,-66.526],[-8.377,-69.254],[-5.001,-68.277],[-4.558,-67.621],[-4.348,-66.103],[-5.521,-66.168],[-8.643,-66.642],[-8.82,-65.387],[-6.904,-64.301],[-2.773,-63.692],[-0.331,-64.048],[-0.046,-62.735],[2.144,-62.037],[3.667,-63.178],[5.635,-63.831],[6.574,-66.715],[5.758,-67.078],[4.324,-66.976],[3.44,-67.439],[3.394,-68.785],[3.436,-68.81],[3.643,-68.99],[3.729,-69.204],[5.271,-69.208],[5.824,-69.46],[5.498,-70.075],[3.882,-70.996],[5.296,-71.278],[6.096,-72.104],[6.556,-72.762],[7.816,-71.037],[9.305,-70.152],[8.356,-68.712],[8.263,-67.353],[8.999,-67.011],[12.183,-67.411],[12.83,-68.132],[12.82,-70.245],[12.435,-70.995],[11.46,-72.984],[12.957,-75.7],[12.824,-77.012],[16.154,-73.325],[13.76,-71.955],[13.238,-71.3],[13.447,-67.564],[14.456,-67.099],[16.467,-69.217],[17.016,-72.994],[18.131,-73.206],[17.663,-70.752],[18.342,-69.233],[23.067,-69.179],[24.02,-70.607],[23.715,-71.665],[24.351,-71.866],[26.489,-68.634],[26.785,-67.28],[25.071,-66.622],[22.493,-67.271],[17.888,-63.703],[18.907,-62.971],[22.773,-63.452],[23.304,-63.553],[25.339,-64.083],[27.905,-66.012],[29.628,-66.736],[31.647,-67.454],[31.893,-63.831]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.013,-0.025],[-0.014,0.024]],"o":[[-0.013,0.025],[0.014,-0.024],[0,0]],"v":[[15.463,-85.47],[15.423,-85.396],[15.465,-85.468]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.544,-0.07],[1.116,-0.318]],"o":[[0.533,-1.515],[-0.883,0.819],[0,0]],"v":[[15.465,-85.468],[18.209,-87.416],[15.463,-85.47]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.602,-0.493],[0.502,0.13],[1.097,0.236],[0.286,0.06],[1.503,0.804],[0.552,0.58],[-0.422,0.468],[-1.207,-0.804],[-1.778,-0.899],[-0.271,0.224],[-0.523,-0.623]],"o":[[-0.32,-0.557],[-1.086,-0.281],[-0.166,-0.255],[-1.219,-1.223],[-0.63,-0.441],[0.448,-0.409],[1.33,0.385],[1.646,1.097],[0.607,0.307],[0.65,0.321],[-0.611,0.501]],"v":[[47.362,-63.642],[45.929,-64.294],[42.64,-65.018],[41.936,-65.449],[37.725,-68.298],[35.724,-69.425],[37.303,-70.112],[41.113,-68.515],[46.418,-65.775],[47.308,-66.326],[49.177,-65.129]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.534,-0.453],[0.398,0.428],[0.084,-0.311]],"o":[[0.169,-0.761],[-0.209,-0.224],[-0.169,0.621]],"v":[[21.083,-47.786],[21.074,-49.618],[20.109,-49.121]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.997,-0.476],[-2.503,2.265]],"o":[[1.637,1.165],[-3.217,0.21]],"v":[[20.537,-46.865],[29.211,-49.616]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.011,-0.571],[0.596,-0.625],[-0.507,-0.503],[0.188,0.025],[0.048,-0.721],[2.303,-1.015],[2.061,1.56],[1.215,0.846],[-0.02,-0.012],[-0.924,0.55],[-1.379,0.113],[-0.115,0.285],[-0.574,-0.278],[-0.732,0.637],[-0.758,0.187],[-0.044,0.903],[0.433,0.828],[0.387,-0.139],[1.076,-0.17],[-1.047,0.409],[0.121,0.227],[0.158,0.29],[-0.536,0.43],[-0.736,-0.915],[-0.755,-0.116],[-0.536,0.203],[0.025,0.452],[0.284,0.082],[0.244,0.068],[0.091,0.451],[-0.767,0.226],[-0.359,0.055],[-0.319,0.512],[0.256,1.786],[0.132,0.909],[-0.499,-0.463],[-0.63,-0.441],[-0.078,-0.511],[0.311,-0.358],[-0.326,-0.128],[-0.055,-0.591],[-0.719,-0.116],[-0.129,0.632],[-0.971,0.695],[-1.086,-0.281],[-0.32,-0.557],[0.641,-0.176],[1.346,-0.178],[1.011,-1.015],[0.876,-1.941]],"o":[[-0.261,0.96],[-0.217,0.227],[0.217,0.215],[-1.332,-0.176],[-2.286,1.055],[-2.289,1.008],[-1.184,-0.896],[0.056,-0.047],[1.189,0.727],[1.127,-0.671],[0.285,-0.023],[0.343,-0.85],[0.966,0.469],[0.617,-0.537],[0.722,-0.178],[-0.876,0.339],[-0.202,-0.387],[-1.004,0.36],[-0.011,-0.909],[0.4,-0.156],[-0.156,-0.291],[0.67,-0.156],[0.996,-0.799],[0.128,0.439],[0.551,0.085],[0.477,-0.18],[-0.025,-0.448],[-0.243,-0.071],[0.01,-0.471],[-0.192,-0.953],[0.345,-0.102],[0.455,-0.011],[0.876,-1.404],[-0.13,-0.91],[0.718,-0.097],[0.552,0.58],[0.078,0.511],[-0.318,0.353],[-0.129,0.148],[0.813,0.319],[0.051,0.552],[0.774,0.125],[1.215,-0.23],[1.098,0.237],[0.502,0.13],[-0.168,0.719],[-1.329,0.364],[-1.35,0.178],[-1.48,1.486],[-0.641,0.587]],"v":[[34.649,-53.899],[32.816,-52.068],[32.547,-51.26],[32.323,-50.968],[31.254,-49.454],[24.393,-46.299],[17.776,-46.858],[14.132,-49.399],[14.295,-49.531],[17.165,-50.201],[20.829,-51.686],[21.563,-52.13],[23.115,-52.549],[25.692,-52.904],[27.744,-53.869],[28.932,-55.436],[26.984,-55.988],[26.001,-56.126],[23.016,-54.976],[24.058,-57.198],[24.155,-57.811],[23.682,-58.682],[25.639,-59.294],[28.149,-58.983],[28.557,-57.706],[30.276,-57.971],[30.876,-59.186],[30.065,-59.462],[29.332,-59.666],[29.345,-61.075],[30.443,-62.647],[31.517,-62.819],[32.85,-62.759],[34.351,-67.39],[33.954,-70.118],[35.724,-69.425],[37.725,-68.298],[37.959,-66.765],[37.007,-65.705],[36.913,-65.199],[37.555,-63.619],[38.341,-62.337],[39.496,-63.373],[42.64,-65.018],[45.929,-64.294],[47.362,-63.642],[46.005,-62.531],[41.957,-62.083],[38.396,-60.533],[34.604,-55.609]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.025,-0.015],[0.025,0.014]],"o":[[0.025,0.015],[-0.025,-0.014],[0,0]],"v":[[-19.719,9.165],[-19.644,9.209],[-19.721,9.167]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.806,-0.1],[-0.378,-0.569],[0.728,-0.084],[0.018,0.544]],"o":[[0.377,0.569],[-0.626,0.279],[-0.08,-0.542],[-0.019,-0.583]],"v":[[-0.534,17.873],[0.598,19.579],[-1.218,20.533],[-1.446,18.907]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.521,-0.917],[1.084,-0.275],[0.18,-0.045],[0.377,0.569]],"o":[[-1.077,0.562],[-0.18,0.045],[-0.378,-0.569],[1.946,-0.489]],"v":[[4.409,19.366],[1.138,19.445],[0.598,19.579],[-0.534,17.873]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.587,0.134],[0.035,0.941],[-1.077,0.562],[-0.168,-0.027],[0.168,-0.619],[0.47,0.044],[0.094,-0.203],[-0.148,-0.11],[-0.505,-0.358],[0.826,0.492]],"o":[[-0.035,-0.941],[1.084,-0.275],[0.168,0.027],[0.15,0.572],[-0.469,-0.053],[-0.181,-0.017],[-0.092,0.2],[0.497,0.368],[-0.625,0.828],[-0.497,-0.296]],"v":[[1.244,22.267],[1.138,19.445],[4.409,19.366],[4.913,19.445],[5.172,21.19],[3.764,21.034],[3.296,21.222],[3.45,21.699],[4.961,22.777],[2.759,23.111]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.555,-0.228],[1.282,0.643],[1.173,0.81],[0.236,-0.051],[0,0],[0.122,0.124],[-0.163,0.411],[-0.704,0.23],[-0.319,-0.117],[-0.03,0.351],[-1.853,0.047],[0.229,0.27],[-1.034,1.408],[0.546,0.301],[1.018,0.603],[-0.443,0.669],[-0.363,-0.171],[-1.795,-0.54],[-0.172,-0.207],[-0.209,-2.329],[-0.039,-2.135]],"o":[[-1.075,-1.003],[-1.268,-0.635],[-0.143,-0.167],[0,0],[-0.107,-0.139],[-0.397,-0.401],[0.241,-0.607],[0.327,-0.107],[0.301,0.11],[1.422,-1.088],[-0.386,-0.432],[-1.159,-1.366],[0.473,-0.644],[-1.036,-0.571],[-0.647,-0.383],[0.367,0.163],[1.683,0.791],[0.172,0.207],[-0.444,2.339],[0.191,2.128],[0.011,0.59]],"v":[[0.747,12.018],[-2.971,9.854],[-6.705,7.827],[-7.248,7.593],[-7.236,7.597],[-7.559,7.181],[-8.797,6.167],[-7.018,5.028],[-6.054,5.052],[-5.526,4.738],[-0.546,3.811],[-1.403,2.851],[-1.693,-1.525],[-1.974,-2.684],[-5.052,-4.453],[-5.446,-6.028],[-4.346,-5.539],[0.748,-3.269],[1.264,-2.649],[1.039,4.405],[1.449,10.786]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.068,-0.097],[0.288,0.122],[0.396,0.267],[-1.146,1.446],[-0.144,0.008],[-2.362,-1.212],[-1.286,-0.123],[0,0],[-0.093,-0.074],[-0.11,-0.111],[-1.347,-0.903],[-1.447,-0.235],[0,0],[-0.187,-0.011],[-1.403,-0.675],[-0.513,0.064],[0,0],[-0.213,-0.003],[-1.268,-0.635],[-1.075,-1.003],[0.047,-0.506],[1.683,1.016],[3.843,1.995],[5.205,2.819]],"o":[[-0.039,-0.297],[-0.037,-0.57],[-1.595,-1.076],[0.144,-0.009],[2.328,1.279],[1.104,0.567],[0,0],[0.093,0.074],[0.163,0.059],[1.152,1.164],[1.127,0.909],[0,0],[0.105,0.179],[1.545,0.375],[0.426,0.205],[0,0],[0.123,0.214],[1.172,0.81],[1.282,0.643],[-0.019,0.46],[-0.177,1.928],[-3.708,-2.238],[-5.253,-2.727],[-0.945,-0.512]],"v":[[-30.839,-1.088],[-31.298,-1.74],[-32.189,-2.78],[-32.636,-5.305],[-32.204,-5.331],[-25.211,-1.514],[-21.711,-0.189],[-21.727,-0.199],[-21.447,0.022],[-20.964,0.205],[-17.085,3.13],[-13.271,4.944],[-13.267,4.943],[-12.801,5.17],[-8.578,7.167],[-7.236,7.597],[-7.248,7.593],[-6.705,7.827],[-2.971,9.854],[0.747,12.018],[1.161,13.251],[-0.841,14.252],[-12.215,7.996],[-27.872,-0.384]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.091,-0.535],[-0.34,-0.782],[0.367,-0.015],[0.054,0.134],[-1.716,0.952]],"o":[[-1.125,0.623],[-0.367,0.015],[-0.037,-0.141],[-0.722,-1.776],[0.045,0.514]],"v":[[29.952,-40.732],[29.712,-38.523],[28.61,-38.478],[28.496,-38.9],[29.719,-42.259]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.022,0.1],[-0.68,0.014],[-0.362,-1.101],[0.073,-0.032],[1.214,0.771]],"o":[[0.599,-0.462],[0.97,0.296],[-0.073,0.032],[-1.322,-0.402],[-0.022,-0.1]],"v":[[32.789,-45.667],[34.773,-46.025],[37.053,-44.304],[36.834,-44.208],[32.856,-45.366]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.887,-0.266],[0.727,-0.552],[0.275,0.108],[-1.125,0.623]],"o":[[-0.567,0.741],[-0.275,-0.108],[-0.34,-0.782],[1.046,-0.286]],"v":[[32.624,-39.966],[30.538,-38.198],[29.712,-38.523],[29.952,-40.732]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.291,0.032],[0.104,-1.087],[0.155,-0.159],[0.518,-0.159],[0.072,0.624],[0.763,1.33],[-0.567,0.741]],"o":[[-0.352,1.014],[-0.155,0.159],[-0.54,0.087],[-0.692,0.213],[0.539,-0.271],[0.727,-0.552],[0.291,-0.032]],"v":[[33.496,-40.061],[32.596,-36.972],[32.131,-36.496],[30.515,-36.219],[29.495,-36.918],[30.537,-38.198],[32.624,-39.966]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.903,0.359,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.102,0.354],[-1.366,-0.478],[-0.102,-0.596],[0.637,0.007],[0.961,0.378]],"o":[[1.338,-0.574],[0.487,0.171],[-0.593,0.155],[-1.049,0.045],[-0.247,-0.184]],"v":[[35.074,-50.528],[39.138,-50.659],[40.194,-49.652],[38.42,-49.169],[35.429,-49.787]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.052,0.161],[-0.602,-0.56],[0.99,-0.555],[0.836,0.646]],"o":[[0.737,0.25],[-0.848,0.74],[-0.924,-0.538],[0.815,-0.893]],"v":[[59.01,-56.109],[61.142,-55.177],[58.465,-53.131],[56.013,-55.138]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.026,0.413],[-1.178,0.306],[0,-1.386],[0.709,0.021]],"o":[[0.28,-1.231],[1.674,0.354],[0,0.807],[-1.139,-0.033]],"v":[[36.162,-46.304],[38.44,-48.515],[40.424,-46.398],[39.333,-45.374]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.737,0.25],[0.555,0.467],[-0.336,0.454],[-1.758,-1.404],[0.306,-0.163],[0.422,0.001]],"o":[[-0.555,-0.467],[0.038,-0.493],[2.097,0.812],[-0.306,0.163],[-0.422,0],[-0.602,-0.56]],"v":[[59.01,-56.109],[57.346,-57.51],[57.538,-58.977],[63.325,-55.664],[62.408,-55.176],[61.142,-55.177]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.815,-0.893],[0.319,-0.173],[0.354,1.046],[0.072,0.322],[-0.929,-0.29],[-1.204,0.087],[-0.555,-0.467]],"o":[[-0.338,0.138],[-0.96,0.522],[-0.105,-0.31],[-0.218,-0.985],[1.228,0.383],[0.555,0.467],[-1.052,0.161]],"v":[[56.013,-55.138],[55.003,-54.717],[52.982,-55.494],[52.78,-56.464],[53.727,-57.44],[57.346,-57.51],[59.01,-56.109]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.211,-0.384],[-0.322,-0.45],[0.168,-0.32],[0.315,-0.035],[0.5,0.496],[1.26,-0.092],[-0.163,0.868],[-0.848,0.74],[-0.422,0],[0.057,-0.23],[-1.256,-0.765]],"o":[[0.34,0.437],[0.162,0.227],[-0.183,0.351],[-0.542,-0.44],[-0.861,-0.853],[-0.799,0.058],[0.99,-0.555],[0.422,0],[-0.057,0.231],[-0.697,1.328],[0.341,0.208]],"v":[[63.772,-51.627],[64.787,-50.312],[65.187,-49.59],[64.271,-49.411],[62.697,-50.79],[59.518,-52.091],[58.465,-53.131],[61.143,-55.177],[62.408,-55.176],[62.237,-54.484],[62.812,-52.334]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.338,-0.574],[-0.894,0.213],[-1.458,-0.171],[-0.163,-1.313],[0.465,-0.278],[0.329,0.257],[0.476,0.019],[0.487,0.171]],"o":[[-0.388,-1.008],[1.44,-0.343],[1.387,0.244],[0.042,0.336],[-0.44,0.263],[-0.35,-0.273],[-0.102,-0.596],[-1.366,-0.478]],"v":[[35.074,-50.528],[36.096,-52.278],[40.458,-52.352],[42.633,-49.876],[42.461,-48.896],[41.353,-49.066],[40.194,-49.652],[39.138,-50.659]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.272,1.568],[-0.842,0.608],[-1.049,0.045],[-0.006,-0.218],[0.28,-1.231],[0.431,-0.252],[0.599,-0.462]],"o":[[0.943,-0.433],[0.961,0.378],[0.007,0.218],[-1.178,0.306],[-0.47,0.058],[-0.68,0.014],[-1.313,-0.555]],"v":[[32.74,-48.246],[35.429,-49.787],[38.421,-49.169],[38.44,-48.515],[36.162,-46.304],[34.773,-46.025],[32.789,-45.667]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.261,0.96],[-2.087,-0.649],[0.198,-0.12],[1.44,-0.343],[-0.388,-1.008],[-0.248,-0.185],[0.943,-0.433],[0.268,0.236],[0.292,0.077],[-1.332,-0.176],[0.217,0.215],[-0.217,0.227]],"o":[[2.118,0.479],[-0.197,0.121],[-1.458,-0.171],[-0.894,0.213],[-0.102,0.354],[-0.843,0.608],[-0.268,-0.236],[-0.107,-0.33],[0.048,-0.721],[0.188,0.025],[-0.507,-0.503],[0.596,-0.625]],"v":[[34.649,-53.899],[41.051,-52.713],[40.458,-52.352],[36.096,-52.278],[35.074,-50.528],[35.43,-49.786],[32.74,-48.246],[31.935,-48.955],[31.254,-49.454],[32.323,-50.968],[32.547,-51.26],[32.816,-52.068]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.879,0.46,0.326,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.073,0.032],[-1.601,-0.156],[0.378,-0.883],[1.148,-0.678],[0.916,-0.477],[0.45,0.441],[-0.277,0.566],[-0.41,0.742],[-0.142,0.256]],"o":[[1.542,-0.057],[0.901,0.088],[-0.568,1.326],[-0.889,0.525],[-0.454,0.236],[-0.462,-0.453],[0.373,-0.76],[0.141,-0.256],[0.073,-0.032]],"v":[[37.053,-44.304],[41.617,-44.98],[42.286,-43.908],[39.524,-41.156],[36.805,-39.673],[35.372,-39.556],[35.189,-41.21],[36.409,-43.44],[36.834,-44.208]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.858,-0.012],[0.547,0.543],[-0.278,0.321],[-0.277,-0.301],[-0.232,-0.374],[-0.363,0.37],[-0.095,0.761],[-0.142,1.682],[-0.503,0.67],[0.361,-2.749],[1.64,-0.529],[0.027,-0.455]],"o":[[-0.565,-0.526],[-0.185,-0.183],[0.279,-0.323],[0.297,0.322],[0.276,0.445],[0.585,-0.596],[0.21,-1.675],[0.069,-0.817],[1.892,0.782],[-0.184,1.404],[-0.445,0.144],[-0.107,1.78]],"v":[[50.676,-58.286],[48.987,-59.869],[48.657,-60.563],[49.638,-60.497],[50.414,-59.427],[51.241,-59.39],[52.154,-61.478],[52.647,-66.519],[53.376,-68.78],[55.318,-64.368],[53.246,-61.029],[52.655,-60.076]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.641,0.587],[-1.527,0.077],[-0.474,-0.132],[-1.575,-0.747],[0.299,0.371],[1.449,0.332],[-0.016,0.384],[-0.438,0.131],[-0.246,-0.109],[-0.138,0.861],[-0.334,-0.603],[0.008,-0.322],[-0.115,-1.875],[0.095,-0.913],[0.37,-0.005],[0.224,0.851],[0.268,0.881],[0.96,-0.019],[2.118,0.479]],"o":[[1.037,1.14],[0.479,-0.024],[1.577,0.439],[0.313,0.149],[-0.755,-0.937],[-0.319,-0.073],[0.02,-0.472],[0.314,-0.094],[0.854,0.38],[0.641,0.545],[-0.3,0.26],[-0.047,1.885],[0.056,0.91],[-0.064,0.612],[-0.746,0.011],[-0.235,-0.891],[-0.261,-0.86],[-2.087,-0.649],[0.011,-0.571]],"v":[[34.604,-55.609],[38.464,-54.067],[39.89,-53.918],[44.725,-53.474],[45.108,-54.099],[42.661,-56.771],[41.879,-57.455],[42.79,-58.301],[43.746,-58.473],[45.123,-59.294],[46.175,-57.402],[45.968,-56.467],[46.298,-50.841],[46.145,-48.092],[45.175,-47.657],[43.546,-48.673],[42.827,-51.34],[41.051,-52.713],[34.649,-53.899]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.04,-0.48],[0.662,-1.739],[-0.077,-0.028],[-0.091,0.153],[-0.322,0.905],[0.279,-0.031]],"o":[[1.19,0.416],[-0.022,0.057],[0.226,0.083],[0.495,-0.831],[0.221,-0.623],[-1.013,0.113]],"v":[[7.154,-33.893],[9.05,-31.534],[9.211,-31.289],[9.631,-31.552],[10.747,-34.203],[10.208,-34.668]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.27,-0.23],[2.635,-1.108],[0.726,0.277],[0.358,0.108],[1.086,0.356],[-0.425,0.763],[1.439,0.135],[0.522,0.415],[1.014,-1.027],[0.487,-1.352],[-0.433,-0.778],[-0.581,-0.137],[-0.269,-0.671],[0.518,-0.166],[0.921,-0.325],[0.825,-0.314],[0.288,-0.632],[0.832,-0.904],[1.247,-0.245],[-0.151,0.635],[0.984,-0.471],[0.014,1.113],[0.449,0.528],[-0.382,-0.135],[-0.577,0.257],[-2.426,1.162],[-1.952,0.882],[0.17,0.471],[0.408,-0.131],[1.76,-0.209],[-0.306,0.123],[-1.292,0.729],[0.683,0.051],[0.89,0.224],[0.177,0.22],[0.865,-0.343],[0.277,0.2],[0.477,0.644],[0.822,-0.525],[0.147,0.211],[-0.144,0.184],[-0.305,0.462],[0.386,0.762],[2.526,0.358],[-0.144,-0.205],[0.478,-0.042],[-0.409,1.118],[1.393,0.261],[0.008,0.443],[-0.415,0.224],[0.177,0.989],[-0.553,0.205],[0.83,-0.697],[-0.584,-1.52],[-0.226,1.181],[0.81,0.142],[0.151,0.382],[-0.654,0.506],[-0.356,0.547],[-0.732,-0.926],[-1.232,-0.408],[-0.206,-0.459],[-1.648,-0.628],[1.35,-0.123],[-0.061,-0.657],[0.777,0.332],[0.167,-0.245],[-0.225,-0.135],[-0.925,-0.545],[-1.955,-1.12],[-2.293,1.346],[-2.157,1.221],[-0.268,-0.236],[-1.313,-0.555],[-0.022,-0.1],[0.138,-0.028],[0.427,-2.073],[0.071,-0.116],[-0.722,-1.776],[-0.037,-0.141],[-0.907,-0.173],[-0.692,0.213],[-0.54,0.087],[-0.297,0.501],[-0.655,-0.05],[-0.011,0.48],[0.288,0.017],[0.882,0.027],[-0.352,1.014],[-0.123,-0.333],[-1.546,-0.365]],"o":[[-2.537,1.311],[-0.533,-0.447],[-0.26,-0.301],[-1.094,-0.329],[0.341,-0.81],[0.707,-1.269],[-0.575,-0.227],[-1.111,-0.884],[-0.943,0.955],[-0.241,0.669],[0.395,0.711],[0.427,0.39],[-0.534,0.171],[-0.829,-0.547],[-0.832,0.294],[-0.471,-0.715],[-0.5,1.099],[-1.247,0.245],[-0.048,-0.671],[0.169,-0.709],[-0.939,0.449],[-0.036,-0.763],[0.006,-0.374],[0.66,0.234],[2.466,-1.096],[1.932,-0.925],[0.566,-0.256],[-0.253,-0.701],[-1.646,0.528],[-0.066,-0.227],[1.17,-0.469],[-0.899,-0.068],[0.353,-1.472],[-0.021,-0.258],[-0.573,-0.713],[-0.362,0.144],[-0.746,-0.539],[-0.677,-0.913],[-0.184,0.117],[-0.15,-0.215],[0.343,-0.437],[0.379,-0.574],[-1.163,1.787],[0.365,0.421],[0.34,0.485],[-1.181,0.103],[0.489,-1.337],[-0.008,-0.443],[0.317,-0.406],[0.996,-0.537],[0.553,-0.205],[0.527,0.554],[-1.225,1.029],[1.334,0.029],[0.101,-0.531],[0.292,-0.489],[-0.297,-0.75],[0.541,-0.418],[1.105,-0.333],[0.916,1.159],[-0.418,0.414],[0.739,1.647],[-0.894,1.413],[0.184,0.577],[-0.911,0.169],[-0.194,-0.083],[-0.2,0.293],[0.92,0.553],[1.95,1.149],[2.312,1.324],[2.137,-1.255],[0.268,0.236],[-1.272,1.568],[0.022,0.1],[-0.132,0.06],[-2.012,0.413],[-0.026,0.125],[-1.716,0.952],[0.054,0.134],[-0.568,1.01],[0.072,0.624],[0.518,-0.159],[0.181,1.125],[0.499,-0.842],[0.56,0.043],[0.011,-0.457],[-0.881,-0.053],[0.104,-1.086],[0.307,-0.091],[0.66,1.784],[0.322,0.076]],"v":[[39.006,-37.106],[31.291,-33.385],[29.931,-34.934],[28.948,-35.394],[25.687,-36.454],[26.727,-38.874],[25.781,-40.774],[24.073,-41.504],[20.828,-41.252],[18.343,-38.1],[17.799,-36.089],[19.542,-35.784],[20.815,-34.484],[19.247,-33.981],[16.607,-34.282],[14.131,-33.345],[13.059,-33.187],[11.216,-30.088],[7.474,-29.353],[7.816,-31.283],[7.046,-32.044],[5.546,-32.938],[4.536,-34.714],[5.089,-35.136],[6.838,-35.491],[13.929,-39.33],[19.754,-42.042],[20.462,-43.259],[19.246,-43.306],[14.355,-41.582],[14.582,-42.062],[18.298,-43.533],[16.034,-43.703],[14.357,-45.372],[14.154,-46.108],[10.549,-47.06],[9.474,-47.034],[7.234,-48.573],[5.261,-49.006],[4.655,-49.113],[4.779,-49.714],[5.791,-51.036],[5.882,-52.988],[0.948,-50.08],[1.639,-49.276],[1.007,-46.994],[-0.602,-49.107],[-1.895,-51.392],[-1.918,-52.722],[-0.952,-53.91],[0.048,-56.218],[1.706,-56.832],[1.945,-54.998],[0.775,-50.505],[4.282,-53.014],[3.654,-54.316],[3.373,-55.517],[3.743,-57.504],[4.995,-58.992],[8.088,-58.562],[11.456,-56.712],[11.368,-55.392],[15.125,-52.185],[11.467,-50.687],[12.55,-49.862],[10.127,-50.512],[9.533,-50.535],[9.797,-49.913],[12.569,-48.275],[18.651,-45.306],[25.468,-45.283],[31.935,-48.955],[32.74,-48.246],[32.789,-45.667],[32.856,-45.366],[32.461,-45.191],[29.926,-42.607],[29.719,-42.259],[28.496,-38.9],[28.61,-38.478],[29.495,-36.918],[30.515,-36.219],[32.131,-36.496],[33.43,-35.132],[35.127,-35.639],[36.03,-36.57],[35.243,-36.88],[32.597,-36.972],[33.496,-40.061],[34.262,-39.829],[38.074,-37.406]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.322,1.124],[0.256,-1.458]],"o":[[0.07,1.49],[-1.066,-1.561]],"v":[[71.34,-39.797],[70.92,-35.388]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.216,1.878],[-0.956,0.456],[-0.011,-0.519],[0.185,-0.002]],"o":[[0.821,0.363],[0.011,0.519],[-0.185,0.01],[-1.682,0.015]],"v":[[33.112,-18.441],[35.684,-18.015],[35.716,-16.459],[35.161,-16.43]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.7,-1.134],[-0.15,0.502],[-0.729,0.32],[0.012,-0.882],[0.225,0.118],[0.044,0.092]],"o":[[0.15,-0.502],[0.729,-0.32],[0.585,0.887],[-0.004,0.256],[-0.092,-0.048],[-0.545,-1.13]],"v":[[67.806,-2.887],[68.256,-4.393],[70.443,-5.352],[70.403,-2.706],[69.888,-2.531],[69.659,-2.757]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.888,-0.163],[0.006,-0.366],[0.821,0.363],[0.084,0.154],[-0.154,0.438]],"o":[[-0.006,0.366],[-0.956,0.456],[-0.084,-0.154],[0.154,-0.438],[0.929,0.073]],"v":[[35.702,-19.113],[35.684,-18.015],[33.112,-18.441],[32.86,-18.902],[33.323,-20.215]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.875,-0.27],[0.456,0.539],[-0.712,0.104],[-0.671,-0.512]],"o":[[-0.456,-0.539],[0.648,-0.277],[0.67,0.512],[-0.876,0.27]],"v":[[43.093,-31.255],[41.726,-32.873],[43.708,-33.6],[45.72,-32.064]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.89,0.695,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.505,-0.368],[1.018,0.162],[-1.072,0.451],[-0.456,-0.539]],"o":[[-0.93,-0.41],[0.887,-0.777],[0.456,0.539],[-0.505,0.368]],"v":[[41.579,-30.152],[38.712,-31.166],[41.726,-32.873],[43.093,-31.255]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.507,0.404],[0.246,0.653],[0.671,0.512],[-0.565,-0.446],[-0.518,-0.114],[-0.239,-1.331],[0.263,-0.159]],"o":[[0.037,-0.688],[-0.671,-0.512],[0.667,-0.617],[0.399,0.316],[0.425,1.263],[-0.31,-0.025],[-0.146,-0.771]],"v":[[45.97,-30.046],[45.72,-32.064],[43.708,-33.6],[45.547,-33.45],[46.829,-32.666],[48.203,-28.914],[47.349,-28.691]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.502,0.498],[0.515,-0.452],[-0.123,-1.476],[0.592,-0.271],[-0.132,1.28]],"o":[[-0.072,0.677],[-1.155,1.015],[0.038,0.45],[-0.567,-1.216],[0.183,-1.775]],"v":[[66.18,-5.689],[65.37,-3.933],[63.998,-0.161],[63.605,1.093],[63.144,-2.707]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.194,0.19],[-0.091,1.196],[-0.012,0.44],[-0.487,0],[-0.006,-1.358],[1.545,0.124]],"o":[[0.461,-1.171],[0.033,-0.438],[0.486,0],[0.013,1.358],[0.008,1.647],[-0.03,-0.244]],"v":[[41.961,-18.242],[42.194,-21.832],[42.233,-23.151],[43.693,-23.151],[43.729,-19.078],[42.188,-17.554]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.17,0.265],[-2.5,-0.173],[-0.076,-0.151],[2.757,-0.684],[-0.073,0.288]],"o":[[2.226,-0.873],[0.076,0.151],[-2.587,1.197],[0.074,-0.288],[0.292,-0.077]],"v":[[11.026,-19.991],[17.916,-21.798],[18.145,-21.346],[10.083,-18.66],[10.303,-19.524]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.247,-0.33],[-0.62,-0.309],[-0.392,0.044],[-0.019,-1.738],[2.524,1.191],[-0.056,0.891],[-0.227,-0.081]],"o":[[0.681,0.131],[0.084,0.504],[1.739,-0.195],[-2.556,-1.088],[-0.923,-0.435],[0.227,0.081],[1.036,0.746]],"v":[[5.482,-7.356],[7.432,-6.689],[8.266,-6.226],[10.332,-4.411],[2.568,-7.443],[1.425,-9.311],[2.107,-9.069]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.047,1.267],[-0.59,0.235],[-1.614,0.336],[0.711,-0.381],[1.182,-0.59],[-0.09,-0.787],[0.331,-0.665]],"o":[[0.433,-0.459],[1.502,-0.597],[0.98,0.516],[-1.165,0.624],[-0.704,0.352],[0.11,0.958],[-0.484,-1.243]],"v":[[70.476,-46.942],[72.006,-47.979],[76.463,-49.884],[76.359,-48.578],[72.858,-46.716],[71.809,-45.073],[70.684,-43.144]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.253,-0.377],[0.069,0.666],[-0.161,0.293],[-0.183,0.351],[0.162,0.227],[0.34,0.437],[-1.27,-0.45],[0.172,-0.914]],"o":[[-0.509,-0.5],[0.161,-0.294],[0.315,-0.035],[0.168,-0.32],[-0.322,-0.45],[1.27,0.45],[-0.059,0.884],[-1.253,0.377]],"v":[[64.475,-46.715],[63.788,-48.532],[64.271,-49.411],[65.187,-49.59],[64.787,-50.312],[63.772,-51.627],[67.583,-50.276],[68.233,-47.845]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.277,1.271],[-0.306,-0.907],[0.494,-0.307],[1.012,-0.331],[0.878,0.456]],"o":[[0.306,0.908],[-0.659,0.02],[-1.06,0.201],[-0.971,0.318],[2.32,-1.215]],"v":[[41.932,-16.232],[42.851,-13.509],[41.341,-12.638],[38.454,-11.361],[35.725,-11.584]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.93,-0.41],[0.372,-1.299],[0.104,-0.98],[0.792,-0.725],[0.365,-0.185],[0.392,0.571],[-0.526,1.965],[0.093,0.412],[-0.728,0.838]],"o":[[-1.058,0.994],[-0.786,0.765],[-0.081,1.201],[-0.431,0.018],[-0.491,-0.43],[1.303,-1.551],[0.106,-0.397],[0.436,-0.959],[1.018,0.162]],"v":[[41.579,-30.152],[39.947,-26.483],[39.076,-23.721],[37.332,-21.122],[36.195,-20.677],[34.603,-21.798],[37.385,-27.049],[37.504,-28.246],[38.712,-31.166]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.201,-0.046],[-0.444,-0.681],[0.019,-0.365],[0.281,0.161],[0.221,-0.577],[2.226,-0.873],[-0.185,1.091],[-0.076,0.427],[-1.373,0.698],[0.151,0.897]],"o":[[0.444,0.682],[-0.002,0.366],[-0.016,0.306],[-1.239,-0.708],[-2.5,-0.173],[-1.223,-0.159],[0.073,-0.427],[1.353,-0.736],[0.785,-0.399],[1.16,0.179]],"v":[[18.355,-26.296],[19.686,-24.252],[19.677,-23.153],[19.178,-22.765],[17.916,-21.798],[11.026,-19.991],[9.687,-22.012],[9.913,-23.293],[13.979,-25.491],[15.025,-27.324]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.461,-1.171],[1.303,-0.378],[0.839,-0.009],[0.011,0.519],[-0.006,0.366],[-0.09,0.228],[-0.29,0.583],[-0.081,1.201],[-0.189,0.953],[-1.058,0.994],[-0.505,0.368],[-0.875,0.27],[0.037,-0.688],[1.069,-0.371],[0.111,-0.189],[-0.17,-1.775],[0.033,-0.438]],"o":[[-1.43,-0.071],[-0.776,0.225],[-0.011,-0.519],[0.006,-0.366],[0.233,-0.082],[0.654,-0.311],[0.792,-0.725],[0.553,-0.838],[0.372,-1.299],[0.505,-0.368],[0.875,-0.27],[0.246,0.653],[-1.069,0.371],[-0.247,0.061],[-1.029,1.753],[-0.012,0.44],[-0.091,1.196]],"v":[[41.961,-18.242],[38.045,-17.131],[35.716,-16.459],[35.683,-18.015],[35.702,-19.113],[36.181,-19.583],[37.332,-21.123],[39.076,-23.721],[39.947,-26.484],[41.579,-30.152],[43.093,-31.255],[45.72,-32.064],[45.97,-30.046],[42.765,-28.934],[42.353,-28.466],[42.233,-23.151],[42.194,-21.832]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.425,-1.179],[-0.166,-3.568],[0.601,-0.288],[0.681,0.131],[-0.24,0.419],[0.286,0.39],[0.122,-0.168],[0.68,0.915],[0.501,-0.229],[0.043,-0.489],[0.227,0.081],[0.173,1.19],[-1.48,-0.517],[-0.327,0.601],[0.482,0.436],[1.609,-0.011],[0.575,0.122],[0.319,0.313],[-0.294,0.443],[0.153,0.121],[0.004,0.065],[-0.013,0.31],[-0.859,-0.108]],"o":[[-0.101,3.557],[-0.6,0.288],[-0.62,-0.309],[0.048,-0.57],[0.304,-0.53],[-0.206,-0.28],[-0.756,1.038],[-0.354,-0.477],[-0.543,0.249],[-0.227,-0.081],[-0.586,-1.119],[1.497,-0.365],[0.36,0.126],[0.288,-0.529],[-0.984,-0.891],[-0.575,0.004],[0.028,-0.486],[-0.245,-0.241],[0.192,-0.29],[0.004,-0.065],[0.258,-0.256],[0.56,-0.493],[2.32,1.424]],"v":[[9.67,-18.22],[9.233,-7.553],[7.432,-6.689],[5.482,-7.356],[6.401,-8.401],[6.172,-9.718],[5.639,-9.615],[3.567,-9.724],[2.07,-10.47],[2.107,-9.069],[1.425,-9.311],[0.808,-12.865],[5.265,-12.742],[6.417,-12.7],[6.292,-14.354],[2.963,-16.517],[1.236,-16.863],[0.664,-17.982],[0.342,-18.882],[0.109,-19.357],[0.11,-19.551],[0.307,-20.446],[2.245,-21.408]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.115,1.493],[-0.001,0.602],[-2.278,1.124],[-3.437,1.612],[0.106,-0.397],[1.303,-1.551],[0.3,-0.63],[0.154,-0.438],[3.457,-1.912],[0.554,-0.284],[0.085,0.147]],"o":[[0.001,-0.602],[2.184,-1.316],[3.404,-1.679],[0.093,0.412],[-0.526,1.965],[-0.602,0.386],[-0.154,0.438],[-3.543,1.715],[-0.545,0.301],[-0.085,-0.147],[0.49,-1.475]],"v":[[20.354,-18.235],[20.358,-20.04],[27.201,-23.393],[37.504,-28.246],[37.385,-27.049],[34.603,-21.798],[33.323,-20.215],[32.861,-18.902],[22.053,-14.163],[20.391,-13.31],[20.135,-13.75]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.085,-0.147],[1.853,-1.393],[1.723,0.122],[0.182,0.096],[1.585,-0.286],[-0.101,3.557],[-0.137,0.147],[-2.587,1.197],[-0.831,-0.278],[0.001,-0.602],[1.414,-1.208],[-0.165,-1.781],[-0.232,-0.127],[-0.19,0.169],[-0.603,0.543],[-1.226,-0.559]],"o":[[0.623,2.216],[-1.284,0.965],[-0.221,-0.016],[-1.499,-0.789],[-0.166,-3.568],[0.138,-0.147],[2.758,-0.684],[0.911,0.142],[-0.001,0.602],[-1.771,0.732],[-1.748,0.324],[0.02,0.215],[0.291,0.159],[0.606,-0.539],[1.162,-0.375],[0.085,0.147]],"v":[[20.391,-13.31],[18.873,-8.814],[14.54,-7.082],[13.883,-7.155],[9.233,-7.553],[9.67,-18.22],[10.083,-18.66],[18.145,-21.346],[20.358,-20.04],[20.354,-18.235],[15.899,-14.891],[13.908,-12.244],[14.105,-11.649],[14.779,-11.881],[16.589,-13.509],[20.135,-13.75]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.537,1.311],[-2.889,1.329],[-3.74,1.872],[-1.525,0.85],[-0.509,-0.5],[0.26,-0.134],[9.825,-4.698],[4.61,-2.204],[-0.048,-0.641],[0.444,0.681],[-0.532,0.715],[-0.463,0.221],[-3.019,1.919]],"o":[[2.9,-1.305],[3.799,-1.747],[1.547,-0.774],[0.069,0.666],[-0.249,0.155],[-9.683,4.987],[-4.61,2.204],[-0.424,0.203],[-0.444,-0.681],[0.509,-0.743],[0.532,-0.038],[3.213,-1.538],[2.635,-1.108]],"v":[[39.006,-37.106],[47.703,-41.027],[59.018,-46.439],[63.788,-48.532],[64.475,-46.715],[63.727,-46.252],[34.412,-31.833],[20.579,-25.227],[19.686,-24.252],[18.355,-26.296],[20.343,-27.977],[21.779,-28.52],[31.291,-33.385]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.756,-1.012],[1.265,0.064],[0.425,1.263],[-6.096,2.792],[-0.064,-2.427],[-0.007,-1.406],[0.579,-0.271],[3.752,-1.769]],"o":[[-1.147,-0.349],[-0.239,-1.331],[6.008,-2.969],[2.263,-1.036],[0.038,1.415],[0.004,0.757],[-3.756,1.76],[-1.056,0.498]],"v":[[51.51,-27.546],[48.203,-28.914],[46.829,-32.666],[64.849,-41.58],[67.138,-40.193],[66.909,-35.986],[65.8,-34.596],[54.521,-29.336]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.591,-1.727],[0.508,0.279],[2.625,0.938],[3.26,1.533],[1.275,1.895],[-0.301,1.835],[-0.293,1.191],[-0.621,-0.657],[-2.023,-0.873],[-0.188,-0.082],[-2.194,-0.989],[-0.178,-0.091],[-0.586,-1.119],[-0.923,-0.435],[-2.556,-1.088]],"o":[[-0.289,-0.584],[-2.434,-1.334],[-2.671,-2.562],[-1.137,-1.988],[-1.017,-1.512],[0.145,-0.881],[0.331,1.085],[1.814,1.285],[0.188,0.082],[2.034,1.261],[0.018,0.188],[0.173,1.19],[-0.056,0.891],[2.524,1.191],[0.217,1.827]],"v":[[9.672,0.908],[8.272,-0.14],[0.77,-3.733],[-8.58,-9.082],[-12.025,-15.024],[-13.283,-19.856],[-12.831,-22.831],[-12.092,-20.17],[-6.204,-17.195],[-5.64,-16.948],[0.543,-13.302],[0.808,-12.865],[1.425,-9.311],[2.568,-7.443],[10.332,-4.411]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.799,-1.323],[-1.279,1.059],[0.633,-0.165],[0.296,-0.144]],"o":[[-0.393,-2.938],[-0.685,0.061],[-0.32,0.083],[-1.113,0.541]],"v":[[44.919,-13.898],[48.414,-17.469],[46.455,-17.105],[45.516,-16.777]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.066,0.021],[0.38,-0.131],[-0.081,-0.536],[-0.418,-0.198],[-0.123,0.3],[0.133,0.516]],"o":[[-0.431,0.116],[-0.322,0.111],[0.086,0.571],[0.439,0.208],[0.174,-0.423],[-0.014,-0.055]],"v":[[37.525,-10.181],[36.318,-9.85],[35.588,-9.207],[36.634,-8.328],[37.349,-8.793],[37.78,-10.092]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.298,-0.942],[0.017,-1.435],[-0.783,-0.463],[-0.027,2.015],[-0.862,0.908],[0.921,-0.18]],"o":[[-0.028,1.434],[-0.008,0.718],[-0.34,-2.181],[0.991,-0.703],[-0.944,0.17],[-1.036,0.203]],"v":[[44.525,-23.823],[44.443,-19.52],[45.566,-17.831],[45.321,-24.043],[48.292,-26.182],[45.53,-25.535]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.7,-1.232],[-0.482,-0.472],[-0.396,0.256],[-0.318,0.248],[0.093,0.692],[0.283,-0.151]],"o":[[-0.221,0.348],[0.377,0.369],[0.337,-0.218],[1.085,-0.663],[-0.089,-0.659],[-0.681,0.363]],"v":[[46.428,-20.883],[46.188,-19.754],[47.407,-19.737],[48.365,-20.474],[48.455,-22.661],[47.512,-22.642]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.4,0.058],[-0.223,-0.852],[1.247,-0.549],[0.718,-1.625],[1.746,-2.515],[0.579,0.361],[1.49,1.243],[0.713,-0.134],[0.121,2.402],[-1.38,0.744],[-0.971,0.318],[-1.06,0.201],[0.024,-0.545],[-0.019,-0.888],[-0.925,-0.44],[0.02,0.797],[0.074,1.134],[-0.743,0.154],[-0.991,0.294],[0.548,1.107],[0.498,-0.238],[1.122,-0.352],[0.531,0.853],[0.306,0.908],[-0.085,0.441],[0.008,1.647],[0.013,1.358],[-0.409,1.24],[-0.563,0.539],[-0.451,0.366],[-0.311,-0.025],[-1.147,-0.349],[-0.252,-0.101],[0.425,-1.296],[1.306,-0.347],[-0.018,-0.516],[-0.001,-0.37],[-1.741,0.479]],"o":[[0.416,0.737],[0.361,1.383],[-1.671,0.735],[-1.254,2.84],[-0.348,0.502],[-1.628,-1.016],[-0.653,-0.545],[-2.35,0.442],[1.151,-1.026],[0.878,0.456],[1.012,-0.331],[0.501,0.224],[-0.039,0.886],[0.021,0.947],[0.65,0.309],[-0.028,-1.139],[-0.052,-0.793],[1.011,-0.209],[1.275,-0.378],[-0.233,0.534],[-1.065,0.509],[-0.855,0.268],[-0.306,-0.908],[0.085,-0.441],[1.545,0.124],[-0.006,-1.358],[0.059,-1.272],[0.779,0.169],[0.418,-0.4],[0.262,-0.159],[1.265,0.064],[0.15,0.221],[1.279,0.511],[-0.403,1.228],[-0.525,0.139],[0.013,0.37],[0.003,1.864],[0.387,-0.106]],"v":[[53.323,-18.901],[54.541,-16.673],[53.327,-13.693],[49.902,-10.099],[44.75,-2.499],[43.283,-2.21],[38.373,-5.218],[36.25,-5.437],[32.141,-8.669],[35.725,-11.584],[38.454,-11.361],[41.341,-12.638],[41.982,-11.487],[41.977,-8.823],[43.246,-6.665],[44.186,-7.238],[44.167,-10.654],[45.153,-11.931],[48.154,-12.709],[49.416,-15.316],[48.342,-14.076],[45.076,-12.708],[42.851,-13.509],[41.932,-16.232],[42.188,-17.554],[43.729,-19.078],[43.693,-23.151],[44.038,-26.95],[46.004,-27.588],[47.349,-28.691],[48.203,-28.914],[51.51,-27.546],[52.114,-27.085],[53.085,-25.024],[50.662,-22.504],[49.95,-21.546],[49.951,-20.436],[52.125,-18.72]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.416,0.737],[-2.042,1.047],[-2.097,1.024],[0.005,-0.76],[0.037,-3.524],[0.171,-0.796],[1.48,-0.538],[2.938,-1.405],[5.887,-2.895],[2.438,-1.174],[0.346,0.319],[0.131,-0.177],[1.52,-0.566],[1.301,-0.535],[-0.005,0.872],[-0.025,4.6],[-0.803,0.376],[-3.768,1.451],[-2.35,0.442],[-0.653,-0.545],[-1.628,-1.016],[-0.348,0.502],[-1.254,2.84],[-1.671,0.735],[0.361,1.383]],"o":[[1.936,-1.258],[2.076,-1.064],[0.711,-0.347],[-0.024,3.524],[-0.008,0.784],[-0.345,1.605],[-3.075,1.117],[-5.918,2.829],[-2.428,1.194],[-0.28,0.135],[-0.158,-0.146],[-1.023,1.377],[-1.33,0.495],[-0.668,0.274],[0.027,-4.6],[0.004,-0.807],[3.655,-1.71],[0.121,2.402],[0.713,-0.134],[1.49,1.243],[0.579,0.361],[1.746,-2.515],[0.718,-1.625],[1.247,-0.549],[-0.223,-0.852]],"v":[[53.323,-18.901],[59.493,-21.946],[65.825,-24.932],[66.687,-24.385],[66.668,-13.812],[66.849,-11.501],[64.012,-8.34],[55.116,-4.281],[37.455,4.4],[30.15,7.94],[29.244,8.039],[28.759,8.069],[24.704,10.65],[20.924,12.508],[19.906,11.858],[19.936,-1.942],[21.037,-3.854],[32.141,-8.669],[36.25,-5.437],[38.373,-5.218],[43.283,-2.21],[44.75,-2.499],[49.902,-10.099],[53.327,-13.693],[54.541,-16.673]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.063,0.077],[0.137,-0.016]],"o":[[0.01,0.137],[0.063,-0.077]],"v":[[-45.559,-33.153],[-45.748,-32.922]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.035,-0.152],[0.091,0.051]],"o":[[-0.091,-0.051],[0.127,-0.014]],"v":[[55.149,-75.478],[54.875,-75.63]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.151,-0.506],[-1.036,0.35]],"o":[[-0.77,-0.714],[-0.28,0.399]],"v":[[56.943,-63.674],[57.273,-64.998]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.164,0.361],[-1.166,-0.007]],"o":[[1.166,0.007],[-1.167,0.14]],"v":[[17.234,-83.433],[20.732,-83.413]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.062,0.274],[1.087,-0.263],[0.562,-0.146],[-0.016,0.376]],"o":[[0.1,1.186],[-0.564,0.136],[0.016,-0.376],[0.974,-0.478]],"v":[[17.8,-81.213],[16.449,-79.238],[14.764,-78.802],[14.813,-79.929]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.519,0.202],[0.86,0.459],[-0.21,0.41],[-0.289,-0.088],[-0.105,-0.036],[0.42,-2.155]],"o":[[0.759,-0.965],[-0.222,-0.118],[0.154,-0.3],[0.106,0.032],[2.018,0.692],[-0.494,0.335]],"v":[[9.677,-88.289],[9.05,-90.254],[8.573,-90.824],[9.377,-90.935],[9.691,-90.827],[11.202,-88.361]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.977,-0.589],[-0.138,0.407],[-0.449,0.523],[-0.439,0.831],[-0.448,-0.407]],"o":[[-0.303,0.005],[0.2,-0.589],[0.554,0.319],[0.566,0.094],[-0.977,0.589]],"v":[[14.124,-81.706],[13.548,-82.122],[13.926,-83.912],[15.477,-84.067],[17.057,-83.474]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.127,0.233],[-0.35,0.531],[-0.39,0.131],[-0.466,0.02],[0.558,-0.948],[0.431,-0.006]],"o":[[0.486,-0.405],[0.39,-0.131],[0.466,-0.019],[-0.516,0.985],[-0.431,0.006],[-0.266,-0.139]],"v":[[-5.001,-68.277],[-3.72,-69.656],[-2.55,-70.049],[-1.152,-70.108],[-3.264,-67.638],[-4.557,-67.621]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.541,1.25],[-0.493,-0.22],[-0.816,-0.172],[-0.87,-0.129],[0.366,-0.252]],"o":[[0.494,-0.362],[0.737,0.328],[0.723,0.556],[-0.237,0.381],[-1.772,-0.852]],"v":[[-44.419,-0.648],[-42.978,-0.602],[-40.863,0.542],[-38.409,1.384],[-39.336,2.311]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.035,-0.941],[0.088,-0.094],[0.818,0.748],[-0.195,0.104],[-0.626,0.279],[-0.18,0.045]],"o":[[-0.088,0.094],[-1.033,-0.399],[0.196,-0.103],[0.728,-0.084],[0.18,-0.045],[0.035,0.941]],"v":[[1.244,22.267],[0.981,22.55],[-1.805,20.844],[-1.218,20.533],[0.599,19.579],[1.138,19.445]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.224,-0.015],[0.079,0.278],[-1.605,-0.445],[0.486,-0.404]],"o":[[-0.079,-0.278],[1.65,-0.07],[-0.35,0.531],[-1.172,-0.166]],"v":[[-8.377,-69.254],[-8.613,-70.089],[-3.72,-69.656],[-5.001,-68.277]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.884,-0.219],[0.785,0.092],[-0.585,0.222],[-0.479,0.178],[-0.158,0.679],[0.455,0.352],[0.143,0.33],[-0.746,-0.461],[0.097,-0.691],[0.753,-0.204]],"o":[[-0.724,-0.085],[0.557,-0.535],[0.478,-0.181],[0.712,-0.265],[0.164,-0.704],[-0.256,-0.198],[0.896,0.119],[0.562,0.347],[-0.104,0.741],[-0.879,0.239]],"v":[[54.444,-70.789],[52.211,-71.051],[54.067,-71.57],[55.541,-72.008],[56.83,-73.556],[55.849,-74.868],[55.116,-75.511],[57.516,-74.482],[58.39,-72.943],[57.096,-71.449]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.729,-0.693],[0.391,-0.228],[1.178,1.379],[-1.219,-0.531]],"o":[[-0.391,0.228],[-1.661,-0.061],[0.87,-0.897],[0.904,0.394]],"v":[[27.555,-81.456],[26.382,-80.773],[21.93,-82.402],[25.038,-83]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.557,0.064],[0.463,-0.851],[0.711,0.509],[-0.447,1.351],[-0.411,-0.758]],"o":[[-0.246,0.941],[-0.834,-0.274],[0.104,-1.408],[0.644,0.578],[0.247,0.456]],"v":[[-31.52,1.845],[-32.621,4.517],[-34.921,3.31],[-34.221,-0.85],[-32.609,1.141]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.115,-1.699],[0.007,-0.666],[0.806,0.773],[-0.246,0.941],[-0.077,0.816],[-0.084,0.38],[-0.039,-0.297]],"o":[[-0.007,0.666],[-1.001,-0.346],[0.463,-0.851],[0.304,-0.819],[0.084,-0.38],[0.288,0.122],[0.224,1.674]],"v":[[-29.723,3.834],[-29.743,5.832],[-32.621,4.517],[-31.52,1.845],[-31.549,-0.601],[-31.298,-1.74],[-30.839,-1.088]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.041,0.222],[-0.007,0.429],[-0.391,0.228],[-1.226,-0.683],[-0.193,-0.947],[1.019,0.545]],"o":[[-0.229,-0.318],[0.391,-0.228],[1.244,0.651],[0.797,0.444],[-1.207,0.165],[-0.908,-0.486]],"v":[[26.873,-79.726],[26.382,-80.773],[27.555,-81.456],[31.283,-79.494],[32.892,-77.474],[29.631,-78.337]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.637,0.338,0.017,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.701,0.795],[-1.408,0.178],[-0.537,-0.309],[0.104,-0.305],[0.216,-0.004],[0.514,0],[0.873,0.541],[0.737,0.049],[0.466,-0.02]],"o":[[1.237,0.599],[0.539,0.307],[0.236,0.136],[-0.089,0.26],[-0.514,0.009],[-0.934,-0.123],[-0.647,-0.401],[-0.466,0.02],[0.623,-0.904]],"v":[[-0.034,-71.862],[3.882,-70.996],[5.498,-70.075],[5.824,-69.46],[5.271,-69.208],[3.729,-69.204],[0.925,-69.497],[-1.151,-70.108],[-2.55,-70.049]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.161,0.649],[-0.069,-0.209],[-0.385,-0.252],[-1.556,-0.935],[0.152,-0.762],[0.211,0.882],[0.142,0.016],[1.195,0.701],[0.332,-0.161],[-0.001,-0.379],[-0.244,-3.874],[0.244,-0.038],[-0.122,4.541]],"o":[[0.069,0.209],[0.083,0.568],[1.519,0.994],[0.659,0.396],[-0.616,0.084],[-0.036,-0.15],[-1.49,-0.164],[-0.306,-0.18],[-0.419,0.204],[0.013,3.878],[-0.244,0.038],[0.134,-4.541],[0.018,-0.669]],"v":[[-44.838,-48.905],[-44.63,-48.277],[-43.649,-47.3],[-39.051,-44.379],[-38.224,-42.747],[-39.688,-43.387],[-40.064,-43.757],[-43.73,-45.712],[-44.68,-46.162],[-44.884,-45.052],[-44.731,-33.42],[-45.464,-33.307],[-45.069,-46.93]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.986,0.529,0.388,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.071,-0.558],[0.373,-0.215],[1.703,0.404],[-0.053,0.487],[-0.421,-0.065],[-1.422,0.932],[1.14,0.843],[0.149,0.599],[-1.662,-0.163],[-0.202,-0.36],[0.2,-0.589],[-0.303,0.005]],"o":[[-0.374,0.215],[-1.629,-0.742],[-0.381,-0.09],[0.065,-0.599],[1.427,0.219],[-1.173,-0.958],[-0.508,-0.376],[1.553,0.528],[0.429,0.042],[-0.449,0.523],[-0.138,0.407],[-0.041,0.59]],"v":[[14.581,-80.102],[13.461,-79.458],[8.33,-80.566],[7.383,-81.061],[8.473,-81.382],[12.737,-81.954],[9.353,-84.69],[8.343,-86.073],[13.069,-84.722],[13.926,-83.912],[13.548,-82.122],[14.124,-81.706]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,0.666],[-1.251,-0.884],[-1.661,-0.81],[-0.157,-0.408],[0,0],[0.74,-0.614],[2.34,1.633]],"o":[[1.607,0.253],[1.548,1.094],[0.387,0.189],[0,0],[-0.943,-0.113],[-2.598,-1.157],[0.007,-0.666]],"v":[[-29.723,3.834],[-25.529,5.89],[-20.59,8.435],[-19.719,9.165],[-19.721,9.167],[-22.258,9.873],[-29.743,5.832]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.721,-0.543],[-0.525,-0.75],[0.324,-1.257],[0.737,0.328],[0.494,-0.362],[-1.199,1.622],[-0.054,-0.006],[-0.236,0.114]],"o":[[1.077,1.376],[0.776,0.245],[-2.543,0.198],[-0.817,-0.173],[-0.493,-0.22],[-1.46,-1.685],[0.054,0.004],[0.099,0.184],[0,0]],"v":[[-44.278,-5.711],[-40.228,-2.676],[-38.061,-1.519],[-40.863,0.543],[-42.978,-0.602],[-44.419,-0.648],[-44.837,-5.956],[-44.676,-5.941],[-44.221,-5.733]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.15,-0.502],[-0.008,-0.036],[-2.376,0.33],[-0.179,-0.168],[1.347,0.449],[0.384,-0.225],[1.258,-0.195],[-0.085,0.325],[0.038,0.45],[-1.155,1.015],[-0.072,0.677],[-0.755,-0.331]],"o":[[0.002,0.037],[0.541,2.285],[0.228,-0.032],[-1.003,0.701],[-0.463,-0.154],[-1.078,0.632],[0.086,-0.325],[0.592,-0.271],[-0.123,-1.476],[0.515,-0.452],[1.074,-0.179],[-0.15,0.502]],"v":[[67.806,-2.887],[67.813,-2.776],[70.731,-0.822],[71.354,-0.672],[68.013,0.294],[66.789,0.662],[63.349,2.068],[63.605,1.093],[63.998,-0.161],[65.37,-3.933],[66.18,-5.689],[68.256,-4.393]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.351,0.095,0.214,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.236,0.57],[0.158,0.067],[-1.982,0.404],[-0.178,0.035],[-0.836,-0.412],[-0.36,-1.068],[0.647,1.216],[0.188,-0.195],[0.259,-0.862],[-0.716,0.072],[0.649,0.695]],"o":[[-0.158,-0.067],[1.224,-1.98],[0.178,-0.036],[0.099,1.432],[0.728,0.624],[-1.026,0.039],[-0.106,-0.199],[-0.575,0.595],[0.706,0.428],[-1.034,1.055],[-0.976,-1.045]],"v":[[-39.332,-52.214],[-39.806,-52.416],[-34.504,-54.968],[-33.97,-55.072],[-31.735,-53.459],[-29.522,-51.622],[-32.297,-52.489],[-32.88,-52.56],[-34.492,-50.669],[-32.495,-50.882],[-35.851,-50.119]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.317,-0.824],[0.123,1.408]],"o":[[1.498,-0.15],[-0.65,0.427]],"v":[[68.112,-53.228],[69.608,-54.93]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.444,0.075],[-0.074,-0.517],[-0.54,-0.044],[0.028,0.473]],"o":[[-0.634,0.01],[0.075,0.523],[0.53,0.043],[-0.038,-0.635]],"v":[[67.628,-56.31],[66.434,-55.519],[67.793,-54.775],[68.782,-55.614]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.817,-0.297],[-0.054,-0.047],[-0.023,0.038],[0.071,0.016],[0.925,0.159]],"o":[[0.054,0.047],[0.023,-0.038],[-0.071,-0.016],[-0.424,-0.776],[0.4,0.801]],"v":[[66.229,-52.951],[66.391,-52.809],[66.459,-52.924],[66.247,-52.972],[64.386,-54.574]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.306,0.163],[-1.087,1.067],[-1.667,-1.493],[0.315,-0.337],[0.76,-0.603],[1.265,0.789],[1.229,0.734],[-0.057,0.231]],"o":[[1.414,-0.488],[2.425,0.019],[-0.315,0.337],[-0.915,0.291],[-1.114,0.884],[-1.215,-0.757],[0.057,-0.231],[0.306,-0.163]],"v":[[63.325,-55.664],[67.168,-57.833],[72.946,-54.863],[72,-53.853],[69.486,-52.539],[65.922,-52.278],[62.237,-54.484],[62.408,-55.176]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.812,0.442,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.097,0.812],[0.463,1.542],[-3.122,-1.747],[-0.164,-0.379],[1.414,-0.488]],"o":[[0.096,-1.614],[3.127,1.739],[0.313,0.175],[-1.087,1.067],[-1.758,-1.404]],"v":[[57.538,-58.978],[56.927,-63.703],[66.304,-58.481],[67.168,-57.833],[63.325,-55.664]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.266,-1.099],[-0.215,1.784],[-1.444,-0.434],[-0.563,0.296],[-0.34,0.135],[-0.294,-1.534],[-0.364,-0.404]],"o":[[-1.233,-0.953],[0.181,-1.501],[0.682,0.205],[0.327,-0.172],[1.471,-0.584],[0.098,0.51],[-2.077,1.432]],"v":[[17.289,24.534],[15.221,20.774],[17.99,18.81],[19.784,18.53],[20.753,17.992],[23.262,19.355],[23.826,20.778]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.108,-1.763],[0.31,-0.288],[1.502,-0.597],[0.433,-0.459],[0.8,0.17],[-0.059,0.885],[-1.03,0.465],[-0.026,0.978],[-0.315,0.337],[-0.675,-0.288]],"o":[[-0.416,0.012],[-1.614,0.336],[-0.59,0.235],[-0.595,-0.68],[0.172,-0.914],[1.004,-0.524],[0.903,-0.408],[0.315,-0.337],[0.655,0.334],[1.587,0.676]],"v":[[77.562,-50.309],[76.463,-49.884],[72.006,-47.979],[70.476,-46.942],[68.233,-47.845],[67.583,-50.277],[70.601,-51.834],[72,-53.853],[72.946,-54.863],[74.915,-53.869]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.069,0.209],[-0.937,0.546],[-0.947,0.322],[-0.158,-0.067],[-0.326,-0.306],[-0.483,-0.489],[0.671,-1.006],[-0.442,1.283],[-0.749,-0.38],[1.618,-0.711],[0.506,0.338],[1.187,0.581],[1.3,0.038]],"o":[[0.451,-1.116],[0.852,-0.496],[0.158,0.067],[0.006,0.406],[0.501,0.469],[-0.573,0.859],[1.775,-0.138],[1.009,-0.139],[0.006,1.756],[-0.531,0.233],[-1.105,-0.737],[-1.071,-0.524],[-0.069,-0.209]],"v":[[-44.838,-48.905],[-42.404,-51.001],[-39.806,-52.416],[-39.333,-52.214],[-38.939,-51.131],[-37.486,-49.67],[-39.303,-46.946],[-36.425,-49.408],[-34.17,-48.281],[-36.594,-44.639],[-38.005,-44.645],[-41.391,-46.741],[-44.63,-48.277]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.052,-0.05],[0.488,-0.149],[0.793,0.723],[0.292,1.374],[-1.069,0.875],[-1.728,-0.884],[-0.363,-0.024],[-0.431,-1.138],[-0.079,-0.278],[1.457,-0.373]],"o":[[-0.504,0.096],[-1.039,0.317],[-1.117,-0.077],[-0.29,-1.365],[1.506,-1.233],[0.311,0.159],[1.178,0.078],[0.079,0.278],[0.147,1.298],[-0.06,0.015]],"v":[[-10.11,-66.381],[-11.62,-66.084],[-14.349,-66.695],[-16.635,-68.38],[-15.604,-71.626],[-12.159,-72.005],[-11.084,-71.813],[-8.613,-70.089],[-8.377,-69.254],[-9.954,-66.526]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.006,0.146],[-1.013,-0.506],[-1.322,-0.731],[-0.005,-0.078],[0.649,0.259],[0.024,-0.515],[0.038,-1.066],[0.058,-4.729],[-1.226,0.225],[-0.762,0.121],[-0.224,0.004],[-0.255,-0.951],[-0.081,-0.3],[0.104,-1.408],[1.232,1.395],[-0.237,0.381],[0.462,1.037],[0.776,0.245],[1.077,1.376],[-0.803,-0.249],[-0.004,1.343],[0,4.076],[-0.007,1.519],[1.234,0.442],[0.874,0.231]],"o":[[1.171,0.152],[1.35,0.674],[0.005,0.079],[-0.665,-0.22],[-0.497,-0.198],[-0.05,1.066],[-0.17,4.729],[-0.015,1.233],[0.759,-0.139],[0.224,-0.004],[0.037,0.982],[0.081,0.3],[-0.447,1.351],[-1.592,0.201],[0.366,-0.252],[0.766,-0.89],[-0.525,-0.75],[-1.721,-0.543],[0.905,-0.099],[1.275,0.395],[0.011,-4.076],[0,-1.519],[0.005,-1.177],[-0.821,-0.294],[-0.006,-0.146]],"v":[[-44.417,-26.905],[-41.299,-25.537],[-37.327,-23.357],[-37.312,-23.121],[-39.303,-23.792],[-39.991,-23.346],[-40.194,-20.151],[-39.977,-5.973],[-37.838,-4.274],[-35.553,-4.642],[-34.881,-4.653],[-34.466,-1.75],[-34.221,-0.85],[-34.921,3.31],[-39.336,2.311],[-38.409,1.384],[-38.061,-1.519],[-40.228,-2.676],[-44.278,-5.711],[-41.855,-5.002],[-40.437,-6.014],[-40.432,-18.243],[-40.431,-22.801],[-42.026,-25.288],[-44.398,-26.466]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.171,0.152],[0.088,0.044],[0.297,1.696],[-0.147,0.289],[0.01,0.137],[-0.027,0.054],[-0.245,0.038],[-0.03,-0.069],[-0.283,-0.22],[-3.013,-0.455],[-0.033,-0.63],[0.679,-1.031],[1.35,0.674]],"o":[[-0.068,-0.085],[-2.205,-1.098],[-0.045,-0.255],[0.137,-0.016],[0.036,-0.049],[0.244,-0.038],[0.03,0.069],[0.092,0.386],[2.333,1.811],[-0.463,0.499],[0.062,1.18],[-1.322,-0.731],[-1.013,-0.506]],"v":[[-44.417,-26.905],[-44.623,-27.156],[-46.164,-32.06],[-45.748,-32.922],[-45.559,-33.153],[-45.464,-33.307],[-44.73,-33.42],[-44.641,-33.213],[-43.975,-32.356],[-36.197,-28.465],[-36.648,-26.724],[-37.327,-23.357],[-41.299,-25.537]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.585,0.887],[-1.265,1.399],[-0.191,0.006],[0.009,1.129],[-0.001,5.824],[-0.501,0.54],[0.028,-4.113],[-0.021,-3.857],[1.292,-0.525],[1.509,-0.776],[0.228,-0.032],[0.541,2.285],[0.002,0.037],[-0.545,-1.13],[-0.092,-0.048],[-0.004,0.256]],"o":[[1.863,-0.264],[0.14,-0.155],[1.387,-0.041],[-0.049,-5.823],[0,-0.663],[-0.391,4.111],[-0.026,3.857],[0.007,1.25],[-1.566,0.636],[-0.179,-0.168],[-2.376,0.33],[-0.008,-0.036],[0.7,-1.134],[0.044,0.092],[0.225,0.118],[0.012,-0.882]],"v":[[70.443,-5.352],[75.133,-7.838],[75.69,-8.166],[77.146,-10.179],[77.124,-27.65],[77.589,-29.529],[77.532,-17.19],[77.56,-5.62],[75.894,-2.966],[71.354,-0.672],[70.731,-0.822],[67.813,-2.776],[67.806,-2.887],[69.659,-2.757],[69.888,-2.531],[70.403,-2.706]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.33,0.385],[1.089,0.622],[-0.083,0.436],[-0.315,0.071],[-0.49,0.161],[-0.882,0.807],[-2.96,-1.587],[-1.215,-0.702],[0.741,-0.595],[0.088,-0.349],[0.607,0.307],[1.646,1.097]],"o":[[-1.093,-0.614],[-0.271,-0.155],[0.08,-0.419],[0.311,-0.07],[-1.241,-0.631],[3.072,1.371],[1.235,0.662],[0.448,0.433],[-0.224,0.18],[-0.271,0.224],[-1.778,-0.899],[-1.207,-0.804]],"v":[[37.303,-70.112],[34.025,-71.957],[33.39,-72.611],[34.208,-73.017],[35.307,-73.371],[34.895,-75.529],[43.824,-70.861],[47.47,-68.763],[47.595,-67.346],[47.308,-66.326],[46.418,-65.775],[41.113,-68.515]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,-0.318],[-0.184,-0.608],[0.758,-0.022],[0.971,-0.47],[1.907,1.517],[0.763,0.201],[-0.219,0.514],[-0.564,0.136],[0.1,1.186],[-0.738,0.037],[-0.761,0.531],[-1.661,-0.061]],"o":[[-0.107,0.634],[0.243,0.806],[-1.117,0.032],[-2.185,1.058],[-0.569,-0.453],[-0.717,-0.189],[0.562,-0.146],[1.087,-0.263],[0.329,-0.744],[0.813,-0.041],[1.178,1.379],[-0.007,0.429]],"v":[[26.873,-79.726],[27.024,-77.86],[26.144,-76.589],[23.091,-75.664],[16.967,-76.367],[15.106,-77.54],[14.764,-78.802],[16.449,-79.238],[17.8,-81.213],[19.496,-82.14],[21.93,-82.402],[26.382,-80.772]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.171,0.741,0.238,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.003,-0.084],[0.971,0.24],[-0.002,-0.694],[0.016,-5.331],[-0.392,-0.353],[0.054,-1.285],[0.065,-1.358],[0.33,-0.168],[1.948,1.54],[-0.088,0.094],[-0.497,-0.296],[-0.625,0.828],[0.141,0.557],[0.15,0.572],[-0.441,-0.368],[0.097,0.23],[-0.078,3.085],[-0.046,2.409],[0.4,1.222],[0.407,0.348],[0.454,-0.145],[0.004,-0.443],[0.14,-5.143],[0.019,-0.296],[0.333,0.045],[0.034,0.198],[-0.001,0.074],[-0.189,5.184],[0.733,0.732],[0.172,0.207],[-0.007,0.155],[-2.434,-1.334],[-0.289,-0.584]],"o":[[-1.044,0],[-0.572,-0.142],[0.019,5.331],[-0.002,0.595],[0.973,0.876],[-0.058,1.358],[-0.018,0.369],[-2.248,-0.999],[0.088,-0.094],[0.587,0.134],[0.826,0.492],[0.185,-0.514],[0.168,-0.619],[0.92,-0.202],[0.397,-0.115],[-1.222,-2.911],[0.061,-2.408],[0.023,-1.208],[-0.168,-0.512],[-0.407,-0.348],[-0.55,0.175],[-0.044,5.142],[-0.008,0.296],[-0.017,0.275],[-0.306,-0.041],[-0.012,-0.072],[0.079,-5.184],[0.037,-1.012],[-0.172,-0.207],[0.007,-0.155],[2.625,0.938],[0.508,0.279],[-0.003,0.084]],"v":[[9.663,1.16],[6.882,0.15],[6.1,0.646],[6.102,16.64],[6.787,17.962],[8.112,21.234],[7.894,25.307],[7.41,26.113],[0.981,22.55],[1.244,22.267],[2.759,23.111],[4.961,22.777],[5.171,21.19],[4.913,19.445],[6.216,20.561],[6.386,19.946],[5.211,10.893],[5.238,3.666],[5.239,0.04],[4.457,-1.269],[3.056,-1.81],[2.787,-0.527],[2.995,14.894],[2.982,15.783],[2.537,16.293],[2.326,15.748],[2.324,15.526],[2.116,-0.02],[1.264,-2.649],[0.748,-3.269],[0.77,-3.733],[8.272,-0.14],[9.672,0.908]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.099,1.432],[-6.043,2.936],[0.295,1.755],[-1.039,0.317],[-0.504,0.096],[0.158,-0.527],[0.647,-0.525],[0.088,-0.77],[0.571,-0.326],[1.617,-0.882],[0.619,-0.592],[1.322,-0.722],[1.885,-1.454]],"o":[[6.043,-2.935],[1.651,-0.802],[0.793,0.723],[0.488,-0.149],[-0.159,0.528],[-0.651,0.52],[-0.526,0.427],[-0.2,-0.343],[-1.598,0.914],[-0.778,0.436],[-1.481,-0.09],[-2.128,0.998],[-0.836,-0.412]],"v":[[-33.97,-55.072],[-15.84,-63.879],[-14.349,-66.695],[-11.62,-66.084],[-10.111,-66.381],[-10.586,-64.798],[-12.537,-63.237],[-13.756,-61.67],[-14.645,-62.077],[-19.488,-59.421],[-21.289,-57.589],[-25.518,-56.766],[-31.735,-53.459]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.418,0.273,0.333,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.029,1.302],[0.134,0.122],[-0.776,0.367],[-0.248,0.22],[-0.374,0.215],[-0.077,-0.058],[0.016,-0.376],[-0.717,-0.189],[-0.569,-0.453],[-2.185,1.058],[-1.117,0.032],[0.243,0.806],[-0.107,0.634],[-0.908,-0.486],[-1.207,0.165],[-0.435,-0.889],[-1.241,-0.631],[0.311,-0.07],[0.08,-0.419],[-0.271,-0.155],[-1.093,-0.614],[0.448,-0.409],[0.718,-0.097],[0.931,0.585],[0,0],[1.381,0.663],[2.343,-1.282],[0.497,-0.008],[0.372,-0.071],[0.288,0.11]],"o":[[-0.11,-0.148],[-0.626,-0.572],[0.288,-0.136],[0.373,-0.215],[0.077,0.058],[-0.016,0.376],[-0.218,0.514],[0.763,0.201],[1.907,1.517],[0.971,-0.47],[0.758,-0.022],[-0.184,-0.608],[1.041,0.222],[1.019,0.545],[0.678,0.638],[-0.882,0.807],[-0.49,0.161],[-0.315,0.071],[-0.083,0.436],[1.089,0.622],[-0.422,0.468],[-0.499,-0.463],[-0.932,-0.585],[0,0],[-1.339,-0.763],[-2.454,-0.706],[-0.497,0.008],[-0.372,0.071],[-0.288,-0.11],[-0.894,-1.424]],"v":[[12.824,-77.012],[12.491,-77.453],[12.71,-78.811],[13.461,-79.458],[14.581,-80.102],[14.813,-79.929],[14.764,-78.802],[15.106,-77.54],[16.967,-76.367],[23.091,-75.664],[26.144,-76.589],[27.024,-77.86],[26.873,-79.726],[29.631,-78.337],[32.892,-77.474],[34.895,-75.529],[35.307,-73.371],[34.208,-73.017],[33.39,-72.611],[34.025,-71.957],[37.303,-70.112],[35.724,-69.425],[33.954,-70.118],[31.16,-71.872],[31.083,-71.879],[26.843,-73.63],[19.623,-73.228],[18.131,-73.206],[17.016,-72.994],[16.154,-73.325]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.246,0.151,0.25,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.057,-0.246],[0.964,-0.239],[1.328,0.906],[0.07,1.49],[-0.43,0.089],[0.019,0.57],[0.536,0.107],[0.524,0.506],[0.11,0.958],[-0.704,0.352],[-1.165,0.624],[0.98,0.516],[-0.416,0.012],[-0.008,-0.848],[-0.005,-3.834]],"o":[[-1.027,-0.011],[-1.464,0.363],[0.256,-1.458],[0.42,-0.14],[0.581,-0.12],[-0.019,-0.566],[-0.705,-0.141],[0.331,-0.665],[-0.09,-0.787],[1.182,-0.59],[0.711,-0.381],[0.31,-0.288],[0.404,0.764],[0.036,3.834],[0,0.246]],"v":[[78.048,-35.626],[75.159,-34.904],[70.92,-35.388],[71.34,-39.797],[72.601,-40.207],[73.385,-41.222],[72.553,-42.246],[70.684,-43.144],[71.809,-45.073],[72.858,-46.716],[76.359,-48.578],[76.463,-49.884],[77.562,-50.309],[78.165,-47.867],[78.213,-36.365]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.425,0.22,0.049,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.054,0.003],[-0.147,6.837],[-0.821,-0.294],[0.005,-1.177],[0,-1.519],[0.011,-4.076],[1.275,0.395],[0.905,-0.099],[0,0],[0.196,-0.027]],"o":[[0.147,-6.837],[0.874,0.231],[1.234,0.442],[-0.007,1.519],[0,4.076],[-0.004,1.343],[-0.803,-0.249],[0,0],[-0.101,-0.181],[-0.054,-0.007]],"v":[[-44.837,-5.956],[-44.398,-26.466],[-42.026,-25.288],[-40.431,-22.801],[-40.432,-18.243],[-40.437,-6.014],[-41.855,-5.002],[-44.278,-5.711],[-44.221,-5.733],[-44.676,-5.941]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.044,0],[0.003,-1.124],[-0.002,-7.595],[0.278,0.115],[0.569,0.507],[-0.018,0.369],[-0.058,1.358],[0.973,0.876],[-0.002,0.595],[0.019,5.331],[-0.572,-0.142]],"o":[[0.295,1.072],[-0.018,7.595],[-0.231,0.491],[-0.7,-0.291],[0.33,-0.168],[0.065,-1.358],[0.054,-1.285],[-0.392,-0.353],[0.016,-5.331],[-0.002,-0.694],[0.971,0.24]],"v":[[9.663,1.16],[10.129,4.436],[10.124,27.222],[9.331,27.279],[7.41,26.113],[7.894,25.307],[8.112,21.234],[6.787,17.962],[6.102,16.64],[6.1,0.646],[6.882,0.15]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.237,0.599],[-0.528,0.208],[-1.559,0.032],[-0.219,0.536],[-1.731,-0.127],[-0.054,0.6],[0.313,0.128],[1.96,0.511],[0.08,0.211],[-2.384,1.88],[-1.588,-0.163],[-0.508,-0.376],[-1.173,-0.958],[1.427,0.219],[0.065,-0.599],[-0.381,-0.09],[-1.629,-0.742],[0.288,-0.136],[-0.626,-0.572],[-0.11,-0.148],[-0.075,-0.438],[1.228,-0.54],[0.709,0.355],[0.358,-1.958],[-0.216,-0.486],[0.745,0.142],[0.329,-0.786]],"o":[[-0.206,-0.1],[1.435,-0.565],[0.653,-0.014],[0.69,-1.691],[0.443,0.032],[0.064,-0.703],[-1.886,-0.775],[-0.187,-0.049],[-1.013,-2.685],[1.507,-1.188],[0.149,0.599],[1.14,0.843],[-1.422,0.932],[-0.421,-0.065],[-0.053,0.487],[1.703,0.404],[-0.248,0.22],[-0.776,0.367],[0.134,0.122],[-0.05,0.447],[0.225,1.313],[-0.568,-0.581],[-1.736,-0.869],[-0.518,-0.036],[0.414,0.933],[-0.485,-0.092],[-1.408,0.178]],"v":[[-0.034,-71.862],[-0.223,-72.309],[4.247,-73.447],[5.394,-74.215],[8.597,-76.275],[9.673,-76.702],[8.772,-77.099],[2.926,-78.755],[2.541,-79.074],[3.753,-85.358],[8.343,-86.073],[9.353,-84.69],[12.737,-81.954],[8.473,-81.382],[7.383,-81.061],[8.33,-80.566],[13.461,-79.458],[12.71,-78.811],[12.491,-77.453],[12.824,-77.012],[12.957,-75.7],[11.46,-72.984],[9.473,-74.305],[6.556,-72.762],[6.096,-72.104],[5.296,-71.278],[3.882,-70.996]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.013,0.025],[-0.883,0.819],[0.533,-1.515],[0.014,-0.024]],"o":[[1.116,-0.318],[-1.544,-0.07],[-0.014,0.024],[0.013,-0.025]],"v":[[15.463,-85.47],[18.209,-87.416],[15.465,-85.468],[15.423,-85.396]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.166,0.007],[0.06,0.012],[0.565,0.094],[0.995,1.216],[0.098,0.514],[2.018,0.692],[0.106,0.032],[0.154,-0.3],[-0.222,-0.118],[0.759,-0.965],[0.66,-0.258],[0.836,1.506],[-1.218,0.456],[-1.083,0.376],[-0.109,-2.345],[0.033,-0.331],[-0.475,-0.206],[-0.274,0.262],[-0.655,0.503],[-1.668,-0.738],[-0.21,-2.241],[0.301,-0.786],[1.017,0.006]],"o":[[-0.059,-0.015],[-0.448,-0.407],[-1.043,-1.165],[-0.297,-0.363],[0.42,-2.155],[-0.105,-0.036],[-0.289,-0.088],[-0.21,0.41],[0.86,0.459],[-0.722,-0.089],[-1.88,0.737],[-0.637,-1.148],[1.074,-0.402],[2.208,-0.766],[0.015,0.333],[-0.041,0.41],[0.505,0.219],[0.586,-0.562],[1.345,-1.034],[1.95,0.863],[0.076,0.815],[-0.372,0.972],[-1.166,-0.007]],"v":[[17.234,-83.433],[17.057,-83.474],[15.478,-84.067],[12.052,-87.242],[11.202,-88.361],[9.691,-90.827],[9.377,-90.935],[8.573,-90.824],[9.05,-90.254],[9.677,-88.289],[7.653,-87.874],[3.678,-89.026],[4.827,-92.2],[8.05,-93.401],[12.089,-90.636],[12.068,-89.636],[12.384,-88.564],[13.356,-89.119],[15.118,-90.804],[19.543,-91.699],[23.05,-87.225],[22.836,-84.814],[20.732,-83.413]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.086,-0.448],[-0.115,-0.689],[0.069,-0.817],[0.21,-1.675],[0.585,-0.596],[0.276,0.445],[0.297,0.322],[0.279,-0.323],[-0.185,-0.183],[-0.565,-0.526],[-0.303,-0.543],[0.55,-0.649],[1.177,-0.079],[0.128,0.726],[0.728,0.973],[0.641,0.545],[0.854,0.38],[0.314,-0.094],[0.02,-0.472],[-0.319,-0.073],[-0.755,-0.937],[0.313,0.149],[1.577,0.439],[0.479,-0.024],[1.036,1.141],[-1.48,1.486],[-1.35,0.178],[-1.329,0.364],[-0.168,0.719],[-0.611,0.501],[0.65,0.321],[-0.224,0.18],[0.448,0.433],[-0.828,0.84],[0.111,0.56],[0.056,0.365],[-2.672,-0.809],[-0.091,-0.051],[0,0],[-0.256,-0.198],[0.164,-0.704],[0.712,-0.265],[0.478,-0.181],[0.557,-0.535],[-0.724,-0.085]],"o":[[-0.422,0.036],[-0.503,0.67],[-0.142,1.682],[-0.095,0.761],[-0.363,0.37],[-0.232,-0.374],[-0.277,-0.301],[-0.278,0.321],[0.547,0.543],[-0.036,0.666],[0.404,0.725],[-0.757,0.895],[-0.806,0.054],[-0.197,-1.116],[-0.334,-0.603],[-0.138,0.861],[-0.246,-0.109],[-0.438,0.131],[-0.016,0.384],[1.449,0.332],[0.299,0.371],[-1.575,-0.747],[-0.474,-0.132],[-1.527,0.077],[0.876,-1.941],[1.011,-1.015],[1.346,-0.178],[0.641,-0.176],[0.602,-0.493],[-0.523,-0.623],[0.089,-0.349],[0.741,-0.595],[0.934,-0.36],[0.417,-0.423],[-0.072,-0.362],[-0.415,-2.68],[0.091,0.051],[0,0],[0.143,0.33],[0.455,0.352],[-0.158,0.679],[-0.479,0.178],[-0.585,0.222],[0.785,0.092],[-0.086,0.448]],"v":[[54.185,-69.445],[53.376,-68.78],[52.647,-66.519],[52.154,-61.478],[51.241,-59.39],[50.414,-59.427],[49.638,-60.497],[48.657,-60.563],[48.987,-59.869],[50.676,-58.286],[51.27,-56.52],[50.985,-54.652],[48.241,-53.244],[47.073,-54.124],[46.175,-57.402],[45.123,-59.294],[43.746,-58.473],[42.79,-58.301],[41.879,-57.455],[42.661,-56.771],[45.108,-54.099],[44.725,-53.474],[39.89,-53.918],[38.464,-54.067],[34.604,-55.609],[38.396,-60.533],[41.957,-62.083],[46.005,-62.531],[47.362,-63.642],[49.177,-65.129],[47.308,-66.326],[47.595,-67.346],[47.47,-68.762],[50.331,-69.726],[50.852,-71.05],[50.663,-72.141],[54.875,-75.63],[55.149,-75.478],[55.116,-75.511],[55.849,-74.868],[56.83,-73.556],[55.541,-72.008],[54.067,-71.57],[52.211,-71.051],[54.444,-70.789]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.184,0.909,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.195,-0.104],[2.056,1.069],[4.419,2.381],[0.246,0.351],[-0.943,-0.113],[-0.025,-0.014],[0.025,0.015],[0.387,0.189],[1.548,1.094],[1.607,0.253],[0.224,1.674],[-0.945,-0.512],[-5.253,-2.727],[-3.708,-2.238],[-0.177,1.928],[-0.019,0.46],[0.011,0.59],[0.191,2.128],[-0.444,2.339],[0.037,-1.012],[0.079,-5.184],[-0.012,-0.072],[-0.306,-0.041],[-0.017,0.275],[-0.008,0.296],[-0.044,5.142],[-0.55,0.175],[-0.407,-0.348],[-0.168,-0.512],[0.023,-1.208],[0.061,-2.408],[-1.222,-2.911],[0.397,-0.115],[0.92,-0.202],[0.168,0.027],[1.946,-0.489],[-0.019,-0.583],[-0.08,-0.542]],"o":[[-2.161,-0.865],[-4.453,-2.316],[-0.354,-0.191],[0.74,-0.614],[0.025,0.014],[-0.025,-0.015],[-0.157,-0.408],[-1.661,-0.81],[-1.251,-0.884],[-0.115,-1.699],[1.068,-0.097],[5.205,2.819],[3.843,1.995],[1.683,1.016],[0.047,-0.506],[0.555,-0.228],[-0.039,-2.135],[-0.209,-2.329],[0.733,0.732],[-0.189,5.184],[-0.001,0.074],[0.034,0.198],[0.333,0.045],[0.019,-0.296],[0.14,-5.143],[0.004,-0.443],[0.454,-0.145],[0.407,0.348],[0.4,1.222],[-0.046,2.409],[-0.078,3.085],[0.097,0.23],[-0.441,-0.368],[-0.168,-0.027],[-1.521,-0.917],[-0.806,-0.1],[0.018,0.544],[-0.195,0.104]],"v":[[-1.804,20.845],[-7.992,17.671],[-21.264,10.556],[-22.258,9.873],[-19.721,9.167],[-19.644,9.209],[-19.719,9.165],[-20.59,8.435],[-25.529,5.89],[-29.723,3.834],[-30.839,-1.088],[-27.872,-0.384],[-12.215,7.996],[-0.841,14.252],[1.161,13.251],[0.747,12.018],[1.449,10.786],[1.039,4.405],[1.264,-2.649],[2.116,-0.02],[2.324,15.526],[2.326,15.748],[2.537,16.293],[2.982,15.783],[2.995,14.894],[2.787,-0.527],[3.056,-1.81],[4.457,-1.269],[5.239,0.04],[5.238,3.666],[5.211,10.893],[6.386,19.946],[6.216,20.561],[4.913,19.445],[4.409,19.366],[-0.534,17.873],[-1.446,18.907],[-1.218,20.533]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.353,0.196,0.314,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.422,0.036],[0.065,-2.105],[0.515,-0.165],[-0.77,-0.714],[0,0],[0.096,-1.614],[0.037,-0.493],[1.228,0.383],[-0.218,-0.985],[-0.105,-0.31],[-0.96,0.522],[-0.337,0.138],[-0.924,-0.539],[-0.799,0.058],[-0.861,-0.853],[-0.542,-0.44],[0.161,-0.293],[1.547,-0.774],[3.799,-1.747],[2.9,-1.305],[0.322,0.076],[0.66,1.784],[0.307,-0.091],[0.291,-0.032],[1.046,-0.286],[0.045,0.514],[-0.026,0.125],[-2.012,0.413],[-0.131,0.06],[-1.321,-0.402],[0.141,-0.256],[0.373,-0.76],[-0.462,-0.453],[-0.454,0.236],[-0.889,0.525],[-0.568,1.326],[0.901,0.088],[1.543,-0.058],[0.97,0.296],[-0.47,0.058],[-1.139,-0.033],[0,0.807],[1.673,0.354],[0.007,0.218],[-0.593,0.155],[-0.35,-0.273],[-0.44,0.263],[0.042,0.336],[1.386,0.244],[-0.198,0.12],[-0.261,-0.86],[-0.235,-0.891],[-0.746,0.011],[-0.064,0.612],[0.056,0.91],[-0.047,1.885],[-0.3,0.26],[-0.197,-1.116],[-0.806,0.054],[-0.757,0.895],[0.404,0.725],[-0.036,0.666],[-0.107,1.78],[-0.445,0.144],[-0.184,1.404],[1.891,0.782]],"o":[[2.41,0.033],[-0.015,0.488],[-1.036,0.35],[0,0],[0.463,1.542],[-0.336,0.454],[-1.204,0.087],[-0.929,-0.29],[0.072,0.322],[0.354,1.046],[0.319,-0.173],[0.836,0.646],[-0.163,0.868],[1.26,-0.092],[0.5,0.496],[-0.161,0.293],[-1.525,0.85],[-3.74,1.872],[-2.889,1.329],[-0.27,-0.23],[-1.546,-0.365],[-0.123,-0.333],[-0.291,0.032],[-0.887,-0.266],[0.091,-0.535],[0.071,-0.116],[0.427,-2.073],[0.138,-0.028],[1.214,0.771],[-0.142,0.256],[-0.41,0.742],[-0.277,0.566],[0.45,0.441],[0.916,-0.477],[1.148,-0.678],[0.378,-0.883],[-1.601,-0.156],[-0.362,-1.101],[0.432,-0.252],[1.026,0.413],[0.709,0.021],[0,-1.386],[-0.007,-0.218],[0.637,0.007],[0.476,0.02],[0.329,0.257],[0.465,-0.278],[-0.163,-1.313],[0.198,-0.12],[0.96,-0.019],[0.268,0.881],[0.224,0.851],[0.37,-0.005],[0.095,-0.913],[-0.115,-1.875],[0.008,-0.322],[0.729,0.973],[0.128,0.726],[1.177,-0.079],[0.55,-0.649],[-0.303,-0.543],[1.858,-0.012],[0.027,-0.455],[1.64,-0.529],[0.361,-2.749],[-0.115,-0.689]],"v":[[54.185,-69.445],[57.897,-66.042],[57.273,-64.998],[56.943,-63.674],[56.927,-63.703],[57.538,-58.977],[57.346,-57.51],[53.727,-57.44],[52.78,-56.464],[52.982,-55.494],[55.003,-54.717],[56.013,-55.138],[58.465,-53.131],[59.518,-52.091],[62.697,-50.79],[64.272,-49.412],[63.788,-48.532],[59.018,-46.439],[47.703,-41.027],[39.006,-37.106],[38.074,-37.406],[34.262,-39.829],[33.496,-40.061],[32.624,-39.966],[29.952,-40.732],[29.719,-42.259],[29.926,-42.607],[32.461,-45.191],[32.856,-45.366],[36.834,-44.208],[36.409,-43.44],[35.189,-41.21],[35.372,-39.556],[36.805,-39.673],[39.524,-41.156],[42.286,-43.908],[41.617,-44.98],[37.053,-44.304],[34.772,-46.025],[36.162,-46.304],[39.333,-45.374],[40.424,-46.398],[38.44,-48.515],[38.42,-49.169],[40.194,-49.653],[41.353,-49.066],[42.461,-48.896],[42.633,-49.876],[40.458,-52.351],[41.051,-52.713],[42.827,-51.34],[43.546,-48.673],[45.175,-47.657],[46.145,-48.092],[46.298,-50.841],[45.968,-56.467],[46.174,-57.402],[47.073,-54.124],[48.241,-53.244],[50.985,-54.652],[51.27,-56.52],[50.676,-58.286],[52.655,-60.076],[53.246,-61.029],[55.318,-64.368],[53.377,-68.78]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.2,0.434,0.282,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.086,-0.325],[10.401,-4.943],[2.778,-1.281],[0.098,0.51],[1.471,-0.584],[0.327,-0.172],[0.682,0.205],[0.181,-1.501],[-1.233,-0.953],[1.041,-0.424],[1.405,-0.297],[-0.018,7.595],[0.295,1.072],[-0.003,0.084],[0.217,1.827],[1.739,-0.195],[0.084,0.504],[-0.601,0.288],[-1.499,-0.789],[-0.221,-0.016],[-1.284,0.965],[0.623,2.216],[-0.545,0.301],[-3.543,1.715],[-0.084,-0.154],[-1.682,0.015],[-0.185,0.01],[-0.776,0.225],[-1.43,-0.071],[-0.03,-0.244],[0.085,-0.441],[2.32,-1.214],[1.151,-1.026],[3.655,-1.71],[0.004,-0.807],[0.027,-4.6],[-0.668,0.274],[-1.33,0.495],[-1.023,1.377],[-0.158,-0.146],[-0.28,0.135],[-2.428,1.194],[-5.918,2.829],[-3.075,1.117],[-0.345,1.605],[-0.008,0.784],[-0.024,3.524],[0.711,-0.347],[2.076,-1.064],[1.936,-1.258],[0.387,-0.106],[0.003,1.864],[0.013,0.37],[-0.525,0.139],[-0.403,1.228],[1.279,0.511],[0.15,0.221],[-1.056,0.498],[-3.756,1.76],[0.004,0.757],[0.038,1.415],[2.263,-1.036],[6.008,-2.968],[0.399,0.316],[0.666,-0.617],[0.648,-0.278],[0.887,-0.777],[0.436,-0.959],[3.404,-1.679],[2.184,-1.316],[0.911,0.142],[0.076,0.151],[-1.239,-0.708],[-0.016,0.306],[-0.002,0.366],[-0.424,0.203],[-4.61,2.204],[-9.683,4.987],[-0.249,0.155],[-1.253,0.377],[-0.595,-0.68],[-0.484,-1.243],[-0.705,-0.141],[-0.019,-0.566],[0.581,-0.12],[0.42,-0.14],[-1.066,-1.561],[-1.464,0.363],[-1.027,-0.011],[0.065,-0.708],[0,-0.96],[0.865,-0.29],[0,-0.663],[-0.049,-5.823],[1.387,-0.041],[0.14,-0.155],[1.863,-0.264],[0.729,-0.32],[1.074,-0.179],[0.183,-1.775],[-0.568,-1.216]],"o":[[-10.396,4.955],[-2.764,1.314],[-0.364,-0.404],[-0.294,-1.534],[-0.34,0.135],[-0.563,0.296],[-1.444,-0.434],[-0.215,1.784],[-0.899,0.751],[-1.323,0.538],[-0.002,-7.595],[0.003,-1.124],[0.003,-0.084],[0.591,-1.727],[-0.019,-1.738],[-0.392,0.044],[0.601,-0.288],[1.585,-0.286],[0.182,0.096],[1.723,0.122],[1.853,-1.393],[0.554,-0.284],[3.457,-1.912],[0.084,0.154],[0.216,1.878],[0.185,-0.002],[0.839,-0.009],[1.303,-0.378],[0.194,0.19],[-0.085,0.441],[-2.277,1.271],[-1.38,0.745],[-3.768,1.451],[-0.803,0.376],[-0.025,4.6],[-0.005,0.872],[1.301,-0.535],[1.52,-0.566],[0.131,-0.177],[0.346,0.319],[2.438,-1.174],[5.887,-2.895],[2.938,-1.405],[1.48,-0.538],[0.171,-0.796],[0.037,-3.524],[0.005,-0.76],[-2.097,1.024],[-2.042,1.047],[-0.4,0.058],[-1.741,0.479],[-0.001,-0.37],[-0.018,-0.516],[1.306,-0.347],[0.425,-1.296],[-0.252,-0.101],[0.756,-1.012],[3.752,-1.769],[0.579,-0.271],[-0.007,-1.406],[-0.064,-2.427],[-6.096,2.792],[-0.518,-0.114],[-0.565,-0.446],[-0.712,0.104],[-1.072,0.451],[-0.728,0.839],[-3.437,1.612],[-2.278,1.124],[-0.831,-0.277],[-0.076,-0.151],[0.221,-0.577],[0.281,0.161],[0.019,-0.365],[-0.048,-0.641],[4.61,-2.204],[9.825,-4.698],[0.26,-0.134],[1.253,-0.377],[0.8,0.17],[0.047,1.267],[0.524,0.506],[0.536,0.107],[0.019,0.57],[-0.43,0.089],[-1.322,1.124],[1.328,0.906],[0.964,-0.239],[0.757,0.189],[-0.088,0.959],[0,0.878],[-0.501,0.54],[-0.001,5.824],[0.009,1.129],[-0.191,0.006],[-1.265,1.399],[-0.729,0.32],[-0.755,-0.332],[-1.502,0.498],[-0.132,1.28],[-0.086,0.325]],"v":[[63.349,2.068],[32.16,16.928],[23.826,20.778],[23.262,19.355],[20.753,17.992],[19.784,18.53],[17.99,18.81],[15.221,20.774],[17.289,24.534],[14.193,25.88],[10.124,27.222],[10.129,4.436],[9.663,1.16],[9.672,0.908],[10.332,-4.411],[8.266,-6.226],[7.432,-6.69],[9.233,-7.553],[13.883,-7.155],[14.54,-7.082],[18.873,-8.814],[20.391,-13.31],[22.053,-14.163],[32.86,-18.902],[33.112,-18.441],[35.161,-16.43],[35.716,-16.459],[38.045,-17.131],[41.961,-18.242],[42.188,-17.554],[41.932,-16.232],[35.725,-11.584],[32.14,-8.669],[21.037,-3.854],[19.936,-1.942],[19.906,11.858],[20.924,12.508],[24.704,10.65],[28.759,8.069],[29.244,8.039],[30.15,7.94],[37.455,4.4],[55.116,-4.281],[64.012,-8.34],[66.849,-11.501],[66.668,-13.812],[66.687,-24.385],[65.825,-24.932],[59.493,-21.946],[53.323,-18.901],[52.125,-18.72],[49.951,-20.436],[49.95,-21.546],[50.662,-22.504],[53.085,-25.024],[52.114,-27.085],[51.51,-27.546],[54.521,-29.336],[65.8,-34.596],[66.909,-35.986],[67.138,-40.193],[64.849,-41.58],[46.829,-32.666],[45.547,-33.45],[43.708,-33.6],[41.725,-32.873],[38.711,-31.166],[37.504,-28.246],[27.201,-23.393],[20.358,-20.04],[18.145,-21.346],[17.916,-21.798],[19.178,-22.765],[19.677,-23.153],[19.686,-24.252],[20.579,-25.227],[34.412,-31.833],[63.727,-46.252],[64.475,-46.715],[68.233,-47.845],[70.476,-46.942],[70.684,-43.144],[72.553,-42.246],[73.385,-41.222],[72.601,-40.207],[71.34,-39.797],[70.92,-35.388],[75.159,-34.904],[78.048,-35.626],[78.928,-34.201],[78.722,-31.321],[77.589,-29.529],[77.124,-27.65],[77.146,-10.179],[75.69,-8.166],[75.133,-7.838],[70.443,-5.352],[68.256,-4.392],[66.18,-5.689],[63.144,-2.707],[63.605,1.092]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.077,0.232,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":106,"op":1528,"st":106},{"ind":11,"ty":4,"nm":"L","parent":12,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":154,"s":[90]},{"t":159,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[382.128,-676.019,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[261.682,261.682,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.862],[0.609,0.609],[0.862,0],[0.609,-0.609],[0,-0.862],[-0.609,-0.609],[-0.862,0],[-0.609,0.609]],"o":[[0,-0.862],[-0.609,-0.609],[-0.862,0],[-0.609,0.609],[0,0.862],[0.609,0.609],[0.862,0],[0.609,-0.609]],"v":[[3.25,0],[2.298,-2.298],[0,-3.25],[-2.298,-2.298],[-3.25,0],[-2.298,2.298],[0,3.25],[2.298,2.298]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[5.383,0],[0,-5.383],[-5.383,0],[0,-0.899],[0.899,0],[0,7.18],[-7.18,0],[0,-7.18],[0,0],[2.691,0],[0.894,1.051],[1.701,0],[0,3.59],[-3.59,0],[-1.066,-0.772],[-0.416,0],[0,-0.899],[0,0],[-0.899,0],[0,0.899],[0,0]],"o":[[-5.383,0],[0,5.383],[0.899,0],[0,0.899],[-7.18,0],[0,-7.18],[7.18,0],[0,0],[0,2.691],[-1.488,0],[-1.158,1.066],[-3.59,0],[0,-3.59],[1.417,0],[0.289,-0.254],[0.899,0],[0,0],[0,0.899],[0.899,0],[0,0],[0,-5.383]],"v":[[0,-9.75],[-9.75,0],[0,9.75],[1.625,11.375],[0,13],[-13,0],[0,-13],[13,0],[13,1.625],[8.125,6.5],[4.408,4.779],[0,6.5],[-6.5,0],[0,-6.5],[3.793,-5.276],[4.875,-5.688],[6.5,-4.062],[6.5,1.625],[8.125,3.25],[9.75,1.625],[9.75,0]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.412,0],[0,0],[0,-5.412],[0,0],[5.412,0],[0,0],[0,5.412],[0,0]],"o":[[0,0],[5.412,0],[0,0],[0,5.412],[0,0],[-5.412,0],[0,0],[0,-5.412]],"v":[[-15.2,-25],[15.2,-25],[25,-15.2],[25,15.2],[15.2,25],[-15.2,25],[-25,15.2],[-25,-15.2]],"c":true}},"nm":"P"},{"ty":"gf","o":{"a":0,"k":100},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.514,0.345,0.729,0.5,0.498,0.227,0.849,1,0.482,0.11,0.969]}},"s":{"a":0,"k":[-3,-26]},"e":{"a":0,"k":[1.898,-75.516]},"t":1,"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":129,"op":163,"st":129},{"ind":12,"ty":4,"nm":"S","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":153,"s":[90]},{"t":159,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.013},"t":126,"s":[1651.961,231.711,0],"to":[-26.667,0,0],"ti":[26.667,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":138,"s":[1491.961,231.711,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":0.37,"y":0},"t":153,"s":[1491.961,231.711,0],"to":[40,0,0],"ti":[-40,0,0]},{"t":163,"s":[1731.961,231.711,0]}]},"a":{"a":0,"k":[583.961,-676.289,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":143,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":147,"s":[107,107,100]},{"t":150,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[639.922,247.422]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":71},"nm":"R"},{"ty":"st","c":{"a":0,"k":[0.043,0.584,0.459,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.055,0.094,0.078,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[583.961,-676.289]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"R"}],"ip":129,"op":163,"st":129},{"ind":13,"ty":4,"nm":"S","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":128,"s":[100]},{"t":133,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[705.454,796.425,0]},"a":{"a":0,"k":[-370.227,-34.227,0]},"s":{"a":0,"k":[69.434,69.434,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[731.547,731.547]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":66},"nm":"R"},{"ty":"st","c":{"a":0,"k":[0.043,0.584,0.459,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[1,0.886,0.714,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[-370.227,-46.227]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"R"}],"ip":106,"op":135,"st":106},{"ind":14,"ty":1,"nm":"B","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[50]},{"t":133,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,960,0]},"a":{"a":0,"k":[960,960,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"sw":1920,"sh":1920,"sc":"#000000","ip":106,"op":133,"st":106},{"ind":15,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[932,1000,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[380,380,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.003,-1.76],[0.165,-0.372],[0.005,1.74],[-0.417,0.253]],"o":[[-0.123,0.277],[-0.663,-1.746],[-0.002,-0.627],[-0.003,1.76]],"v":[[-131.055,57.269],[-131.466,58.195],[-132.096,52.955],[-131.047,51.99]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.537,0.183],[0.413,0.33],[0.941,0.963],[-0.091,0.207],[-0.913,-0.131],[-1.69,-1.059],[-0.178,-1.393]],"o":[[0.01,-0.564],[-1.087,-0.868],[-0.059,-0.061],[0.704,0.565],[2.006,0.287],[0.911,0.571],[-2.567,-0.185]],"v":[[-181.514,-197.346],[-182.244,-198.592],[-183.951,-202.012],[-183.698,-202.615],[-181.293,-201.72],[-175.94,-199.202],[-173.872,-196.794]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.104,-0.083],[-0.104,0.083]],"o":[[0.104,-0.083],[-0.104,0.083]],"v":[[-199.631,-216.562],[-199.32,-216.811]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.065,0.288],[0.026,-0.4]],"o":[[0.421,-0.147],[-0.282,-0.023]],"v":[[-201.042,-217.25],[-200.501,-216.808]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.685,0.7],[-1.149,-0.157],[-1.019,0.02],[-0.272,-0.804],[1.497,-0.547]],"o":[[0.672,-0.803],[1.001,0.137],[0.641,-0.013],[-1.518,0.578],[-0.825,-0.127]],"v":[[-215.442,-218.779],[-212.864,-219.898],[-209.809,-219.884],[-208.338,-218.998],[-213.018,-218.185]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.506,-1.149],[1.117,-0.429],[0.474,0.243],[1.126,0.615],[-0.593,0.401],[-1.236,-0.049]],"o":[[-1.292,0.532],[-0.485,0.186],[-1.141,-0.586],[-0.666,-0.364],[1.139,-0.771],[1.774,0.071]],"v":[[-127.631,210.199],[-131.139,211.633],[-132.632,211.591],[-136.026,209.775],[-136.02,208.664],[-132.37,208.132]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.04,-0.05],[0.05,0.04]],"o":[[0.04,0.05],[-0.05,-0.041],[0,0]],"v":[[220.384,222.885],[220.504,223.036],[220.354,222.914]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.066,0.761],[-0.924,0.15],[-0.85,-0.049],[-0.427,-1.802],[0,0],[3.046,0.637]],"o":[[0.879,-0.527],[0.798,0.548],[2.006,0.116],[0,0],[-3.051,-0.613],[-0.977,-0.204]],"v":[[210.342,219.306],[213.129,218.971],[215.678,219.252],[220.384,222.885],[220.354,222.914],[211.202,221.068]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.222,0.005],[-0.408,1.658],[1.127,-0.4],[0.484,0.106],[-0.15,0.797],[-0.58,0.054],[-0.194,-0.111],[-1.431,0.945],[-0.377,-0.677],[0.508,-0.75]],"o":[[-1.529,-0.012],[0.266,-1.084],[-0.453,0.16],[-0.572,-0.125],[0.14,-0.742],[0.213,-0.02],[1.289,0.739],[0.589,-0.389],[0.445,0.8],[-0.567,0.836]],"v":[[170.002,212.861],[168.271,210.436],[167.288,209.465],[165.778,209.48],[164.641,208.347],[166.093,207.588],[166.75,207.773],[170.696,207.931],[172.414,208.727],[172.307,211.093]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.086,-0.391],[1.123,-0.642],[0.524,0.357],[0.825,1.799],[-0.435,0.269],[-0.248,-0.239],[-0.932,-0.953],[-1.373,0.929],[-0.443,-0.03]],"o":[[-0.78,0.976],[-0.715,0.408],[-1.65,-1.123],[-0.172,-0.374],[0.381,-0.236],[0.96,0.925],[1.15,1.176],[0.344,-0.233],[0.247,0.017]],"v":[[182.589,220.888],[179.662,223.288],[177.948,222.738],[174.297,218.309],[174.282,217.196],[175.156,217.706],[177.998,220.521],[181.071,220.829],[182.219,220.4]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.239,-1.551],[1.5,0.485],[0.464,0.207],[-0.551,1.724],[-0.341,0.907],[-0.685,-0.917]],"o":[[0.044,1.904],[-0.485,-0.157],[-1.671,-0.745],[0.296,-0.925],[0.403,-1.072],[1.187,1.591]],"v":[[173.536,221.018],[171.871,222.595],[170.436,222.068],[169.072,219.02],[169.918,216.232],[171.89,215.981]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.135,-0.552],[0.475,0.036],[-0.315,0.712]],"o":[[-0.377,0.151],[-0.004,-0.807],[0.753,0.4]],"v":[[197.501,220.646],[196.428,221.209],[197.093,218.99]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.196,0.279],[-0.069,0.414],[-0.205,0.12],[-0.377,0.151],[-0.379,-0.104],[0.786,-0.776],[0.598,0.55]],"o":[[0.372,-0.247],[0.205,-0.12],[0.475,0.036],[0.379,0.104],[-0.759,0.803],[-0.514,0.508],[0.196,-0.279]],"v":[[195.235,222.607],[195.812,221.568],[196.428,221.209],[197.501,220.646],[198.639,220.957],[196.356,223.359],[194.648,223.444]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.372,-0.247],[3.038,0.416],[-1.438,0.091],[-1.602,-0.249]],"o":[[-2.67,-0.782],[1.326,-1.181],[1.623,-0.103],[-0.069,0.414]],"v":[[195.235,222.607],[186.98,223.059],[190.978,221.248],[195.812,221.568]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.483,1.717],[-1.315,-0.862],[0.475,-0.718],[0.575,0.35]],"o":[[1.774,-0.359],[0.773,0.506],[-0.523,0.79],[-1.309,-0.797]],"v":[[180.708,209.292],[185.129,210.684],[185.608,212.763],[183.763,212.672]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.118,-0.497],[-0.046,-0.794],[1.762,0.294],[-0.003,0.217]],"o":[[-0.138,0.645],[-1.762,-0.293],[0.003,-0.218],[2.131,0.002]],"v":[[207.241,218.681],[206.128,220.047],[200.842,219.167],[200.852,218.515]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.297,-0.707],[0.269,-0.005],[0.766,0.099],[-0.138,0.645],[-0.973,0.596],[-1.324,-0.841],[0.37,-0.439],[0.879,-0.527]],"o":[[-0.269,0.005],[-0.556,-0.539],[-0.046,-0.794],[1.028,-0.376],[1.408,-0.394],[-0.216,0.706],[-0.924,0.15],[-1.313,-0.154]],"v":[[208.924,220.98],[208.116,220.995],[206.128,220.047],[207.241,218.681],[210.408,217.888],[214.531,218.167],[213.129,218.971],[210.342,219.306]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.185,0],[0.61,1.066],[-0.636,-0.147],[-0.969,-0.993],[0.238,-0.533],[0.419,-0.038]],"o":[[-1.254,-0.057],[-0.184,-0.321],[1.183,0.274],[0.267,0.274],[-0.182,0.407],[-0.183,0.017]],"v":[[260.208,207.288],[257.441,205.535],[257.716,204.816],[261.222,205.842],[261.838,206.784],[260.763,207.285]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.057,-0.478],[0.232,-0.135],[1.287,-0.738],[0.579,0.604],[-0.483,0.115],[-1.608,-0.056]],"o":[[-0.007,0.348],[-1.282,0.746],[-0.58,0.333],[-0.298,-0.311],[1.523,-0.361],[0.306,0.011]],"v":[[240.413,206.569],[239.888,207.16],[236.032,209.38],[234.265,209.436],[235.069,207.105],[239.671,206.159]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.318,-0.126],[0.15,0.68],[-0.67,0.198],[-1.228,0.407],[-0.271,-0.388],[0.333,-0.358]],"o":[[-0.801,0.02],[-0.161,-0.734],[1.241,-0.366],[0.507,-0.168],[0.364,0.52],[-1.141,1.225]],"v":[[257.373,201.744],[255.635,201.16],[256.823,199.887],[260.53,198.732],[261.789,199.032],[261.388,200.367]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.603,-2.085],[0.766,0.36],[0.605,-0.016],[0.625,0.114],[0.05,0.745],[-0.584,0.114]],"o":[[-0.813,0.494],[-0.557,-0.262],[-0.646,0.017],[-0.776,-0.141],[-0.039,-0.585],[2.319,-0.453]],"v":[[-148.97,186.771],[-151.291,186.925],[-153.049,186.654],[-154.983,186.634],[-156.756,185.344],[-155.158,184.702]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.052,0.026],[-1.581,-0.801],[-0.979,-0.521],[0.525,-0.874],[0.928,0.502],[1.305,0.697],[0.413,-0.145]],"o":[[0.86,-1.603],[0.989,0.501],[0.711,0.379],[-0.508,0.845],[-1.301,-0.704],[-0.312,-0.167],[-0.03,-0.049]],"v":[[-140.901,178.015],[-137.412,176.849],[-134.483,178.432],[-133.384,180.158],[-135.861,180.562],[-139.752,178.429],[-140.779,178.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.849,-0.079],[-0.534,-0.413],[1.02,-0.87],[1.513,0.146],[0.225,1.162],[-1.326,0.226]],"o":[[0.648,-0.084],[1.076,0.831],[-1.021,0.871],[-1.112,-0.107],[-0.237,-1.224],[0.763,-0.13]],"v":[[-209.382,163.781],[-207.599,164.308],[-207.543,166.588],[-211.041,168.258],[-213.259,166.553],[-211.685,164.305]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.02,-0.033],[-0.038,-0.623],[0.028,-0.504],[-0.002,-0.627],[-0.663,-1.746],[-0.123,0.277],[-0.28,-1.293],[-1.205,-2.672],[1.617,0.882],[0.09,0.246],[-0.541,2.43],[-0.677,1.217],[-0.468,1.717]],"o":[[0.896,0.493],[0.03,0.501],[-0.417,0.253],[0.005,1.74],[0.165,-0.372],[-0.044,1.312],[-0.791,2.698],[-1.63,-0.857],[-0.219,-0.119],[-0.89,-2.429],[0.27,-1.216],[0.843,-1.515],[0.259,-0.949]],"v":[[-131.254,48.62],[-130.974,50.477],[-131.047,51.99],[-132.096,52.955],[-131.466,58.195],[-131.055,57.269],[-130.823,61.183],[-130.719,69.245],[-135.602,66.66],[-136.093,66.014],[-136.703,58.559],[-135.515,54.739],[-133.227,50.035]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.072,-0.009],[0,0]],"o":[[-0.024,0.069],[0.001,0],[0,0]],"v":[[172.082,112.892],[171.937,113.01],[171.972,112.9]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.34,-1.533],[0.055,-0.123],[2.078,0.379],[0.061,0.785],[0.012,1.759],[0.331,0.607],[0.429,-0.377],[-0.053,1.301],[-0.447,-0.305],[-0.713,-1.114],[-0.667,-0.495]],"o":[[-0.081,0.111],[-0.844,1.871],[-0.854,-0.156],[-0.139,-1.772],[-0.004,-0.659],[-0.356,0.419],[-0.68,-1.261],[0.022,-0.555],[1.181,0.805],[0.421,0.658],[0.301,1.341]],"v":[[-122.991,138.174],[-123.23,138.509],[-126.858,140.36],[-127.963,138.855],[-127.66,133.597],[-128.05,131.7],[-128.42,133.104],[-128.661,129.198],[-127.734,129.02],[-125.458,132.277],[-124.169,134.23]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.124,-0.259],[1.651,-1.296],[0.063,-2.11],[0.322,0.069],[0.084,-1.403],[0.086,-0.449],[0.342,0.31],[-0.117,0.477],[-0.568,1.095],[-1.481,2.692],[-0.184,2.026],[-0.356,0.419],[-0.004,-0.659],[-0.139,-1.772],[-0.854,-0.156],[-0.844,1.871],[-0.081,0.111]],"o":[[-0.023,2.251],[-1.487,1.167],[-0.01,0.347],[-1.731,-0.37],[-0.027,0.453],[-0.347,0.075],[-0.31,-0.282],[0.284,-1.161],[0.951,-2.931],[1.098,-1.995],[0.429,-0.377],[0.331,0.607],[0.012,1.759],[0.061,0.785],[2.078,0.379],[0.055,-0.123],[0.124,0.259]],"v":[[-122.62,138.951],[-125.661,143.85],[-128.533,148.532],[-129.109,148.938],[-131.316,151.002],[-131.565,152.35],[-132.506,152.726],[-132.885,151.45],[-132.086,147.955],[-129.522,139.103],[-128.42,133.104],[-128.05,131.7],[-127.66,133.597],[-127.963,138.855],[-126.858,140.36],[-123.23,138.509],[-122.991,138.174]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.066,0.108],[0.066,-0.108]],"o":[[-0.066,0.108],[0.066,-0.108]],"v":[[-194.649,-223.819],[-194.848,-223.495]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.115,-1.417],[0.894,0.685],[0.407,0.074]],"o":[[-0.562,1.07],[-0.345,-0.264],[1.124,-0.623]],"v":[[-201.832,-223.897],[-204.074,-223.447],[-205.196,-223.912]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.896,0.493],[0.087,2.601],[-0.229,0.638],[-0.078,-0.84],[0.005,-0.781],[-0.618,-0.457],[0.083,-5.759],[0.684,0.877],[-0.044,1.312],[-0.003,1.76],[0.03,0.501]],"o":[[0.452,-2.587],[0.006,-0.675],[1.029,-0.614],[0.072,0.775],[-0.004,0.719],[-0.084,5.759],[-0.68,0.12],[-0.28,-1.293],[0.003,-1.76],[0.028,-0.504],[-0.038,-0.623]],"v":[[-131.254,48.62],[-131.056,40.829],[-130.727,38.855],[-129.317,39.728],[-129.294,42.071],[-128.533,43.897],[-128.783,61.173],[-130.823,61.183],[-131.055,57.269],[-131.047,51.99],[-130.974,50.477]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.061,-0.087],[0.106,0.007],[-0.045,0.081]],"o":[[-0.106,-0.007],[0.045,-0.081],[0.061,0.087]],"v":[[229.422,-152.767],[229.103,-152.786],[229.238,-153.029]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.289,-0.007],[0.044,-1.48],[0.761,-0.868],[-0.001,0.645],[1.103,2.404],[-0.277,1.229],[-0.629,-0.007],[-0.315,-0.639],[-0.122,-0.438],[-0.46,-1.905]],"o":[[-0.043,1.48],[-1.785,-0.384],[-0.143,-0.822],[0.006,-2.863],[-0.446,-0.972],[0.107,-0.474],[0.555,0.006],[0.205,0.416],[0.52,1.862],[0.11,0.457]],"v":[[-131.211,-7.107],[-131.342,-2.666],[-133.336,-0.411],[-133.685,-2.523],[-136.642,-9.88],[-137.764,-12.887],[-136.991,-14.047],[-135.464,-13.276],[-134.853,-12.031],[-132.053,-7.161]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.63,-0.857],[0.063,-0.412],[1.135,1.234],[0.2,-0.234],[0.546,0.978],[0.49,0.246],[0.079,-1.114],[0.092,-6.673],[-0.052,-2.403],[1.407,-0.085],[0.192,8.37],[-0.54,2.11],[-0.01,1.067],[-0.34,0.073],[0.255,0.819],[-0.945,3.135],[-1.315,2.003],[-0.632,1.114],[0.138,1.825],[-0.924,0.079],[0.452,-2.587],[0.259,-0.949],[0.843,-1.515],[0.27,-1.216],[-0.89,-2.429],[-0.219,-0.119]],"o":[[0.304,0.194],[-0.782,0.451],[-0.283,-0.308],[-0.765,0.893],[-0.205,-0.367],[-0.137,1.151],[-0.472,6.667],[-0.033,2.413],[0.032,1.499],[0.244,-8.37],[-0.05,-2.181],[0.291,-1.138],[0.317,-0.181],[0.938,-0.201],[-0.918,-2.947],[0.688,-2.281],[0.703,-1.071],[0.872,-1.536],[-0.041,-0.549],[0.087,2.601],[-1.02,-0.033],[-0.468,1.717],[-0.677,1.217],[-0.541,2.43],[0.09,0.246],[1.617,0.882]],"v":[[-130.719,69.245],[-130.224,70.075],[-132.75,70.544],[-133.555,70.853],[-135.488,70.635],[-136.452,69.709],[-136.847,73.081],[-137.156,93.1],[-136.871,100.308],[-138.784,102.419],[-138.597,77.306],[-138.108,70.89],[-138.82,67.862],[-137.865,67.336],[-137.356,66.007],[-138.433,56.914],[-135.272,50.526],[-133.26,47.25],[-131.995,42.273],[-131.056,40.829],[-131.254,48.62],[-133.227,50.035],[-135.515,54.739],[-136.703,58.559],[-136.093,66.014],[-135.602,66.66]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.015,-1.706],[0.027,1.11],[1.175,-0.135],[0.028,0.754],[-0.675,0.462],[0.309,-1.48]],"o":[[-0.996,-0.868],[-0.022,-0.907],[-0.028,-0.754],[0.653,-0.337],[0.605,1.076],[-0.342,1.638]],"v":[[-128.789,-6.322],[-129.584,-9.48],[-130.947,-11.005],[-131.032,-13.268],[-129.607,-14.88],[-128.668,-11.426]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.441,2.134],[-0.276,-1.178],[-0.474,0.96],[0.365,-0.864],[0.294,-1.389],[0.721,-0.025],[0.143,0.378],[0.081,0.11]],"o":[[0.817,0.797],[0.576,-1.166],[0.37,0.847],[-0.561,1.33],[-0.087,0.413],[-0.754,0.026],[-0.046,-0.123],[-0.392,-2.136]],"v":[[-130.99,0.944],[-130.337,4.012],[-128.814,0.928],[-128.81,3.471],[-129.619,7.649],[-130.172,8.703],[-130.767,7.681],[-131.004,7.35]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.043,1.48],[-0.264,1.287],[-0.022,-0.907],[-0.996,-0.868],[0.008,-2.417],[0.576,-1.166],[0.817,0.797],[0.117,1.204]],"o":[[0.511,-1.271],[1.175,-0.135],[0.027,1.11],[-0.008,2.417],[-0.474,0.96],[-0.276,-1.178],[-0.117,-1.204],[0.044,-1.48]],"v":[[-131.211,-7.107],[-130.947,-11.005],[-129.584,-9.48],[-128.789,-6.322],[-128.814,0.928],[-130.337,4.012],[-130.99,0.944],[-131.342,-2.666]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.357,-0.71],[0.891,0.04],[0.047,0.127],[-0.676,0.635]],"o":[[-0.408,0.771],[-0.074,-0.117],[-0.193,-0.521],[0.578,-0.543]],"v":[[-182.37,-212.389],[-184.29,-211.247],[-184.508,-211.598],[-185.01,-213.146]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.603,0.306],[0.016,-0.499],[0.498,-0.081],[-0.02,0.566]],"o":[[0.373,-0.013],[-0.017,0.522],[-0.497,0.081],[0.024,-0.683]],"v":[[-198.906,-224.288],[-197.103,-221.762],[-197.922,-220.798],[-199.855,-222.759]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.251,-0.504],[-0.332,-0.555],[0.536,-0.536],[0.439,0.21],[-0.05,0.564],[-0.099,0.727],[-0.49,-0.131]],"o":[[-0.205,0.622],[0.25,0.419],[-0.372,0.371],[-0.587,-0.281],[0.064,-0.731],[0.054,-0.4],[0.363,0.097]],"v":[[-181.671,-229.852],[-181.355,-228.169],[-181.275,-226.662],[-182.541,-226.391],[-183.11,-227.831],[-182.845,-230.018],[-182.141,-230.637]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.199,-0.015],[-0.716,-0.832],[0.454,-0.455],[0.294,0.394],[0.332,1.017]],"o":[[1.013,0.416],[0.357,0.415],[-0.403,0.404],[-0.638,-0.855],[-0.281,-0.861]],"v":[[-188.999,-226.051],[-187.451,-223.373],[-187.7,-221.859],[-188.741,-221.968],[-190.31,-224.732]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.27,0.07],[0.072,-0.494],[0.8,0.036],[0.647,0.705],[-0.674,0.263]],"o":[[0.816,0.017],[-0.138,0.949],[-1.016,-0.046],[-0.425,-0.463],[0.465,-0.182]],"v":[[-195.864,-220.215],[-193.283,-218.311],[-195.029,-217.127],[-197.475,-218.547],[-197.103,-219.881]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.333,0.206],[-0.028,0.174],[-0.066,0.108],[-0.529,0.141],[0.112,-0.901],[-0.905,-0.132],[-0.272,-0.307],[0.48,-0.654],[0.643,0.38],[0.302,1.397]],"o":[[0.028,-0.174],[0.066,-0.108],[0.308,-0.41],[0.798,0.103],[-0.086,0.698],[0.347,0.051],[0.565,0.636],[-0.5,0.68],[-1.197,-0.707],[-0.067,-0.309]],"v":[[-194.931,-222.973],[-194.848,-223.495],[-194.649,-223.819],[-193.493,-224.765],[-192.315,-223.405],[-191.412,-222.03],[-190.469,-221.254],[-190.376,-219.222],[-192.25,-219.002],[-194.609,-222.106]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.062,0.727],[-0.963,1.395],[-0.755,-0.358],[0.615,-1.237],[1.273,-1.279],[0.156,0.177]],"o":[[0.158,-1.253],[0.639,-0.926],[0.831,0.393],[-0.817,1.642],[-0.129,0.129],[-0.328,-0.372]],"v":[[-180.888,-231.463],[-179.889,-235.632],[-177.917,-236.111],[-176.63,-234.104],[-180.129,-229.997],[-180.594,-229.895]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.584,0.586],[0.754,0.837],[-0.935,-0.049],[-0.345,-0.264],[-0.562,1.07],[-0.27,-0.133],[-1.209,-0.795],[0.85,-1.488],[0,0],[0.104,-0.083],[0.233,0.284],[0.421,-0.147]],"o":[[-0.754,-0.837],[0.478,-0.69],[0.407,0.074],[0.894,0.685],[0.27,0.133],[-0.686,1.28],[1.387,0.912],[0,0],[-0.104,0.083],[-0.313,-0.002],[0.026,-0.4],[-1.416,-0.806]],"v":[[-204.897,-220.187],[-207.159,-222.697],[-205.196,-223.912],[-204.074,-223.447],[-201.832,-223.897],[-201.023,-223.498],[-200.225,-220.391],[-199.308,-216.817],[-199.32,-216.811],[-199.631,-216.562],[-200.501,-216.808],[-201.042,-217.25]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.026,0.365],[-0.772,0.937],[-1.296,1.381],[-0.234,0.14],[-0.556,-0.397],[0.119,-0.456],[0.729,-2.09],[0.544,-0.106],[0.599,-1.265],[0.047,0.045]],"o":[[-0.072,-1.505],[1.202,-1.459],[0.187,-0.2],[0.631,-0.377],[0.488,0.348],[-0.56,2.149],[-0.167,0.48],[-1.034,0.201],[-0.055,0.116],[-0.363,-0.344]],"v":[[-191.522,-215.177],[-189.871,-218.539],[-186.022,-222.718],[-185.382,-223.241],[-183.414,-223.38],[-183.694,-222.029],[-186.348,-215.985],[-187.834,-215.421],[-190.704,-214.203],[-191.141,-214.004]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.887,0.36],[0.343,0.423],[0.054,-0.486],[0.492,0.029],[0.007,0.364],[-0.573,1.663],[-0.641,-0.044],[-0.19,-0.472],[-0.784,0.9],[-1.214,-0.493],[0.88,-0.306]],"o":[[-0.26,-0.32],[-0.358,0.476],[-0.056,0.505],[-0.554,-0.033],[-0.036,-1.779],[0.167,-0.484],[0.627,0.043],[0.119,0.297],[1.328,-1.137],[0.869,0.353],[-1.575,0.547]],"v":[[-168.666,-193.66],[-169.53,-194.723],[-170.057,-193.313],[-170.924,-192.633],[-171.425,-193.443],[-170.47,-198.582],[-169.407,-199.505],[-168.429,-198.47],[-167.789,-198.112],[-163.953,-197.931],[-163.951,-195.332]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.53,-0.472],[2.465,0.19],[1.952,0.009],[0.107,0.424],[-0.206,0.233],[-2.179,0.216],[-1.525,0.047]],"o":[[-1.857,1.554],[-1.94,-0.15],[-0.363,-0.002],[-0.132,-0.522],[1.716,-1.94],[1.53,-0.152],[0.517,-0.016]],"v":[[225.002,16.45],[218.77,18.834],[212.917,18.79],[211.943,18.464],[212.676,17.85],[218.873,16.201],[223.445,15.986]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.849,-1.274],[-0.202,0.963]],"o":[[-0.133,-0.935],[1.028,0.849]],"v":[[-148.009,111.36],[-148.246,108.542]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.6,1.223],[-0.009,-0.339],[0.667,-1.488],[-0.294,0.895]],"o":[[0.337,0.032],[0.041,1.521],[-0.829,-0.026],[0.404,-1.231]],"v":[[-131.04,113.039],[-130.287,113.518],[-130.505,118.073],[-131.406,116.839]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.92,-0.172],[-1.305,-0.065],[-0.037,-0.522],[-0.133,-0.935]],"o":[[-0.924,0.184],[-0.616,-1.758],[0.593,0.029],[-0.202,0.963],[0,0]],"v":[[-148.015,111.373],[-150.246,110.514],[-149.085,107.721],[-148.246,108.542],[-148.009,111.36]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.161,2.591],[-1.121,0.337],[-0.541,-1.469],[0.361,-1.39],[0.559,-0.391]],"o":[[0.686,1.222],[-0.239,1.463],[-1.228,-0.494],[-0.146,0.562],[0.161,-2.591]],"v":[[-130.543,104.128],[-128.735,105.013],[-128.772,109.406],[-130.354,110.305],[-131.026,111.902]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.5,-1.203],[0.028,-1.615],[0.36,-0.387],[0.686,1.222],[-0.084,0.64],[-0.999,2.316],[0.278,0.602],[-0.511,0.239],[-0.244,-0.483],[-0.006,-0.807]],"o":[[-0.019,1.615],[-0.008,0.451],[-1.121,0.337],[0.06,-0.632],[-0.229,-2.449],[0.264,-0.613],[-0.189,-0.41],[0.533,-0.249],[0.359,0.711],[0.009,1.242]],"v":[[-128.428,98.849],[-128.487,103.693],[-128.735,105.013],[-130.543,104.128],[-131.09,102.473],[-130.239,95.308],[-130.615,93.451],[-130.465,92.218],[-129.24,92.854],[-128.745,95.136]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.337,0.529],[-1.263,0.21],[-0.032,0.594],[0.418,-0.752],[-0.093,-0.273],[-0.294,-0.749],[1.469,0.767]],"o":[[1.279,0.038],[0.501,-0.083],[0.932,0.141],[-0.235,0.423],[0.189,0.554],[-1.828,-0.283],[0.16,-1.183]],"v":[[-104.53,-129.812],[-100.722,-130.091],[-99.792,-130.871],[-99.254,-129.964],[-98.974,-129.136],[-98.259,-127.292],[-103.125,-128.743]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.34,-0.624],[0.403,0.457],[-0.962,2.324],[-0.615,-2.118]],"o":[[-0.403,-0.457],[0.115,-2.36],[0.906,2.096],[-0.126,0.645]],"v":[[-194.75,-149.611],[-195.958,-150.981],[-195.403,-158.072],[-194.552,-151.565]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.659,-0.394],[-2.414,0.234],[0.061,-1.712]],"o":[[-1.358,-1.875],[0.673,-0.065],[-1.094,1.108]],"v":[[-210.763,-146.469],[-208.96,-150.186],[-207.127,-149.346]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.675,-0.54],[-0.084,-4.154],[0.886,-0.871],[0.115,3.062],[-0.337,2.811]],"o":[[0.498,4.146],[0.02,0.991],[-0.121,-3.236],[-0.024,-2.655],[0.796,0.713]],"v":[[-192.902,-157.435],[-192.647,-144.972],[-193.716,-142.202],[-194.067,-151.562],[-193.609,-159.671]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.875,-0.17],[0.413,-1.57],[0.031,0.906],[-0.115,7.323],[-0.071,0.502],[-0.629,-0.046],[-0.002,-0.46],[0,-2.738],[-0.028,-3.805]],"o":[[0.005,1.581],[-1.399,-0.201],[-0.252,-7.318],[0.008,-0.501],[0.061,-0.434],[0.51,0.037],[0.011,2.738],[0,3.805],[0.003,0.477]],"v":[[-196.285,-142.392],[-196.412,-137.652],[-197.884,-139.992],[-198.182,-161.954],[-197.938,-163.454],[-197.381,-164.506],[-196.838,-163.371],[-196.831,-155.157],[-196.816,-143.742]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.279,0.038],[0.27,-0.081],[0.18,0.96],[-1.637,0.054],[-0.78,-0.019],[0.501,-0.083]],"o":[[-0.27,0.081],[-0.167,-0.98],[1.61,-0.63],[0.778,-0.026],[-0.032,0.594],[-1.263,0.21]],"v":[[-104.53,-129.812],[-105.341,-129.569],[-107.042,-130.693],[-102.132,-130.921],[-99.792,-130.871],[-100.722,-130.091]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.323,0],[-0.102,-0.977],[0.921,-0.171],[0.284,0.101],[-0.084,0.794],[-0.714,-0.036]],"o":[[0.645,0.082],[0.11,1.051],[-0.309,0.057],[-0.599,-0.213],[0.082,-0.774],[0.23,0.012]],"v":[[-133.713,-130.12],[-131.797,-129.46],[-133.744,-127.937],[-134.695,-127.95],[-135.961,-129.194],[-134.498,-130.122]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.05,-0.5],[2.4,-0.295],[-0.894,-1.527],[-0.035,-0.133],[0.231,0.156],[-0.089,0.799],[-0.829,0.271],[-0.268,0.012],[-2.409,-0.608]],"o":[[-2.377,0.241],[-1.703,0.209],[0.067,0.114],[-0.321,-0.023],[-0.372,-0.251],[0.073,-0.657],[0.264,-0.086],[2.447,-0.114],[0.338,0.085]],"v":[[-110.919,-128.493],[-118.023,-128.755],[-118.849,-127.169],[-118.74,-126.772],[-119.686,-126.865],[-120.809,-127.543],[-119.838,-129.239],[-119.043,-129.48],[-111.737,-129.104]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.267,0.01],[0.128,0.442],[-1.349,0.175],[-1.019,0.16],[-0.056,-0.832],[0.761,-0.13]],"o":[[-0.128,-0.443],[1.2,-0.771],[0.998,-0.13],[0.687,-0.108],[0.052,0.775],[-2.261,0.387]],"v":[[-138.796,-131.849],[-139.179,-133.176],[-135.238,-134.2],[-132.21,-134.224],[-130.79,-133.27],[-132.001,-132.056]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.592,-0.453],[0.803,-0.12],[0.759,-0.463],[2.142,0.099],[0.067,0.114],[-1.703,0.209],[-2.377,0.241]],"o":[[0.532,1.049],[-0.793,0.119],[-2.129,-0.443],[-0.035,-0.133],[-0.894,-1.527],[2.4,-0.295],[0.656,0.086]],"v":[[-108.964,-128.153],[-109.92,-126.77],[-112.312,-126.534],[-118.74,-126.772],[-118.849,-127.169],[-118.023,-128.755],[-110.919,-128.493]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.276,0.599],[1.297,-0.102],[1.289,-0.096],[0.285,-0.526],[-0.167,-0.455],[-0.138,-0.185],[-0.004,-0.076],[0.99,0.286],[0.728,-0.772],[1.784,0.228],[0.423,0.16],[-0.902,0.843],[-0.893,0.357],[0.216,0.566],[-2.33,0.069],[-2.177,-0.053]],"o":[[0.121,1.154],[-1.297,0.102],[-0.493,0.037],[-0.299,0.551],[0.076,0.208],[-0.158,0.083],[0.062,1.339],[-1.114,-0.322],[-1.046,1.109],[-0.453,-0.058],[-1.155,-0.438],[0.749,-0.699],[0.454,-0.181],[-0.783,-2.053],[2.176,-0.065],[1.421,0.034]],"v":[[-110.35,-136.221],[-111.903,-134.446],[-115.78,-134.312],[-117.186,-133.956],[-116.638,-132.637],[-116.233,-132.077],[-116.685,-131.828],[-118.294,-130.844],[-120.948,-129.739],[-124.77,-127.622],[-126.113,-127.904],[-126.497,-130.001],[-123.842,-131.14],[-123.323,-132.019],[-120.911,-135.391],[-114.377,-135.394]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.192,-2.613],[0.402,-1.009],[0.822,0.103],[0.3,0.693],[0.145,1.641],[0.019,0.967],[-0.409,0.234],[-0.395,-0.355]],"o":[[0.296,1.103],[-0.232,0.582],[-0.722,-0.09],[-0.672,-1.551],[-0.085,-0.964],[-0.01,-0.514],[0.492,-0.282],[1.677,1.507]],"v":[[227.896,-116.577],[227.012,-113.55],[225.703,-112.328],[224.166,-113.598],[223.196,-118.457],[222.889,-121.339],[223.387,-122.718],[224.907,-122.325]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.07,1.231],[-1.728,1.549],[-3.344,0.871],[-0.443,0.113],[-0.338,-1.207],[0.312,-1.021],[0.876,-1.398],[0.937,0.845],[0.588,-1.059],[-0.512,-1.061],[0.218,-0.171],[0.975,-0.911],[1.238,0.277],[-0.253,0.805]],"o":[[1.687,-1.629],[2.512,-2.251],[0.443,-0.115],[0.964,-0.245],[-0.745,0.577],[-0.476,1.557],[-0.57,0.909],[-1.068,-0.963],[-0.472,0.851],[0.13,0.27],[-1.076,0.844],[-1.022,0.955],[-0.687,-0.154],[0.403,-1.282]],"v":[[204.163,-127.276],[209.153,-132.226],[217.97,-137.053],[219.276,-137.483],[221.46,-136.529],[219.868,-134.332],[217.628,-129.918],[214.49,-129.772],[212.228,-129.335],[211.655,-126.618],[211.521,-125.837],[208.974,-122.765],[205.439,-122.129],[204.231,-123.572]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.79,0.618],[0.176,-0.771]],"o":[[0.093,0.838],[-0.803,-1.015]],"v":[[-130.223,-65.175],[-130.796,-62.874]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1,-0.238],[0.813,0.302],[-0.811,0.003],[0.079,-0.566]],"o":[[-0.817,-0.298],[-0.088,-1.082],[0.957,-0.004],[-0.076,0.542]],"v":[[-136.295,25.759],[-137.977,24.09],[-136.561,22.957],[-135.761,24.182]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.089,0.183],[-1.462,-0.128],[0.043,-0.894],[0.798,-0.117],[0.317,0.048]],"o":[[0.579,-0.437],[0.82,0.072],[-0.039,0.814],[-0.304,0.045],[-0.089,-0.183]],"v":[[-121.508,-80.752],[-120.211,-82.442],[-118.607,-81.381],[-120.293,-80.074],[-121.243,-80.202]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.457,-0.016],[2.691,0.723],[-1.824,-0.005]],"o":[[0.005,2.357],[0.011,-1.837],[0.457,0.001]],"v":[[-109.268,-119.203],[-112.886,-117.002],[-110.639,-119.249]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.012,-0.96],[0.17,-0.644],[0.58,-0.313],[-0.316,0.901],[0.093,0.838],[-0.088,0.261],[-0.455,-0.182],[-0.003,-0.342]],"o":[[-0.718,-0.015],[-0.154,0.584],[-0.179,-0.935],[0.176,-0.771],[0.089,-0.261],[0.323,-0.124],[0.446,0.178],[0.008,0.96]],"v":[[-128.805,-62.616],[-130.046,-61.574],[-130.986,-60.118],[-130.796,-62.874],[-130.223,-65.175],[-129.957,-65.958],[-129.072,-66.462],[-128.776,-65.496]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.248,0.27],[-0.024,0.132],[-2.138,-1.041],[0.003,-0.728],[0.574,-0.178],[0.293,0.319]],"o":[[0.05,-0.127],[0.466,-2.548],[-0.421,0.685],[-0.002,0.628],[-0.584,0.181],[-0.248,-0.27]],"v":[[-122.038,-88.903],[-121.892,-89.286],[-119.289,-90.793],[-119.532,-88.619],[-120.316,-87.286],[-121.294,-88.092]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.71],[-0.561,0.839],[-0.407,-0.209],[0.091,-0.364],[0.367,-1.324],[0.265,0.357]],"o":[[0.029,-1.064],[0.21,-0.315],[0.387,0.199],[-0.332,1.333],[-0.204,0.736],[-0.42,-0.566]],"v":[[-139.102,45.942],[-137.953,43.188],[-136.995,42.88],[-136.602,43.831],[-137.674,47.811],[-138.529,47.894]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.883,0.253],[-0.468,-0.061],[-0.878,0.553],[-0.63,-1.056],[0.014,-0.421],[0.927,-0.13],[0.844,0.126]],"o":[[0.2,-0.484],[1.026,0.134],[1.077,0.098],[-0.298,0.366],[-0.984,-0.122],[0.038,-0.734],[-0.9,-0.135]],"v":[[-108.148,-124.539],[-107.128,-124.964],[-104.262,-125.643],[-101.496,-124.351],[-101.735,-123.126],[-104.467,-122.511],[-105.496,-123.808]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.718,-0.015],[-0.034,-0.279],[-0.005,-0.449],[0.032,-0.956],[1.337,0.053],[-0.037,0.885],[-0.019,0.597],[-0.154,0.584]],"o":[[0.034,0.279],[0.005,0.449],[-0.388,0.911],[-0.042,1.235],[-0.669,-0.867],[0.025,-0.597],[0.58,-0.313],[0.17,-0.644]],"v":[[-128.805,-62.616],[-128.702,-61.78],[-128.688,-60.433],[-129.033,-57.603],[-130.978,-55.676],[-131.044,-58.327],[-130.986,-60.118],[-130.046,-61.574]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.739,0.009],[-0.746,1.134],[-0.917,-0.695],[1.745,-1.575]],"o":[[-0.705,-0.922],[0.387,-0.589],[1.248,0.946],[-0.739,-0.009]],"v":[[-159.722,-134.02],[-160.247,-137.055],[-156.977,-136.675],[-157.506,-133.994]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.473,-0.019],[-0.012,1.268],[-1.302,0.029],[-0.046,-1.012]],"o":[[-1.307,0.016],[0.012,-1.231],[1.3,-0.029],[0.054,1.182]],"v":[[-123.112,-107.514],[-124.881,-109.223],[-122.859,-111.162],[-120.68,-109.571]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.034,-0.255],[0.409,-1.08],[0.582,-0.018],[0.266,0.525],[-0.493,1.253],[-0.765,-0.024]],"o":[[-0.207,1.089],[-0.185,0.488],[-0.569,0.017],[-0.688,-1.357],[0.429,-1.09],[0.034,0.256]],"v":[[-114.215,-116.203],[-114.484,-112.904],[-115.392,-111.82],[-116.697,-112.719],[-116.535,-116.726],[-114.317,-116.969]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.151,-0.611],[0.544,-0.54],[0.725,0.752],[0.35,1.049],[-0.333,0.225],[-0.953,-0.392]],"o":[[-0.047,0.681],[-0.713,0.707],[-0.787,-0.816],[-0.176,-0.528],[0.969,-0.657],[0.966,0.397]],"v":[[-153.032,-75.665],[-153.443,-73.788],[-155.594,-73.706],[-157.094,-76.623],[-156.528,-77.602],[-153.632,-77.552]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.006,-2.225],[1.085,-0.062],[-0.031,0.808],[-1.038,0.018]],"o":[[0.173,0.974],[-1.5,0.085],[0.046,-1.211],[1.216,-0.021]],"v":[[-119.851,-114.529],[-121.232,-112.853],[-124.307,-114.453],[-121.56,-117.566]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.645,0.126],[-1.081,-0.025],[-0.128,-0.443],[-1.312,-1.469],[0.145,-0.371],[0.317,-0.038],[1.499,1.14],[-0.248,0.261],[0.045,0.42]],"o":[[1.154,0.298],[0.128,0.442],[-1.716,1.027],[0.202,0.226],[-0.137,0.352],[-2.095,0.248],[-0.35,-0.266],[0.255,-0.269],[0.591,-0.499]],"v":[[-142.182,-132.366],[-139.179,-133.176],[-138.796,-131.849],[-139.215,-129.244],[-138.758,-128.475],[-139.608,-128.161],[-144.654,-130.309],[-144.609,-131.132],[-144.131,-132.081]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.16,-1.183],[0.784,-0.009],[0.153,-0.454],[-0.25,-0.265],[-0.565,-0.604],[1.026,0.134],[0.2,-0.484],[1.202,0.179],[-0.59,0.782],[-0.793,0.119],[0.532,1.049],[-0.289,1.133],[-0.553,0.683],[-0.27,0.081]],"o":[[-0.784,-0.001],[-0.357,0.004],[-0.143,0.425],[0.567,0.602],[-0.878,0.553],[-0.468,-0.061],[-1.202,-0.179],[-0.539,-0.351],[0.759,-0.463],[0.803,-0.12],[0.664,0.069],[0.217,-0.849],[0.27,-0.081],[0.337,0.529]],"v":[[-103.125,-128.743],[-105.478,-128.742],[-106.425,-128.379],[-105.957,-127.453],[-104.262,-125.643],[-107.128,-124.964],[-108.148,-124.539],[-111.755,-125.077],[-112.312,-126.534],[-109.92,-126.77],[-108.964,-128.153],[-107.38,-128.885],[-105.341,-129.569],[-104.53,-129.812]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.324,-0.124],[-0.252,0.741],[0.026,1.588],[-1.066,-0.056],[0.011,-0.936],[-0.005,-1.435],[0.86,-0.048],[0.094,-1.123],[1.058,-0.885],[0.034,0.279],[0.008,0.96],[0.446,0.178]],"o":[[-0.334,-0.922],[0.49,-1.443],[-0.014,-0.844],[1.041,0.055],[-0.017,1.435],[0.003,0.816],[-1.264,0.07],[-0.086,1.025],[-0.034,-0.279],[0.012,-0.96],[-0.003,-0.342],[-0.455,-0.182]],"v":[[-129.957,-65.958],[-129.255,-68.226],[-128.18,-72.627],[-126.722,-74.302],[-125.425,-72.511],[-125.428,-68.205],[-126.626,-66.82],[-128.254,-64.861],[-128.702,-61.78],[-128.805,-62.616],[-128.776,-65.496],[-129.072,-66.462]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.017,-1.596],[0.16,-0.503],[1.402,0.113],[0.146,1.425],[-0.973,0.272],[-0.999,0.136]],"o":[[-0.043,0.502],[-0.529,1.666],[-1.407,-0.113],[-0.102,-0.998],[0.971,-0.271],[1.602,-0.218]],"v":[[-118.987,-101.956],[-119.165,-100.455],[-122.103,-98.046],[-125.138,-100.997],[-123.823,-103.005],[-120.857,-103.618]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.231,2.46],[-0.062,0.503],[-1.005,0.22],[-0.7,-0.825],[2.013,-1.894],[0.242,0.268]],"o":[[0.057,-0.504],[0.117,-0.946],[1.09,-0.238],[1.788,2.105],[-0.299,0.281],[-1.322,-1.462]],"v":[[-158.662,-112.391],[-158.491,-113.902],[-156.977,-115.83],[-154.226,-114.88],[-154.708,-107.533],[-155.545,-107.432]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.653,-1.48],[-0.585,1.32],[-0.371,0.877],[0.118,4.03],[-0.097,1.008],[-0.817,-0.298],[1.8,-4.037]],"o":[[-0.995,0.264],[0.531,-0.833],[1.612,-3.809],[-0.029,-1.005],[0.813,0.302],[0.713,4.318],[-0.659,1.477]],"v":[[-139.663,42.754],[-140.764,41.657],[-139.807,38.94],[-138.249,27.114],[-137.977,24.09],[-136.295,25.759],[-137.703,38.316]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.128,-0.401],[1.287,2.549],[1.055,1.393],[-0.225,-0.737],[0.179,-1.531],[0.214,0.558],[0.651,5.094],[-0.332,0.862],[-0.563,-0.049],[-0.121,-0.446],[-0.18,-2.19],[-1.85,-3.275],[-2.086,-0.675]],"o":[[-3.302,-0.072],[-0.728,-1.443],[-0.538,0.831],[0.417,1.369],[-0.626,-0.294],[-1.844,-4.815],[-0.11,-0.859],[0.191,-0.494],[0.51,0.044],[0.583,2.144],[0.317,3.864],[1.029,1.822],[0.35,0.113]],"v":[[-132.686,-22.189],[-138.768,-27.121],[-141.294,-31.386],[-141.32,-29.13],[-140.19,-24.986],[-141.111,-26.464],[-144.639,-41.381],[-144.438,-43.992],[-143.456,-44.766],[-142.701,-43.922],[-141.662,-37.383],[-137.827,-26.946],[-133.503,-22.885]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.153,2.304],[-0.392,1.908],[-0.64,-0.023],[-0.178,-0.334],[0.012,-0.905],[0.235,-2.499],[0.564,-0.878],[1.642,-1.766],[2.09,-2.588],[0.187,-0.132],[0.569,0.435],[-0.309,0.575],[-1.685,2.428],[-1.572,2.104]],"o":[[-0.107,-2.191],[0.078,-0.379],[0.626,0.022],[0.498,0.933],[-0.034,2.498],[-0.117,1.244],[-1.253,1.951],[-2.259,2.43],[-0.145,0.18],[-0.436,0.308],[-0.584,-0.446],[1.406,-2.621],[1.501,-2.162],[1.546,-2.069]],"v":[[-132.102,-72.152],[-131.909,-78.179],[-131.266,-79.058],[-130.634,-78.141],[-130.716,-75.422],[-130.958,-67.93],[-132.114,-64.617],[-135.728,-58.66],[-142.032,-50.93],[-142.527,-50.442],[-143.98,-50.007],[-144.04,-51.638],[-139.007,-58.939],[-134.247,-65.228]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.849,0.543],[-0.539,-2.564],[-0.134,0.016],[-0.049,2.423],[-1.671,0.264],[-0.587,-1.15],[0.886,-0.838],[0.342,-0.491],[-1.013,-0.036],[-1.002,-0.445],[0.669,-0.725],[1.308,-0.421],[0.928,-0.003],[0.605,2.223],[0.058,1.98]],"o":[[0.559,2.66],[0.134,-0.016],[0,-2.424],[0.019,-0.954],[1.351,-0.214],[0.517,1.013],[-0.431,0.408],[-0.604,0.867],[1.195,0.042],[0.91,0.404],[-1.208,1.308],[-0.841,0.271],[-2.381,0.007],[-0.538,-1.979],[-0.024,-0.824]],"v":[[-166.516,-105.758],[-164.879,-97.97],[-164.475,-98.018],[-164.459,-105.289],[-163.316,-107.78],[-159.703,-105.991],[-160.009,-103.285],[-161.139,-101.89],[-160.423,-100.062],[-157.318,-98.942],[-157.18,-95.989],[-161.177,-95.306],[-163.945,-95.25],[-167.08,-97.756],[-167.545,-103.679]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.55,-0.006],[-0.12,-0.761],[0.09,-0.089],[0.361,0.067],[0.004,-0.66],[-0.689,-3.9],[0.044,-2.894],[0.363,1.188],[1.253,1.188],[-0.095,0.49],[1.001,1.458],[0.288,1.3],[-0.257,1.607],[-1.418,-0.009],[0.07,1.353],[-0.044,0.548],[0,0.662],[-0.791,0.499],[-0.03,-0.212],[0.135,-0.817]],"o":[[0.119,0.761],[-0.09,0.089],[-0.43,0.034],[-0.513,-0.095],[-0.027,3.96],[0.499,2.826],[-1.82,-0.475],[-0.426,-1.393],[-0.248,-0.235],[0.308,-1.597],[-0.727,-1.059],[-0.314,-1.419],[0.223,-1.393],[1.113,0.007],[-0.028,-0.539],[0.044,-0.552],[0.38,0.282],[0.406,-0.256],[0.12,0.852],[-0.249,1.507]],"v":[[-131.059,-54.582],[-130.7,-52.298],[-130.972,-52.032],[-131.919,-52.547],[-132.87,-51.888],[-132.209,-40.051],[-131.911,-31.546],[-133.793,-34.799],[-135.093,-38.998],[-135.088,-40.475],[-135.872,-44.94],[-137.153,-48.72],[-138.276,-52.932],[-135.881,-55.104],[-134.048,-56.778],[-133.812,-58.412],[-133.803,-60.185],[-132.73,-59.544],[-132.415,-59.032],[-132.789,-56.579]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.124,0.345],[-0.373,-0.654],[-0.168,-1.757],[0.302,-0.144],[0.194,0.22],[-0.295,1.864]],"o":[[1.318,-1.255],[0.096,1.751],[0.025,0.257],[-0.388,0.185],[-1.419,-1.612],[0.056,-0.355]],"v":[[-247.3,-239.133],[-245.622,-238.302],[-245.9,-233.077],[-246.104,-232.333],[-246.887,-232.736],[-247.662,-238.098]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.004,1.357],[-0.908,0.004],[-0.008,-1.759],[-0.018,-4.786],[0.716,-0.775],[1.318,-1.255],[0.011,1.201],[-0.393,1.048],[1.539,0.105],[0.028,0.558],[-0.001,1.795]],"o":[[0.182,-0.356],[1.705,0.546],[0.022,4.786],[0.004,1.09],[-0.373,-0.654],[-0.011,-1.201],[0.483,-0.896],[0.543,-1.447],[-0.702,-0.048],[0.001,-1.795],[0.004,-1.357]],"v":[[-247.327,-257.34],[-246.803,-258.418],[-244.51,-255.406],[-244.493,-241.047],[-245.622,-238.302],[-247.3,-239.133],[-247.333,-242.737],[-245.332,-244.95],[-246.468,-246.923],[-247.341,-247.882],[-247.339,-253.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.325,-0.008],[1.376,0.29],[0.513,0.199],[1.753,1.214],[-0.135,0.773],[-0.623,0.263],[-2.042,-1.785],[-1.89,-1.343],[0.23,-0.732],[0.683,-0.024]],"o":[[-1.376,-0.291],[-0.189,-0.746],[-2.011,-0.781],[-0.508,-0.352],[0.146,-0.84],[2.494,-1.052],[1.737,1.519],[0.577,0.41],[-0.24,0.764],[-0.325,0.011]],"v":[[-180.71,-261.106],[-184.838,-261.977],[-186.272,-262.906],[-191.811,-266.08],[-192.882,-267.574],[-191.267,-268.696],[-184.624,-267.445],[-178.998,-263.361],[-177.911,-261.757],[-179.735,-261.13]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.132,0.052],[0.133,-0.052]],"o":[[-0.132,0.052],[0.132,-0.052]],"v":[[-187.271,-258.282],[-187.668,-258.126]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.755,0.943],[-0.578,-0.606],[0.212,-0.481],[0.65,0.227]],"o":[[0.903,0.036],[0.391,0.41],[-0.232,0.526],[0.745,-1.438]],"v":[[-187.849,-261.487],[-185.766,-260.291],[-185.469,-258.898],[-186.784,-258.263]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.376,-0.291],[-1.397,0.549],[0.594,-0.396],[0.906,-1.899],[0.467,0.368],[1.261,0.757],[-0.62,1.012],[-0.246,0.004],[-0.132,0.052],[-0.163,-0.006],[-0.232,0.526],[0.391,0.41],[0.903,0.036],[0,0],[-1.179,-0.387],[-0.692,-0.2]],"o":[[1.243,0.902],[-0.109,0.912],[-1.641,1.094],[-0.212,0.444],[-1.216,-0.958],[-0.563,-0.338],[0.246,-0.003],[0.133,-0.052],[0.163,0.007],[0.65,0.227],[0.212,-0.481],[-0.578,-0.606],[0,0],[-0.497,-1.069],[0.684,0.224],[1.376,0.29]],"v":[[-180.71,-261.106],[-176.797,-261.173],[-177.942,-259.433],[-182.189,-255.411],[-183.471,-254.946],[-187.551,-256.535],[-188.406,-258.115],[-187.668,-258.126],[-187.271,-258.282],[-186.784,-258.263],[-185.469,-258.898],[-185.766,-260.291],[-187.849,-261.487],[-187.852,-261.51],[-186.912,-262.581],[-184.838,-261.977]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.16,0.477],[0.253,-1.107],[0.484,-0.173],[0.15,0.2],[-0.182,0.366],[0.407,0.595]],"o":[[1.149,0.532],[-0.107,0.467],[-0.256,0.091],[-0.331,-0.444],[0.302,-0.609],[-0.218,-0.319]],"v":[[-225.115,151.641],[-223.352,154.848],[-224.209,155.855],[-224.814,155.675],[-224.604,154.564],[-224.72,152.74]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-0.098],[0.02,0.073],[-0.035,0.028]],"o":[[-0.034,-0.07],[-0.005,-0.018],[-0.001,0.098]],"v":[[-240.608,-271.195],[-240.704,-271.406],[-240.606,-271.489]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.079,-0.104],[-0.079,0.104]],"o":[[0.079,-0.104],[-0.079,0.104]],"v":[[-240.86,-263.94],[-240.623,-264.252]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.127,-0.049],[-0.127,0.049]],"o":[[0.127,-0.049],[-0.127,0.049]],"v":[[-235.65,-248.71],[-235.269,-248.858]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,-1.5],[-1.091,1.028]],"o":[[-1.104,-1.743],[0.007,1.499]],"v":[[-240.611,-266.175],[-240.632,-270.674]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.584,0.083],[-0.038,0.694],[-0.49,0.108],[-0.154,-0.284],[-0.311,-0.609]],"o":[[-0.448,-0.584],[0.019,-0.339],[0.327,-0.072],[0.326,0.601],[-0.495,0.182]],"v":[[-192.173,-259.536],[-192.632,-261.496],[-192.322,-262.429],[-191.611,-261.865],[-190.674,-260.04]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.545,-0.018],[-0.067,0.588],[-0.885,-0.174],[0.034,-0.438]],"o":[[-0.55,-0.044],[0.101,-0.888],[0.492,0.097],[-0.033,0.423]],"v":[[-218.581,-262.539],[-219.315,-263.558],[-216.478,-265.603],[-215.862,-264.669]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.284,0.116],[-2.697,-1.241],[2.309,-0.593]],"o":[[2.459,-1.098],[-2.331,0.531],[-0.091,-0.316]],"v":[[-208.877,-268.436],[-201.239,-269.175],[-208.262,-267.843]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.652,0.237],[-1.311,-0.126],[-2.692,-0.228],[0.165,0.005]],"o":[[0.952,-0.874],[2.69,0.258],[-0.167,0.067],[-3.65,-0.108]],"v":[[-224.982,-223.522],[-221.623,-224.661],[-213.547,-223.967],[-214.047,-223.775]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.181,-2.125],[0.304,0.494],[-0.249,2.501],[0.093,-0.845]],"o":[[-0.365,0.086],[0.431,-2.486],[0.808,0.037],[-0.233,2.12]],"v":[[-189.367,-248.231],[-190.423,-248.342],[-189.815,-255.856],[-188.807,-254.605]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.466,0.275],[0.331,0.685],[-1.801,0.17],[-0.361,-1.083],[0.654,-0.54]],"o":[[0.034,-0.825],[-0.745,-1.543],[0.517,0.865],[0.356,1.068],[-0.667,0.551]],"v":[[-222.753,-260.33],[-223.559,-262.466],[-222.459,-264.265],[-220.497,-261.997],[-221.293,-259.726]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.367,-0.003],[-0.564,2.19],[-0.564,-0.596],[-0.564,-0.756],[-0.745,-1.543],[0.034,-0.825]],"o":[[-2.005,-1.134],[0.251,-0.973],[0.404,1.021],[-1.801,0.17],[0.331,0.685],[-0.367,0.003]],"v":[[-223.854,-260.322],[-225.842,-265.324],[-224.703,-265.625],[-222.459,-264.265],[-223.559,-262.466],[-222.753,-260.33]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.261,0.428],[-1.886,-0.586],[-0.178,-0.448],[1.031,-0.106],[0.127,-0.049],[0.611,-0.045],[0.866,0.171],[-0.538,0.898]],"o":[[1.825,-0.698],[0.092,0.482],[0.444,1.12],[-0.127,0.049],[-0.611,0.044],[-0.85,-0.165],[-1.126,-0.222],[0.258,-0.43]],"v":[[-240.029,-251.68],[-234.467,-251.945],[-234.176,-250.504],[-235.269,-248.858],[-235.65,-248.71],[-237.484,-248.577],[-240.065,-248.816],[-240.812,-250.396]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.365,0.086],[-0.652,-0.49],[-0.247,-0.622],[1.073,1.358],[0.268,0.165],[0.363,-0.275],[-0.16,-0.446],[0.295,-0.293],[0.285,0.177],[0.245,0.852],[1.844,-0.705],[0.188,1.35],[-2.062,0.665],[-1.157,0.027]],"o":[[0.331,0.856],[0.433,0.326],[-1.623,0.254],[-0.199,-0.251],[-0.382,-0.235],[-0.386,0.292],[0.1,0.281],[-0.337,0.335],[-0.724,-0.448],[-0.54,-1.875],[0.425,-1.125],[1.197,1.035],[0.092,0.856],[0.304,0.494]],"v":[[-189.367,-248.231],[-187.533,-246.627],[-186.398,-245.368],[-190.51,-246.628],[-191.206,-247.297],[-192.466,-247.59],[-192.47,-246.304],[-192.277,-245.439],[-193.274,-245.614],[-194.742,-247.541],[-197.149,-248.705],[-195.905,-252.089],[-191.798,-249.999],[-190.423,-248.342]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.806,0.981],[0.156,0.326],[-0.057,0.372],[-0.674,0.043],[-0.273,-0.655],[0.49,-0.317],[0.506,-1.087]],"o":[[0.072,-0.398],[-0.167,-0.348],[0.083,-0.54],[0.807,-0.051],[0.298,0.714],[-1.07,0.693],[-1.061,-0.491]],"v":[[-193.27,-240.748],[-193.577,-241.79],[-193.758,-242.863],[-190.592,-245.248],[-187.423,-243.483],[-188.053,-241.96],[-190.16,-239.133]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.407,-0.414],[0.536,1.16],[-0.42,1.552],[1.599,0.77],[0.214,0.176],[-2.049,0.861],[-0.912,-0.811],[-0.458,-0.576],[-0.175,-0.099],[-0.737,-2.173],[-0.058,-0.401],[0.219,0.103],[-0.171,-0.609]],"o":[[-0.636,-1.114],[-0.649,-1.404],[0.414,-1.531],[-0.243,-0.117],[-1.657,-1.361],[-0.494,1.214],[0.544,0.484],[0.143,0.179],[2.558,1.443],[0.129,0.38],[-0.282,0.313],[-0.848,-0.396],[0.126,0.449]],"v":[[-213.507,-224.074],[-215.396,-227.426],[-215.865,-231.875],[-217.273,-235.484],[-217.926,-235.995],[-217.441,-238.744],[-216.544,-235.842],[-215.13,-234.148],[-214.761,-233.571],[-212.173,-227.195],[-211.989,-225.988],[-212.738,-226.04],[-213.453,-225.361]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.112,1.482],[0.06,1.434],[-1.375,-1.846],[1.264,-0.66],[0.036,-0.23],[0.251,-0.973],[-2.005,-1.134],[1.623,0.051],[-0.231,0.334]],"o":[[0.583,-1.124],[1.242,-2.082],[0.804,1.079],[-0.245,0.128],[-0.564,-0.596],[-0.564,2.19],[-1.227,1.542],[-0.519,-0.229],[1.004,-1.454]],"v":[[-228.632,-264.746],[-226.983,-268.165],[-223.764,-268.455],[-224.359,-266.166],[-224.703,-265.625],[-225.842,-265.324],[-223.854,-260.322],[-228.404,-259.19],[-228.882,-260.32]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.087,-2.268],[0.327,0.811],[0.281,0.992],[-0.011,-0.268],[-0.49,-2.442],[0.467,-0.347],[0.03,0.964],[1.242,1.388],[-0.03,0.955],[-0.597,0.122],[-0.25,-0.448],[-0.352,-0.472],[-0.03,0.37],[-0.863,-0.084],[-0.143,-1.114]],"o":[[-0.942,-0.542],[-0.388,-0.965],[-0.515,0.095],[0.104,2.45],[0.085,0.426],[-0.999,-0.625],[-0.059,-1.894],[-0.67,-0.749],[0.012,-0.39],[0.442,-0.091],[0.197,0.354],[0.167,-0.48],[0.064,-0.798],[0.882,0.086],[0.287,2.237]],"v":[[-208.84,-236.603],[-209.893,-239.019],[-210.767,-242.014],[-211.306,-241.357],[-211.084,-234.003],[-211.351,-232.72],[-212.414,-235.377],[-214.331,-240.303],[-215.224,-242.838],[-214.763,-243.848],[-213.708,-243.402],[-212.877,-242.269],[-212.474,-243.475],[-211.324,-245.045],[-209.407,-243.338]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.773,2.507],[-0.937,0.468],[0.206,-0.406],[0.666,-1.111],[-0.135,-2.677],[2.213,0.074],[-0.406,1.61],[-0.122,1.279]],"o":[[0.967,-0.374],[0.4,0.539],[-0.588,1.156],[-1.383,2.307],[0.115,2.284],[-1.609,-0.054],[0.305,-1.212],[1.773,-2.508]],"v":[[-199.343,-239.153],[-197.279,-241.192],[-197.466,-239.815],[-199.315,-236.393],[-201.033,-228.937],[-204.219,-225.754],[-205.938,-228.125],[-204.662,-231.631]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.19],[-0.236,-0.955],[-1.093,-0.119],[0.205,-0.368],[-0.699,-0.126],[2.057,-0.356],[0.433,0.101],[-0.169,1.067],[-0.066,2.119],[-0.099,3.045],[-0.081,3.744],[-0.511,1.439],[0.332,-1.109],[-0.571,-0.974],[0.508,-1.994],[-0.114,-1.592],[-0.221,-1.324],[0.26,-1.331],[-1.837,-1.321],[-0.471,-0.335]],"o":[[1.161,0.38],[0.269,1.087],[0.048,0.449],[-0.244,0.439],[-2.056,0.357],[0.114,-0.519],[-1.523,-0.354],[0.337,-2.131],[0.095,-3.044],[0.121,-3.727],[0.033,-1.537],[0.929,1.112],[-0.332,1.11],[1.099,1.876],[-0.407,1.598],[0.094,1.316],[0.207,1.243],[-0.456,2.334],[0.288,0.207],[0,-1.339]],"v":[[-239.404,-229.625],[-237.805,-227.222],[-235.854,-225.425],[-236.264,-224.281],[-235.86,-223.242],[-242.03,-222.172],[-242.641,-223.101],[-244.156,-225.823],[-243.964,-232.188],[-243.748,-241.323],[-243.961,-252.537],[-243.109,-256.985],[-243.038,-253.582],[-242.863,-250.421],[-242.42,-244.656],[-243.266,-239.8],[-243.164,-235.848],[-243.055,-232.017],[-240.452,-226.653],[-239.404,-225.907]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.754,-0.837],[-0.852,-2.074],[0.389,-0.386],[0.671,0.179],[1.413,0.779],[-0.048,0.762],[-1.518,0.578],[0.641,-0.013],[1.001,0.137],[0.672,-0.803],[0.959,1.812],[-1.771,0.159],[-1.098,-0.412],[0.151,0.893],[0.788,2.045],[-0.31,0.897],[0.085,0.426],[0.104,2.45],[-0.515,0.095],[-0.388,-0.965],[-0.942,-0.542],[-0.1,-1.021],[-0.363,-2.418],[1.655,-0.982],[-0.677,1.249]],"o":[[-1.756,0.589],[0.167,0.406],[-0.406,0.403],[-1.578,-0.422],[-0.565,-0.312],[1.497,-0.547],[-0.272,-0.804],[-1.019,0.02],[-1.149,-0.157],[-1.78,-0.604],[1.833,0.175],[1.076,-0.096],[0.728,0.273],[-0.352,-2.078],[-0.312,-0.809],[0.467,-0.347],[-0.49,-2.442],[-0.011,-0.268],[0.281,0.992],[0.327,0.811],[-0.158,1.002],[0.361,2.409],[0.216,1.436],[1.121,0.422],[0.754,0.837]],"v":[[-204.897,-220.187],[-206.2,-216.326],[-205.907,-215.081],[-207.567,-214.765],[-212.013,-216.646],[-213.018,-218.185],[-208.338,-218.998],[-209.809,-219.884],[-212.864,-219.898],[-215.442,-218.779],[-219.937,-221.832],[-214.731,-222.833],[-211.51,-222.771],[-210.583,-223.725],[-211.532,-229.989],[-211.351,-232.72],[-211.084,-234.003],[-211.306,-241.357],[-210.767,-242.014],[-209.893,-239.019],[-208.84,-236.603],[-209.065,-233.578],[-208.578,-226.307],[-209.901,-222.345],[-207.159,-222.697]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.079,0.096],[0.079,-0.096]],"o":[[-0.079,0.096],[0.079,-0.096]],"v":[[-203.03,-208.221],[-203.267,-207.934]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,0.279],[-0.28,0.43],[0.345,-0.53],[0.419,0.196]],"o":[[0.593,-0.015],[0.396,0.542],[-0.338,0.519],[0.006,-0.279]],"v":[[-171.994,-186.157],[-170.84,-187.03],[-170.791,-185.37],[-172.014,-185.319]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.061,1.721],[-0.866,0.005],[-0.361,-1.084],[0.248,0.292],[0.773,-0.165]],"o":[[0.734,0.37],[1.33,-0.008],[-0.497,0.044],[-0.544,-0.639],[-1.552,0.332]],"v":[[-172.792,-183.681],[-170.457,-183.074],[-168.28,-180.96],[-169.25,-181.615],[-171.218,-182.209]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.327,-0.257],[0.228,1.161],[-0.749,0.051],[-0.131,-1.144]],"o":[[-1.163,-0.049],[-0.147,-0.75],[1.261,-0.086],[0.114,0.995]],"v":[[-228.781,-147.639],[-231.41,-149.034],[-229.734,-149.936],[-227.648,-148.238]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.592,-0.48],[-0.071,1.023],[-1.15,-0.149],[0.01,-1.084]],"o":[[-0.685,-0.379],[0.051,-0.732],[0.943,0.122],[-0.01,1.048]],"v":[[-212.494,-191.63],[-214.237,-192.712],[-212.646,-194.243],[-210.599,-192.803]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.546,-0.552],[-1.353,0.318],[-0.186,-0.43],[0.37,-0.371]],"o":[[0.06,-1.602],[0.34,-0.08],[0.193,0.447],[-1.05,1.053]],"v":[[-223.502,-196.316],[-220.473,-200.342],[-219.493,-200.081],[-219.743,-198.803]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.289,-0.025],[0.606,0.001],[2.103,-0.703],[0.093,0.292],[-0.709,-0.011],[-2.164,-0.005],[-0.316,-0.599]],"o":[[-0.115,-0.859],[-2.162,-0.004],[-0.093,-0.292],[0.341,-0.659],[2.163,0.032],[0.562,0.485],[-0.288,0.025]],"v":[[-220.519,-163.051],[-221.89,-163.837],[-228.332,-163.3],[-228.61,-164.175],[-227.002,-164.99],[-220.51,-164.966],[-219.654,-163.127]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.115,-0.859],[1.427,0.308],[0.737,-0.598],[1.448,0.885],[-0.91,0.701],[-2.162,-0.004]],"o":[[-1.409,-0.032],[-0.93,-0.201],[-1.286,1.043],[0.942,-0.631],[2.103,-0.703],[0.606,0.001]],"v":[[-220.519,-163.051],[-224.749,-163.009],[-227.357,-162.362],[-231.398,-161.964],[-228.332,-163.3],[-221.89,-163.837]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.476,0.21],[-0.891,-0.646],[0.636,-0.459],[0.055,1.485]],"o":[[1.208,0.073],[0.652,0.473],[-1.208,0.872],[-0.031,-0.852]],"v":[[-224.828,-153.837],[-221.699,-152.672],[-221.845,-151.066],[-226.219,-153.019]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.122,-0.175],[1.281,-0.155],[0.222,0.518],[-0.423,0.275],[-0.493,0.255],[-0.769,-2.039]],"o":[[-1.277,0.188],[-0.443,0.053],[-0.26,-0.606],[0.466,-0.302],[1.903,-0.982],[-0.122,0.175]],"v":[[-220.294,-166.096],[-224.128,-165.544],[-225.374,-165.909],[-224.68,-167.096],[-223.239,-167.936],[-219.928,-166.621]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.603,-0.693],[0.708,1.012],[-1.211,0.745],[-0.575,-0.464]],"o":[[-0.965,0.28],[0.724,-1.066],[0.628,0.121],[-0.433,1.166]],"v":[[-194.938,-196.606],[-197.562,-197.126],[-195.434,-200.354],[-193.54,-200.063]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.009,-1.035],[1.144,0.365],[0.567,0.728],[-1.424,0.359]],"o":[[0.011,1.202],[-0.846,-0.27],[-0.918,-1.178],[0.982,-0.248]],"v":[[-194.836,-181.334],[-196.606,-180.017],[-198.826,-181.364],[-198.003,-183.848]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.18,-0.679],[1.029,-1.374],[0.569,0.558],[0.918,0.582],[-0.972,0.286],[-1.033,-0.015],[-0.832,-0.025]],"o":[[-1.581,0.04],[-0.904,0.143],[-0.797,-0.781],[0.807,-0.707],[0.503,0.933],[0.832,0.012],[0.565,0.017]],"v":[[-177.288,-194.848],[-181.381,-193.156],[-183.586,-194.029],[-186.25,-195.908],[-183.43,-197.009],[-181.086,-195.641],[-178.589,-195.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.391,1.735],[-1.065,0.182],[-0.163,-0.913],[-1.014,-0.516],[0.303,-0.518],[0.568,0.244]],"o":[[0.082,-1.06],[1.1,-0.188],[0.17,0.951],[0.505,0.257],[-0.307,0.526],[-1.635,-0.704]],"v":[[-194.335,-189.025],[-192.979,-191.149],[-191.427,-189.654],[-190.023,-187.255],[-189.714,-185.928],[-191.009,-185.605]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.241,0.015],[0.018,1.138],[-1.189,-0.147],[0.065,-1.288]],"o":[[-1.282,-0.015],[-0.015,-0.943],[0.919,0.114],[-0.077,1.522]],"v":[[-209.15,-194.241],[-211.586,-196.402],[-208.619,-198.625],[-206.854,-196.947]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.757,-0.003],[0.281,1.045],[-0.853,0.381],[-0.945,-0.374],[-0.089,-0.897],[0.748,-0.421]],"o":[[-1.071,-0.053],[-0.286,-1.065],[0.797,-0.356],[0.775,0.306],[0.093,0.932],[-0.603,0.34]],"v":[[-221.17,-185.871],[-223.262,-187.549],[-221.996,-189.587],[-219.462,-189.87],[-217.81,-188.398],[-219.145,-186.446]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.063,-0.935],[1.119,-0.144],[0.088,-1.848],[0.371,-0.127],[-0.019,-0.46],[-0.341,-0.144],[-1.746,-0.718],[-0.769,-0.304],[0.801,0.37],[1.916,0.911],[-1.936,1.341],[-1.537,0.225]],"o":[[-1.099,-0.068],[-1.353,0.174],[-0.021,0.438],[-0.328,0.112],[0.015,0.376],[1.738,0.737],[0.765,0.315],[-0.648,0.63],[-1.926,-0.889],[-2.103,-1],[1.21,-0.838],[1.391,-0.204]],"v":[[-230.324,-171.376],[-233.607,-171.714],[-236.431,-169.556],[-237.172,-168.847],[-237.979,-168.244],[-237.245,-167.48],[-232.017,-165.305],[-229.71,-164.391],[-231.867,-164.1],[-237.665,-166.726],[-237.882,-170.373],[-234.01,-172.408]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.081,0.28],[-0.967,0.981],[-0.11,0.837],[0.4,0.045],[-0.626,0.049],[-0.075,-0.722],[-0.475,0.162],[-0.764,-0.804],[0.585,-0.396],[1.903,-0.982],[0.466,-0.302],[-0.26,-0.606],[-0.443,0.053],[-1.277,0.188],[0.172,-0.357],[2.163,0.032],[0.341,-0.658]],"o":[[0.956,-0.992],[0.522,-0.53],[-0.421,-0.046],[0.15,-0.865],[0.601,-0.048],[0.092,0.888],[1.227,-0.418],[0.503,0.529],[-0.769,-2.039],[-0.493,0.255],[-0.423,0.275],[0.222,0.518],[1.281,-0.155],[0.099,0.409],[-2.164,-0.005],[-0.709,-0.011],[-0.244,0.014]],"v":[[-229.152,-164.477],[-226.282,-167.45],[-225.166,-169.357],[-226.387,-169.492],[-224.848,-170.863],[-223.842,-169.441],[-222.564,-168.985],[-219.782,-167.983],[-219.928,-166.621],[-223.239,-167.936],[-224.68,-167.096],[-225.374,-165.909],[-224.128,-165.544],[-220.294,-166.096],[-220.51,-164.966],[-227.002,-164.99],[-228.61,-164.175]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.238,-1.051],[0.818,-0.672],[0.453,0.408],[0.699,0.91],[-1.12,0.828],[-0.87,-1.059]],"o":[[0.17,1.192],[-0.48,0.395],[-0.857,-0.772],[-0.738,-0.961],[1.228,-0.908],[0.61,0.743]],"v":[[-224.436,-199.117],[-225.704,-196.467],[-227.236,-196.411],[-229.654,-198.891],[-228.89,-201.897],[-225.418,-201.72]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.322,-0.027],[-0.418,-0.326],[0.624,-0.715],[1.209,-0.681],[0.521,0.41],[0.117,0.245],[-1.978,1.537],[-0.736,-0.944]],"o":[[0.119,0.689],[0.733,0.572],[-0.931,1.067],[-1.004,0.566],[-0.086,-0.26],[-1.128,-2.356],[0.71,-0.551],[0.222,0.285]],"v":[[-203.825,-181.377],[-202.591,-180.364],[-202.382,-178.501],[-205.703,-176.018],[-207.414,-176.962],[-207.676,-177.74],[-206.82,-181.621],[-204.713,-181.68]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.868,1.029],[-0.729,0.266],[-0.151,-0.699],[-0.092,-0.157],[0.457,-1.268],[1.513,-0.627],[0.351,-0.11],[0.014,2.448]],"o":[[0.909,0.097],[0.497,-0.182],[0.037,0.172],[0.368,0.63],[-0.542,1.506],[-0.338,0.14],[-2.414,0.755],[0.625,-1.194]],"v":[[-213.25,-207.886],[-211.224,-208.953],[-210.197,-208.586],[-209.958,-208.097],[-208.754,-206.25],[-211.623,-202.919],[-212.674,-202.586],[-215.507,-204.562]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.035,-2.238],[1.162,-1.055],[0.505,1.01],[0.369,1.301],[-1.33,0.391]],"o":[[-0.242,1.143],[-0.745,0.677],[-0.598,-1.196],[-0.384,-1.355],[1.766,-0.519]],"v":[[-227.496,-192.929],[-229.49,-189.341],[-231.506,-189.704],[-233.114,-193.374],[-231.522,-196.396]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.955,0.145],[0.368,-0.406],[-0.186,-0.463],[-0.358,0.006],[-0.988,-0.828],[-0.533,-0.277],[-0.225,1.022],[-0.857,-0.311],[-0.489,-0.133],[-1,1.719],[-0.663,-0.048],[-0.598,-0.38],[-0.55,-0.228],[0.669,-0.782],[2.102,1.318],[1.422,-1.561],[0.89,0.402],[0.757,0.107],[1.033,-0.087],[-0.038,1.252]],"o":[[-0.165,0.575],[-0.355,0.391],[0.18,0.448],[1.242,-0.021],[0.449,0.376],[1.003,0.521],[0.195,-0.882],[0.472,0.171],[1.869,0.507],[0.401,-0.69],[-0.029,0.241],[0.501,0.318],[0.97,0.401],[-1.755,2.051],[-1.474,-0.924],[-0.639,0.701],[-0.672,-0.303],[-0.88,-0.438],[-0.427,-0.665],[0.031,-1.03]],"v":[[-232.838,-161.661],[-233.891,-160.395],[-234.148,-159.112],[-233.18,-158.785],[-229.83,-157.7],[-228.243,-156.858],[-226.396,-157.734],[-224.927,-158.568],[-223.441,-158.247],[-219.661,-159.824],[-217.965,-160.459],[-218.17,-159.784],[-216.569,-158.986],[-216.281,-157.425],[-222.032,-156.786],[-226.364,-156.561],[-228.825,-156.283],[-230.854,-157.165],[-233.639,-157.979],[-235.432,-158.984]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.029,0.586],[0.511,0.19],[0.025,0.871],[-0.718,0.333],[0.544,0.676],[-0.219,0.327],[-0.301,0.021],[-0.597,-0.843],[0.058,-0.047],[-0.427,-0.57],[-0.721,-0.641],[0.613,-0.403],[2.063,0.61],[0.084,0.572],[-0.079,0.096]],"o":[[0.821,0.033],[0.028,-0.567],[-0.759,-0.282],[-0.024,-0.817],[0.814,-0.377],[-0.199,-0.248],[0.244,-0.363],[1.365,-0.095],[0.068,0.096],[-1.355,1.085],[0.58,0.775],[0.762,0.677],[-1.738,1.143],[-0.424,-0.52],[0.079,-0.096],[0,0]],"v":[[-203.001,-208.268],[-201.927,-209.446],[-202.937,-210.436],[-204.962,-211.609],[-203.026,-212.902],[-202.63,-214.339],[-202.883,-215.207],[-201.99,-215.226],[-199.667,-213.336],[-199.631,-212.947],[-199.086,-210.917],[-197.146,-208.748],[-197.338,-207.254],[-203.002,-206.218],[-203.267,-207.934],[-203.03,-208.221]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.679,0.115],[-2.458,-0.383],[-0.123,-0.531],[0.37,-0.2],[1.169,-1.524],[-0.077,-0.105],[-1.737,0.667],[-1.501,0.593],[-0.27,0.031],[-0.169,-0.408],[0.314,-0.236],[0.864,-0.162],[0.88,-0.406],[1.753,-0.829],[0.465,0.508],[-0.421,0.708],[-0.561,0.954],[0.724,0.162],[1.122,0.231],[0.307,0.971],[-0.812,0.583]],"o":[[0.328,1.838],[0.382,0.059],[0.143,0.617],[-1.847,0.996],[0.077,0.105],[1.746,-0.645],[1.506,-0.578],[0.252,-0.1],[0.474,-0.054],[0.185,0.447],[-0.657,0.494],[-0.877,-0.895],[-1.76,0.813],[-0.5,0.237],[-0.483,-0.528],[0.565,-0.951],[0.429,-0.729],[-1.117,-0.25],[-0.806,-0.166],[0.812,-0.583],[0.679,-0.115]],"v":[[-242.589,-221.591],[-238.715,-218.511],[-237.63,-218.177],[-238.529,-217.319],[-242.279,-212.934],[-242.049,-212.618],[-236.814,-214.559],[-232.319,-216.357],[-231.52,-216.547],[-230.267,-216.167],[-231.022,-215.34],[-233.11,-214.046],[-235.771,-214.073],[-241.032,-211.591],[-242.559,-211.488],[-242.761,-213.385],[-241.145,-216.286],[-241.701,-217.613],[-245.081,-218.236],[-247.06,-219.496],[-244.625,-221.245]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.581,0.04],[-0.725,-0.831],[1.782,-2.353],[0.164,-0.275],[1.247,1.726],[0.524,0.169],[0.05,0.58],[-0.416,0.18],[0.023,0.542],[0.583,-0.052]],"o":[[1.513,-0.289],[1.944,2.23],[-0.192,0.254],[-2.073,0.715],[-0.327,-0.453],[-0.425,-0.137],[-0.054,-0.624],[0.367,-0.159],[-0.022,-0.519],[1.029,-1.374]],"v":[[-177.288,-194.848],[-174.459,-193.023],[-174.357,-188.393],[-174.852,-187.569],[-179.732,-189.266],[-181.244,-189.878],[-182.221,-190.726],[-181.34,-191.618],[-180.47,-192.358],[-181.381,-193.156]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.862,0.247],[-1.295,0.667],[-0.165,0.708],[-1.425,-0.396],[-0.724,-1.134],[-1.388,-2.23],[1.629,-0.901],[0.796,-0.087],[1.535,1.399],[-1.738,1.143],[0.762,0.677],[0.58,0.775],[-1.355,1.085],[0.068,0.096],[1.365,-0.095],[0.244,-0.363],[-0.199,-0.248],[0.814,-0.377],[-0.024,-0.817],[-0.759,-0.282],[0.028,-0.567],[0.821,0.033],[0.876,0.159]],"o":[[-0.492,-1.236],[0.661,-0.34],[0.334,-1.43],[1.417,0.394],[1.413,2.214],[1.069,1.718],[-0.742,-0.552],[-2.248,0.245],[2.063,0.61],[0.613,-0.403],[-0.721,-0.641],[-0.427,-0.57],[0.058,-0.047],[-0.597,-0.843],[-0.301,0.021],[-0.219,0.327],[0.544,0.676],[-0.718,0.333],[0.025,0.871],[0.511,0.19],[-0.029,0.586],[0.219,-0.523],[-0.878,-0.16]],"v":[[-206.04,-210.126],[-205.075,-213.02],[-204.05,-214.735],[-201.606,-216.068],[-198.666,-213.486],[-194.486,-206.805],[-195.168,-203.637],[-197.582,-203.969],[-203.002,-206.218],[-197.338,-207.254],[-197.146,-208.748],[-199.086,-210.917],[-199.631,-212.947],[-199.667,-213.336],[-201.99,-215.226],[-202.883,-215.207],[-202.63,-214.339],[-203.026,-212.902],[-204.962,-211.609],[-202.937,-210.436],[-201.927,-209.446],[-203.001,-208.268],[-203.451,-209.405]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.965,0.28],[0.551,-0.532],[3.196,-1.823],[3.435,-0.413],[1.347,0.084],[0.026,0.744],[-0.459,0.07],[-2.726,0.947],[-1.022,0.433],[0.17,1.568],[-0.743,0.099],[-0.157,-0.679],[-0.645,0.67],[-1.555,1.242],[0.78,0.327],[-0.099,0.376]],"o":[[0.103,0.777],[-2.594,2.506],[-3.004,1.713],[-1.332,0.16],[-0.593,-0.037],[-0.024,-0.684],[2.828,-0.429],[1.057,-0.367],[1.357,-0.575],[-0.072,-0.664],[0.795,-0.106],[0.189,0.815],[1.382,-1.435],[0.477,-0.381],[-0.448,-0.188],[0.708,1.012]],"v":[[-194.938,-196.606],[-195.552,-194.554],[-203.596,-187.328],[-213.282,-184.199],[-217.287,-183.922],[-218.74,-184.614],[-217.392,-185.257],[-209,-186.969],[-205.935,-188.276],[-204.042,-191.269],[-203.711,-193.231],[-202.908,-191.478],[-201.697,-191.172],[-197.222,-195.112],[-197.284,-196.169],[-197.562,-197.126]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.956,-0.992],[0.186,-0.029],[0.765,0.315],[1.738,0.737],[0.015,0.376],[-0.328,0.112],[-0.021,0.438],[-1.353,0.174],[-1.099,-0.068],[-0.461,-0.656],[-0.781,-0.003],[-0.421,-0.046],[0.522,-0.53]],"o":[[-0.186,0.029],[-0.769,-0.304],[-1.746,-0.718],[-0.341,-0.144],[-0.019,-0.46],[0.371,-0.127],[0.088,-1.848],[1.119,-0.144],[0.54,0.558],[0.637,0.907],[0.4,0.045],[-0.11,0.837],[-0.967,0.981]],"v":[[-229.152,-164.477],[-229.71,-164.391],[-232.017,-165.305],[-237.245,-167.48],[-237.979,-168.244],[-237.172,-168.847],[-236.431,-169.556],[-233.607,-171.714],[-230.324,-171.376],[-228.697,-169.704],[-226.387,-169.492],[-225.166,-169.357],[-226.282,-167.45]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.165,0.575],[-0.471,0.143],[-1.286,1.043],[-0.93,-0.201],[-1.409,-0.032],[-0.289,0.025],[-0.508,0.077],[0.299,-0.332],[0.307,-0.075],[0.401,-0.69],[1.869,0.507],[0.472,0.171],[0.195,-0.882],[1.003,0.521],[0.449,0.376],[1.242,-0.021],[0.18,0.448],[-0.355,0.391]],"o":[[0.408,-0.444],[1.448,0.885],[0.737,-0.598],[1.427,0.308],[0.289,-0.025],[0.452,0.03],[0.46,-0.07],[-0.175,0.194],[-0.663,-0.048],[-1,1.719],[-0.489,-0.133],[-0.857,-0.311],[-0.225,1.022],[-0.533,-0.277],[-0.988,-0.828],[-0.358,0.006],[-0.186,-0.463],[0.368,-0.406]],"v":[[-232.838,-161.661],[-231.398,-161.964],[-227.357,-162.362],[-224.749,-163.009],[-220.519,-163.051],[-219.654,-163.127],[-218.331,-162.838],[-217.069,-160.707],[-217.965,-160.459],[-219.661,-159.824],[-223.441,-158.247],[-224.927,-158.568],[-226.396,-157.734],[-228.243,-156.858],[-229.83,-157.7],[-233.18,-158.785],[-234.148,-159.112],[-233.891,-160.395]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.593,-0.081],[-0.098,-0.519],[0.275,-0.14],[1.452,-0.611],[0.597,-4.375],[1.219,-0.621],[4.459,-3.028],[0.61,0.202],[-0.041,0.136],[-0.544,0.155],[-0.655,0.677],[-3.56,3.962],[-1.132,1.282],[-1,0.471],[-2.2,1.103]],"o":[[0.339,0.048],[0.078,0.411],[-1.408,0.715],[-4.137,1.741],[-0.198,1.451],[-4.792,2.44],[-0.429,0.292],[-0.098,-0.032],[0.186,-0.616],[0.915,-0.261],[3.702,-3.825],[1.143,-1.272],[0.708,-0.802],[2.226,-1.048],[0.501,-0.251]],"v":[[-213.418,-199.262],[-212.503,-198.884],[-213.112,-198.228],[-217.355,-196.125],[-224.379,-186.876],[-226.526,-183.867],[-240.532,-175.898],[-242.053,-175.395],[-242.208,-175.866],[-240.93,-176.799],[-238.608,-178.259],[-227.461,-189.694],[-224.106,-193.576],[-221.613,-195.537],[-215.001,-198.82]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.358,-1.875],[0.013,-1.565],[0.251,-5.839],[0.096,-7.093],[0.747,0.029],[-0.017,0.388],[-0.227,2.838],[-0.04,3.888],[0.108,2.309],[0.003,0.619],[0.213,4.076],[0.154,3.08],[1.102,-0.078],[0.102,0.908],[-0.001,0.882],[0.008,-1.328],[-0.684,-2.073],[-0.906,0.678],[-0.007,-0.666],[-0.001,-0.278],[-1.656,0.308],[-0.253,-0.441],[0.635,-0.321],[0.673,-0.065]],"o":[[-2.193,0.257],[-0.048,5.849],[-0.305,7.097],[-0.006,0.428],[-0.631,-0.025],[0.123,-2.874],[0.312,-3.899],[0.023,-2.308],[0.18,-0.575],[-0.017,-4.087],[-0.161,-3.086],[-0.04,-0.812],[0.885,-0.173],[-0.097,-0.871],[1.459,0.207],[-0.012,2.056],[0.033,-1.477],[0.413,-0.309],[0.003,0.278],[0.004,1.68],[0.552,-0.103],[0.32,0.559],[0.061,-1.712],[-2.414,0.234]],"v":[[-210.763,-146.469],[-212.963,-142.951],[-213.053,-125.405],[-213.277,-104.122],[-213.866,-103.118],[-214.372,-104.068],[-214.6,-112.661],[-214.428,-124.332],[-214.727,-131.26],[-214.408,-133.025],[-214.47,-145.284],[-214.64,-154.531],[-215.856,-155.852],[-214.643,-157.288],[-214.66,-159.933],[-212.967,-157.478],[-212.614,-151.259],[-210.44,-153.829],[-209.635,-153.437],[-209.635,-152.604],[-207.913,-151.136],[-206.738,-150.735],[-207.127,-149.346],[-208.96,-150.186]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.01,-0.564],[0.639,-0.112],[0.808,-0.707],[0.545,1.321],[0.627,1.138],[0.243,2.035],[-0.262,0.324],[0.538,0.506],[0.579,-0.465],[0.171,0.633],[0.151,0.816],[-0.664,0.403],[-0.497,-0.419],[-0.347,-0.374],[-0.487,0.028],[-0.168,0.264],[0.143,0.207],[-1.734,0.498],[-0.134,-0.691],[0.812,-1.624],[0.031,-1.189],[-0.525,-0.356],[-0.756,0.18],[-0.013,-2.291],[-0.059,-0.061],[-1.087,-0.868]],"o":[[-0.639,0.112],[-0.972,0.286],[-1.097,-0.117],[-0.458,-1.111],[-0.799,-1.971],[0.278,-0.311],[0.226,-0.28],[-0.316,-0.297],[-0.78,0.626],[-0.216,-0.801],[-0.12,-0.648],[0.658,-0.399],[0.39,0.328],[0.347,0.375],[0.279,-0.016],[0.214,-0.336],[-1.039,-1.506],[0.658,-0.189],[0.292,1.506],[-1.313,0.56],[-0.02,0.756],[0.446,0.302],[2.017,-0.48],[-0.091,0.207],[0.941,0.963],[0.413,0.33]],"v":[[-181.514,-197.346],[-183.43,-197.009],[-186.251,-195.908],[-188.789,-197.492],[-191.226,-200.38],[-191.926,-206.488],[-191.094,-207.422],[-190.796,-208.399],[-191.938,-208.719],[-193.181,-209.327],[-193.716,-211.758],[-193.271,-213.527],[-191.539,-213.086],[-190.453,-212.005],[-189.192,-211.549],[-188.436,-211.807],[-188.731,-212.486],[-188.026,-214.452],[-186.984,-213.855],[-186.498,-209.304],[-188.07,-206.353],[-188.12,-204.188],[-185.906,-204.579],[-183.698,-202.615],[-183.951,-202.012],[-182.244,-198.592]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.651,-1.509],[0.013,-0.246],[0.593,-0.015],[1.215,-0.062],[-0.192,0.254],[1.944,2.23],[1.513,-0.289],[0.565,0.017],[0.832,0.012],[0.503,0.933],[-0.639,0.112],[-2.567,-0.185],[0.911,0.571],[2.006,0.287],[0.704,0.566],[2.017,-0.48],[0.446,0.302],[-0.02,0.756],[-1.313,0.56],[-0.786,-0.553],[-0.436,-0.413],[-0.637,0.5],[0.264,0.509],[0.921,0.674],[-0.525,0.663],[-0.408,0.771],[-1.508,-1.132],[0.684,-1.252],[-1.132,-0.499],[-1.238,-1.434],[-0.805,0.913],[-0.1,0.096],[-0.976,-0.388],[-0.04,-1.016],[0.119,0.297],[0.627,0.043],[0.167,-0.484],[-0.036,-1.779],[-0.554,-0.033],[-0.056,0.505],[-0.358,0.476],[-0.26,-0.32],[0.767,-0.482]],"o":[[-0.013,0.246],[-0.28,0.43],[-0.609,-1.167],[0.164,-0.275],[1.782,-2.353],[-0.725,-0.831],[-0.18,-0.679],[-0.832,-0.025],[-1.033,-0.015],[0.639,-0.112],[2.537,0.183],[-0.178,-1.393],[-1.69,-1.059],[-0.913,-0.131],[-0.014,-2.291],[-0.756,0.18],[-0.525,-0.356],[0.031,-1.189],[1.045,0.265],[0.484,0.341],[0.676,0.64],[0.641,-0.503],[-0.559,-1.079],[-0.569,-0.417],[0.891,0.04],[0.154,1.861],[1.109,0.833],[-0.648,1.186],[1.715,0.757],[0.817,0.946],[0.092,-0.104],[0.591,-0.565],[0.928,0.369],[-0.784,0.9],[-0.19,-0.472],[-0.641,-0.044],[-0.573,1.663],[0.007,0.364],[0.492,0.029],[0.054,-0.486],[0.343,0.423],[0.127,0.979],[-1.475,0.926]],"v":[[-170.8,-187.768],[-170.84,-187.03],[-171.994,-186.157],[-174.852,-187.569],[-174.357,-188.393],[-174.459,-193.023],[-177.288,-194.848],[-178.589,-195.638],[-181.086,-195.641],[-183.43,-197.009],[-181.514,-197.346],[-173.872,-196.794],[-175.94,-199.202],[-181.293,-201.72],[-183.698,-202.615],[-185.906,-204.579],[-188.12,-204.188],[-188.07,-206.353],[-186.498,-209.305],[-184.461,-207.347],[-183.175,-206.088],[-181.022,-205.957],[-181.236,-207.655],[-183.897,-209.803],[-184.29,-211.247],[-182.37,-212.389],[-179.757,-208.14],[-179.406,-204.558],[-178.541,-202.126],[-174.045,-198.946],[-171.591,-198.984],[-171.295,-199.279],[-169.212,-200.316],[-167.789,-198.112],[-168.429,-198.47],[-169.407,-199.505],[-170.47,-198.582],[-171.425,-193.443],[-170.924,-192.633],[-170.057,-193.313],[-169.53,-194.723],[-168.666,-193.66],[-169.722,-191.394]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.128,0.683],[-0.01,-0.045],[-0.611,-0.421],[-0.518,0.257],[-0.308,-0.318],[0.127,-0.27],[-1.085,0.209],[-1.6,1.308],[-0.984,0.676],[0.529,0.586],[0.832,0.382],[1.467,0.78],[1.561,0.388],[-1.037,1.054],[0.248,0.463],[-0.845,-0.008],[-1.78,-0.604],[-0.825,-0.128],[-0.565,-0.312],[-1.578,-0.422],[-0.406,0.403],[0.167,0.406],[-1.756,0.589],[-1.416,-0.806],[-0.282,-0.023],[-0.313,-0.002],[-0.104,0.083],[0,0],[-1.871,-0.599],[0.157,-0.278],[-2.79,-1.075],[-0.799,-1.971],[0.006,-0.425],[0.37,-0.102],[0.11,0.278],[0.439,0.109],[0.628,0.121],[0.902,1.175],[1.069,1.718],[1.413,2.214],[1.417,0.394],[0.334,-1.43],[0.661,-0.34],[-0.492,-1.236],[0.107,-1.519],[1.803,-0.593],[1.276,0.227],[0.141,0.723],[-1.017,0.739],[-2.414,0.755],[-0.338,0.14],[-0.542,1.506],[0.368,0.63],[0.037,0.172],[0.497,-0.182],[0.909,0.097],[-0.439,0.722],[0.346,-0.366],[2.603,-0.674],[0.284,0.993]],"o":[[0.005,0.046],[0.135,0.579],[0.576,0.397],[0.261,-0.13],[0.28,0.289],[-0.503,1.071],[2.046,-0.395],[0.927,-0.758],[0.766,-0.526],[-0.646,-0.716],[-1.51,-0.694],[-1.388,-0.738],[-0.898,-0.223],[0.428,-0.435],[0.846,0.008],[0.959,1.812],[0.685,0.7],[-0.048,0.762],[1.413,0.779],[0.671,0.179],[0.389,-0.386],[-0.852,-2.074],[1.584,0.586],[0.065,0.288],[0.233,0.284],[0.104,-0.083],[0,0],[2.198,-0.695],[0.698,0.224],[-1.157,2.042],[0.243,2.035],[-0.594,0.046],[-0.005,0.317],[-0.454,0.125],[-0.161,-0.404],[-0.575,-0.464],[0.626,-1.051],[1.629,-0.901],[-1.388,-2.23],[-0.724,-1.134],[-1.425,-0.396],[-0.165,0.708],[-1.295,0.667],[-1.738,0.722],[-0.133,1.894],[-1.128,0.371],[-0.554,-0.099],[-0.169,-0.865],[0.014,2.448],[0.351,-0.11],[1.513,-0.627],[0.457,-1.268],[-0.092,-0.157],[-0.151,-0.699],[-0.729,0.266],[0.35,-0.576],[-0.723,0],[-2.009,2.125],[-0.896,0.232],[-0.456,-1.593]],"v":[[-221.961,-210.72],[-221.945,-210.582],[-221.982,-208.9],[-220.403,-209.475],[-219.546,-209.648],[-219.667,-208.75],[-218.735,-207.619],[-213.309,-210.236],[-210.499,-212.471],[-210.343,-214.047],[-212.725,-215.434],[-217.17,-217.669],[-221.786,-219.029],[-222.402,-220.439],[-222.474,-221.855],[-219.937,-221.832],[-215.442,-218.779],[-213.018,-218.185],[-212.013,-216.646],[-207.567,-214.765],[-205.907,-215.081],[-206.2,-216.326],[-204.897,-220.187],[-201.042,-217.25],[-200.502,-216.808],[-199.631,-216.562],[-199.32,-216.81],[-199.308,-216.817],[-193.588,-215.372],[-193.724,-214.417],[-191.926,-206.488],[-191.226,-200.38],[-191.802,-199.475],[-192.123,-198.644],[-192.674,-199.253],[-193.54,-200.063],[-195.435,-200.353],[-195.168,-203.637],[-194.486,-206.805],[-198.666,-213.486],[-201.606,-216.068],[-204.05,-214.735],[-205.075,-213.02],[-206.04,-210.126],[-207.958,-206.301],[-210.896,-202.346],[-214.36,-201.494],[-215.948,-201.885],[-215.507,-204.562],[-212.674,-202.586],[-211.623,-202.919],[-208.754,-206.25],[-209.958,-208.097],[-210.197,-208.586],[-211.224,-208.953],[-213.25,-207.886],[-212.111,-209.759],[-213.579,-209.124],[-220.989,-206.018],[-222.858,-207.502]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.328,1.838],[-0.186,0.193],[-2.056,0.357],[-1.178,0.282],[-0.631,-0.885],[-0.3,-0.408],[-1.536,0.374],[-1.286,-0.096],[0.428,-0.435],[-0.898,-0.223],[-1.388,-0.738],[-1.51,-0.694],[-0.646,-0.716],[0.766,-0.526],[0.927,-0.758],[2.046,-0.395],[-0.503,1.071],[0.28,0.289],[0.261,-0.13],[0.576,0.397],[0.135,0.579],[0.005,0.046],[-0.663,0.361],[0.09,0.332],[0.346,-0.016],[0.196,-0.098],[3.916,-1.937],[0.31,-0.081],[0.246,0.27],[-0.114,0.295],[-0.494,1.866],[-0.657,0.494],[0.185,0.447],[0.474,-0.054],[0.252,-0.1],[1.506,-0.578],[1.746,-0.645],[0.077,0.105],[-1.847,0.996],[0.143,0.617],[0.382,0.059]],"o":[[0.186,-0.194],[2.057,-0.356],[0.923,-0.586],[1.019,-0.244],[0.294,0.412],[0.884,1.201],[1.192,-0.29],[0.248,0.463],[-1.037,1.054],[1.561,0.388],[1.467,0.78],[0.832,0.382],[0.529,0.586],[-0.984,0.676],[-1.6,1.308],[-1.085,0.209],[0.127,-0.27],[-0.308,-0.318],[-0.518,0.257],[-0.611,-0.421],[-0.01,-0.045],[0.167,-0.702],[0.249,-0.136],[-0.1,-0.369],[-0.228,0.011],[-3.912,1.95],[-0.29,0.144],[-0.308,0.08],[-0.274,-0.301],[0.687,-1.771],[0.864,-0.162],[0.314,-0.236],[-0.169,-0.408],[-0.27,0.031],[-1.501,0.593],[-1.737,0.667],[-0.077,-0.105],[1.169,-1.524],[0.37,-0.2],[-0.123,-0.531],[-2.458,-0.383]],"v":[[-242.589,-221.591],[-242.03,-222.172],[-235.86,-223.242],[-233.151,-225.106],[-230.716,-224.365],[-229.746,-223.192],[-226.312,-222.065],[-222.474,-221.855],[-222.402,-220.439],[-221.786,-219.029],[-217.17,-217.669],[-212.725,-215.434],[-210.343,-214.047],[-210.499,-212.471],[-213.309,-210.236],[-218.735,-207.619],[-219.667,-208.75],[-219.546,-209.648],[-220.403,-209.475],[-221.982,-208.9],[-221.945,-210.582],[-221.961,-210.72],[-220.816,-212.381],[-220.385,-213.008],[-221.157,-213.458],[-221.834,-213.35],[-233.908,-208.316],[-234.802,-207.938],[-235.723,-208.062],[-235.628,-208.959],[-233.11,-214.046],[-231.022,-215.34],[-230.267,-216.167],[-231.52,-216.547],[-232.319,-216.357],[-236.814,-214.559],[-242.049,-212.618],[-242.279,-212.934],[-238.529,-217.319],[-237.63,-218.177],[-238.715,-218.511]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.092,0.076],[-0.092,-0.076]],"o":[[0.092,0.077],[-0.093,-0.077]],"v":[[233.458,-53.944],[233.735,-53.715]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.03,-0.025],[-0.019,0.085],[-0.023,-0.063]],"o":[[-0.028,-0.083],[0.034,0.059],[0.005,0.012]],"v":[[-240.555,213.684],[-240.567,213.431],[-240.469,213.61]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.083,0.075],[-0.083,-0.075]],"o":[[0.083,0.075],[-0.083,-0.075]],"v":[[174.67,215.097],[174.92,215.323]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.092,-0.025],[0.087,-0.011]],"o":[[-0.087,0.011],[0.083,-0.047]],"v":[[174.614,202.846],[174.352,202.879]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.074,-0.071],[-0.074,0.071]],"o":[[0.074,-0.072],[-0.074,0.072]],"v":[[-234.702,219.265],[-234.48,219.05]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.175,-0.084],[-0.218,-0.007]],"o":[[0.1,-0.239],[-0.175,0.084]],"v":[[-239.181,223.728],[-238.657,223.476]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.034,-0.293],[0.018,0.231]],"o":[[-0.171,-0.052],[0.201,0.017]],"v":[[211.891,224.338],[211.517,224.021]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.442,0.355],[-0.44,-0.328]],"o":[[0.334,-0.605],[-0.304,0.031]],"v":[[32.693,221.525],[33.533,221.225]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.349,0.009],[-0.353,-0.013]],"o":[[0.012,-0.348],[-0.01,0.35]],"v":[[-239.755,224.272],[-239.215,223.762]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.11,0.365],[-0.135,-0.314]],"o":[[0.436,-0.3],[-0.272,-0.036]],"v":[[-163.356,167.649],[-162.656,167.991]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.514,-0.041],[-0.391,0.123]],"o":[[-0.011,-0.39],[-0.002,0.382]],"v":[[-235.273,220.113],[-234.744,219.316]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.269,0.005],[-0.38,-0.358],[0.026,-0.095],[0.437,0.707]],"o":[[0.38,0.358],[-0.025,0.095],[-0.882,-0.089],[0.269,-0.005]],"v":[[208.924,220.98],[210.062,222.054],[209.986,222.34],[208.116,220.995]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.108,0.437],[-0.356,-0.688],[0.58,0.312]],"o":[[0.717,-0.008],[-0.376,0.568],[-0.571,-0.307]],"v":[[233.753,-53.691],[235.438,-52.816],[234.005,-52.5]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.784,-0.495],[1.142,-0.986],[0.402,-0.016]],"o":[[-1.272,0.168],[-0.239,0.206],[1.511,-1.141]],"v":[[196.074,218.1],[192.293,218.853],[191.109,218.928]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.617,-0.116],[-0.041,-0.081],[0.336,-0.595],[0.524,0.075],[-0.026,0.735],[0.002,0.091]],"o":[[0.047,0.078],[0.253,0.494],[-0.282,0.498],[-0.752,-0.107],[0.003,-0.091],[0.569,-0.169]],"v":[[160.997,204.78],[161.137,205.014],[161.819,206.489],[160.282,206.724],[159.258,205.342],[159.253,205.069]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.318,-0.001],[-0.006,0.779],[-0.575,-0.072],[-0.372,-0.924]],"o":[[-0.461,-0.032],[0.006,-0.721],[0.673,0.084],[0.189,0.468]],"v":[[-160.991,173.278],[-162.185,172.587],[-160.917,171.867],[-158.983,172.424]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.564,0.293],[0.01,-1.21],[0.175,0.642],[-0.574,0.328]],"o":[[-0.432,1.073],[-0.727,0.114],[-0.181,-0.664],[0.552,-0.316]],"v":[[186.006,221.25],[184.94,224.543],[183.62,223.635],[184.316,222.134]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.064,-0.761],[1.496,1.087],[-1.275,-0.096]],"o":[[-1.728,-0.454],[1.457,-0.892],[0.773,0.058]],"v":[[182.427,204.734],[177.415,202.906],[181.185,203.57]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.02,-0.329],[0.672,-0.997],[0.074,0.969],[-0.51,0.135]],"o":[[-0.967,0.696],[-0.646,0.007],[-0.07,-0.912],[0.9,-0.238]],"v":[[-156.392,176.085],[-158.916,178.556],[-160.307,177.689],[-159.129,176.666]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.471,-0.232],[-0.332,0.424],[0.635,1.539],[-0.039,-0.898]],"o":[[0.043,-0.597],[0.986,-1.258],[1.801,0.147],[0.068,1.538]],"v":[[162.201,202.311],[162.988,200.874],[163.743,196.743],[164.842,199.172]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.004,-0.414],[1.178,-0.011],[-0.879,0.178],[-0.106,-1.201]],"o":[[-1.187,0.046],[-0.683,-1.247],[1.558,-0.315],[0.036,0.411]],"v":[[-119.567,197.772],[-122.901,196.97],[-121.806,195.344],[-119.585,196.531]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.035,0.268],[-0.115,1.139],[-0.982,-0.044],[0.057,-1.01]],"o":[[-0.867,-0.002],[0.094,-0.935],[0.733,0.033],[-0.054,0.963]],"v":[[213.101,197.234],[211.478,196.199],[213.138,194.755],[214.703,195.845]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.658,0.348],[-0.254,-0.884],[0.469,-0.111],[0.405,0.746],[-0.615,0.414]],"o":[[0.601,0.821],[0.149,0.517],[-0.874,0.207],[-0.337,-0.621],[0.563,-0.379]],"v":[[-126.925,195.012],[-126.396,197.698],[-127.219,198.609],[-129.199,197.719],[-128.782,196.009]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.606,0],[0.209,0.077],[-0.072,0.833],[-0.882,0.089],[-0.656,-0.412],[0.675,-0.161]],"o":[[0.095,0.007],[-0.623,-0.231],[0.076,-0.871],[0.841,-0.084],[0.424,0.267],[-0.263,0.063]],"v":[[247.001,48.898],[246.636,48.863],[245.055,47.799],[246.9,46.403],[249.063,47.254],[248.161,48.887]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.085,0.162],[-0.807,0.156],[-0.426,-0.324],[0.003,-0.217],[0.571,-0.605],[0.153,-0.003],[0.379,0.104],[0.752,0.4],[0.044,0.29]],"o":[[0.809,-0.162],[0.485,0.102],[-0.003,0.217],[-1.059,0.126],[-0.153,0.003],[-0.379,-0.104],[-0.135,-0.552],[-0.044,-0.29],[0.085,-0.162]],"v":[[197.215,217.633],[199.417,218.132],[200.852,218.515],[200.843,219.166],[199.098,220.947],[198.639,220.957],[197.501,220.646],[197.094,218.99],[196.961,218.121]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.346],[-0.862,0.448],[0.028,-0.881],[0.294,-0.75],[1.031,1.221],[0.136,0.115]],"o":[[0.67,-0.599],[0.819,-0.426],[-0.025,0.784],[-0.581,1.483],[-0.114,-0.135],[0.001,-0.346]],"v":[[161.403,216.802],[163.312,214.891],[164.338,215.514],[164.016,217.818],[161.81,218.187],[161.402,217.839]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.094,1.253],[-0.457,-2.013],[0.877,0.739],[-0.203,0.299]],"o":[[1.469,1.545],[-1.339,0.668],[-0.302,-0.254],[0.762,-1.123]],"v":[[-110.147,169.185],[-107.603,174.681],[-110.646,173.689],[-110.707,172.814]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.657,-0.062],[0.208,0.526],[-0.319,0.222],[-1.44,0.124],[-0.173,-0.269],[0.218,-0.197]],"o":[[-0.56,0.052],[-0.25,-0.631],[1.133,-0.79],[0.303,-0.026],[0.174,0.271],[-1.12,1.014]],"v":[[173.066,202.25],[171.769,201.649],[172.538,200.714],[176.287,199.078],[177.008,199.301],[176.909,200.057]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.079,-0.413],[2.014,0.84],[-0.948,0.412],[-0.891,-0.591]],"o":[[-2.114,1.34],[0.863,-0.729],[1.042,0.275],[0.367,0.243]],"v":[[-179.577,178.256],[-185.55,177.61],[-182.86,175.953],[-180.021,177.356]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.071,-0.347],[1.558,-0.091],[2.214,0.001],[-0.768,-0.007],[-2.218,-0.065]],"o":[[-1.304,1.153],[-2.207,0.129],[-0.077,-1.026],[2.22,0.019],[1.064,0.031]],"v":[[173.81,202.922],[169.288,204.123],[162.648,204.153],[164.001,203.08],[170.66,203.108]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.605,0.235],[-1.205,-0.578],[-0.369,-0.275],[0.298,-0.509],[0.39,0.184],[1.783,0.899]],"o":[[1.215,0.556],[0.413,0.198],[0.503,0.375],[-0.35,0.598],[-1.805,-0.851],[0.298,-0.617]],"v":[[274.186,206.683],[277.828,208.359],[278.994,209.101],[279.436,210.575],[278.098,210.519],[272.74,207.844]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.006,-0.71],[0.697,-0.152],[-0.722,-0.765],[-0.356,-0.342],[0.975,0.709],[-0.175,0.552],[-0.905,-0.096]],"o":[[-0.504,0.64],[-0.956,0.208],[0.339,0.359],[-1.36,0.989],[-0.611,-0.444],[0.243,-0.764],[1.069,0.114]],"v":[[-146.651,198.449],[-148.618,199.242],[-149.106,200.646],[-148.039,201.675],[-151.326,200.961],[-151.493,199.304],[-149.858,198.108]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.372,2.307],[-0.674,-0.555],[-1.02,1.027],[0.438,0.562],[0.283,1.233],[-0.678,-1.388],[1.165,-0.315]],"o":[[0.652,0.581],[1.332,1.096],[0.469,-0.472],[-0.768,-0.985],[1.318,0.95],[0.413,0.846],[-2.156,0.583]],"v":[[207.974,227.595],[209.935,229.333],[213.52,229.396],[213.633,227.959],[211.997,224.646],[214.682,228.406],[212.857,230.925]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.346,-1.2],[0.727,-0.04],[-0.393,0.666],[-1.251,0.253],[-0.61,-0.397]],"o":[[-0.738,0.063],[0.395,-0.665],[0.684,-1.16],[0.416,0.271],[-1.677,1.014]],"v":[[189.396,67.868],[187.697,67.023],[188.881,65.026],[191.919,63.125],[193.361,64.064]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.758,0],[-0.838,-0.362],[0.331,-0.675],[0.491,0.38],[0.706,-0.307],[0.529,0.07],[-0.018,0.909],[-0.987,0.036]],"o":[[0.677,-0.015],[0.857,0.37],[-0.362,0.74],[-0.603,-0.466],[-0.459,0.2],[-0.501,-0.066],[0.016,-0.782],[0.556,-0.02]],"v":[[-163.58,229.879],[-161.182,230.173],[-160.654,231.9],[-162.012,231.954],[-163.972,231.782],[-165.451,232.092],[-166.675,231.414],[-165.451,229.883]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.473,-0.12],[1.353,-0.314],[-0.015,0.592],[-0.931,-0.364],[-0.932,-0.496],[0.13,-0.529]],"o":[[-1.25,-0.21],[-0.559,0.13],[0.027,-1.024],[0.98,0.384],[0.424,0.226],[-0.164,0.669]],"v":[[222.171,184.166],[218.269,184.004],[217.348,183.062],[219.94,181.179],[222.785,182.571],[223.393,183.704]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.46,0],[0.886,0.218],[-0.386,1.183],[-0.824,-0.329],[-0.587,0.307],[-0.165,-1.036],[0.589,-0.12]],"o":[[-0.896,0.171],[-0.677,-0.166],[0.362,-1.108],[0.554,0.221],[0.933,-0.488],[0.11,0.687],[-0.398,0.081]],"v":[[-230.034,196.941],[-232.696,196.58],[-233.771,195.211],[-231.873,194.3],[-230.404,194.315],[-227.848,195.767],[-228.748,196.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.304,-0.098],[0.875,-0.009],[3.795,0.017],[0.415,0.441],[-4.717,0.633],[-0.308,-0.083],[-0.089,-0.521],[0.404,-0.223]],"o":[[-0.227,-0.85],[-3.795,0.038],[-0.487,-0.002],[4.692,-1.054],[0.303,-0.041],[0.391,0.106],[0.097,0.565],[-0.274,0.152]],"v":[[216.44,126.681],[214.79,125.57],[203.405,125.574],[201.96,125.309],[216.172,124.503],[217.116,124.659],[218.077,125.317],[217.346,126.377]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.966,-0.046],[0.035,1.501],[-1.445,-0.063],[0.157,-1.23]],"o":[[-1.062,-0.106],[-0.027,-1.156],[0.809,0.035],[-0.19,1.488]],"v":[[262.233,51.82],[259.982,50.363],[263.12,48.01],[264.607,50.531]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.67,-0.599],[-1.403,-0.013],[0.335,-0.775],[0.448,-1.585],[1.241,0.543],[-0.382,1.041],[-0.114,-0.135],[-0.581,1.483],[-0.025,0.784],[0.819,-0.426]],"o":[[-0.207,-1.409],[0.949,0.009],[-0.665,1.54],[-0.329,1.162],[-1.155,-0.505],[0.136,0.115],[1.031,1.221],[0.294,-0.75],[0.028,-0.881],[-0.862,0.448]],"v":[[161.403,216.802],[164.717,212.889],[165.908,214.326],[164.522,219.072],[162.402,219.911],[161.402,217.839],[161.81,218.187],[164.016,217.818],[164.338,215.514],[163.312,214.891]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.573,0.121],[-0.139,-0.749],[0.728,-0.507],[1.404,0.372],[-0.072,0.365],[-1.085,1.272]],"o":[[-0.798,0.796],[0.133,0.716],[-1.017,0.708],[-0.497,-0.132],[0.333,-1.696],[0.454,-0.532]],"v":[[-152.819,189.171],[-152.867,191.591],[-153.198,193.42],[-156.569,194.674],[-156.857,193.748],[-154.435,189.467]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.036,-1.076],[0.81,-0.005],[-0.046,0.626],[-0.646,-0.025]],"o":[[-0.03,0.889],[-0.727,0.004],[0.053,-0.723],[1.173,0.045]],"v":[[261.93,214.305],[259.909,216.455],[257.203,213.986],[259.391,211.802]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.172,1.366],[-0.058,0.316],[-0.731,0.256],[-0.465,-0.516],[-0.252,-0.101],[0.84,-0.844],[-0.424,-0.647],[0.582,-0.286],[0.42,0.801]],"o":[[0.025,-0.322],[0.092,-0.504],[0.591,-0.207],[0.18,0.2],[1.034,0.415],[-0.533,0.536],[0.269,0.411],[-0.513,0.252],[-0.543,-1.036]],"v":[[-128.016,160.698],[-127.935,159.733],[-127.528,158.271],[-125.879,158.712],[-125.191,159.172],[-124.856,160.91],[-124.843,162.834],[-124.944,164.009],[-126.505,163.845]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.913,0.221],[0.334,0.289],[-0.652,0.578],[-0.202,-0.557],[-1.008,-1.195],[0.693,-1.109],[0.872,0.783]],"o":[[0.015,-0.543],[-0.586,-0.509],[0.582,-0.516],[0.607,1.67],[0.607,0.719],[-1.539,0.337],[-0.6,-0.54]],"v":[[178.551,211.951],[177.805,210.852],[177.419,209.111],[179.319,209.445],[182.563,212.869],[183.286,215.399],[180.3,213.634]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.003],[0.415,0.02],[0.184,0.647],[-0.478,0.228],[-0.757,0.338],[-0.697,-0.651],[0.262,-0.433],[1.072,-0.054],[0.37,0]],"o":[[-0.416,0],[-0.81,-0.039],[-0.188,-0.66],[0.747,-0.357],[0.842,-0.376],[0.429,0.4],[-0.467,0.773],[-0.369,0.019],[0,-0.003]],"v":[[145.164,175.488],[143.915,175.484],[142.421,174.227],[143.437,173.115],[145.73,172.15],[148.031,172.462],[148.336,173.851],[146.274,175.493],[145.164,175.496]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.002],[0.552,0.024],[-0.474,1.042],[-0.282,0],[-1.287,-0.073],[-0.375,-0.251],[0.226,-0.565],[0.626,0.011],[0.692,0]],"o":[[-0.553,0],[-1.138,-0.049],[0.143,-0.315],[1.291,-0.002],[0.429,0.024],[0.444,0.298],[-0.197,0.493],[-0.692,-0.012],[0,0.002]],"v":[[-102.22,223.741],[-103.88,223.736],[-105.304,221.33],[-104.64,220.958],[-100.767,220.99],[-99.516,221.528],[-99.059,222.843],[-100.145,223.738],[-102.22,223.735]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.513,0.295],[-0.344,1.511],[-0.671,0.434],[-0.181,-0.002],[-0.399,-2.696]],"o":[[-0.998,-0.784],[0.735,-0.198],[0.181,0.01],[2.632,0.032],[-1.442,0.059]],"v":[[266.655,22.976],[264.991,19.904],[267.196,19.311],[267.739,19.341],[270.849,22.14]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.738,0.063],[3.241,-0.627],[-0.416,0.457],[-1.515,1.577]],"o":[[-1.312,2.825],[-0.539,-0.646],[1.472,-1.616],[0.727,-0.04]],"v":[[189.396,67.868],[182.967,73.504],[183.169,71.77],[187.697,67.023]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.251,-1.117],[0.828,0.596],[1.407,-0.394],[-0.886,1.175],[1.071,-0.174],[0.508,0.476],[-1.158,0.391],[-0.21,-1.642],[-0.407,-0.095]],"o":[[-0.821,0.035],[-1.324,-0.841],[0.851,-1.128],[-1.268,-0.629],[-0.526,0.085],[0.802,-1.489],[1.282,-0.434],[0.053,0.413],[1.159,0.271]],"v":[[216.996,218.143],[214.531,218.167],[210.409,217.888],[212.996,214.456],[209.672,214.876],[208.134,214.852],[211.628,213.768],[214.214,215.266],[214.986,215.94]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.729,-0.246],[0.814,-0.097],[-0.778,-1.347],[-1.047,-0.842],[-1.015,-0.837],[0.773,0.092],[1.292,0.24],[-0.804,0.388],[0.416,0.428],[0.845,1.112],[-0.651,1.025],[-1.042,-0.217]],"o":[[-0.787,0.344],[-1.479,0.176],[0.682,1.179],[0.917,0.737],[-1.031,0.422],[-1.326,-0.158],[0.61,-0.79],[0.674,-0.325],[-0.964,-0.991],[-0.731,-0.963],[0.639,-1.006],[0.748,0.155]],"v":[[242.394,192.477],[239.949,192.721],[238.76,195.184],[241.505,198.079],[244.337,200.411],[241.747,200.264],[237.984,200.722],[240.413,199.596],[240.605,198.623],[237.796,195.572],[237.493,192.648],[240.203,191.757]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.008,0.031],[0.73,0.395],[1.179,2.111],[-0.459,0.371],[-0.391,-0.346],[-1.199,-1.835]],"o":[[0.107,1.114],[-2.127,-1.151],[-0.279,-0.5],[0.407,-0.329],[1.636,1.45],[0.118,0.18]],"v":[[-113.461,165.098],[-114.508,166.163],[-119.459,161.225],[-119.142,159.856],[-117.866,159.794],[-113.571,164.691]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.042,-0.935],[0.196,-0.706],[0.905,-0.131],[0.718,0.461],[-0.108,0.225],[-0.496,0.889],[-1.09,-0.349]],"o":[[-0.113,0.624],[-0.244,0.878],[-0.995,0.144],[-0.315,-0.202],[0.442,-0.918],[0.434,-0.778],[1.024,0.328]],"v":[[181.625,77.054],[181.237,79.123],[179.458,80.673],[177.163,79.552],[177.241,78.822],[178.615,76.091],[180.653,74.869]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,-0.556],[0.172,-0.354],[1.977,0.382],[-1.266,1.069],[-0.371,0.507],[-0.396,-1.035],[-0.028,-0.083]],"o":[[-0.45,0.204],[-0.903,1.856],[-0.732,-1.218],[0.448,-0.378],[0.679,-0.928],[-0.019,0.085],[0.01,0.556]],"v":[[-240.523,215.353],[-241.094,216.401],[-244.474,218.151],[-244.116,214.76],[-243.212,213.098],[-240.567,213.431],[-240.555,213.684]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.598,0.038],[-0.581,0.375],[1.102,0.385],[2.236,-0.028],[-0.004,0.952],[-0.717,0.18],[-0.284,0.621],[0.491,0.497],[-0.39,0.29],[0.168,0.664],[-0.043,-0.414],[-1.969,-0.883],[-1.189,-0.505],[-0.073,-0.539],[0.726,0.183]],"o":[[0.296,-0.722],[-0.761,-0.971],[-2.125,-0.742],[-0.686,0.009],[0.005,-1.126],[0.693,-0.174],[0.312,-0.683],[-0.457,-0.462],[0.446,-0.332],[0.494,0.01],[0.235,2.277],[1.179,0.528],[0.528,0.224],[0.072,0.538],[-0.571,-0.144]],"v":[[-147.482,168.144],[-145.887,167.541],[-148.787,165.693],[-155.344,164.84],[-157.338,164.397],[-155.295,163.836],[-153.24,163.565],[-154.465,161.938],[-154.326,161.025],[-153.625,159.633],[-153.018,160.376],[-149.389,164.872],[-145.841,166.43],[-144.979,167.587],[-145.694,168.278]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.648,-0.024],[-0.569,-0.186],[0.777,-0.561],[1.154,-0.324],[0.666,1.298],[-0.44,0.361],[-0.397,0.727]],"o":[[0.582,0.147],[0.938,0.308],[-0.925,0.668],[-1.418,0.398],[-0.354,-0.69],[0.559,-0.458],[0.647,0.025]],"v":[[-140.495,180.1],[-138.752,180.548],[-138.378,182.182],[-141.333,183.951],[-144.832,182.472],[-144.28,181.105],[-142.438,180.026]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.204,-2.814],[0.724,-0.14],[0.62,2.276],[0.688,0.113],[-0.053,0.811],[-0.786,0.181],[0.246,-1.704]],"o":[[-0.718,-0.544],[0.992,-2.103],[-0.163,-0.598],[-0.699,-0.115],[0.056,-0.855],[1.769,-0.408],[-0.406,2.822]],"v":[[-166.187,182.203],[-168.356,182.182],[-167.71,175.642],[-168.715,174.563],[-169.771,173.177],[-168.475,171.836],[-165.955,173.747]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.005,-1.109],[0.424,0.346],[-0.169,0.403],[-0.104,0.206],[0.313,0.378],[0.409,-0.119],[1.377,-0.703],[0.586,-0.03],[0.232,-0.626],[-0.326,-0.41],[-0.177,-0.21],[0.809,-0.162],[-1.408,1.048],[-1.6,0.037],[-0.273,0.526],[-0.829,0.788],[-0.562,-0.174],[-0.003,-0.492]],"o":[[-0.449,0.421],[-0.499,-0.406],[0.089,-0.212],[0.217,-0.431],[-0.406,-0.49],[-1.567,0.455],[-0.49,0.25],[-0.623,0.032],[-0.247,0.666],[0.17,0.214],[-0.807,0.156],[-1.565,-0.896],[1.116,-0.831],[0.533,-0.012],[0.559,-1.076],[0.462,-0.439],[0.625,0.194],[0.007,1.109]],"v":[[206.675,214.81],[205.303,214.837],[205.392,213.598],[205.702,212.98],[205.751,211.672],[204.514,211.818],[201.084,214.712],[199.588,215.356],[198.105,216.174],[198.889,217.503],[199.417,218.132],[197.215,217.633],[197.017,215.634],[200.688,213.623],[201.967,212.653],[204.483,210.322],[206.208,210.169],[206.687,211.483]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.441,0.006],[-1.048,-0.138],[0.043,-0.919],[0.786,-0.063],[1.254,0.011],[0.265,1.174],[-0.966,0.431]],"o":[[1.05,0.122],[0.935,0.123],[-0.041,0.875],[-1.237,0.099],[-1.038,-0.009],[-0.279,-1.234],[0.441,-0.007]],"v":[[246.824,21.773],[249.974,22.143],[251.316,23.762],[249.899,24.934],[246.184,25.222],[243.859,24.002],[245.502,21.792]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.092,0.282],[0.233,0.516],[-0.338,0.337],[-1.966,1.969],[-0.616,-0.632],[0.472,-0.519],[1.59,-1.615]],"o":[[-0.55,0.064],[-0.248,-0.549],[1.969,-1.966],[0.509,-0.509],[0.553,0.568],[-1.525,1.677],[-0.539,0.547]],"v":[[175.09,89.61],[173.914,89.038],[174.31,87.831],[180.213,81.93],[181.98,81.455],[181.6,83.32],[176.94,88.272]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.387,0.605],[-0.784,0.466],[0.126,0.368],[0.221,0.736],[0.765,-0.027],[0.554,0.216],[-1.549,-1.542],[-0.389,-0.216],[0.438,-0.433],[-0.832,-0.301],[0.091,-0.466],[0.728,0.025],[0.904,0.706]],"o":[[0.802,-0.381],[0.261,-0.155],[-0.251,-0.731],[-0.324,-1.081],[-0.635,0.022],[1.859,-1.35],[0.328,0.326],[0.64,0.356],[-0.468,0.462],[0.775,0.28],[-0.103,0.526],[-1.061,-0.036],[-0.495,-0.387]],"v":[[-144.087,202.731],[-141.553,202.212],[-140.89,201.644],[-141.879,199.531],[-143.771,198.637],[-145.482,198.148],[-140.029,198.454],[-139.034,199.412],[-138.929,200.484],[-138.748,201.726],[-138.492,202.979],[-139.401,203.914],[-142.463,203.322]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.114,1.34],[-0.24,-0.695],[0.43,-0.478],[0.989,0.161],[0.01,1.117],[0.921,0.362],[-0.834,0.705],[-1.363,-0.603],[0.863,-0.729]],"o":[[0.257,0.689],[0.191,0.553],[-0.869,0.965],[-0.747,-0.122],[-0.01,-1.187],[-1.085,-0.426],[0.876,-0.741],[-0.948,0.412],[2.014,0.84]],"v":[[-179.577,178.256],[-178.81,180.324],[-179.079,181.865],[-182.059,182.355],[-183.742,180.834],[-185.541,178.902],[-186.056,176.979],[-182.86,175.953],[-185.55,177.61]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.292,0.532],[1.774,0.071],[1.139,-0.771],[-0.666,-0.364],[-1.141,-0.586],[-0.485,0.186]],"o":[[-1.506,-1.149],[-1.236,-0.049],[-0.593,0.401],[1.126,0.615],[0.474,0.243],[1.117,-0.429]],"v":[[-127.631,210.199],[-132.37,208.132],[-136.02,208.664],[-136.026,209.775],[-132.632,211.591],[-131.139,211.633]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.996,0.059],[-2.392,-1.058],[0.972,-0.48],[1.011,-1.521],[0.221,0.065],[1.795,1.154],[-0.754,0.501]],"o":[[2.773,-0.277],[0.642,0.284],[-1.41,0.696],[-0.135,0.203],[-2.05,-0.6],[-0.751,-0.483],[0.932,-0.619]],"v":[[-133.87,207.315],[-126.366,209.408],[-126.281,210.842],[-130.503,212.961],[-131.142,212.914],[-136.913,210.291],[-136.84,207.714]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.008,-1.062],[0.252,-0.25],[1.685,-0.799],[0.698,0.25],[-1.068,0.852],[-1.659,0.979]],"o":[[0.01,0.331],[-1.277,1.27],[-0.662,0.314],[-1.285,-0.461],[1.506,-1.202],[1.113,-0.657]],"v":[[127.216,212.325],[126.954,213.234],[122.85,216.728],[120.839,216.901],[120.348,214.644],[125.107,211.348]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.458,0],[0.577,0.694],[0.923,1.378],[-0.337,0.331],[-0.312,-0.187],[-0.699,-1.283],[-0.496,0.314],[-0.766,-0.582],[0.214,-0.457],[1.064,-0.119]],"o":[[-1.01,0.379],[-1.055,-1.27],[-0.267,-0.398],[0.454,-0.446],[1.193,0.715],[0.463,0.85],[0.93,-0.589],[0.393,0.299],[-0.442,0.943],[-0.32,0.036]],"v":[[-118.895,175.491],[-121.248,174.413],[-124.094,170.337],[-124.18,169.041],[-123.208,169.471],[-120.195,172.245],[-118.221,172.579],[-115.834,172.699],[-115.638,173.786],[-117.789,175.485]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.478,0.002],[0.875,0.509],[2.425,0.735],[0.159,0.78],[-0.631,0.703],[-1.38,-0.029],[-0.322,-0.011],[0.91,-0.727],[-1.081,-0.709],[-0.677,-0.233],[-0.837,0.921],[-0.438,-0.389],[0.298,-0.28],[-0.208,-0.066],[-1.46,-0.489],[-0.374,-0.414],[0.186,-0.18]],"o":[[0.058,-1.089],[-2.305,-1.341],[0.528,-0.597],[-0.136,-0.668],[0.845,-0.941],[0.322,0.007],[-0.814,0.872],[-1.007,0.804],[0.565,0.371],[0.954,0.329],[0.325,-0.358],[0.464,0.411],[-0.333,0.314],[1.479,0.469],[0.021,0.294],[-0.186,0.18],[-0.478,-0.003]],"v":[[272.747,205.309],[271.251,203.346],[263.89,201.397],[264.371,199.349],[264.256,197.303],[267.409,195.581],[268.374,195.611],[265.42,197.382],[265.437,199.684],[267.172,200.768],[269.826,200.482],[271.198,200.199],[270.828,201.153],[271.059,201.759],[275.001,204.007],[274.739,204.777],[274.181,205.317]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.821,0.035],[-1.771,-1.55],[0.158,-0.343],[0.502,0.105],[2.352,0.441],[1.405,-0.048],[0.38,0.358],[-1.313,-0.154],[-0.977,-0.204],[-3.051,-0.612],[-0.05,-0.041],[0.04,0.05],[2.006,0.116],[0.797,0.548],[-0.216,0.706]],"o":[[1.77,1.551],[0.332,0.29],[-0.273,0.594],[-2.342,-0.491],[-1.354,-0.254],[-0.38,-0.358],[0.297,-0.707],[-0.066,0.761],[3.046,0.637],[0.05,0.04],[-0.04,-0.05],[-0.427,-1.802],[-0.85,-0.049],[0.369,-0.439],[0.827,0.595]],"v":[[216.996,218.143],[222.307,222.795],[222.502,223.813],[221.167,224.224],[214.144,222.733],[210.062,222.054],[208.924,220.98],[210.342,219.306],[211.202,221.068],[220.354,222.914],[220.504,223.036],[220.384,222.885],[215.678,219.252],[213.129,218.971],[214.531,218.167]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.694,-0.136],[1.017,1.237],[-0.598,0.39],[-1.382,-0.513],[-0.267,0.004],[-0.137,-1.018],[1.286,-0.557]],"o":[[-1.52,-0.311],[-0.394,-0.479],[1.094,-0.713],[0.254,0.094],[0.99,-0.015],[0.137,1.018],[-0.555,0.24]],"v":[[-147.074,161.307],[-150.942,158.94],[-150.602,157.341],[-146.983,156.54],[-146.183,156.708],[-143.954,157.911],[-145.289,160.686]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.413,0.436],[2.689,0.622],[1.478,0.278],[-1.028,-0.238],[-1.934,-0.824],[-1.197,-2.405],[-0.289,-0.622],[0.398,0.62]],"o":[[-1.567,-2.442],[-1.464,-0.339],[0.089,-0.919],[1.912,0.442],[2.53,1.078],[0.306,0.614],[-0.564,0.316],[-0.319,-0.497]],"v":[[-103.468,154.607],[-110.145,150.448],[-114.577,149.603],[-113.077,148.448],[-107.241,149.225],[-101.726,154.393],[-100.857,156.258],[-102.247,155.928]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.402,1.638],[2.031,-0.669],[1.006,-0.312],[-0.099,0],[-5.088,1.67],[-1.032,-0.085],[2.868,-0.099],[3.731,0],[0.223,0.046],[0.078,0.706],[-0.506,0.166]],"o":[[0.549,2.014],[-0.854,0.281],[0.268,0.207],[5.212,0.019],[0.908,-0.298],[-2.206,1.917],[-3.727,0.129],[-0.231,0],[-0.647,-0.132],[-0.074,-0.67],[1.928,-0.634]],"v":[[200.548,125.573],[199.067,128.261],[196.344,129.109],[196.809,129.458],[212.343,128.174],[215.077,127.274],[207.387,130.286],[196.194,130.319],[195.501,130.3],[194.019,129.259],[195.229,128.354]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.352,-0.302],[0.578,0.616],[-0.206,0.593],[-0.668,0.091],[-1.502,0.121],[-0.97,0.58],[-0.229,-0.884],[0.778,-0.191]],"o":[[-0.851,0.056],[-0.334,-0.356],[0.22,-0.634],[1.492,-0.203],[0.993,-0.08],[0.465,-0.278],[0.183,0.706],[-2.274,0.557]],"v":[[232.513,132.036],[230.354,131.25],[229.632,130.016],[231.046,128.805],[235.544,128.364],[238.5,127.913],[240.102,128.428],[239.173,129.865]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.504,0.64],[-0.318,0.377],[-0.635,0.022],[-0.324,-1.081],[-0.251,-0.731],[0.261,-0.155],[0.802,-0.381],[1.106,1.142],[0.339,0.359],[-0.956,0.208]],"o":[[0.39,-0.098],[0.554,0.216],[0.765,-0.027],[0.221,0.736],[0.126,0.368],[-0.784,0.466],[-1.461,0.184],[-0.356,-0.342],[-0.722,-0.765],[0.697,-0.152]],"v":[[-146.651,198.449],[-145.482,198.148],[-143.771,198.637],[-141.879,199.531],[-140.89,201.644],[-141.553,202.212],[-144.087,202.731],[-148.039,201.675],[-149.106,200.646],[-148.618,199.242]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.933,0],[-1.139,-0.269],[-0.569,-0.865],[0.272,-0.293],[0.316,0.304],[0.823,0.056],[0.518,-0.816],[0.341,0.515],[0.613,0.569],[-0.967,0.696]],"o":[[0.491,1.201],[0.982,0.232],[0.209,0.318],[-0.254,0.273],[-0.645,-0.62],[-0.648,-0.025],[-0.322,0.507],[-0.503,-0.759],[0.672,-0.997],[0.933,0]],"v":[[-153.593,176.084],[-150.912,177.993],[-148.55,179.518],[-148.548,180.373],[-149.37,180.464],[-151.667,179.745],[-153.481,180.23],[-156.987,180.174],[-158.916,178.556],[-156.392,176.085]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.632,-0.089],[-3.159,0.905],[-0.502,0.769],[-0.044,-0.508],[0.379,-0.196],[0.063,-1.603],[1.936,-0.05]],"o":[[1.538,-3.281],[0.727,-0.208],[0.598,0.119],[0.045,0.512],[-1.273,0.659],[-1.663,1.403],[-0.633,0.016]],"v":[[213.708,31.595],[221.437,26.338],[223.54,25.479],[224.684,26.526],[223.614,27.18],[221.203,30.223],[215.603,31.341]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.295,0.348],[-1.017,0.079],[-1.881,0.408],[-1.024,-0.486],[-0.911,-0.971],[0.887,-0.411],[2.341,0.783],[1.546,-0.144],[1.046,1.408]],"o":[[0.321,0.805],[1.976,-0.153],[1.109,-0.241],[1.056,0.502],[-0.53,0.899],[-2.526,1.171],[-1.498,-0.501],[-1.119,0.104],[1.007,-0.788]],"v":[[60.345,201.153],[62.082,202.083],[67.712,200.753],[70.965,200.865],[74.243,201.674],[71.918,203.169],[64.881,202.681],[60.275,203.223],[56.904,202.922]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.151,-1.406],[0,-0.046],[0.563,-0.462],[0.779,0.122],[1.278,0.011],[0.506,0.2],[1.799,0.815],[-2.359,0.173]],"o":[[0.004,0.046],[0.006,0.582],[-0.521,0.427],[-1.269,-0.198],[-0.702,-0.006],[-1.541,-0.609],[2.536,-1.146],[1.778,-0.004]],"v":[[-198.212,163.505],[-198.199,163.644],[-197.871,165.265],[-199.983,165.68],[-203.811,165.26],[-205.172,164.457],[-210.004,162.302],[-202.662,161.528]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.562,0.006],[0.466,2.518],[-0.715,0.779],[-0.632,-0.526],[1.329,-1.607]],"o":[[-2.618,-0.006],[-0.279,-1.505],[0.509,-0.555],[1.827,1.519],[-0.435,0.526]],"v":[[-140.443,168.251],[-143.351,165.695],[-141.973,162.794],[-138.173,163.169],[-137.446,167.731]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.567,-2.442],[2.218,0.331],[1.034,0.09],[0.787,0.756],[-0.049,0.543],[-1.464,-0.339]],"o":[[-2.17,1.246],[-0.972,-0.145],[-0.048,-1.097],[-0.318,-0.305],[1.478,0.278],[2.689,0.622]],"v":[[-103.468,154.607],[-110.1,154.826],[-112.592,153.461],[-113.883,150.706],[-114.577,149.603],[-110.145,150.448]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.776,-0.027],[1.565,0.741],[-1.018,0.643],[-0.388,0.12],[-2.305,-1.341],[0.058,-1.089]],"o":[[-1.491,-0.913],[0.625,-1.332],[0.388,-0.12],[2.425,0.735],[0.875,0.509],[-2.776,0.026]],"v":[[264.42,205.389],[259.593,203.565],[262.726,201.758],[263.89,201.397],[271.251,203.346],[272.747,205.309]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.004,0],[0.026,2.041],[-1.106,0.004],[-0.034,-0.753],[-0.076,-4.172],[0.924,0.047],[-0.024,0.902],[0,2.088]],"o":[[0,-2.042],[-0.013,-0.993],[1.111,-0.004],[0.186,4.173],[0.012,0.682],[-0.836,-0.042],[0.056,-2.086],[0.004,0]],"v":[[-134.079,129.698],[-134.087,123.574],[-132.68,121.955],[-131.569,123.495],[-131.859,135.997],[-132.924,137.282],[-134.109,135.962],[-134.091,129.698]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,0.452],[-1.193,1.036],[-0.514,0.508],[-0.759,0.803],[-0.153,0.003],[0.717,-0.509],[2.242,-0.764],[0.155,-0.145],[-0.301,-0.618],[-0.531,0.184],[-2.378,1.373],[-0.521,-1.448],[-1.331,-0.354],[-0.623,1.045],[-0.943,-0.243],[-0.113,-0.8],[0.175,-0.87],[0.788,0.292],[0.571,2.345],[0.368,-0.365],[2.352,-0.953],[0.087,-0.032],[0.463,0.689],[-0.376,0.597]],"o":[[0.994,-1.4],[0.598,0.551],[0.786,-0.776],[0.153,-0.003],[-0.121,0.927],[-1.928,1.368],[-0.22,0.075],[-0.451,0.423],[0.227,0.467],[2.593,-0.901],[1.296,-0.748],[0.344,0.956],[1.154,0.307],[0.363,-0.609],[0.839,0.216],[-1.009,-0.195],[-0.219,1.086],[-1.93,-0.715],[-0.256,-1.049],[-1.946,1.931],[-0.086,0.035],[-0.83,0.303],[-0.439,-0.655],[0.183,-0.291]],"v":[[190.585,225.668],[194.648,223.444],[196.356,223.359],[198.64,220.957],[199.098,220.948],[197.759,223.13],[191.485,226.313],[190.838,226.553],[189.896,228.044],[191.422,227.94],[198.861,224.509],[200.959,225.379],[202.672,227.784],[205.29,226.901],[206.762,225.527],[207.876,227.461],[206.16,228.699],[204.456,229.559],[200,225.779],[198.636,225.534],[191.653,228.584],[191.395,228.687],[189.098,228.384],[189.941,226.509]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.53,-0.013],[-0.567,0.836],[0.445,0.8],[0.589,-0.389],[1.289,0.739],[0.213,-0.02],[0.14,-0.742],[-0.572,-0.125],[-0.453,0.16],[0.266,-1.084]],"o":[[1.221,0.004],[0.508,-0.75],[-0.377,-0.677],[-1.431,0.945],[-0.194,-0.111],[-0.58,0.054],[-0.15,0.797],[0.484,0.106],[1.127,-0.4],[-0.408,1.658]],"v":[[170.003,212.862],[172.307,211.093],[172.414,208.727],[170.696,207.931],[166.75,207.773],[166.093,207.588],[164.641,208.347],[165.778,209.48],[167.288,209.465],[168.271,210.436]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.127,-0.414],[0.25,-1.171],[-0.23,-1.405],[-0.193,1.115],[0.013,1.632],[0.007,-0.54],[1.273,-0.61],[0.394,-0.127],[0.551,2.049],[1.252,0.238],[-0.424,1.102],[0.959,-0.101],[0.01,0.443],[-1.645,-0.417]],"o":[[0.301,1.122],[-0.297,1.391],[-1.267,-0.318],[0.222,-1.284],[-0.611,0.694],[-0.02,1.593],[-0.368,0.176],[-1.919,0.62],[-0.275,-1.021],[-1.3,-0.247],[0.461,-1.196],[-0.01,-0.444],[1.736,0.041],[2.13,0.54]],"v":[[174.337,207.433],[174.412,210.817],[174.637,215.051],[173.337,212.708],[173.999,208.542],[173.265,210.372],[170.999,213.403],[169.811,213.756],[167.35,212.326],[165.415,210.263],[164.001,207.953],[162.95,206.709],[162.919,205.378],[167.902,206.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.78,0.976],[0.247,0.017],[0.344,-0.233],[1.15,1.176],[0.96,0.925],[0.381,-0.236],[-0.172,-0.374],[-1.65,-1.123],[-0.715,0.408]],"o":[[0.086,-0.391],[-0.443,-0.03],[-1.373,0.929],[-0.932,-0.953],[-0.248,-0.239],[-0.435,0.269],[0.825,1.799],[0.524,0.357],[1.123,-0.642]],"v":[[182.589,220.888],[182.219,220.4],[181.071,220.829],[177.998,220.521],[175.156,217.706],[174.282,217.196],[174.297,218.309],[177.948,222.738],[179.662,223.288]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.044,1.904],[1.187,1.591],[0.403,-1.072],[0.296,-0.925],[-1.671,-0.745],[-0.485,-0.157]],"o":[[-0.239,-1.551],[-0.685,-0.917],[-0.341,0.907],[-0.551,1.724],[0.464,0.207],[1.5,0.485]],"v":[[173.536,221.018],[171.89,215.981],[169.918,216.232],[169.072,219.02],[170.436,222.068],[171.871,222.595]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.21,0.762],[-0.635,1.355],[-0.882,-0.478],[-1.366,-1.261],[-0.385,-0.462],[-1.34,0.896],[-0.697,-1.216],[0.596,-0.693],[0.43,-0.416],[1.812,1.552],[0.716,0.656],[0.145,-0.868],[2.04,0.76],[0.916,0.443]],"o":[[-0.687,-1.828],[0.533,-1.138],[1.631,0.884],[0.443,0.409],[0.935,1.121],[0.789,-0.527],[0.6,1.046],[-0.386,0.449],[-1.68,1.626],[-0.738,-0.632],[-0.643,-0.589],[-0.361,2.158],[-0.97,-0.361],[-1.108,-0.536]],"v":[[168.261,219.568],[169.695,215.256],[172.264,214.96],[176.748,218.212],[178.032,219.488],[181.276,220.049],[183.942,219.824],[182.496,222.066],[181.12,223.225],[177.466,223.312],[175.259,221.406],[174.287,221.795],[171.534,223.316],[168.821,221.916]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.009,0.882],[-0.324,0.051],[-1.173,0.034],[-0.333,0.225],[-1.44,-0.343],[1.036,-0.943],[1.271,-1.208],[0.284,0.222],[0.865,0.199]],"o":[[-0.216,-0.542],[1.106,-0.175],[0.398,-0.012],[1.443,-0.976],[1.362,0.324],[-1.297,1.181],[-0.517,0.491],[-0.797,-0.622],[-1.455,-0.335]],"v":[[208.317,135.562],[208.595,134.776],[211.678,133.615],[212.854,133.22],[217.237,133.084],[217.742,135.303],[213.802,138.79],[212.442,138.834],[209.8,137.701]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.3,0.587],[-0.409,2.443],[-1.496,-0.803],[0.114,-0.534],[2.167,-2.489],[1.025,0.275]],"o":[[0.316,-2.549],[0.276,-1.651],[0.464,0.249],[-0.651,3.049],[-0.484,0.556],[-1.132,-0.304]],"v":[[218.646,116.605],[219.6,109.14],[223.619,107.415],[224.231,108.522],[221.041,117.214],[219.33,118.549]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.371,-0.033],[-2.255,-0.181],[-1.656,0.336],[-0.323,0.002],[-0.063,-0.298],[0.242,-0.062],[1.328,-0.202],[-0.06,-1.469],[-0.438,-0.045],[-0.656,0.541],[-0.443,-0.886],[-0.014,-0.824],[0.102,0.346],[1.211,-0.58],[0.896,1.144],[-0.767,1.222],[1.243,0.208],[1.307,0.127],[-0.052,0.638],[-0.54,-0.205],[-0.105,1.693]],"o":[[-0.584,2.101],[1.652,0.133],[0.315,-0.064],[0.293,-0.002],[0.077,0.367],[-1.238,0.317],[-1.451,0.22],[0.017,0.426],[0.779,0.081],[0.962,-0.793],[0.351,0.702],[-0.399,-0.085],[-0.392,-1.329],[-0.9,0.431],[-0.87,-1.111],[0.717,-1.143],[-1.248,-0.209],[-0.95,-0.092],[0.046,-0.572],[1.294,0.491],[0.022,-0.351]],"v":[[-125.176,198.119],[-123.271,200.838],[-118.283,200.708],[-117.315,200.64],[-116.657,201.041],[-117.189,201.553],[-120.76,202.909],[-123.488,206.734],[-122.887,207.532],[-120.597,207.271],[-118.671,207.793],[-117.879,209.996],[-118.68,209.293],[-120.99,208.384],[-123.886,208.362],[-124.128,204.751],[-124.987,203.053],[-128.708,202.167],[-129.282,200.431],[-128.255,199.889],[-125.917,198.592]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.374,0.005],[-1.229,0.013],[-1.181,-0.705],[-1.393,-1.152],[0.268,-0.578],[0.411,-0.018],[2.924,0.887],[1.125,0.535],[-0.103,0.316]],"o":[[1.219,0.06],[1.394,-0.015],[1.548,0.924],[0.386,0.319],[-0.307,0.661],[-3.109,0.133],[-1.243,-0.377],[-0.313,-0.149],[0.203,-0.625]],"v":[[105.481,213.144],[109.023,212.555],[112.878,213.499],[117.35,216.529],[117.94,217.815],[116.725,217.89],[107.781,216.226],[104.617,214.285],[104.422,213.395]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.112,0.638],[-0.316,0.892],[-1.04,1.282],[-1.717,-0.017],[-0.205,-1.706],[0,0.001],[0.074,-0.072],[0,0],[-0.011,-0.39],[1.531,-0.716],[0.1,-0.239],[0,0],[0.012,-0.348]],"o":[[-0.981,-0.036],[-0.762,-0.438],[0.546,-1.541],[1.247,-1.538],[1.711,0.017],[0.001,0],[-0.074,0.071],[0,0],[-0.391,0.123],[-1.356,0.892],[-0.218,-0.007],[0,0],[-0.353,-0.013],[0,0]],"v":[[-239.787,224.297],[-242.704,224.615],[-243.545,222.865],[-241.092,218.743],[-236.593,217.034],[-234.408,219.005],[-234.48,219.05],[-234.702,219.265],[-234.744,219.316],[-235.273,220.113],[-238.657,223.476],[-239.181,223.728],[-239.215,223.762],[-239.755,224.272]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.994,-1.4],[1.345,1.073],[0.405,0.059],[-0.432,1.073],[-1.701,0.774],[-0.239,0.206],[-1.272,0.168],[-0.295,-0.007],[-0.043,-0.289],[-0.004,-0.807],[0.206,-0.12],[1.623,-0.103],[1.326,-1.181],[-2.67,-0.782],[0.196,-0.279]],"o":[[-1.494,-0.235],[-0.277,-0.221],[0.01,-1.21],[1.701,-0.774],[0.402,-0.016],[1.142,-0.986],[0.296,0.007],[0.044,0.29],[-0.315,0.712],[-0.206,0.12],[-1.602,-0.249],[-1.438,0.091],[3.038,0.416],[-0.196,0.279],[-1.193,1.036]],"v":[[190.585,225.668],[186.137,224.744],[184.94,224.543],[186.006,221.25],[191.109,218.928],[192.293,218.853],[196.074,218.1],[196.961,218.121],[197.093,218.99],[196.428,221.208],[195.812,221.569],[190.978,221.248],[186.98,223.059],[195.235,222.607],[194.648,223.444]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.801,2.989],[-0.403,0.086],[-0.209,0.489],[0.337,0.476],[-0.969,-0.023],[-2.14,-0.985],[-0.538,-0.121],[0.844,-1.032]],"o":[[0.528,-0.156],[0.623,-0.133],[0.276,-0.646],[-0.559,-0.789],[2.191,0.053],[0.488,0.225],[1.31,0.294],[-2.805,3.431]],"v":[[-166.351,202.994],[-165.028,202.61],[-163.28,202.027],[-164.381,200.828],[-163.765,199.276],[-157.191,199.737],[-155.577,200.087],[-154.747,202.409]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.346,-1.235],[1.952,0.97],[-0.027,0.453],[-1.731,-0.37],[-0.01,0.347],[-1.487,1.167],[-0.023,2.251],[-0.025,-0.337],[-1.061,-0.008],[0.859,-1.657],[-0.096,-0.673]],"o":[[-0.969,2.08],[0.086,-0.449],[0.084,-1.403],[0.322,0.069],[0.063,-2.11],[1.651,-1.296],[0.333,0.049],[0.101,1.36],[-0.66,1.784],[-0.266,0.514],[-0.944,0.764]],"v":[[-125.685,150.114],[-131.565,152.35],[-131.316,151.002],[-129.109,148.938],[-128.533,148.532],[-125.661,143.85],[-122.62,138.951],[-121.909,139.477],[-119.818,141.004],[-122.793,145.729],[-123.489,147.321]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.553,0.051],[-1.716,-0.169],[0.284,-1.161],[-0.31,-0.282],[-0.347,0.075],[-0.969,2.08],[0.903,-0.501],[1.1,-2.577],[0.846,0.162],[0.24,0.736],[0.764,1.189],[0.264,-0.701],[0.433,0.056],[0.148,0.212],[-0.046,1.351],[-0.264,2.126]],"o":[[0.075,1.084],[-0.568,1.095],[-0.117,0.477],[0.342,0.31],[1.952,0.97],[0.596,0.676],[-2.633,1.461],[-0.257,0.603],[-0.805,-0.155],[-0.371,-1.14],[-0.518,0.667],[-0.107,0.286],[-0.36,-0.046],[-0.977,-1.393],[0.074,-2.164],[0.069,-0.553]],"v":[[-133.523,145.378],[-132.086,147.955],[-132.885,151.45],[-132.506,152.726],[-131.565,152.35],[-125.685,150.114],[-125.693,152.12],[-130.557,158.65],[-131.754,160.222],[-132.715,158.231],[-133.467,154.622],[-134.463,156.711],[-135.112,157.311],[-135.557,156.679],[-135.425,152.622],[-134.358,146.286]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.449,0.421],[-0.486,-0.014],[-0.526,0.085],[-1.268,-0.629],[0.851,-1.128],[1.028,-0.376],[2.131,0.001],[0.486,0.102],[0.17,0.214],[-0.247,0.666],[-0.623,0.032],[-0.49,0.25],[-1.567,0.455],[-0.406,-0.49],[0.217,-0.431],[0.089,-0.212],[-0.499,-0.406]],"o":[[0.486,0.014],[0.508,0.476],[1.071,-0.174],[-0.886,1.175],[-0.973,0.596],[-2.118,-0.497],[-0.426,-0.324],[-0.176,-0.209],[-0.326,-0.41],[0.232,-0.626],[0.586,-0.03],[1.377,-0.703],[0.409,-0.119],[0.313,0.378],[-0.104,0.206],[-0.169,0.403],[0.424,0.346]],"v":[[206.675,214.81],[208.134,214.852],[209.672,214.876],[212.996,214.456],[210.408,217.888],[207.241,218.681],[200.852,218.516],[199.417,218.131],[198.889,217.503],[198.105,216.174],[199.588,215.356],[201.084,214.712],[204.514,211.818],[205.751,211.672],[205.702,212.98],[205.392,213.598],[205.303,214.837]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.227,-0.85],[0.454,-0.198],[0.908,-0.298],[5.212,0.019],[0.268,0.207],[-0.854,0.281],[0.549,2.014],[-0.479,0.041],[-0.487,-0.002],[-3.795,0.038]],"o":[[-0.454,0.198],[-1.032,-0.085],[-5.088,1.67],[-0.099,0],[1.006,-0.312],[2.031,-0.669],[0.401,-0.46],[0.415,0.441],[3.795,0.017],[0.875,-0.009]],"v":[[216.44,126.681],[215.077,127.274],[212.343,128.174],[196.809,129.458],[196.344,129.109],[199.067,128.261],[200.548,125.573],[201.96,125.309],[203.405,125.574],[214.79,125.57]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.545,-2.132],[1.891,0.364],[0.511,-0.014],[0.665,0.896],[1.203,-0.413],[0.938,-0.043],[-0.399,0.219],[-1.012,0.003],[-0.945,0.028],[-0.815,-0.611]],"o":[[-2.282,-0.066],[-0.502,-0.097],[-0.883,0.025],[-1.001,-1.349],[-1.152,0.395],[-0.288,0.013],[0.856,-0.47],[0.966,-0.003],[1.026,-0.03],[2.42,1.815]],"v":[[-111.438,183.884],[-117.417,182.663],[-118.92,182.464],[-121.15,181.534],[-125.059,181.132],[-127.821,180.726],[-127.373,178.01],[-124.619,177.162],[-121.733,176.993],[-118.662,177.908]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.121,0.042],[-0.654,0.052],[-0.726,0.15],[0.092,0.077],[-0.352,0.796],[-0.655,-0.099],[-1.172,-0.245],[-0.531,0.417],[-0.601,-1.064],[-0.614,0.658],[-1.169,-0.387],[-1.103,-0.348],[0.035,-0.482],[0.379,-0.099],[0.918,0.259],[0.313,-0.365],[-0.153,-0.314],[-0.419,-1.246],[1.556,0.633],[1.278,0.019],[0.818,-0.744],[1.558,0.361],[0.816,-0.229]],"o":[[0.135,-0.77],[0.664,-0.053],[-0.128,-0.223],[-0.474,-0.395],[0.352,-0.795],[1.183,0.179],[0.612,0.128],[0.959,-0.752],[0.587,1.038],[0.946,-1.014],[1.098,0.363],[0.423,0.133],[-0.035,0.486],[-1.041,0.273],[-0.334,-0.094],[-0.312,0.364],[0.421,0.867],[-1.778,-0.744],[-1.159,-0.472],[-1.001,-0.015],[-1.312,1.193],[-0.752,-0.174],[-0.121,-0.041]],"v":[[-148.39,176.059],[-147.049,175.162],[-145.006,174.757],[-145.265,174.318],[-146.262,172.881],[-144.385,172.471],[-140.861,173.169],[-139.148,172.885],[-136.708,173.314],[-134.829,173.487],[-131.648,172.891],[-128.352,173.975],[-127.524,174.767],[-128.47,175.456],[-131.226,174.719],[-132.237,174.581],[-131.947,175.548],[-130.102,178.097],[-134.981,176.061],[-138.602,175.22],[-141.253,176.077],[-145.734,176.534],[-148.026,176.184]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.617,0.102],[-0.496,-0.688],[-0.277,-0.528],[2.132,-0.257],[0.522,0.713],[0.492,0.775],[0.689,-1.241],[1.021,-0.256],[0.629,1.386],[-0.232,0.35],[-1.559,-0.34],[-0.828,-0.289]],"o":[[0.265,0.954],[0.319,0.505],[1.007,1.919],[-0.978,0.118],[-0.541,-0.738],[-0.775,-1.22],[-0.495,0.892],[-1.48,0.372],[-0.167,-0.369],[0.924,-1.395],[0.853,0.186],[0.573,0.2]],"v":[[272.526,208.139],[274.395,209.769],[275.346,211.288],[273.787,214.415],[271.674,212.969],[270.235,210.62],[268.166,210.64],[266,212.42],[262.362,210.7],[262.427,209.661],[268.263,207.055],[270.765,207.865]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.582,-0.004],[0.018,-0.088],[-1.751,-0.079],[0.325,-0.709],[-1.642,-1.837],[-1.755,-2.438],[2.113,-0.628],[1.682,1.477],[1.453,1.991],[0.113,1.115],[-0.62,-0.017],[-0.1,0.508],[0.483,0.143],[-0.307,0.392],[0.776,0.93],[-0.589,0.498],[-0.581,-0.635]],"o":[[-0.004,0.091],[-0.328,1.626],[0.003,0.838],[-1.026,2.24],[2,2.237],[1.227,1.704],[1.034,-2.993],[-1.796,-1.577],[-0.773,-1.059],[-0.054,-0.53],[0.453,0.012],[0.091,-0.463],[-0.571,-0.169],[0.938,-1.2],[-0.438,-0.525],[0.651,-0.55],[0.293,0.321]],"v":[[-120.682,154.867],[-120.696,155.14],[-119.274,156.845],[-120.123,159.025],[-119.18,164.884],[-113.459,171.832],[-114.775,175.3],[-117.803,169.702],[-123.134,164.901],[-123.832,161.583],[-122.787,160.71],[-121.847,160.078],[-122.377,159.086],[-122.721,158.145],[-123.157,155.069],[-123.708,153.333],[-121.679,153.987]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.784,0.297],[-0.246,-0.413],[0.358,-0.209],[1.063,-0.195],[-0.291,-0.314],[-1.233,-1.829],[0.253,-0.23],[0.316,0.084],[2.134,0.752],[0.92,0.827],[-1.156,0.583],[-1.447,-0.265],[-0.179,0.377]],"o":[[0.505,-0.005],[0.313,0.525],[-0.772,0.45],[-0.344,0.063],[1.528,1.648],[0.155,0.23],[-0.278,0.253],[-2.184,-0.585],[-1.201,-0.423],[-0.682,-0.613],[1.137,-0.573],[0.659,0.121],[0.763,-1.602]],"v":[[143.957,202.803],[145.218,203.296],[144.689,204.428],[142.772,206.201],[142.866,207.132],[146.282,212.788],[146.294,213.545],[145.375,213.575],[138.921,211.52],[135.763,209.722],[135.873,207.959],[139.422,206.706],[140.246,205.774]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.041,-0.363],[-1.971,0.077],[-2.183,-2.248],[-0.587,-0.173],[0.033,-0.338],[0.241,0.071],[2.438,0.344],[0.04,-0.311],[-0.28,0.747],[-0.607,0.035],[-0.109,0.536],[0.561,0.284],[0.99,-0.383],[1.056,0.502],[1.109,-0.241],[1.976,-0.153],[0.321,0.805]],"o":[[1.925,0.542],[3.128,-0.122],[0.436,0.449],[0.239,0.07],[-0.037,0.38],[-2.518,-0.745],[-0.326,-0.046],[-0.384,-0.475],[0.233,-0.619],[0.841,-0.049],[0.182,-0.897],[-0.932,-0.471],[-0.911,-0.971],[-1.024,-0.486],[-1.881,0.408],[-1.017,0.079],[2.556,-1.238]],"v":[[68.398,198.714],[74.266,199.193],[82.243,202.332],[83.8,203.185],[84.386,203.663],[83.658,204.155],[76.715,205.344],[76.189,205.86],[75.261,204.328],[76.833,203.671],[78.784,202.592],[77.204,201.684],[74.243,201.674],[70.965,200.865],[67.712,200.753],[62.082,202.083],[60.345,201.153]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.774,-0.359],[-1.309,-0.797],[-0.523,0.79],[0.773,0.506]],"o":[[0.483,1.717],[0.575,0.35],[0.475,-0.718],[-1.315,-0.862]],"v":[[180.708,209.292],[183.763,212.672],[185.608,212.763],[185.129,210.684]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.301,1.122],[-2.011,-0.221],[-1.879,-0.783],[-1.183,0.407],[1.242,0.826],[-0.046,1.022],[-2.077,-1.191],[0.244,-0.66],[0.692,-0.047],[0.558,0.25],[-0.053,-0.82],[1.144,-1.133],[0.16,0.212],[0.607,0.719],[0.607,1.67],[0.582,-0.516],[-0.586,-0.509],[0.015,-0.543],[-0.029,-0.794],[0.762,-0.345],[0.607,0.556],[0.148,0.109],[0.083,0.075],[0,0],[-0.297,1.391]],"o":[[2.099,-0.813],[2.031,0.223],[0.791,0.33],[-1.485,-0.944],[-0.621,-0.413],[2.194,0.975],[0.421,0.241],[-0.206,0.558],[-0.611,0.041],[-0.822,-0.367],[0.129,2.002],[-0.16,0.158],[0.693,-1.109],[-1.008,-1.195],[-0.202,-0.557],[-0.652,0.578],[0.334,0.289],[-0.276,0.746],[0.029,0.787],[-0.731,0.331],[-0.135,-0.123],[-0.083,-0.075],[0,0],[-0.23,-1.405],[0.25,-1.171]],"v":[[174.337,207.433],[180.387,207.957],[186.195,209.699],[189.01,209.847],[185.012,207.294],[183.544,205.653],[189.867,209.057],[190.707,210.122],[189.366,211.169],[187.606,210.892],[186.602,211.659],[183.887,215.566],[183.286,215.399],[182.563,212.869],[179.319,209.445],[177.419,209.111],[177.805,210.852],[178.551,211.951],[178.241,214.258],[177.475,216.33],[175.361,215.653],[174.92,215.323],[174.67,215.097],[174.637,215.051],[174.412,210.817]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.538,2.093],[-0.906,-1.458],[-0.623,0.252],[-0.183,-0.722],[-0.815,-0.312],[0.158,-0.77],[0.704,0.063],[1.792,-0.384],[0.542,0.484],[-0.257,0.454],[0.787,0.35],[1.352,0.361],[0.28,0.311],[-0.243,0.589],[-0.722,-0.019],[-0.308,-0.095]],"o":[[1.016,1.366],[0.277,0.446],[0.742,-0.3],[0.234,0.923],[0.706,0.27],[-0.173,0.841],[-1.894,-0.17],[-0.789,0.169],[-0.627,-0.56],[0.484,-0.852],[-1.267,-0.563],[-0.435,-0.116],[-0.455,-0.505],[0.31,-0.754],[0.313,0.008],[2.011,0.621]],"v":[[-219.856,216.662],[-216.322,220.177],[-214.815,220.494],[-213.32,221.293],[-211.667,223.005],[-210.802,224.517],[-212.272,225.401],[-217.687,226.39],[-219.588,225.899],[-219.495,224.271],[-220.077,222.682],[-223.875,220.993],[-224.902,220.33],[-225.894,218.648],[-223.874,218.184],[-222.942,218.43]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.942,-1.283],[0.022,-0.167],[-0.013,-0.293],[-0.933,0.261],[-0.26,-0.386],[0.202,-0.233],[0.096,-0.152],[-0.45,-0.55],[-0.428,0.199],[-0.869,-0.013],[0.528,-2.125],[1.547,-1.205],[1.479,0.469],[-0.333,0.314],[0.464,0.411],[0.325,-0.358],[0.954,0.329],[0.565,0.371],[-1.007,0.804],[-0.814,0.872]],"o":[[-0.071,0.16],[-0.029,0.218],[1.047,-0.246],[0.289,-0.081],[0.247,0.367],[-0.121,0.139],[-0.245,0.388],[0.354,0.433],[0.76,-0.354],[2.16,0.033],[-0.94,1.866],[-1.46,-0.489],[-0.208,-0.066],[0.298,-0.28],[-0.438,-0.389],[-0.837,0.921],[-0.677,-0.233],[-1.081,-0.709],[0.91,-0.727],[1.245,-0.008]],"v":[[271.909,196.441],[271.707,196.923],[271.731,197.662],[274.273,196.226],[275.128,196.21],[274.819,197.023],[274.438,197.422],[273.829,198.606],[275.187,198.354],[277.563,197.75],[279.324,200.045],[275.001,204.007],[271.059,201.759],[270.828,201.153],[271.198,200.199],[269.826,200.482],[267.172,200.768],[265.437,199.684],[265.42,197.382],[268.374,195.611]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.718,-0.544],[-1.88,0.737],[-0.903,-0.459],[0.18,-0.252],[1.501,0.061],[0.721,-0.731],[0.535,-0.081],[0.117,0.344],[-0.321,0.111],[-0.623,0.302],[0.281,0.575],[0.515,-0.366],[2.313,0.065],[-0.447,1.077],[0.861,-0.117],[0.354,0.657],[-0.724,-0.067],[-1.864,-1.054],[-0.287,0.461],[-0.222,0.345]],"o":[[0.803,1.458],[1.195,-0.469],[0.481,0.244],[-0.917,1.286],[-1.161,-0.047],[-0.442,0.448],[-0.448,0.068],[-0.155,-0.455],[0.654,-0.227],[0.463,-0.224],[-0.298,-0.61],[-1.941,1.379],[-0.962,-0.027],[0.294,-0.707],[-0.961,0.13],[-0.374,-0.695],[1.974,0.183],[0.525,0.297],[0.217,-0.348],[0.724,-0.14]],"v":[[-166.187,182.203],[-162.53,183.905],[-159.712,185.036],[-159.856,185.974],[-163.629,187.806],[-166.322,188.937],[-167.829,189.538],[-168.59,188.871],[-168.058,188.274],[-166.136,187.484],[-165.406,186.331],[-166.841,186.148],[-173.283,187.769],[-174.257,186.51],[-175.072,185.513],[-176.887,184.251],[-176.087,182.85],[-170.174,183.545],[-169.022,183.217],[-168.356,182.182]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.736,0.041],[0.12,0.304],[-0.029,0.104],[-2.207,0.129],[-1.304,1.153],[-0.18,0.014],[-0.087,0.011],[-0.933,-0.02],[-1.728,-0.454],[-0.372,-0.306],[-0.621,-0.413],[-1.485,-0.944],[0.791,0.33],[2.031,0.223],[2.099,-0.813],[2.13,0.54]],"o":[[-0.119,-0.304],[0.029,-0.105],[2.214,0.001],[1.558,-0.091],[0.181,-0.014],[0.087,-0.011],[0.934,0.02],[1.496,1.087],[0.373,0.307],[-0.046,1.022],[1.242,0.826],[-1.183,0.407],[-1.879,-0.783],[-2.011,-0.221],[-2.127,-0.414],[-1.645,-0.417]],"v":[[162.919,205.378],[162.561,204.466],[162.648,204.153],[169.288,204.123],[173.81,202.922],[174.352,202.879],[174.614,202.846],[177.415,202.906],[182.427,204.734],[183.544,205.653],[185.012,207.294],[189.01,209.847],[186.195,209.699],[180.387,207.957],[174.337,207.433],[167.902,206.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.033,-0.602],[0.043,-0.016],[2.206,2.911],[0.365,-0.012],[0.118,-0.354],[0.217,-1.125],[0.878,0.24],[-1.931,3.367],[-3.369,-1.555],[-0.888,-0.58],[-1.197,-0.574]],"o":[[-0.045,0.012],[-3.509,1.324],[-0.189,-0.249],[-0.384,0.013],[-0.363,1.094],[-0.217,1.121],[-4.139,-1.133],[1.618,-2.821],[0.952,0.439],[0.481,0.99],[0.589,0.282]],"v":[[256.529,208.91],[256.395,208.945],[251.46,207.348],[250.904,206.621],[250.179,207.385],[249.166,210.688],[247.459,211.635],[245.141,204.447],[251.713,202.764],[254.385,204.482],[256.264,207.168]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.648,1.418],[0.55,-0.435],[0.629,-0.674],[1.6,2.19],[0.345,0.646],[-1.677,0.32],[-1.923,-1.001],[-0.078,0.013],[-2.252,-1.4],[-0.261,-0.077],[0.209,-0.43],[1.365,-0.75],[0.362,0.368]],"o":[[0.106,-1.435],[-0.712,0.564],[-1.857,1.99],[-0.436,-0.596],[-0.804,-1.506],[2.025,-0.386],[0.082,0.043],[2.996,-0.508],[0.223,0.139],[0.385,0.38],[-0.741,1.523],[-0.376,0.206],[-1.062,-1.081]],"v":[[153.981,209.208],[152.649,208.623],[150.787,210.663],[146.878,210.433],[145.605,208.622],[147.25,205.294],[153.207,205.727],[153.463,205.824],[160.748,208.658],[161.526,208.898],[161.701,210.174],[158.095,213.076],[156.84,212.715]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.774,0.176],[0.318,-0.273],[0.623,-1.823],[0.323,0.068],[-0.07,0.296],[-0.312,1.35],[1.439,0.02],[0.032,-0.912],[0.339,-0.657],[0.952,0.906],[0.637,-0.014],[0.293,-0.726],[-0.434,-0.38],[-0.51,-0.4],[0.122,-0.272],[0.222,0.012],[0.897,-0.082],[0.243,-0.67],[-0.406,-0.282],[-2.058,-0.626],[-2.055,0.674],[-0.445,-0.16],[0.548,-0.795],[-0.581,-0.03],[0.003,-0.091],[-0.752,-0.107],[-0.282,0.498],[0.253,0.494],[0.047,0.078],[-0.511,0.157],[-0.119,-0.304],[-0.01,-0.444],[0.237,-0.047],[-0.677,-0.996],[0.223,0.139],[2.996,-0.508],[0.082,0.043],[2.025,-0.386],[-0.804,-1.506],[-0.436,-0.596],[-1.857,1.99],[-0.712,0.564],[0.106,-1.435],[0.429,-0.556],[0.813,-0.759],[0.744,0.922],[0.983,1.457],[-1.038,0.573],[-1.936,-0.289],[1.233,0.692],[-0.004,0.852],[-0.612,0.314],[-0.215,0.085],[1.217,1.206],[-0.469,0.615],[-0.687,-0.149],[-0.641,-0.762],[-0.542,-0.61],[-0.002,0.241],[-0.868,0.236],[-0.892,-0.801],[0.43,-0.903],[0.401,-1.054]],"o":[[-0.083,0.454],[-1.364,1.17],[-0.093,0.274],[-0.435,-0.091],[0.317,-1.348],[0.405,-1.753],[-0.894,-0.012],[-0.026,0.745],[-0.945,-0.893],[-0.405,-0.386],[-0.674,0.015],[-0.302,0.748],[0.487,0.426],[0.185,0.145],[-0.118,0.265],[-0.876,-0.046],[-0.676,0.062],[-0.26,0.719],[1.703,1.185],[2.064,0.628],[0.379,-0.124],[-0.454,0.845],[0.643,0.593],[0.002,0.091],[-0.026,0.735],[0.524,0.075],[0.336,-0.595],[-0.041,-0.081],[0.557,0.074],[0.12,0.304],[0.01,0.443],[-0.217,0.148],[-1.133,0.224],[-0.261,-0.077],[-2.252,-1.4],[-0.078,0.013],[-1.923,-1.001],[-1.677,0.32],[0.345,0.646],[1.6,2.19],[0.629,-0.674],[0.55,-0.435],[-0.654,-0.069],[-0.675,0.876],[-0.865,0.808],[-1.103,-1.367],[-0.536,-0.795],[1.356,-0.749],[-1.231,-1.252],[-0.632,-0.354],[0.004,-0.911],[0.206,-0.106],[0.93,-0.365],[-0.461,-0.457],[0.442,-0.58],[0.906,0.197],[0.594,0.706],[0.624,-0.223],[0.007,-0.794],[1.163,-0.317],[0.673,0.605],[-0.305,0.641],[1.594,-1.247]],"v":[[161.799,196.759],[161.041,197.713],[157.525,201.733],[156.911,202.184],[156.563,201.394],[157.579,197.364],[155.986,194.698],[154.525,195.993],[154.155,198.133],[151.301,195.434],[149.876,194.677],[148.222,195.426],[149.028,196.869],[150.551,198.077],[150.815,198.643],[150.211,198.862],[147.595,198.578],[145.963,199.419],[146.919,200.576],[152.266,203.751],[158.404,203.775],[159.602,203.537],[157.452,205.08],[159.253,205.069],[159.258,205.342],[160.282,206.724],[161.819,206.489],[161.137,205.014],[160.997,204.78],[162.561,204.466],[162.919,205.378],[162.95,206.709],[162.295,207.139],[161.526,208.898],[160.748,208.658],[153.463,205.824],[153.207,205.727],[147.25,205.294],[145.605,208.622],[146.878,210.433],[150.787,210.663],[152.649,208.623],[153.981,209.208],[152.466,209.93],[150.161,212.341],[147.35,212.203],[144.236,207.945],[145.245,205.265],[149.88,203.967],[146.206,201.296],[145.053,199.724],[146.346,198.286],[146.971,197.98],[147.632,196.123],[147.62,194.326],[149.33,193.659],[151.764,194.88],[153.528,196.873],[154.017,196.078],[154.786,194.032],[157.93,195.1],[158.45,197.316],[157.532,199.696]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.925,0.542],[-1.853,-0.034],[-4.383,-0.739],[-2.883,-1.987],[-0.425,-0.797],[1.513,0.115],[1.925,-1.171],[0.512,-0.213],[0.079,0.912],[0.9,0.023],[1.285,-0.405],[0.543,0.931],[-0.326,-0.046],[-2.518,-0.745],[-0.037,0.38],[0.239,0.07],[0.436,0.449],[3.128,-0.122]],"o":[[1.821,-0.738],[4.483,0.083],[3.32,0.56],[0.523,0.361],[-1.678,-0.398],[-2.258,-0.171],[-0.468,0.285],[-0.911,0.379],[-0.094,-1.09],[-1.369,-0.035],[-0.744,0.235],[0.04,-0.311],[2.438,0.344],[0.241,0.071],[0.033,-0.338],[-0.587,-0.173],[-2.183,-2.248],[-1.971,0.077]],"v":[[68.398,198.714],[73.964,198.436],[87.101,200.708],[96.643,204.267],[97.869,205.934],[93.147,205.585],[86.912,207.057],[85.383,207.705],[83.811,206.809],[82.208,205.584],[78.267,206.244],[76.189,205.86],[76.715,205.344],[83.658,204.155],[84.386,203.663],[83.8,203.185],[82.243,202.332],[74.266,199.193]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.22,0.115],[-1.137,-1.274],[-0.403,0.243],[0.165,0.382],[-0.013,0.16],[-0.924,0.769],[-1.492,0.062],[-1.324,-1.862],[0.504,-0.706],[0.76,-1.702],[0.827,0.532],[2.556,2.01],[-0.176,0.617]],"o":[[1.986,-0.248],[0.239,0.268],[0.474,-0.285],[-0.073,-0.17],[0.054,-0.67],[0.878,-0.73],[2.666,-0.111],[0.627,0.881],[-1.025,1.436],[-0.392,0.878],[-2.717,-1.75],[-0.423,-0.333],[0.21,-0.737]],"v":[[109.498,207.722],[114.039,209.291],[114.973,209.693],[115.041,208.587],[114.816,208.086],[114.582,206.134],[117.577,204.617],[123.051,207.663],[122.698,210.207],[119.382,214.359],[117.221,214.808],[109.02,209.637],[108.322,208.439]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.334,1.95],[-1.417,0.122],[-0.564,-0.108],[-1.086,0.506],[-1.687,-0.169],[-0.028,-0.062],[-1.668,-0.882],[-0.447,-0.566],[0.176,-0.444],[0.515,0.046],[1.74,0.638],[0.645,-1.206],[-0.95,-0.615],[-2.455,-1.958],[-0.033,-0.033],[0.409,-0.491],[0.503,0.361],[2.038,1.088],[1.909,0.248],[-0.164,0.543],[-0.354,0.796],[0.986,0.051],[1.458,0.065]],"o":[[1.363,0],[0.668,-0.057],[1.188,0.228],[1.68,-0.784],[0.088,0.009],[1.018,2.204],[0.616,0.326],[0.247,0.314],[-0.208,0.525],[-1.861,-0.165],[-0.675,-0.248],[-0.603,1.129],[2.642,1.709],[0.036,0.029],[0.532,0.543],[-0.474,0.568],[-1.883,-1.352],[-1.695,-0.905],[-0.6,-0.078],[0.253,-0.841],[0.564,-1.267],[-1.482,-0.077],[-1.798,-0.081]],"v":[[-191.727,204.214],[-187.511,204.177],[-186.891,204.865],[-183.499,204.651],[-178.448,204.535],[-178.2,204.642],[-173.122,207.146],[-171.41,208.308],[-170.761,209.283],[-172.087,209.797],[-177.422,208.365],[-179.563,208.47],[-178.672,210.845],[-171.209,216.59],[-171.109,216.687],[-170.059,218.516],[-171.7,217.676],[-177.536,213.929],[-183.01,212.242],[-183.592,211.519],[-182.826,209],[-183.968,207.311],[-188.356,206.786]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.055,-0.388],[0.839,-2.846],[1.544,0.997],[0.235,0.147],[0.173,-0.953],[2.061,0.218],[-0.394,0.958],[-1.054,1.514],[-1.188,1.705],[-0.552,0.498],[-0.788,-0.281],[-0.132,-0.749]],"o":[[-0.417,2.919],[-0.511,1.733],[-0.233,-0.151],[-0.903,-0.562],[-0.383,2.113],[-0.925,-0.098],[0.716,-1.739],[1.187,-1.705],[0.427,-0.613],[0.644,-0.581],[0.775,0.276],[0.072,0.407]],"v":[[183.179,88.511],[181.92,97.241],[179.116,98.275],[178.429,97.803],[176.877,98.548],[173.926,100.841],[172.375,97.75],[175.445,93.145],[179.077,88.078],[180.505,86.386],[182.659,85.135],[183.004,87.306]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.072,-0.098],[-1.011,0.716],[-4.159,-0.969],[0.037,-0.55],[0.567,0.018],[3.166,-1.507],[1.421,0.139],[2.385,1.4],[0.881,0.734],[0.068,0.095],[-0.165,0.579],[-0.528,0.061],[-2.053,-1.242],[-0.353,1.758],[-1.123,-0.531],[0.719,-0.769],[0.746,-0.841]],"o":[[1.231,-0.287],[3.865,-2.737],[0.675,0.157],[-0.037,0.552],[-3.602,-0.114],[-1.504,0.716],[-2.74,-0.268],[-0.962,-0.564],[-0.102,-0.085],[-0.366,-0.51],[0.154,-0.539],[2.489,-0.289],[1.601,0.968],[0.33,-1.643],[0.87,0.412],[-0.767,0.82],[0.072,0.098]],"v":[[121.01,237.401],[124.435,235.863],[136.565,234.808],[137.255,235.957],[136.386,236.824],[126.312,239.374],[121.986,239.553],[114.263,237.036],[111.232,235.743],[110.859,235.576],[109.874,234.031],[111.386,233.784],[118.081,235.678],[120.022,234.911],[122.667,232.899],[123.034,234.589],[120.793,237.107]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.043,-0.597],[0.909,-0.318],[0.379,-0.124],[2.064,0.628],[1.703,1.185],[-0.26,0.719],[-0.676,0.062],[-0.876,-0.046],[-0.118,0.265],[0.185,0.145],[0.487,0.426],[-0.302,0.748],[-0.674,0.015],[-0.405,-0.386],[-0.945,-0.893],[-0.026,0.745],[-0.894,-0.012],[0.405,-1.753],[0.317,-1.348],[-0.435,-0.091],[-0.093,0.274],[-1.364,1.17],[-0.083,0.454],[-0.648,0.005],[0.986,-1.258]],"o":[[-0.776,0.6],[-0.445,-0.16],[-2.055,0.674],[-2.058,-0.626],[-0.406,-0.282],[0.243,-0.67],[0.897,-0.082],[0.222,0.012],[0.122,-0.272],[-0.51,-0.4],[-0.434,-0.38],[0.293,-0.726],[0.637,-0.014],[0.952,0.906],[0.339,-0.657],[0.032,-0.912],[1.439,0.02],[-0.312,1.35],[-0.07,0.296],[0.323,0.068],[0.623,-1.823],[0.318,-0.273],[0.648,-0.005],[0.635,1.539],[-0.332,0.424]],"v":[[162.201,202.311],[159.602,203.537],[158.404,203.775],[152.266,203.751],[146.919,200.576],[145.963,199.419],[147.595,198.578],[150.211,198.862],[150.815,198.643],[150.551,198.077],[149.028,196.869],[148.222,195.426],[149.876,194.677],[151.301,195.434],[154.155,198.133],[154.525,195.993],[155.986,194.698],[157.579,197.364],[156.563,201.394],[156.911,202.184],[157.525,201.733],[161.041,197.713],[161.799,196.759],[163.743,196.743],[162.988,200.874]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.536,0.593],[0.465,-0.39],[-0.664,3.178],[-0.01,0.603],[-1.736,0.289],[-1.19,-0.337],[0.179,-0.953],[0.825,-4.345],[1.69,0.119],[0.054,1.045]],"o":[[-0.401,0.307],[0.029,-3.283],[0.121,-0.58],[0.031,-1.792],[1.176,-0.196],[0.915,0.259],[-0.815,4.347],[-0.342,1.801],[-1.053,-0.074],[-0.035,-0.675]],"v":[[211.63,115.779],[211.185,116.996],[211.396,107.352],[211.443,105.547],[213.882,102.541],[217.461,102.642],[218.563,104.388],[216.141,117.433],[213.639,119.451],[212.001,117.771]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.171,-0.052],[-0.035,-0.102],[-0.768,-0.985],[0.469,-0.472],[1.332,1.096],[0.652,0.581],[0.051,0.03],[0.839,0.216],[0.363,-0.609],[1.154,0.307],[0.344,0.956],[1.296,-0.748],[2.593,-0.901],[0.227,0.467],[-0.451,0.423],[-0.22,0.075],[-1.928,1.368],[-0.121,0.927],[-1.059,0.125],[-1.762,-0.293],[-0.556,-0.54],[-0.881,-0.089],[-0.581,-0.495]],"o":[[0.035,0.103],[0.283,1.233],[0.438,0.562],[-1.02,1.027],[-0.674,-0.555],[-0.015,-0.058],[-0.113,-0.8],[-0.943,-0.243],[-0.623,1.045],[-1.331,-0.354],[-0.521,-1.448],[-2.378,1.373],[-0.531,0.184],[-0.301,-0.618],[0.155,-0.145],[2.242,-0.764],[0.717,-0.509],[0.571,-0.605],[1.762,0.294],[0.766,0.1],[0.437,0.707],[0.728,0.362],[0.018,0.231]],"v":[[211.891,224.338],[211.997,224.646],[213.633,227.959],[213.52,229.396],[209.935,229.333],[207.974,227.595],[207.876,227.461],[206.762,225.527],[205.29,226.901],[202.672,227.784],[200.959,225.379],[198.861,224.509],[191.422,227.94],[189.896,228.044],[190.838,226.553],[191.485,226.313],[197.759,223.13],[199.098,220.947],[200.842,219.167],[206.128,220.046],[208.117,220.996],[209.985,222.34],[211.517,224.021]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.564,0.316],[-1.359,-1.408],[-0.526,-2.463],[0.367,-0.139],[0.171,0.293],[1.696,2.919],[0.373,-0.143],[-0.051,-0.323],[-0.692,-1.798],[0.479,-0.368],[0.451,0.257],[2.738,-0.452],[0.798,1.923],[-0.262,2.534],[-0.972,-0.145],[-2.17,1.246],[-0.319,-0.497]],"o":[[1.894,0.876],[1.889,1.957],[0.061,0.284],[-0.499,0.189],[-1.7,-2.916],[-0.155,-0.266],[-0.524,0.201],[0.307,1.944],[0.205,0.533],[-0.561,0.431],[-2.072,-1.183],[-2.083,0.343],[-0.949,-2.285],[1.034,0.09],[2.218,0.331],[0.413,0.436],[0.398,0.62]],"v":[[-100.856,156.258],[-96.713,160.423],[-94.207,167.482],[-94.409,168.354],[-95.157,167.73],[-100.244,158.972],[-100.878,158.368],[-100.918,159.3],[-98.869,164.705],[-98.878,166.258],[-100.251,165.704],[-106.883,163.205],[-111.042,160.55],[-112.592,153.461],[-110.1,154.826],[-103.468,154.607],[-102.247,155.928]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.954,-0.165],[-0.274,-0.138],[-0.387,0.49],[0.187,0.346],[0.329,0.501],[-0.912,0.529],[-0.732,-1.024],[1.197,-1.983],[-0.679,-0.257],[-0.222,0.656],[-0.372,0.947],[-0.962,-0.22],[-0.037,-0.929],[4.105,-1.352],[2.293,-0.852],[2.224,-0.84],[0.728,0.506],[-1.179,0.783],[-1.026,0.271],[-0.112,0.447],[-0.534,-0.224],[-1.326,-0.158],[-1.031,0.422],[0.917,0.737],[0.682,1.179],[-1.479,0.176],[-0.787,0.344]],"o":[[0.049,0.405],[0.441,0.222],[0.305,-0.386],[-0.287,-0.529],[-0.556,-0.848],[0.821,-0.476],[1.208,1.69],[-0.345,0.571],[0.613,0.232],[0.326,-0.964],[0.315,-0.803],[0.909,0.207],[0.191,4.761],[-2.333,0.768],[-2.228,0.828],[-0.762,0.288],[-1.147,-0.797],[0.841,-0.558],[0.404,-0.107],[0.447,-0.193],[1.292,0.24],[0.773,0.092],[-1.015,-0.837],[-1.047,-0.842],[-0.778,-1.347],[0.814,-0.097],[1.027,-0.111]],"v":[[245.191,193.215],[245.881,193.827],[247.261,194.004],[246.712,193.007],[245.85,191.421],[246.048,189.112],[248.602,189.601],[249.296,194.987],[249.661,196.349],[250.947,195.681],[251.984,192.809],[253.788,191.671],[255.012,193.403],[248.91,200.845],[242.049,203.452],[235.401,206.036],[233.159,205.779],[233.129,203.423],[235.749,201.878],[236.583,201.014],[237.984,200.722],[241.747,200.264],[244.337,200.411],[241.505,198.079],[238.76,195.184],[239.949,192.721],[242.394,192.477]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.254,-0.057],[-0.183,0.017],[-0.182,0.407],[0.267,0.274],[1.183,0.274],[-0.184,-0.321]],"o":[[0.185,0],[0.419,-0.038],[0.238,-0.533],[-0.969,-0.993],[-0.636,-0.147],[0.61,1.066]],"v":[[260.208,207.288],[260.763,207.285],[261.838,206.784],[261.222,205.842],[257.716,204.816],[257.441,205.535]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,0.348],[0.306,0.011],[1.523,-0.361],[-0.298,-0.311],[-0.58,0.333],[-1.282,0.746]],"o":[[-0.057,-0.478],[-1.608,-0.056],[-0.483,0.115],[0.579,0.604],[1.287,-0.738],[0.232,-0.135]],"v":[[240.413,206.569],[239.671,206.159],[235.069,207.105],[234.265,209.436],[236.032,209.38],[239.888,207.16]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.801,0.02],[-1.141,1.225],[0.364,0.52],[0.507,-0.168],[1.241,-0.366],[-0.161,-0.734]],"o":[[1.318,-0.126],[0.333,-0.358],[-0.271,-0.388],[-1.228,0.407],[-0.67,0.198],[0.15,0.68]],"v":[[257.373,201.744],[261.388,200.367],[261.789,199.032],[260.53,198.732],[256.823,199.887],[255.635,201.16]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.491,-0.913],[1.164,-0.925],[0.37,0.203],[0.595,1.621],[0.927,-0.151],[0.952,0.439],[1.618,-2.821],[-4.139,-1.133],[-0.217,1.121],[-0.363,1.094],[-0.384,0.013],[-0.189,-0.249],[-3.509,1.324],[-0.045,0.012],[1.546,0.625],[0.534,0.814],[0.23,-0.515],[0.178,-0.426],[1.438,0.038],[0.887,1.468],[-0.093,1.224],[1.181,-0.796],[1.713,-1.09],[0.219,3.202],[0.847,0.404],[-0.985,0.669],[-1.498,0.906],[-0.36,-0.129],[0.404,-0.107],[0.841,-0.558],[-1.147,-0.797],[-0.762,0.288],[-2.228,0.828],[-2.333,0.768],[0.191,4.761],[0.909,0.207],[0.315,-0.803],[0.326,-0.964],[0.613,0.232],[-0.345,0.571],[1.208,1.69],[0.821,-0.476],[-0.556,-0.848],[-0.287,-0.529],[0.305,-0.386],[0.441,0.222],[0.049,0.405],[0.207,0.578],[-0.955,0.938],[-1.013,-0.948],[-0.517,-1.384],[-0.289,-0.047],[-0.117,0.274],[-1.043,0.039],[-0.588,-0.878],[0.947,-1.889],[1.425,-0.751],[-1.149,-0.783],[-2.055,0.784],[0.166,0.138],[-0.113,0.88],[-0.906,0.308],[-2.182,0.16],[-0.19,-0.883],[0.782,-0.432],[-0.839,-0.549],[0.625,-1.332]],"o":[[-0.891,1.249],[-0.324,0.257],[-1.296,-0.713],[-0.332,-0.905],[-0.888,-0.58],[-3.369,-1.555],[-1.931,3.367],[0.878,0.24],[0.217,-1.125],[0.118,-0.354],[0.365,-0.012],[2.206,2.911],[0.043,-0.016],[0.013,1.524],[-0.843,-0.341],[-0.358,-0.546],[-0.188,0.421],[-0.404,0.967],[-1.608,-0.043],[-0.648,-1.074],[0.077,-1.012],[-1.682,1.133],[-2.697,1.717],[-0.061,-0.889],[-0.806,-0.384],[1.447,-0.983],[0.335,-0.202],[-0.112,0.447],[-1.026,0.271],[-1.179,0.783],[0.728,0.506],[2.224,-0.84],[2.293,-0.852],[4.105,-1.352],[-0.037,-0.929],[-0.962,-0.22],[-0.372,0.947],[-0.222,0.656],[-0.679,-0.257],[1.197,-1.983],[-0.732,-1.024],[-0.912,0.529],[0.329,0.501],[0.187,0.346],[-0.387,0.49],[-0.274,-0.138],[0.084,-0.619],[-0.411,-1.148],[0.992,-0.975],[1.126,1.053],[0.102,0.274],[0.428,0.069],[0.28,-0.657],[1.15,-0.043],[1.209,1.806],[-0.794,1.584],[-1.26,0.663],[2.126,1.449],[-0.228,-0.15],[-0.463,-0.386],[0.11,-0.863],[2.048,-0.697],[0.507,-0.037],[0.15,0.701],[-1.222,0.676],[-1.018,0.643],[1.565,0.741]],"v":[[264.42,205.389],[261.005,208.26],[259.81,208.269],[256.388,205.523],[254.385,204.482],[251.713,202.764],[245.141,204.447],[247.459,211.635],[249.166,210.688],[250.179,207.385],[250.904,206.621],[251.46,207.348],[256.395,208.945],[256.529,208.91],[253.562,210.717],[251.333,209.163],[250.457,209.255],[249.935,210.537],[247.861,212.568],[243.983,210.648],[243.261,207.179],[242.059,206.411],[236.88,209.616],[232.415,207.407],[231.303,205.571],[231.044,203.782],[235.504,201.01],[236.583,201.014],[235.749,201.878],[233.129,203.423],[233.159,205.779],[235.401,206.036],[242.049,203.452],[248.91,200.845],[255.012,193.403],[253.788,191.671],[251.984,192.809],[250.947,195.681],[249.661,196.349],[249.296,194.987],[248.602,189.601],[246.048,189.112],[245.85,191.421],[246.712,193.007],[247.261,194.004],[245.881,193.827],[245.191,193.215],[244.869,191.468],[245.423,188.257],[248.297,188.247],[250.447,192.07],[250.931,192.693],[251.55,192.065],[252.891,190.561],[255.445,191.923],[255.481,197.418],[251.862,200.448],[251.753,202.02],[255.934,202.685],[255.345,202.294],[253.928,201.247],[255.461,199.243],[261.725,197.593],[263.247,198.016],[262.657,200.012],[262.726,201.758],[259.593,203.565]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.93,-0.217],[-0.906,-0.832],[0.99,-0.067],[2.023,-0.524],[2.503,0.101],[1.172,-0.515],[3.224,-1.539],[1.888,-0.383],[0.339,0.56],[-0.392,0.43],[-3.717,0.326],[-1.714,0.058],[-0.621,0.624],[2.103,0.375],[0.851,0.82],[-0.363,0.605],[-0.802,-0.129],[-2.402,-0.547],[-0.155,0.3],[0.163,0.208],[0.655,0.836],[-0.553,0.622],[-0.706,-0.475],[0.364,-2.255],[-0.392,-0.151],[-0.174,0.293],[-0.695,1.093],[-1.103,-0.957],[0.068,-0.274],[0.836,-0.597],[-0.102,-0.448],[-0.418,0.008],[-3.79,0.09],[-0.418,-0.036]],"o":[[0.886,0.726],[-1.108,0.347],[-2.138,0.144],[-2.473,0.64],[-1.295,-0.052],[-3.258,1.433],[-1.708,0.815],[-0.515,0.104],[-0.364,-0.603],[2.521,-2.769],[1.699,-0.149],[0.515,-0.018],[-2.307,-0.414],[-1.085,-0.193],[-0.388,-0.374],[0.337,-0.563],[2.412,0.387],[0.246,0.056],[0.165,-0.319],[-0.655,-0.837],[-0.657,-0.839],[0.612,-0.688],[1.747,1.175],[-0.047,0.291],[0.515,0.198],[0.661,-1.115],[0.795,-1.25],[0.271,0.235],[-0.269,1.079],[-0.373,0.267],[0.133,0.584],[3.79,-0.071],[0.22,-0.005],[-0.902,0.373]],"v":[[254.518,223.267],[257.417,224.712],[254.358,225.629],[248.131,226.859],[240.715,227.62],[237.105,228.441],[227.173,232.361],[221.881,234.433],[220.512,234.213],[220.958,232.76],[230.332,228.194],[235.419,227.614],[237.127,226.849],[230.615,225.679],[227.543,224.593],[226.993,223.176],[228.622,222.413],[235.911,223.168],[236.661,222.973],[236.346,222.277],[234.381,219.768],[234.459,217.318],[236.526,217.665],[239.059,222.496],[239.323,223.353],[240.102,222.767],[242.065,219.409],[246.345,218.818],[246.429,219.572],[244.506,221.848],[243.665,222.865],[244.876,223.171],[256.246,222.904],[257.106,222.974]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.654,0.003],[-2.987,-0.542],[-1.255,0.666],[-0.016,-2.224],[-0.485,-0.005],[-2.571,-0.529],[-0.646,0.145],[-0.272,-0.07],[0.814,0.052],[0.153,-0.54],[-0.311,-0.222],[0.625,-1.687],[0.95,0.443],[0.832,0.39],[0.288,-1.045],[1.367,0.64],[1.149,0.941],[0.71,-0.931],[0.808,-1.007],[0.747,0.029],[0.182,0.238],[0.351,0.702],[0.962,-0.793],[0.779,0.081],[0.017,0.426],[-1.451,0.22],[-1.238,0.317],[0.077,0.367],[0.293,-0.002],[0.315,-0.064],[1.652,0.133],[-0.584,2.101]],"o":[[2.803,1.214],[1.423,0.258],[0.689,-0.366],[0.004,0.597],[2.682,0.027],[0.647,0.133],[0.271,0.069],[0.206,0.914],[-0.438,-0.028],[-0.131,0.463],[1.521,1.084],[-0.287,0.774],[-0.833,-0.389],[-0.808,-0.379],[-0.393,1.425],[-1.341,-0.628],[-1.014,-0.83],[-0.782,1.026],[-0.468,0.584],[-0.181,-0.238],[-0.014,-0.824],[-0.443,-0.886],[-0.656,0.541],[-0.438,-0.045],[-0.06,-1.469],[1.328,-0.202],[0.242,-0.062],[-0.063,-0.298],[-0.323,0.002],[-1.656,0.336],[-2.255,-0.181],[0.463,-0.321]],"v":[[-123.731,197.25],[-115.023,199.92],[-111.114,198.362],[-109.444,198.833],[-108.294,199.655],[-100.578,201.254],[-98.652,201.3],[-97.838,201.508],[-98.903,202.593],[-100.114,202.978],[-99.326,203.806],[-98.084,207.58],[-100.481,208.23],[-102.971,207.048],[-104.599,207.76],[-106.833,208.693],[-110.663,206.473],[-113.086,206.861],[-115.534,209.862],[-117.334,210.709],[-117.879,209.996],[-118.671,207.793],[-120.597,207.271],[-122.887,207.532],[-123.488,206.734],[-120.76,202.909],[-117.189,201.553],[-116.657,201.041],[-117.315,200.64],[-118.283,200.708],[-123.271,200.838],[-125.176,198.119]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.813,0.494],[2.319,-0.453],[-0.039,-0.585],[-0.776,-0.141],[-0.646,0.017],[-0.557,-0.262]],"o":[[-2.603,-2.085],[-0.584,0.114],[0.05,0.745],[0.625,0.114],[0.605,-0.016],[0.766,0.36]],"v":[[-148.97,186.771],[-155.158,184.702],[-156.756,185.344],[-154.983,186.634],[-153.049,186.654],[-151.291,186.925]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.575,0.094],[-1.182,0.389],[-0.298,-0.672],[0.627,-0.306],[0.426,-0.519],[-0.447,-0.698],[-0.583,0.354],[-0.949,-1.522],[-0.429,0.304],[0.038,0.985],[0.623,0.251],[0.684,0.672],[-0.927,-0.491],[-0.44,-0.911],[-0.886,0.094],[-1.141,-1.389],[-0.317,0.19],[-1.61,-1.182],[-0.31,0.123],[-1.617,-0.617],[-0.843,-0.706],[0.901,-0.414],[0.52,-0.196],[-0.597,-0.94],[0.226,-0.318],[0.395,0.205],[0.86,0.464],[-0.202,-0.147],[0.477,-0.834],[0.926,0.328],[1.159,0.529],[1.023,-0.572],[0,-0.36],[-0.236,-0.131],[-1.142,-0.683],[0.935,-0.558],[-0.023,-1.764],[1.019,0.444],[1.771,1.183],[0.989,-0.416],[2.206,0.133],[0.806,0.302],[-0.221,0.944],[-0.808,0.002],[-1.148,0.096],[-0.031,0.058],[-1.406,-0.081],[0.172,0.246],[0.25,1.118],[-0.645,-0.62],[-0.254,0.273],[0.209,0.318],[0.982,0.232],[0.491,1.201],[-1.792,-1.131],[-0.139,-0.498],[-0.822,0.488],[-0.914,-0.206],[0.559,-0.458],[-0.354,-0.69],[-1.418,0.398],[-0.925,0.668],[0.938,0.308],[0.582,0.147],[-0.052,0.679],[-0.312,-0.167],[-1.301,-0.704],[-0.508,0.845],[0.711,0.379],[0.989,0.501],[0.86,-1.603],[1.888,0.934],[0.174,0.561],[-0.752,-0.174],[-1.312,1.193],[-1.001,-0.015],[-1.159,-0.472],[-1.778,-0.744],[0.421,0.867],[-0.312,0.364],[-0.334,-0.094],[-1.041,0.273],[-0.035,0.486],[0.423,0.133],[1.098,0.363],[0.946,-1.014],[0.587,1.038],[0.959,-0.752],[0.612,0.128],[1.183,0.179],[0.352,-0.795],[-0.474,-0.395],[-0.128,-0.223],[0.664,-0.053],[0.135,-0.77],[-0.378,0.532],[0.496,0.273],[0.694,0.902],[0.374,-0.241],[0.785,0.978],[-1.185,1.051],[0.316,0.698],[0.633,-0.057]],"o":[[0.912,-0.914],[0.903,-0.297],[0.315,0.71],[-0.579,0.282],[-0.377,0.459],[0.419,0.654],[1.522,-0.925],[0.268,0.43],[0.68,-0.481],[-0.026,-0.663],[-0.656,-0.265],[1.021,-0.231],[0.181,1.033],[0.331,0.686],[1.359,-0.145],[0.335,0.408],[1.589,-0.952],[0.329,0.242],[1.645,-0.655],[0.974,0.372],[0.745,0.624],[-0.504,0.232],[-0.78,0.293],[0.32,0.503],[-0.306,0.431],[-0.862,-0.446],[-0.308,0.4],[0.961,0.699],[-0.554,0.97],[-0.764,-0.271],[1.224,1.857],[-0.234,0.131],[0,0.359],[1.165,0.645],[0.902,0.54],[-1.029,0.615],[0.007,0.573],[-1.975,-0.861],[-0.797,-0.532],[-2.102,0.885],[-0.792,-0.048],[-1.365,-0.512],[0.217,-0.927],[1.149,-0.003],[0.09,-0.007],[0.614,-1.159],[0.457,0.026],[-0.515,-0.74],[0.823,0.056],[0.316,0.304],[0.272,-0.293],[-0.569,-0.865],[-1.139,-0.269],[1.966,0.748],[0.433,0.273],[0.352,1.259],[0.807,-0.479],[-0.397,0.727],[-0.44,0.361],[0.666,1.298],[1.154,-0.324],[0.777,-0.561],[-0.569,-0.186],[1.396,-0.872],[0.413,-0.145],[1.305,0.697],[0.928,0.502],[0.525,-0.874],[-0.979,-0.521],[-1.581,-0.801],[-1.896,-0.925],[-0.387,-0.191],[0.816,-0.229],[1.558,0.361],[0.818,-0.744],[1.278,0.019],[1.556,0.633],[-0.419,-1.246],[-0.153,-0.314],[0.313,-0.365],[0.918,0.259],[0.379,-0.099],[0.035,-0.482],[-1.103,-0.348],[-1.169,-0.387],[-0.614,0.658],[-0.601,-1.064],[-0.531,0.417],[-1.172,-0.245],[-0.655,-0.099],[-0.352,0.796],[0.092,0.077],[-0.726,0.15],[-0.654,0.052],[-0.901,0],[0.471,-0.664],[-0.922,-0.509],[-0.407,-0.529],[-1.458,0.94],[-0.699,-0.87],[0.414,-0.367],[-0.376,-0.831],[-0.547,0.049]],"v":[[-158.036,167.954],[-154.752,166.309],[-153.184,167.186],[-153.842,168.617],[-155.469,169.65],[-155.836,171.232],[-154.198,171.84],[-150.611,172.645],[-149.362,172.725],[-147.998,170.79],[-148.971,169.404],[-151.083,168.454],[-148.33,168.2],[-147.023,170.946],[-145.151,171.751],[-141.143,172.456],[-140.192,172.291],[-135.377,172.246],[-134.477,172.23],[-129.646,172.466],[-126.796,173.707],[-126.99,175.488],[-128.542,176.099],[-129.338,177.721],[-129.624,178.806],[-130.741,178.97],[-133.312,177.59],[-133.089,178.419],[-132.676,180.869],[-135.153,181.462],[-137.797,180.271],[-138.745,183.219],[-139.328,183.717],[-138.748,184.213],[-135.278,186.192],[-135.323,187.806],[-137.589,190.398],[-140.087,190.882],[-145.537,187.544],[-147.932,187.335],[-154.53,187.633],[-156.947,187.11],[-157.989,184.622],[-156.044,183.813],[-152.599,183.558],[-152.341,183.474],[-149.462,181.8],[-149.592,181.123],[-151.667,179.745],[-149.37,180.464],[-148.548,180.373],[-148.55,179.518],[-150.912,177.993],[-153.593,176.084],[-147.83,178.627],[-146.983,179.872],[-144.935,180.551],[-142.438,180.026],[-144.28,181.105],[-144.832,182.472],[-141.333,183.951],[-138.378,182.182],[-138.752,180.548],[-140.495,180.1],[-140.779,178.128],[-139.752,178.429],[-135.861,180.562],[-133.384,180.158],[-134.483,178.432],[-137.412,176.849],[-140.901,178.015],[-146.898,176.84],[-148.026,176.184],[-145.734,176.534],[-141.253,176.077],[-138.602,175.22],[-134.981,176.061],[-130.102,178.097],[-131.947,175.548],[-132.237,174.581],[-131.226,174.719],[-128.47,175.456],[-127.524,174.767],[-128.352,173.975],[-131.648,172.891],[-134.829,173.487],[-136.708,173.314],[-139.148,172.885],[-140.861,173.169],[-144.385,172.471],[-146.262,172.881],[-145.265,174.318],[-145.006,174.757],[-147.049,175.162],[-148.39,176.059],[-148.945,174.967],[-149.336,173.842],[-152.026,172.18],[-153.242,172.283],[-156.66,172.239],[-155.722,168.824],[-154.554,167.716],[-156.404,167.692]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.439,0.076],[-0.825,-0.093],[-0.085,0.52],[-0.281,-1.938],[0.337,-0.206],[0.365,-1.092],[4.547,-2.517],[0.619,1.088],[0.467,-0.307],[1.592,0.913],[-0.165,0.295],[0.892,0.473],[-1.148,1.241],[-3.342,2.588],[-0.207,0.179],[-0.024,0.069]],"o":[[0.798,-0.117],[0.448,0.05],[1.914,0.238],[0.076,0.527],[-1.08,0.659],[-1.673,5.013],[-0.893,0.494],[-0.34,-0.597],[-2.065,1.359],[-0.555,-0.318],[0.319,-0.57],[0.317,-1.653],[2.859,-3.092],[0.217,-0.168],[0.072,-0.009],[0.232,-0.369]],"v":[[173.068,112.196],[175.47,111.916],[176.366,111.323],[180.986,115.974],[180.452,117.009],[178.564,119.842],[168.993,130.912],[166.64,130.511],[165.333,130.257],[160.197,129.225],[160.265,128.327],[160.129,126.696],[162.164,122.233],[171.312,113.546],[171.937,113.01],[172.082,112.892]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.128,0.078],[0.678,0.158],[0.112,-0.944],[0.762,-0.07],[0.303,0.764],[1.399,-0.839],[0.409,1.269],[0.772,0.001],[0.956,0.457],[0.308,0.268],[-0.077,0.613],[-0.528,0.207],[-0.541,0.123],[-0.505,0.282],[1.64,0.271],[0.695,0.037],[0.168,0.434],[-0.41,0.26],[-1.587,-0.498],[-2.283,0.016],[0.769,0.568],[-0.141,0.388],[-0.326,0.027],[-1.139,-0.723],[-0.965,-0.639],[-1.216,0.925],[-1.347,0.468],[-0.102,-0.367],[-1.009,-0.121],[-1.218,0.087],[0.446,-0.332],[-0.457,-0.462],[0.312,-0.683],[0.693,-0.174],[0.005,-1.126],[-0.686,0.009],[-2.125,-0.742],[-0.761,-0.971],[0.296,-0.722],[0.282,-0.019],[1.021,-0.231],[-0.656,-0.265],[-0.026,-0.663],[0.68,-0.481],[0.268,0.43],[1.522,-0.925],[0.419,0.654],[-0.377,0.459],[-0.579,0.282],[0.315,0.71],[0.903,-0.297],[0.912,-0.914],[1.544,0.472],[0.436,-0.3]],"o":[[-0.193,-0.687],[-0.754,-0.175],[-0.101,0.849],[-0.827,0.076],[-0.585,-1.476],[-0.941,0.564],[-0.26,-0.807],[-1.018,-0.001],[-0.374,-0.179],[-0.496,-0.43],[0.082,-0.649],[0.508,-0.199],[0.525,-0.119],[-1.623,-0.658],[-0.679,-0.112],[-0.544,-0.029],[-0.215,-0.554],[1.479,-0.938],[2.1,0.659],[-0.497,-0.881],[-0.249,-0.184],[0.13,-0.357],[1.42,-0.116],[0.976,0.62],[1.258,0.833],[1.167,-0.888],[0.347,-0.12],[0.437,1.579],[1.109,0.309],[0.168,0.664],[-0.39,0.29],[0.491,0.497],[-0.284,0.621],[-0.717,0.18],[-0.004,0.952],[2.236,-0.028],[1.102,0.385],[-0.581,0.375],[-0.283,0.019],[-0.927,-0.491],[0.684,0.672],[0.623,0.251],[0.038,0.985],[-0.429,0.304],[-0.949,-1.522],[-0.583,0.354],[-0.447,-0.698],[0.426,-0.519],[0.627,-0.306],[-0.298,-0.672],[-1.182,0.389],[-1.537,0.387],[-0.135,-0.314],[-0.128,-0.078]],"v":[[-163.739,167.413],[-165.067,166.126],[-166.618,167],[-167.962,168.529],[-169.454,167.155],[-172.456,166.23],[-174.43,165.609],[-176.309,164.721],[-179.316,164.336],[-180.389,163.707],[-181.328,162.074],[-179.856,161.268],[-178.232,160.926],[-176.683,160.376],[-181.658,159.696],[-183.743,159.641],[-184.989,158.871],[-184.207,157.701],[-179.52,157.29],[-173.11,158.849],[-175.296,157.01],[-175.781,156.268],[-174.94,155.917],[-171.177,157.118],[-168.335,159.113],[-164.619,158.968],[-160.67,157.335],[-159.665,157.567],[-156.954,158.718],[-153.625,159.633],[-154.326,161.025],[-154.465,161.938],[-153.24,163.565],[-155.295,163.836],[-157.338,164.397],[-155.344,164.84],[-148.787,165.693],[-145.887,167.541],[-147.482,168.144],[-148.33,168.2],[-151.083,168.454],[-148.971,169.404],[-147.998,170.79],[-149.362,172.725],[-150.611,172.645],[-154.198,171.84],[-155.836,171.232],[-155.469,169.65],[-153.842,168.617],[-153.184,167.186],[-154.752,166.309],[-158.036,167.954],[-162.656,167.991],[-163.356,167.649]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.648,-0.084],[0.763,-0.13],[-0.237,-1.224],[-1.112,-0.107],[-1.021,0.871],[1.076,0.831]],"o":[[-0.849,-0.079],[-1.326,0.226],[0.225,1.162],[1.513,0.146],[1.02,-0.87],[-0.534,-0.413]],"v":[[-209.382,163.781],[-211.685,164.305],[-213.259,166.553],[-211.041,168.258],[-207.543,166.588],[-207.599,164.308]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.004,0.046],[-0.587,-0.621],[-0.744,-0.092],[-0.629,-0.662],[-1.321,-1.813],[-0.149,-0.107],[1.168,-0.71],[1.203,0.046],[2.322,0.041],[4.915,0.202],[4.035,0.72],[1.662,1.5],[-0.824,0.502],[-3.204,1.362],[-3.826,0.819],[-1.85,-0.516],[-0.047,-0.405],[2.536,-1.146],[-1.541,-0.609],[-0.702,-0.006],[-1.269,-0.198],[-0.521,0.427],[0.006,0.582]],"o":[[0.883,0.241],[0.64,0.678],[1.07,0.132],[1.533,1.612],[0.108,0.148],[1.105,0.794],[-0.945,0.574],[-2.319,-0.088],[-4.912,-0.087],[-4.127,-0.169],[-2.182,-0.39],[-1.067,-0.963],[2.972,-1.812],[3.564,-1.516],[1.822,-0.39],[0.339,0.095],[-2.359,0.173],[1.799,0.815],[0.506,0.2],[1.278,0.011],[0.779,0.122],[0.563,-0.462],[0,-0.046]],"v":[[-198.212,163.505],[-196.084,164.984],[-193.835,166.187],[-191.533,167.55],[-186.941,172.392],[-186.54,172.777],[-186.582,174.811],[-189.707,175.796],[-196.674,175.763],[-211.375,176.327],[-223.503,174.325],[-229.138,171.683],[-228.955,169.955],[-219.699,165.181],[-208.819,161.137],[-203.337,160.968],[-202.662,161.528],[-210.004,162.302],[-205.172,164.457],[-203.811,165.26],[-199.983,165.68],[-197.871,165.265],[-198.199,163.644]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.998,-0.784],[0.693,-0.258],[0.002,-0.316],[-0.244,-0.083],[-3.573,-0.692],[-0.046,-0.007],[-0.109,-1.015],[0.765,-0.34],[3.603,-2.019],[1.786,1.687],[0.601,-0.861],[2.706,1.101],[0.365,-0.599],[-0.465,-0.462],[1.86,-0.71],[3.086,-1.125],[1.151,-1.49],[0.614,0.205],[0.014,0.469],[-0.421,1.208],[0.016,0.945],[0.228,4.182],[0.695,2.234],[-0.739,0.414],[-0.881,-0.745],[-1.486,-0.058],[0.408,-1.509],[-0.279,-1.234],[-1.038,-0.009],[-1.237,0.099],[-0.041,0.875],[0.935,0.123],[1.05,0.122],[-1.564,0.073],[-3.232,-0.061],[-1.598,0.503]],"o":[[-0.687,0.276],[-0.269,0.1],[-0.002,0.388],[3.472,1.184],[0.045,0.009],[0.935,0.146],[0.086,0.803],[-3.773,1.677],[-1.999,1.12],[-0.862,-0.814],[-1.669,2.39],[-0.649,-0.264],[-0.38,0.624],[1.429,1.417],[-3.069,1.171],[-1.792,0.653],[-0.346,0.447],[-0.624,-0.209],[-0.036,-1.232],[0.292,-0.838],[-0.072,-4.212],[-0.123,-2.26],[-0.221,-0.71],[0.889,-0.498],[1.337,1.13],[1.616,0.063],[-0.966,0.431],[0.265,1.174],[1.254,0.011],[0.786,-0.063],[0.043,-0.919],[-1.048,-0.138],[0.898,-1.294],[3.232,-0.15],[1.599,0.03],[-0.344,1.511]],"v":[[266.655,22.976],[264.593,23.798],[264.007,24.296],[264.637,24.674],[275.331,26.872],[275.47,26.878],[277.653,28.234],[275.975,29.883],[264.91,35.421],[259.194,34.919],[257.017,35.318],[252.104,36.753],[250.157,36.336],[251.445,37.698],[250.946,40.429],[241.715,43.874],[237.349,47.139],[236.045,47.963],[235.719,46.602],[236.196,42.964],[236.566,40.231],[236.868,27.618],[236.23,20.759],[236.344,18.722],[239.367,18.494],[243.801,19.799],[245.502,21.792],[243.859,24.002],[246.184,25.222],[249.899,24.934],[251.316,23.762],[249.974,22.143],[246.824,21.773],[250.506,20.113],[260.199,19.909],[264.991,19.904]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.559,-0.655],[-0.996,1.197],[-0.172,0.216],[-0.853,0.516],[-0.896,-0.213],[-1.363,0.018],[0.546,-1.415],[0.002,-0.085],[2.724,-0.464],[1.782,-0.994],[0.496,-0.092],[0.095,0.561],[2.862,-0.29],[2.315,-0.388],[0.567,-0.501],[-2.097,-0.787],[-1.106,-0.083],[-0.072,-0.356],[0.289,-0.105],[2.4,0.588],[2.889,0.566],[-0.722,0.792],[-0.781,1.363],[-0.905,0.432],[-5.522,2.439],[-0.614,0.201],[-1.138,1.833],[-1.374,0.804],[-0.718,0.62],[-1.637,-0.853],[-1.747,-0.358],[-4.03,-1.191],[-1.117,-0.007],[0.173,-0.478],[1.353,-0.409],[0.749,-0.233],[4.245,0.195],[0.869,-0.102],[1.895,0.761],[1.9,0.72],[0.368,-0.636],[0.636,-0.846]],"o":[[1.198,0.827],[0.176,-0.212],[0.6,-0.752],[1.117,-0.675],[1.306,0.311],[1.5,-0.02],[-0.033,0.086],[-0.104,3.896],[-1.95,0.332],[-0.433,0.242],[-0.464,0.086],[-0.497,-2.929],[-2.332,0.237],[-0.744,0.125],[-1.643,1.453],[1.036,0.389],[0.27,0.02],[0.1,0.498],[-2.368,0.859],[-2.859,-0.7],[-0.917,-0.18],[1.074,-1.177],[0.448,-0.782],[5.443,-2.599],[0.588,-0.26],[1.783,-0.584],[0.887,-1.429],[0.785,-0.459],[1.523,-1.316],[1.673,0.871],[4.121,0.846],[0.996,0.294],[0.322,0.002],[-0.341,0.943],[-0.751,0.227],[-3.962,1.234],[-0.899,-0.041],[-2.143,0.251],[-1.896,-0.761],[-0.69,-0.261],[-0.531,0.918],[-1.021,1.357]],"v":[[240.002,122.113],[244.641,121.233],[245.102,120.541],[246.936,118.317],[249.545,119.12],[253.5,119.742],[256.066,123.623],[255.955,123.876],[250.114,128.358],[244.402,129.857],[242.95,130.3],[242.113,129.652],[238.477,126.727],[231.52,127.817],[229.558,128.804],[230.278,132.542],[233.537,133.115],[234.219,133.441],[233.599,133.972],[226.539,133.896],[218.376,130.857],[217.933,128.763],[220.522,124.852],[222.486,122.975],[238.739,115.018],[240.582,114.42],[245.361,111.66],[249.409,109.137],[251.801,107.785],[256.702,107.394],[261.94,108.546],[274.159,111.626],[277.141,112.599],[277.756,113.347],[276.343,115.99],[274.1,116.7],[261.964,119.156],[259.353,119.454],[253.373,118.175],[247.554,116.426],[245.988,117.271],[244.264,119.947]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.039,-0.156],[0.099,0.074]],"o":[[-0.099,-0.074],[0.194,-0.053]],"v":[[259.144,-142.667],[258.846,-142.889]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.005,-0.093],[0.027,0.07],[-0.033,0.027]],"o":[[-0.038,-0.066],[-0.005,-0.013],[0.005,0.093]],"v":[[-127.715,-59.006],[-127.823,-59.207],[-127.73,-59.286]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.001,0],[0,0]],"o":[[0,0],[0,0],[0.001,0],[0,0]],"v":[[-244.223,140.937],[-244.256,140.842],[-244.353,140.856],[-244.246,140.839]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.071,0.065],[0.071,-0.065]],"o":[[-0.071,0.065],[0.071,-0.065]],"v":[[54.719,202.092],[54.504,202.287]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.189,-0.048],[0.11,-0.072]],"o":[[-0.11,0.072],[0.041,-0.178]],"v":[[54.451,202.295],[54.121,202.512]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.017,0.061],[-0.06,0.039],[0.02,-0.064]],"o":[[0.06,-0.039],[-0.02,0.063],[-0.062,0.012]],"v":[[-142.539,65.841],[-142.359,65.724],[-142.421,65.914]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.092,0.025],[0.092,-0.025]],"o":[[-0.092,0.025],[0.092,-0.025]],"v":[[-81.403,162.29],[-81.679,162.366]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.06,0.087],[0.06,-0.087]],"o":[[-0.06,0.087],[0.061,-0.087]],"v":[[176.036,76.802],[175.854,77.062]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,-0.083],[0.076,-0.074]],"o":[[-0.076,0.075],[0.023,-0.13]],"v":[[172.676,109.666],[172.447,109.889]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.06,0.063],[0.06,-0.063]],"o":[[-0.06,0.063],[0.06,-0.063]],"v":[[47.212,208.206],[47.031,208.395]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.073,0.076],[0.073,-0.076]],"o":[[-0.073,0.076],[0.073,-0.076]],"v":[[47.768,207.631],[47.551,207.86]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.074,0.073],[0.074,-0.073]],"o":[[-0.074,0.073],[0.074,-0.073]],"v":[[47.49,207.921],[47.268,208.139]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.342,-0.092],[0.246,-0.023]],"o":[[0.016,0.339],[0.065,-0.241]],"v":[[206.075,-13.4],[205.604,-13.008]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.383,-0.024],[-0.396,0.002]],"o":[[0.059,-0.592],[-0.24,0.275]],"v":[[196.656,26.838],[197.555,26.325]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,-0.467],[0.072,0.503],[-0.166,0.177]],"o":[[-0.41,-0.367],[0.184,0.145],[0.01,0.467]],"v":[[212.845,50.583],[212.288,49.211],[212.814,49.182]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.217,-0.926],[-0.455,0.909]],"o":[[-0.005,-0.941],[0.01,0.941]],"v":[[-191.79,-146.538],[-191.599,-149.346]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.761,-0.414],[0.509,0.453],[-0.22,0.058]],"o":[[-0.82,0.19],[-0.114,-0.102],[0.575,-0.152]],"v":[[27.27,241.354],[25.417,241.331],[25.423,240.868]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.485,-0.54],[0.258,0.63],[-0.141,0.008]],"o":[[-0.744,-0.065],[-0.065,-0.16],[0.736,-0.039]],"v":[[-123.588,13.55],[-125.192,13.013],[-124.834,12.342]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.986,0.593],[-1.336,0]],"o":[[0.959,0],[-1.299,0.899]],"v":[[20.009,212.023],[23.263,212.023]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.189,0.291],[-0.516,-0.021],[-0.088,-0.418],[0.52,0.045]],"o":[[0.056,-0.342],[0.566,0.023],[0.082,0.386],[-0.691,-0.06]],"v":[[-129.093,-53.474],[-128.77,-54.372],[-128.216,-53.272],[-128.709,-52.522]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.435,0.357],[0.317,-0.678]],"o":[[-0.33,0.707],[-0.593,-1.431]],"v":[[166.589,70.166],[165.643,72.188]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.502,-0.663],[-1.42,0.372]],"o":[[-0.913,-1.063],[-0.184,0.776]],"v":[[-192.92,-94.139],[-192.128,-96.381]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.235,0.104],[1.927,0.285]],"o":[[-0.556,1.177],[0.859,-0.649]],"v":[[-151.411,19.73],[-153.933,20.636]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.302,-1.144],[0.128,0],[-0.014,1.23],[-0.015,-0.642]],"o":[[-0.128,0],[-0.654,-1.171],[0.251,-0.169],[0.027,1.159]],"v":[[-196.074,-103.069],[-196.456,-103.07],[-196.777,-106.728],[-196.274,-106.543]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.533,-0.549],[0.585,0.607],[-0.196,-0.009]],"o":[[-0.746,-0.012],[-0.238,-0.248],[0.777,0.037]],"v":[[159.769,146.665],[157.636,146.51],[157.972,145.445]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.51,-1.187],[-0.129,1.582]],"o":[[-0.318,-1.198],[0.387,1.589]],"v":[[-151.164,42.891],[-151.138,38.921]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.749,0.254],[0.925,-0.012],[-0.119,0.499]],"o":[[-0.395,0.758],[-0.535,0.007],[0.278,-1.167]],"v":[[166.5,91.23],[165.194,92.892],[164.599,91.88]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.34,-0.773],[-1.7,0.816]],"o":[[-1.303,-1.246],[0.139,0.82]],"v":[[-120.267,134.563],[-119.82,132.271]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.987,1.662],[-0.849,0.015],[0.097,-0.139]],"o":[[0.81,-0.441],[-0.151,0.102],[-1.102,1.583]],"v":[[-105.645,-116.711],[-103.115,-116.945],[-103.559,-116.634]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.221,-0.456],[0.121,0.147],[-0.294,0.846],[-0.608,0.012],[-0.115,-0.067]],"o":[[-0.21,-0.073],[-0.341,-0.415],[0.254,-0.731],[0.114,-0.002],[-0.4,0.42]],"v":[[-106.225,-115.312],[-106.841,-115.542],[-107.99,-116.544],[-106.278,-116.947],[-105.933,-116.755]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.302,-1.198],[1.11,0.554]],"o":[[-1.106,-0.262],[1.377,-1.237]],"v":[[-72.46,179.939],[-75.766,179.987]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.417,-0.253],[0.383,-0.004],[0.365,0.443],[-0.109,0.088],[-0.422,-0.155]],"o":[[-0.434,0.446],[-0.701,0.008],[-0.066,-0.081],[0.541,-0.433],[0.371,0.137]],"v":[[-156.606,108.381],[-157.777,108.874],[-159.154,107.899],[-159.032,107.412],[-157.717,107.724]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.073,-0.01],[-0.446,-1.106],[-0.107,0.897]],"o":[[-0.987,0.843],[-0.722,-0.208],[0.124,-1.042]],"v":[[-182.618,-137.301],[-183.165,-134.33],[-184.501,-135.731]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.277,1.408],[1.184,-1.253]],"o":[[0.707,1.54],[-0.083,-1.44]],"v":[[165.239,85.583],[164.65,89.568]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.391,0.555],[-0.047,-0.182],[0.703,-1.015],[0.191,-0.003]],"o":[[0.047,0.182],[-0.932,0.731],[-0.191,0.003],[0.272,-1.84]],"v":[[-118.053,-87.458],[-117.913,-86.912],[-120.678,-84.683],[-121.251,-84.673]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.006,-0.129],[0.339,0.094],[0.033,0.703],[-0.487,0.185],[-0.142,-0.604]],"o":[[-0.39,0.2],[-0.524,-0.146],[-0.027,-0.564],[0.821,-0.311],[0.03,0.126]],"v":[[-150.839,45.177],[-151.918,45.092],[-153.379,44.514],[-152.009,43.884],[-150.862,44.787]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.333,0.032],[-0.056,-0.741],[0.455,0.01],[0.034,0.799]],"o":[[0.808,0.008],[0.046,0.602],[-0.673,-0.015],[-0.028,-0.646]],"v":[[-125.428,14.279],[-124.054,15.27],[-124.943,16.094],[-126.247,14.984]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.999,-0.053],[-0.056,1.553],[0.594,-1.014]],"o":[[1.835,-1.063],[0.884,0.471],[-0.569,0.972]],"v":[[-153.225,15.162],[-151.333,12.545],[-150.773,14.826]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.196,0.879],[0.296,-1.095],[0.364,0.118],[-0.386,0.484]],"o":[[1.473,0.597],[-0.146,0.542],[-0.404,-0.131],[0.763,-0.957]],"v":[[-158.536,43.625],[-156.809,46.27],[-157.635,46.67],[-157.846,45.901]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.292,-1.271],[2.277,1.31]],"o":[[-2.561,-0.573],[2.631,0.391]],"v":[[258.602,-142.945],[251.334,-145.741]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.138,-1.045],[0.017,0.296],[-1.367,0.004],[0.722,-0.208]],"o":[[-0.685,0.373],[-0.076,-1.36],[0.719,0.663],[-0.922,0.266]],"v":[[-163.369,-185.029],[-164.056,-185.596],[-161.647,-188.075],[-162.013,-186.821]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.48,0.253],[-1.205,0.349],[0.491,-0.173],[1.113,0.68]],"o":[[1.205,-0.349],[0.457,0.306],[-0.747,0.263],[-0.462,-0.282]],"v":[[246.047,-149.728],[249.664,-150.775],[249.694,-149.833],[247.484,-148.965]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.006,0.106],[-2.082,-0.929],[1.896,0.313]],"o":[[1.961,-0.149],[-2.209,0.533],[-0.015,-0.002]],"v":[[-83.581,203.651],[-77.591,204.352],[-83.565,203.889]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.704,-0.067],[-0.085,0.82],[-0.407,-0.087],[0.064,-1.248]],"o":[[-0.937,-0.38],[0.406,0.091],[0.986,0.21],[-0.688,0.428]],"v":[[-125.961,112.228],[-126.816,110.245],[-125.599,110.517],[-123.896,112.38]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.131,-1.326],[0.425,1.219],[-0.312,1.614]],"o":[[-1.038,-0.815],[0.693,-0.292],[0.521,1.784]],"v":[[-124.715,26.653],[-126.78,23.617],[-124.725,22.345]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.629,0.183],[-1.24,1.125]],"o":[[0.097,-1.945],[-0.673,2.593]],"v":[[-72.432,162.004],[-69.301,158.796]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.719,1.652],[0.215,-0.954],[0.11,-1.369],[-0.092,0.502]],"o":[[0.668,0.296],[-0.298,1.327],[-0.36,-0.055],[0.31,-1.684]],"v":[[-164.145,-85.5],[-163.281,-83.965],[-163.659,-79.869],[-164.444,-80.426]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.014,-0.709],[1.509,0.355],[0.001,0.112],[-1.496,0.242]],"o":[[-1.509,-0.355],[-0.001,-0.112],[1.496,-0.241],[0.014,0.709]],"v":[[279.735,207.079],[275.208,206.013],[275.205,205.676],[279.694,204.952]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.468,0.767],[-1.112,0.35],[-0.014,-0.782],[0.405,-0.075],[0.133,0.272],[0.29,0.559],[0.031,-0.021],[0.028,-0.037]],"o":[[0.644,0.447],[0.03,0.782],[0.004,0.249],[-0.337,0.062],[-0.276,-0.566],[-0.006,-0.012],[-0.036,0.024],[-0.333,-0.729]],"v":[[-130.9,-41.451],[-128.878,-40.264],[-128.794,-37.919],[-129.104,-37.273],[-129.736,-37.667],[-130.593,-39.35],[-130.708,-39.33],[-130.794,-39.223]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.871,0.118],[-0.324,1.213],[-0.712,-0.807]],"o":[[0.055,-1.171],[1.8,-0.239],[0.468,1.997]],"v":[[-165.114,-179.507],[-165.643,-182.913],[-163.409,-180.587]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.337,1.409],[0.141,-0.127],[2.341,-1.073]],"o":[[-0.063,0.213],[-1.887,1.696],[1.594,-2.335]],"v":[[54.13,202.502],[53.93,203.129],[47.804,207.584]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.07,-0.617],[0.737,0.052],[-0.109,0.637],[-0.821,0.09]],"o":[[-0.072,1.246],[-0.816,-0.057],[0.126,-0.737],[0.652,-0.072]],"v":[[185.291,58.051],[183.686,59.687],[181.962,58.159],[184.117,57.058]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.798,-0.117],[-0.131,0.177],[0.275,0.699],[0.63,0.011],[-0.428,0.337],[-0.406,-1.81],[0.448,0.05]],"o":[[0.122,-0.183],[0.331,-0.448],[-0.279,-0.711],[0.032,-0.45],[1.277,0.812],[-0.085,0.52],[-0.825,-0.093]],"v":[[173.068,112.196],[173.435,111.647],[174.291,110.247],[172.623,109.647],[172.984,108.373],[176.366,111.323],[175.47,111.916]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.294,0.346],[-0.563,-0.132],[0.116,-0.297],[0.712,0.173],[-0.024,0.749],[-0.709,0.149]],"o":[[0.105,0.451],[-0.145,0.286],[-0.288,0.733],[-0.656,-0.159],[0.027,-0.818],[0.347,-0.073]],"v":[[-155.539,-20.468],[-154.804,-19.409],[-155.234,-18.55],[-156.819,-17.522],[-158.037,-19.033],[-156.584,-20.264]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.016,-0.458],[0.257,-0.02],[0.119,0.761],[-0.027,0.365],[-0.042,1.235],[-0.388,0.91],[-0.07,-0.899],[-0.297,-0.451],[0.292,-0.993]],"o":[[-0.256,0.02],[-0.12,-0.761],[0.027,-0.365],[1.337,0.053],[0.032,-0.956],[0.413,0.873],[0.039,0.499],[-1.331,0.339],[-0.125,0.426]],"v":[[-129.931,-52.359],[-130.7,-52.298],[-131.059,-54.582],[-130.978,-55.676],[-129.033,-57.603],[-128.688,-60.433],[-128.49,-57.734],[-128.235,-56.271],[-129.864,-53.727]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.196,-0.148],[0.022,-2.181],[-0.004,0.719],[0.072,0.775],[1.029,-0.614],[-0.718,0.509]],"o":[[-0.022,2.181],[-0.618,-0.457],[0.005,-0.781],[-0.078,-0.84],[-0.317,-1.4],[0.196,0.148]],"v":[[-128.467,37.355],[-128.533,43.897],[-129.294,42.071],[-129.317,39.728],[-130.727,38.855],[-129.055,36.912]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.703,-0.92],[0.086,-0.486],[1.39,1.809],[-0.593,-0.181],[-0.382,0.453],[0.338,0.474],[0.43,0.563]],"o":[[-0.086,0.486],[-2.305,0.636],[0.721,0.016],[0.542,0.166],[0.388,-0.46],[-0.346,-0.485],[1.634,0.09]],"v":[[201.925,38.537],[201.666,39.995],[197.31,38.621],[199.125,39.277],[200.685,39.18],[200.479,37.642],[199.33,36.129]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.105,0.451],[0.799,-0.095],[0.742,-0.149],[-0.68,0.462],[-0.135,-1.842],[0.519,-0.524]],"o":[[0.094,-0.966],[-0.714,0.085],[0.563,-0.68],[1.504,-1.021],[0.052,0.709],[-0.563,-0.132]],"v":[[-155.539,-20.468],[-156.82,-21.599],[-158.977,-21.179],[-157,-22.716],[-154.157,-21.294],[-154.804,-19.409]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.768,-0.564],[-0.097,0.684],[-1.477,-0.424],[-0.012,-0.532],[0.449,-0.239]],"o":[[-0.159,-0.503],[0.763,-1.422],[0.39,0.112],[0.011,0.493],[-0.817,0.434]],"v":[[-79.672,187.038],[-80.541,185.804],[-77.258,184.337],[-76.365,185.038],[-77.089,186.129]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.502,-0.029],[0.803,0.425],[0.016,0.84],[-0.624,0.298],[-1.327,-0.901]],"o":[[-0.841,-0.353],[-0.582,-0.308],[-0.016,-0.853],[0.938,1.328],[-0.241,0.365]],"v":[[-192.288,-236.86],[-194.802,-237.937],[-196.08,-239.401],[-194.83,-240.835],[-191.311,-237.625]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.338,0.276],[-0.454,-0.335],[-0.363,-1.108],[0.408,-1.045],[-0.358,1.174]],"o":[[0.544,-0.886],[0.854,0.629],[-0.738,0.859],[-0.831,-0.837],[0.509,-1.67]],"v":[[240.727,-55.161],[242.502,-55.245],[244.654,-52.871],[243.696,-49.814],[242.412,-52.718]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.04,0.712],[-1.326,-0.178],[0.204,-0.66],[0.964,-0.266],[-0.149,0.548]],"o":[[1.323,0.198],[0.652,0.087],[-0.27,0.875],[-0.686,0.189],[0.458,-1.681]],"v":[[-104.222,213.122],[-100.251,213.71],[-99.562,214.738],[-101.175,216.655],[-102.497,215.907]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.018,0.644],[-1.687,-1.078],[0.305,-0.848],[1.373,0.205],[0.047,0.182]],"o":[[0.608,-0.785],[0.189,0.738],[-0.478,1.328],[-0.047,-0.182],[0.018,-0.644]],"v":[[-118,-89.39],[-115.613,-90.772],[-115.101,-88.546],[-117.913,-86.912],[-118.053,-87.458]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.356,0.842],[0.781,0.456],[0.478,0.755],[-1.326,-0.837],[-0.157,-0.643],[-0.684,-0.066],[-0.47,-0.522]],"o":[[-0.186,-1.23],[-0.704,-0.411],[1.549,-0.084],[0.462,0.292],[0.165,0.674],[0.706,0.069],[-1.644,0.284]],"v":[[-70.729,165.715],[-72.879,164.036],[-74.912,162.706],[-70.593,163.777],[-69.532,164.915],[-68.059,165.974],[-66.304,166.847]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.182,0.203],[-0.95,0.54],[-0.924,0.184],[2.055,0.43],[-0.379,0.153],[-0.005,0.356],[0.42,0.137],[0.265,0.075],[-0.357,1.634]],"o":[[0.459,0.591],[0.92,-0.172],[-1.78,1.494],[0.37,-0.175],[0.292,-0.118],[0.006,-0.428],[-0.261,-0.085],[-1.29,-0.366],[0.475,1.253]],"v":[[-152.053,109.73],[-150.246,110.514],[-148.015,111.373],[-153.876,112.208],[-152.764,111.687],[-151.987,111.232],[-152.783,110.378],[-153.584,110.179],[-154.516,108.177]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.619,0.027],[-0.272,-0.245],[0.558,-0.531],[0.694,0.781],[-0.713,0.644],[0.016,0.339]],"o":[[0.549,0.248],[0.257,0.262],[0.783,0.706],[-0.578,0.551],[-0.663,-0.746],[0.246,-0.023],[0,0]],"v":[[206.065,-13.435],[207.791,-13],[208.566,-12.218],[208.391,-10.348],[205.366,-10.866],[205.604,-13.008],[206.075,-13.4]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.179,-0.675],[1.069,0.464],[-1.378,1.185],[-0.032,-0.418],[0.238,-0.641]],"o":[[-1.124,0.227],[0.882,-1.72],[0.505,-0.434],[0.058,0.764],[-0.204,0.549]],"v":[[207.812,49.417],[204.516,49.153],[208.513,45.443],[209.151,45.86],[208.363,47.752]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.169,0.381],[-0.763,0.226],[-0.181,-0.211],[0.996,-0.742],[0.377,0.177]],"o":[[0.003,-1.076],[0.258,-0.076],[0.791,0.92],[-0.415,0.309],[-0.692,-0.324]],"v":[[-147.748,31.117],[-145.796,28.204],[-145.223,28.387],[-145.717,32.573],[-146.878,32.515]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.152,0.636],[-0.276,-0.479],[-1.027,0.827],[-0.007,-4.49],[0.028,-0.506],[0,3.785],[0.125,0.022],[0.241,-0.231],[0.577,0.268],[0.077,0.56]],"o":[[0.239,0.416],[0.975,-0.973],[0.013,4.491],[0.001,0.506],[0,-3.785],[-0.125,-0.022],[-0.195,0.278],[-0.304,0.292],[-0.445,-0.206],[-0.091,-0.658]],"v":[[210.121,34.487],[210.875,35.798],[212.854,32.523],[212.89,45.994],[212.81,47.512],[212.81,36.158],[212.437,36.092],[211.841,36.917],[210.818,37.63],[209.978,36.417]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.66,1.784],[-0.18,0.031],[-0.214,-1.034],[0.304,-1.176],[0.421,-0.459],[0.436,-0.227],[-0.266,0.514]],"o":[[0.18,-0.031],[0.527,0.955],[-1.207,-0.041],[-0.188,0.725],[-0.49,-0.063],[-0.096,-0.673],[0.859,-1.657]],"v":[[-119.817,141.004],[-119.277,140.911],[-118.499,143.978],[-120.896,145.628],[-122.102,147.065],[-123.489,147.321],[-122.793,145.729]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.006,-1.121],[0.132,-0.002],[2.16,0.033],[0.76,-0.354],[0.354,0.433],[-0.245,0.388],[-0.121,0.139],[0.247,0.367],[0.289,-0.081],[1.047,-0.246],[-0.029,0.218],[-0.071,0.16],[-0.496,0.229],[-0.534,-0.474],[-1.493,0.018]],"o":[[-0.131,0.002],[0.528,-2.125],[-0.869,-0.013],[-0.428,0.199],[-0.45,-0.55],[0.096,-0.152],[0.202,-0.233],[-0.26,-0.386],[-0.933,0.261],[-0.013,-0.293],[0.022,-0.167],[0.592,0.012],[0.675,-0.312],[1.311,1.165],[-0.006,1.121]],"v":[[279.718,200.039],[279.324,200.045],[277.563,197.75],[275.187,198.354],[273.829,198.606],[274.438,197.422],[274.819,197.023],[275.128,196.21],[274.273,196.226],[271.731,197.662],[271.707,196.923],[271.909,196.441],[273.438,195.838],[275.415,195.849],[279.735,196.677]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.003,-1.387],[1.663,-0.192],[0.021,0.293],[-0.941,1.867],[-0.131,0.002]],"o":[[-1.663,0.193],[-0.374,-0.414],[1.547,-1.206],[0.131,-0.002],[0.003,1.387]],"v":[[279.728,204.199],[274.739,204.777],[275.001,204.008],[279.325,200.045],[279.718,200.039]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.686,0.103],[-0.054,-0.353],[0.002,-0.266],[0.597,-0.157],[0.676,-0.734],[0.266,-0.178],[0.468,0.327],[-0.205,0.643]],"o":[[0.431,0.125],[-0.002,0.266],[-0.706,0.819],[-0.433,0.748],[-0.252,0.2],[-0.539,0.361],[-0.559,-0.391],[0.501,-1.571]],"v":[[-129.814,20.172],[-129.301,21.019],[-129.307,21.817],[-130.904,21.51],[-131.047,23.841],[-131.805,24.436],[-133.549,24.985],[-133.672,23.054]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.817,-0.184],[-1.261,1.262],[-0.133,-0.664],[0.374,-0.079],[0.59,-0.013],[1.653,-0.016],[0.786,-0.042],[-0.093,0.49],[-0.333,0.002],[-1.168,-0.148],[-0.098,0.676]],"o":[[0.558,1.515],[0.407,0.584],[-0.374,0.079],[-0.112,-1.059],[-1.659,0.036],[-0.808,0.008],[-0.396,-0.047],[0.071,-0.371],[1.187,-0.007],[0.84,0.106],[0.817,0.184]],"v":[[-130.487,118.869],[-128.253,119.179],[-127.685,121.121],[-128.807,121.358],[-130.484,120.34],[-135.407,119.976],[-137.745,120.286],[-138.42,119.628],[-137.659,119.172],[-134.104,119.21],[-132.939,118.317]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.131,0.552],[-0.3,0.551],[-0.672,-0.609],[0.265,-1.228],[0.512,0.673],[0.396,0.501],[0.431,0.125]],"o":[[0.3,-0.551],[0.68,0.609],[1.297,1.176],[-0.101,0.47],[-0.387,-0.509],[-0.054,-0.353],[-0.131,-0.552]],"v":[[-130.208,18.517],[-129.309,16.864],[-127.282,18.702],[-126.858,22.387],[-128.115,22.524],[-129.301,21.019],[-129.814,20.172]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.711,-0.057],[0.939,1.014],[-0.298,0.365],[-1.594,-0.033],[-0.412,-0.208],[-0.471,-1.422]],"o":[[-0.939,-1.014],[0.014,-0.421],[1.557,0.285],[0.269,0.136],[-1.291,0.426],[0.264,0.798]],"v":[[-98.919,-120.085],[-101.735,-123.126],[-101.496,-124.349],[-96.801,-123.658],[-95.85,-123.179],[-97.125,-120.801]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.077,0.763],[-0.383,0.733],[-0.567,-0.3],[0.183,-0.929],[1.179,-0.656],[0.257,0.247]],"o":[[-0.004,-0.971],[0.33,-0.632],[0.9,0.476],[-0.222,1.125],[-0.535,0.298],[-0.579,-0.558]],"v":[[166.27,96.205],[167.074,93.776],[168.484,93.434],[169.815,95.669],[168.151,98.712],[167.184,98.192]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.012,0.553],[-0.116,1.051],[-0.643,-0.335],[-0.228,-0.15],[0.404,-1.49],[0.897,0.081]],"o":[[0.133,-1.049],[0.086,-0.775],[0.244,0.127],[0.72,0.474],[-0.299,1.103],[-0.826,-0.074]],"v":[[201.965,-1.905],[202.364,-5.053],[203.469,-5.624],[204.212,-5.265],[205.902,-3.405],[202.674,-0.674]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.924,0.403],[0.557,1.078],[-0.216,0.436],[-0.782,-0.196],[0.083,-0.69],[0.577,-2.089]],"o":[[-0.148,-1.115],[0.796,-0.098],[0.362,-0.73],[0.749,0.188],[-0.253,2.106],[-0.816,-0.515]],"v":[[169.63,67.622],[169.329,64.264],[170.089,62.972],[171.729,61.824],[172.276,63.466],[171.206,69.765]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.394,0.242],[0.772,-1.1],[1.149,0.128],[-0.057,0.611],[-0.639,0.74],[-0.787,-0.562]],"o":[[1.082,1.083],[-1.144,-0.24],[-0.587,-0.066],[0.095,-1.019],[0.592,-0.685],[0.241,0.172]],"v":[[-153.913,-9.853],[-153.882,-6.573],[-157.289,-6.441],[-157.995,-7.279],[-156.8,-9.855],[-154.73,-10.147]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.815,-0.522],[0.292,-0.174],[0.413,0.002],[5.151,-0.008],[1.036,0.283],[-0.769,-0.001],[-5.198,0.001]],"o":[[-0.292,0.174],[-0.328,-0.516],[-5.151,-0.022],[-0.977,0.001],[0.78,-0.416],[5.198,0.007],[0.93,0]],"v":[[38.821,217.341],[37.945,217.862],[36.695,217.618],[21.241,217.606],[18.272,217.225],[20.568,216.758],[36.161,216.761]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.335,-0.112],[0.028,0.922],[0.933,0.646],[-0.585,0.771],[-0.861,-0.457],[0.043,-0.245],[0.925,-2.213]],"o":[[-0.206,-0.927],[-0.034,-1.1],[-0.954,-0.661],[0.668,-0.88],[0.22,0.117],[-0.39,2.24],[-0.088,0.211]],"v":[[-151.817,75.957],[-152.395,73.195],[-153.712,70.746],[-153.716,68.295],[-151.291,68.048],[-151.015,68.632],[-151.368,75.395]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.835],[0.317,-1.008],[1.177,0.938],[1.165,1.551],[-0.383,0.21],[-0.177,-0.276],[-0.567,-0.843],[-0.434,-0.32],[-0.722,0.395],[0.103,0.623],[0.168,1.281],[-0.635,0.056],[-0.025,-0.613]],"o":[[-0.055,1.009],[-0.453,1.443],[-1.543,-1.229],[-0.241,-0.321],[0.367,-0.201],[0.548,0.856],[0.308,0.457],[0.654,0.482],[0.713,-0.39],[-0.21,-1.276],[-0.048,-0.367],[0.57,-0.05],[0.034,0.833]],"v":[[196.096,40.548],[195.916,43.583],[192.794,44.693],[189.155,40.159],[189.359,39.203],[190.144,39.58],[191.768,42.161],[192.843,43.421],[195.07,43.742],[195.272,41.969],[194.681,38.137],[195.075,37.148],[196.088,38.045]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.359,0.168],[-1.185,-0.43],[-0.006,-0.664],[0.639,-0.487],[2.145,0.809],[-0.398,0.779]],"o":[[1.129,-0.132],[0.441,0.16],[0.006,0.613],[-1.724,1.314],[-0.243,-1],[0.36,-0.168]],"v":[[224.262,20.534],[227.631,20.072],[228.903,20.53],[228.001,22.298],[222.333,23.492],[223.183,21.037]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.302,1.342],[-1.122,0.488],[-0.385,-0.536],[-0.728,-2.126],[-0.052,-0.5],[0.18,-0.031],[0.101,1.36],[0.333,0.049],[0.124,0.259]],"o":[[0.406,-0.696],[-0.014,0.681],[1.293,1.798],[0.159,0.463],[-0.18,0.031],[-1.061,-0.008],[-0.025,-0.337],[-0.124,-0.259],[0.34,-1.533]],"v":[[-124.169,134.23],[-123.515,131.98],[-122.803,133.707],[-119.448,139.417],[-119.277,140.911],[-119.818,141.004],[-121.909,139.477],[-122.62,138.951],[-122.991,138.174]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.682,0.969],[-2.837,-0.532],[0.465,-0.595],[2.402,0.006],[-0.717,0.897]],"o":[[2.933,-0.176],[0.935,0.176],[-1.637,2.094],[0.684,-0.813],[-1.251,-1.725]],"v":[[-166.679,-91.64],[-158.105,-90.481],[-157.806,-89.222],[-164.145,-86.884],[-161.599,-88.776]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.245,1.105],[-1.558,0.363],[-0.313,0.048],[2.516,-0.553],[0.289,0.477],[-0.403,0.377]],"o":[[0.353,1.707],[0.307,-0.071],[-1.939,1.714],[-0.544,0.119],[-0.35,-0.577],[1.215,-1.137]],"v":[[192.482,24.916],[195.496,27.029],[196.433,26.882],[189.72,30.225],[188.372,29.732],[188.759,28.244]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.076,0.06],[-1.272,0.634],[-0.729,0.726],[-0.421,-0.777],[0.529,-0.682],[-0.32,-2.439],[0.223,0.366],[0.385,-0.104],[0.132,1.214]],"o":[[0.724,-1.431],[0.832,-0.414],[0.285,-0.284],[0.286,0.528],[-1.248,1.609],[-0.494,-0.379],[-0.49,-0.096],[-0.129,-1.181],[-1.074,0]],"v":[[-177.86,-118.121],[-174.377,-120.598],[-171.828,-121.792],[-170.595,-121.76],[-170.54,-120.219],[-173.114,-114.697],[-173.479,-115.92],[-174.473,-115.332],[-174.863,-118.908]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.064,-0.503],[1.18,0.187],[1.287,0.157],[0.095,0.533],[-0.383,0.26],[-1.509,0.256],[0.204,-1.407]],"o":[[0.209,1.19],[-1.28,-0.202],[-0.435,-0.053],[-0.089,-0.498],[1.226,-0.832],[0.941,-0.16],[-0.07,0.484]],"v":[[-150.757,26.58],[-152.2,27.999],[-156.06,27.52],[-156.957,26.826],[-156.432,25.829],[-152.512,23.827],[-150.927,25.074]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.215,0.556],[0.283,0.454],[-0.186,0.18],[-1.663,0.193],[0.011,-0.251],[1.496,-0.241],[-0.001,-0.112],[-1.509,-0.355],[0.002,-1.561],[1.373,0.6],[0.427,-0.032],[0.265,0.954],[-0.071,0.098],[-1.805,-0.851],[-0.35,0.598],[0.503,0.375],[0.413,0.198]],"o":[[0.358,-0.457],[0.186,-0.18],[1.663,-0.192],[-0.011,0.251],[-1.496,0.242],[0.001,0.112],[1.509,0.355],[-0.002,1.561],[-1.498,-0.287],[-0.383,-0.168],[-0.496,-0.688],[0.071,-0.098],[1.783,0.899],[0.39,0.184],[0.298,-0.509],[-0.369,-0.275],[-1.205,-0.578]],"v":[[274.186,206.683],[274.181,205.317],[274.738,204.777],[279.728,204.199],[279.694,204.952],[275.205,205.676],[275.208,206.013],[279.735,207.079],[279.729,211.763],[275.549,210.101],[274.395,209.769],[272.526,208.139],[272.74,207.844],[278.098,210.519],[279.436,210.575],[278.994,209.101],[277.828,208.359]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.148,-0.637],[-0.344,-1.87],[0.022,-0.732],[0.558,1.515],[0.006,0.265],[0.041,1.521],[0.337,0.032],[-0.005,0.379],[-0.146,0.562],[-1.229,-0.494]],"o":[[-0.065,1.889],[-0.022,0.732],[-1.261,1.262],[-0.006,-0.265],[0.667,-1.488],[-0.009,-0.339],[0.005,-0.379],[0.559,-0.391],[0.361,-1.39],[0.516,0.576]],"v":[[-128.455,111.337],[-128.188,116.983],[-128.253,119.179],[-130.487,118.869],[-130.505,118.073],[-130.287,113.518],[-131.04,113.039],[-131.026,111.902],[-130.354,110.305],[-128.772,109.406]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.374,0.005],[0.48,-0.865],[0.625,-0.261],[0.757,0.914],[-0.265,0.166],[-1.229,-0.008]],"o":[[-0.095,0.906],[-0.697,0.156],[-1.08,0.451],[-0.207,-0.25],[0.86,-0.539],[1.374,0.009]],"v":[[-154.979,115.603],[-155.27,118.321],[-157.046,119.331],[-161.372,118.165],[-161.615,117.323],[-159.1,115.614]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.755,0.698],[-0.707,0.321],[-0.758,0.003],[-1.106,-0.262],[-1.848,0.04],[-1.039,-1.065]],"o":[[-0.063,-0.476],[0.759,-0.003],[1.11,0.554],[1.849,0.009],[1.07,-0.023],[-4.981,0.272]],"v":[[-78.311,181.332],[-78.042,179.997],[-75.766,179.987],[-72.46,179.939],[-66.913,179.954],[-63.858,181.197]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.014,-0.397],[1.47,-0.453],[0.938,0.784],[-0.312,0.618],[-1.13,0.614],[-0.754,-0.436]],"o":[[-0.06,1.616],[-1.126,0.347],[-0.442,-0.37],[0.54,-1.071],[0.713,-0.387],[0.767,0.443]],"v":[[-96.241,194.077],[-97.828,197.359],[-100.948,196.877],[-101.454,195.449],[-99.232,192.703],[-97.02,192.373]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.378,-0.514],[0.997,0.478],[2.513,0.941],[0.721,0.916],[-1.561,-0.453],[-1.755,-0.581],[0.231,0.808],[-1.044,-0.476],[0.152,-0.485],[0.462,-0.03],[0.687,-0.17]],"o":[[-1.201,-0.106],[-2.428,-1.164],[-1.003,-0.375],[1.563,0.446],[1.776,0.515],[1.199,0.397],[1.16,0.215],[0.418,0.191],[-0.14,0.446],[-0.581,0.038],[0.415,0.563]],"v":[[261.197,-138.213],[258.365,-139.869],[250.887,-142.855],[248.238,-144.6],[252.927,-143.26],[258.245,-141.682],[259.142,-142.671],[262.287,-141.27],[263.022,-140.238],[261.849,-139.631],[260.025,-139.803]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.128,0],[-0.403,-0.002],[0.042,-2.728],[-0.087,-1.054],[0.782,-0.148],[0.191,0.594],[0.226,0.167],[-0.114,3.23],[0.224,0.49]],"o":[[0.403,0.002],[0.016,2.729],[-0.017,1.072],[0.067,0.81],[-0.722,0.137],[-0.092,-0.287],[0.354,-3.213],[0.018,-0.507],[0.128,0]],"v":[[-196.074,-103.069],[-194.865,-103.062],[-194.838,-94.877],[-194.586,-91.711],[-195.481,-89.895],[-196.557,-91.253],[-197.044,-91.898],[-196.366,-101.565],[-196.456,-103.07]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.186,-1.23],[0.79,-0.15],[0.37,-0.007],[1.96,0.936],[-0.481,0.764],[-1.573,-0.253],[-0.704,-0.411]],"o":[[-0.226,0.725],[-0.37,0.007],[-1.939,-0.98],[-0.814,-0.388],[1.582,-0.157],[0.478,0.755],[0.781,0.456]],"v":[[-70.729,165.715],[-72.163,167.12],[-73.274,167.14],[-79.098,164.215],[-79.645,162.598],[-74.912,162.706],[-72.879,164.036]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.063,0.063],[0.316,2.829],[-0.245,0.649],[-0.037,-2.23],[-0.067,-2.407],[0.011,-0.138],[1.138,-0.079],[0.207,0.728]],"o":[[0.473,-2.851],[-0.08,-0.72],[1.922,0.533],[0.04,2.408],[0.004,0.139],[-0.074,0.894],[-1.168,0.081],[-0.021,-0.075]],"v":[[-131.249,-24.733],[-131.422,-33.259],[-131.266,-35.249],[-129.33,-32.485],[-129.135,-25.263],[-129.13,-24.846],[-130.142,-22.579],[-131.065,-24.542]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.004,-0.099],[2.886,-0.99],[2.632,0.032],[0.181,0.011],[-0.78,-0.099],[-2.298,0.072],[-0.915,-0.078],[-0.579,-0.403]],"o":[[-2.979,0.007],[-0.399,-2.696],[-0.181,-0.002],[0.41,-1.054],[2.278,0.29],[0.94,-0.03],[1.082,0.092],[-0.004,0.099]],"v":[[279.709,21.303],[270.849,22.14],[267.739,19.341],[267.195,19.31],[269.308,18.539],[276.163,19.038],[278.897,19.359],[279.721,21.005]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.644,0.447],[0.024,3.527],[-0.091,0.089],[-0.256,0.02],[0.064,-1.459],[0.043,-2.759]],"o":[[-0.024,-3.527],[0.09,-0.089],[0.256,-0.02],[0.984,1.09],[-0.121,2.756],[-1.112,0.35]],"v":[[-130.9,-41.451],[-130.972,-52.032],[-130.7,-52.298],[-129.931,-52.359],[-128.726,-48.541],[-128.878,-40.264]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.792,0.111],[-0.538,1.284],[-0.226,0.725],[-1.644,0.284],[-0.331,-0.545],[0.302,-0.459],[0.594,0.072]],"o":[[-0.663,-1.069],[0.79,-0.15],[1.356,0.842],[0.381,0.515],[0.249,0.41],[-0.311,0.473],[-1.806,-0.22]],"v":[[-71.543,170.572],[-72.163,167.12],[-70.729,165.715],[-66.304,166.847],[-65.174,168.4],[-64.582,169.679],[-66.203,170.247]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.038,-0.601],[-0.069,-0.448],[0.647,0.133],[2.682,0.027],[0.004,0.597],[0.689,-0.366],[1.423,0.258],[2.803,1.214],[-0.2,0.32],[-1.187,0.046],[-2.413,1.966],[-1.269,0.223],[-0.001,-0.042],[-1.466,-0.186]],"o":[[0.26,0.321],[-0.646,0.145],[-2.571,-0.529],[-0.485,-0.005],[-0.016,-2.224],[-1.255,0.666],[-2.987,-0.542],[0.298,-0.03],[1.178,-0.011],[2.356,0.939],[1.077,-0.878],[0.078,0.041],[0.034,1.982],[2.088,0.264]],"v":[[-99.334,200.271],[-98.652,201.3],[-100.578,201.254],[-108.294,199.655],[-109.444,198.833],[-111.114,198.362],[-115.023,199.92],[-123.731,197.25],[-122.901,196.97],[-119.567,197.772],[-112.467,197.834],[-108.706,196.999],[-108.483,197.121],[-105.582,199.313]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.713,1.362],[-0.416,-1.269],[-0.818,0.06],[-0.136,-0.802],[0.733,-0.284],[0.206,-0.99],[-0.141,0.513],[0.248,0.681],[1.351,0.035],[-0.132,1.086],[-0.752,-0.166]],"o":[[-0.05,1.499],[0.232,0.706],[0.632,-0.046],[0.153,0.902],[-0.828,0.321],[-0.433,-0.343],[0.214,-0.779],[-0.549,-1.506],[-0.79,-0.02],[0.124,-1.022],[1.372,0.303]],"v":[[-66.89,190.559],[-66.19,194.599],[-64.824,195.59],[-63.025,196.084],[-64.61,197.761],[-66.354,199.378],[-66.954,198.198],[-67.419,196.202],[-70.208,194.407],[-71.647,192.953],[-70.01,191.96]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.002,0.413],[-0.27,1.224],[-0.642,1.486],[0.095,-2.908],[0.11,-1.663],[1.529,-0.319],[1.001,2.299]],"o":[[1.207,-0.115],[0.343,-1.555],[0.27,2.922],[-0.054,1.664],[-0.09,1.366],[0.008,-2.471],[-0.151,-0.347]],"v":[[-197.068,-86.061],[-194.592,-88.37],[-193.52,-93.026],[-193.876,-84.304],[-194.278,-79.321],[-195.868,-77.634],[-197.051,-84.832]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.77,-0.892],[0.612,-0.077],[3.861,1.412],[0.319,0.03],[-1.686,0.918],[-0.015,-0.486],[-0.568,-0.004]],"o":[[0.384,0.615],[-3.893,0.491],[-0.291,-0.107],[1.798,-0.694],[0.321,-0.175],[0.037,1.173],[1.95,0.013]],"v":[[278.379,15.756],[277.874,16.586],[266.23,16.38],[265.275,16.28],[270.433,13.724],[271.32,13.767],[272.762,14.654]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.663,-0.243],[1.849,0.101],[1.184,-0.147],[-0.739,0.171],[-1.064,0.533],[-0.984,-0.122],[-0.939,-1.014],[1.38,-0.016]],"o":[[-0.253,-1.906],[-1.128,-0.062],[-0.065,-0.625],[1.116,-0.258],[0.927,-0.13],[0.939,1.014],[-1.021,0.533],[-0.602,0.007]],"v":[[-102.837,-117.015],[-105.713,-119.821],[-108.65,-120.975],[-107.824,-122.088],[-104.467,-122.511],[-101.735,-123.126],[-98.919,-120.085],[-101.951,-118.386]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.971,-0.468],[-0.928,1.724],[1.601,0.539],[0.031,0.364],[0.001,0.278],[-2.515,-0.928],[-0.183,-0.02],[0.662,-2.67]],"o":[[-1.021,-1.578],[0.833,-1.548],[-0.348,-0.117],[-0.024,-0.277],[-0.006,-2.761],[0.167,0.062],[1.359,2.617],[-0.23,0.928]],"v":[[-125.35,10.166],[-125.635,5.269],[-126.456,3.144],[-127.056,2.475],[-127.074,1.64],[-124.565,-0.19],[-124.019,-0.126],[-123.767,7.848]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.251,-0.023],[0.639,-2.585],[1.161,0.315],[0.658,1.881]],"o":[[2.711,0.028],[-0.248,1.003],[-1.881,-0.511],[-0.736,-2.105]],"v":[[169.655,101.03],[173.523,105.906],[171.629,107.079],[167.777,103.663]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.109,-0.586],[1.313,-0.299],[0.848,-0.206],[-0.049,0.9],[-1.786,1.21],[-0.396,-1.72]],"o":[[0.001,1.361],[-0.851,0.194],[-0.828,0.202],[0.11,-2.014],[1.444,-0.978],[0.134,0.581]],"v":[[-151.303,62.9],[-153.252,65.373],[-155.801,65.969],[-156.975,65.005],[-154.569,59.977],[-151.635,61.142]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.2,0.535],[-1.596,-0.184],[-0.368,0.564],[-1.686,0.908],[-0.382,-0.432],[0.462,-0.65],[0.906,-1.342],[0.363,0.053],[1.55,-0.597]],"o":[[1.718,-0.638],[0.797,0.092],[1.024,-1.57],[0.579,-0.312],[0.382,0.432],[-0.939,1.319],[-0.325,0.481],[-1.645,-0.241],[-0.963,0.371]],"v":[[189.747,35.943],[194.398,34.672],[195.933,33.743],[199.849,29.878],[201.606,29.586],[201.524,31.542],[198.741,35.524],[197.617,35.756],[192.838,36.279]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.811,-0.051],[1.673,-1.019],[2.337,-1.699],[0.795,0.28],[-1.251,1.82],[-0.249,0.385],[-0.351,0.285]],"o":[[0.534,1.439],[-2.492,1.517],[-0.726,0.528],[1.028,-1.993],[0.259,-0.377],[0.373,-0.258],[1.298,-1.055]],"v":[[204.158,51.103],[202.76,54.526],[195.952,59.878],[193.851,60.328],[197.893,55.089],[198.64,53.935],[199.754,53.156]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.531,-0.409],[0.831,-0.559],[0.334,-0.605],[0,0],[0.978,0.154],[0.18,0.147],[2.399,0.335],[0.464,0.846],[-4.762,-0.012]],"o":[[-0.512,0.92],[-0.44,-0.328],[0,0],[-0.951,0.084],[-0.272,-0.043],[-2.148,-1.759],[-0.854,-0.119],[4.73,-0.989],[0.675,0.002]],"v":[[35.764,219.25],[33.533,221.225],[32.693,221.525],[32.72,221.51],[29.873,221.819],[29.063,221.708],[21.91,220.395],[19.704,219.485],[33.964,218.673]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.939,-0.98],[0.803,-0.607],[0.488,0.801],[0.934,0.746],[0.594,-0.901],[0.572,0.436],[-0.516,0.461],[-0.779,0.791],[0.294,0.401],[-0.327,-0.287],[-0.814,-0.388]],"o":[[-0.416,0.884],[-0.71,0.537],[-0.647,-1.062],[-0.885,-0.706],[-0.823,1.248],[-0.752,-0.573],[0.826,-0.739],[0.207,-0.21],[0.428,-0.06],[-0.481,0.764],[1.96,0.936]],"v":[[-73.274,167.14],[-74.961,169.475],[-76.847,169.245],[-79.432,166.803],[-81.657,167.034],[-83.826,166.926],[-83.437,165.4],[-81.065,163.063],[-80.782,162.269],[-79.645,162.598],[-79.098,164.215]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.354,-3.683],[0.149,-0.227],[0.214,-0.51],[0.544,0.064],[0.052,0.353],[0.586,1.548],[-0.392,0.678],[0.048,1.003],[-0.433,0.748],[-0.706,0.819]],"o":[[-0.096,-0.088],[-0.296,0.453],[-0.153,0.364],[-0.524,-0.062],[-0.242,-1.635],[-0.175,-0.87],[0.55,-0.95],[0.676,-0.734],[0.597,-0.157],[0.964,3.616]],"v":[[-128.743,32.783],[-128.989,32.524],[-129.625,34.048],[-130.362,34.901],[-130.931,33.898],[-132.097,29.109],[-131.544,26.746],[-131.047,23.841],[-130.904,21.51],[-129.307,21.817]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.749,0.536],[-1.436,-0.747],[0.215,-0.616],[0.482,0.09],[2.397,0.791],[0.687,-0.17],[0.455,-0.056],[0.631,0.583],[-0.901,0.092],[-0.536,0.632]],"o":[[1.407,0.804],[0.771,0.401],[-0.228,0.653],[-2.472,-0.46],[-0.67,-0.221],[-0.449,0.111],[-0.753,0.092],[-0.315,-0.291],[0.741,-0.075],[1.762,-0.348]],"v":[[216.589,-148.479],[220.817,-146.084],[221.413,-144.445],[220.096,-144.181],[212.753,-145.875],[210.691,-145.882],[209.349,-145.537],[207.123,-145.713],[209.236,-147.39],[211.256,-148.103]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.084,-1.044],[0.264,-1.197],[1.21,-1.292],[0.429,0.901],[-0.256,0.976],[-0.044,0.395],[-1.381,-0.181],[-0.733,-0.014]],"o":[[-0.375,1.136],[-1.273,1.152],[-0.645,-0.79],[0.053,-0.96],[0.366,-0.329],[0.155,-1.376],[0.72,0.095],[0.93,0.018]],"v":[[-85.801,165.407],[-87.501,168.5],[-90.742,172.51],[-92.257,169.927],[-92.491,167.08],[-92.248,165.914],[-89.687,163.984],[-87.49,164]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.065,1.889],[-1.15,0.117],[-0.164,-0.056],[-0.827,0.242],[-0.368,0.671],[-0.635,-0.849],[-0.285,-0.712],[0.763,-0.431],[0.586,-0.625],[0.169,0.361],[0.339,-0.356],[1.3,0.17]],"o":[[0.752,0.565],[0.152,0.093],[0.781,0.267],[0.804,-0.235],[0.394,-0.719],[0.441,0.59],[0.356,0.888],[-0.721,0.407],[-0.254,0.27],[-0.378,-0.805],[-1.208,1.269],[-0.344,-1.87]],"v":[[-128.455,111.337],[-126.034,112.75],[-125.577,113.023],[-123.368,114.015],[-122.299,112.023],[-120.69,111.814],[-119.457,113.656],[-120.094,115.692],[-122.176,117.014],[-122.754,116.837],[-124.374,116.544],[-128.188,116.983]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.68,0.12],[0.013,-1.589],[0.251,-1.251],[0.076,-0.138],[0.271,-3.167],[-0.113,0.895],[-0.137,2.554],[0.304,0.194],[-0.79,2.698]],"o":[[-0.556,1.623],[-0.179,1.233],[0.007,0.184],[-1.659,3.002],[-0.964,-0.065],[0.323,-2.563],[0.063,-0.412],[-1.205,-2.672],[0.684,0.877]],"v":[[-128.783,61.173],[-128.485,65.92],[-127.641,69.27],[-127.632,69.815],[-128.791,79.279],[-130.152,77.736],[-130.224,70.075],[-130.719,69.245],[-130.823,61.183]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.013,0.246],[-1.377,-2.146],[0.881,-1.577],[0.055,-1.171],[0.122,-0.009],[0.644,1.041],[1.33,-0.008],[0.734,0.37],[-0.387,0.486],[-0.338,0.519],[0.396,0.543]],"o":[[2.012,-1.367],[0.738,1.15],[-0.324,1.213],[-0.122,0.01],[-0.986,-0.392],[-0.361,-1.084],[-0.866,0.005],[-0.002,-0.67],[0.419,0.196],[0.345,-0.53],[0.013,-0.246]],"v":[[-170.8,-187.768],[-166.615,-186.729],[-165.643,-182.913],[-165.114,-179.507],[-165.481,-179.478],[-168.28,-180.96],[-170.457,-183.074],[-172.792,-183.681],[-172.014,-185.319],[-170.791,-185.37],[-170.839,-187.03]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.002,-0.332],[-0.389,-1.055],[0.727,-0.208],[1.538,-3.281],[0.284,-0.309],[0.975,-0.973],[0.239,0.416],[-1.243,1.669],[-1.035,1.172]],"o":[[0.629,0.72],[-0.502,0.769],[-3.159,0.905],[-0.285,0.309],[-1.027,0.827],[-0.276,-0.479],[0.123,-2.244],[0.923,-1.239],[1.395,-1.58]],"v":[[221.27,23.856],[223.54,25.479],[221.437,26.338],[213.708,31.596],[212.854,32.523],[210.875,35.798],[210.121,34.487],[212.814,28.854],[216.216,25.607]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.759,-0.352],[-0.011,-0.091],[0.772,-0.681],[0.64,0.464],[2.573,-0.497],[1.18,-0.666],[0.529,0.426],[-1.825,0.739],[0,0.595],[-0.559,0.309],[-1.415,-0.753],[-0.734,-0.042]],"o":[[0.018,0.09],[0.062,0.523],[-0.673,0.594],[-2.38,-1.724],[-1.342,0.259],[-0.85,0.48],[1.143,-1.605],[0.34,-0.138],[0.328,0.521],[1.401,-0.775],[0.703,0.374],[0.528,0.666]],"v":[[-81.354,179.453],[-81.3,179.724],[-80.869,181.198],[-83.215,181.485],[-90.743,180.578],[-94.635,181.933],[-96.393,181.646],[-91.926,178.161],[-91.047,177.461],[-89.774,177.751],[-85.521,177.731],[-83.334,177.994]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.022,2.181],[-0.07,-0.543],[-0.005,-1.017],[-0.859,-0.679],[0.356,-0.689],[0.043,-3.805],[0.029,-2.13],[0.647,-0.4],[-0.557,1.624],[-0.083,5.759]],"o":[[0.916,0.162],[0.128,1.003],[0.005,1.043],[0.692,0.546],[-1.86,3.604],[-0.024,2.13],[-0.01,0.739],[0.013,-1.589],[0.083,-5.759],[0.022,-2.181]],"v":[[-128.467,37.355],[-127.689,38.877],[-127.597,41.924],[-126.653,44.716],[-126.203,46.506],[-127.476,57.792],[-127.585,64.182],[-128.485,65.92],[-128.783,61.173],[-128.533,43.897]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.539,-0.151],[-3.98,0.102],[0.011,-0.557],[0.308,-0.049],[3.77,0.035],[3.317,2.033],[0.343,0.104],[0.143,1.267],[-1.011,-0.766]],"o":[[3.868,1.018],[0.34,-0.009],[-0.009,0.446],[-3.767,0.603],[-3.862,-0.036],[-0.315,-0.193],[-1.242,-0.375],[1.302,-0.01],[2.91,2.206]],"v":[[-91.555,174.029],[-79.765,175.203],[-78.935,175.661],[-79.689,176.069],[-91.037,176.372],[-101.813,172.768],[-102.767,172.209],[-104.809,169.744],[-101.388,171.018]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.286,-2.062],[0.039,0.702],[0.1,1.294],[0.492,0.029],[-0.008,-0.466],[0,-0.882],[1.347,-0.023],[0.902,0.492],[-0.843,0.186],[0.859,-0.012],[0.432,0.122],[0.188,0.659],[-0.292,0.313],[-0.365,0.827],[-1.055,-0.298],[-0.82,-0.038],[-0.092,-1.576]],"o":[[-0.678,-0.687],[-0.071,-1.296],[-0.028,-0.359],[-0.547,-0.032],[0.015,0.882],[-0.001,1.315],[-0.84,0.014],[0.964,-0.212],[-0.267,-0.852],[-0.464,0.006],[-0.563,-0.159],[-0.167,-0.587],[0.602,-0.644],[0.456,-1.034],[0.789,0.223],[1.51,0.069],[0.108,1.851]],"v":[[255.477,-104.855],[254.66,-106.903],[254.382,-110.787],[253.914,-111.659],[253.287,-110.789],[253.291,-108.144],[250.413,-105.253],[247.894,-105.971],[250.481,-106.541],[248.851,-107.803],[247.465,-107.847],[246.103,-108.895],[246.814,-109.972],[248.41,-112.054],[250.692,-112.993],[253.136,-112.606],[255.191,-110.63]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.206,0.914],[-0.243,-0.452],[-1.112,-0.298],[1.536,-0.818],[0.247,-0.716],[0.463,-0.146],[-0.059,-0.265],[1.16,-0.057],[1.437,0.692],[0.316,-1.638],[0.961,0.389],[1.327,0.919],[0.538,-0.77],[0.547,-0.746],[1.892,0.709],[-0.468,0.584],[-0.782,1.026],[-1.014,-0.83],[-1.341,-0.628],[-0.393,1.425],[-0.808,-0.379],[-0.833,-0.389],[-0.287,0.774],[1.521,1.084],[-0.131,0.463],[-0.438,-0.028]],"o":[[0.327,-0.011],[0.654,1.216],[1.457,0.945],[-1.035,0.551],[-0.357,-0.75],[-0.751,0.238],[0.244,1.094],[-1.754,0.086],[-1.04,-0.5],[-0.237,1.23],[-1.508,-0.611],[-0.888,-0.615],[-0.53,0.758],[-1.128,1.539],[0.747,0.029],[0.808,-1.007],[0.71,-0.931],[1.149,0.941],[1.367,0.64],[0.288,-1.045],[0.832,0.39],[0.95,0.443],[0.625,-1.687],[-0.311,-0.222],[0.153,-0.54],[0.814,0.052]],"v":[[-97.838,201.509],[-96.873,201.483],[-93.89,203.061],[-93.955,205.068],[-94.565,207.265],[-95.979,207.036],[-95.941,207.831],[-97.556,209.806],[-102.033,208.078],[-104.082,208.79],[-106.299,209.601],[-110.524,207.218],[-112.46,207.587],[-114.108,209.821],[-117.334,210.709],[-115.534,209.862],[-113.086,206.861],[-110.663,206.473],[-106.833,208.693],[-104.599,207.76],[-102.971,207.048],[-100.481,208.23],[-98.084,207.58],[-99.326,203.806],[-100.114,202.978],[-98.903,202.593]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.148,-1.115],[0.073,-4.084],[-0.225,-0.785],[0.167,-1.343],[0.129,0.025],[0.069,2.24],[0.755,3.147],[-0.294,1.977],[-0.63,0.075],[-0.282,-0.539],[-0.269,-0.424]],"o":[[-0.077,4.084],[-0.014,0.777],[0.434,1.512],[-0.129,-0.025],[-0.095,-2.239],[-0.1,-3.263],[-0.481,-2.007],[0.057,-0.387],[0.466,-0.056],[0.232,0.444],[0.557,1.078]],"v":[[169.63,67.622],[169.401,79.875],[169.61,82.191],[168.409,85.923],[168.021,85.848],[167.74,79.129],[167.192,69.376],[166.81,63.537],[167.333,62.574],[168.529,62.988],[169.329,64.264]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.317,-1.653],[0.294,-0.334],[0.769,0.284],[0.034,0.571],[-1.06,3.038],[-0.591,0.378],[-2.465,2.037],[-0.586,0.45],[-0.076,0.075],[-0.001,0],[-0.279,-0.711],[0.331,-0.448],[0.122,-0.183],[0.232,-0.369],[0,0],[0,0],[0.217,-0.168],[2.859,-3.092]],"o":[[-0.276,0.35],[-0.45,0.511],[-0.71,-0.262],[1.632,-2.672],[0.233,-0.668],[2.723,-1.741],[0.569,-0.471],[0.076,-0.074],[0,0],[0.63,0.011],[0.275,0.699],[-0.131,0.177],[-0.439,0.076],[0,0],[0,0],[-0.208,0.179],[-3.342,2.588],[-1.148,1.241]],"v":[[160.129,126.696],[159.299,127.742],[157.596,128.563],[157.068,127.008],[162.075,119.06],[163.395,117.474],[170.692,111.244],[172.447,109.889],[172.676,109.666],[172.623,109.647],[174.291,110.247],[173.435,111.647],[173.068,112.196],[172.082,112.892],[171.972,112.9],[171.938,113.009],[171.312,113.546],[162.164,122.233]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.159,-0.503],[1.381,-0.322],[2.936,-0.334],[0.23,0.019],[-0.882,1.912],[-0.23,0.399],[-0.766,-0.587],[-1.496,0.817],[-1.532,-1.056]],"o":[[0.497,1.467],[-2.915,0.68],[-0.23,0.026],[-2.168,-0.179],[0.193,-0.419],[0.442,-0.768],[1.371,1.05],[1.574,-0.859],[-0.097,0.684]],"v":[[-79.672,187.038],[-80.714,188.991],[-89.546,189.729],[-90.242,189.736],[-91.926,186.997],[-91.319,185.752],[-89.482,185.269],[-85.398,185.32],[-80.541,185.804]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.063,-0.476],[0.038,-0.649],[0.623,-0.04],[2.534,-0.207],[0.125,0.907],[0.412,-0.239],[1.563,-0.689],[0.915,0.624],[-0.629,0.717],[-0.85,0.48],[-1.342,0.259],[-2.38,-1.724],[-0.673,0.594],[0.062,0.523],[0.018,0.09],[-1.062,-0.438]],"o":[[-0.807,-0.079],[-0.037,0.635],[-2.537,0.162],[-0.705,0.058],[-0.107,-0.773],[-1.509,0.876],[-0.837,0.369],[0.331,-0.914],[0.529,0.426],[1.18,-0.666],[2.573,-0.497],[0.64,0.464],[0.772,-0.681],[-0.011,-0.091],[1.118,0.095],[-0.707,0.321]],"v":[[-78.311,181.332],[-79.386,182.424],[-80.345,183.317],[-87.951,183.887],[-89.353,183.018],[-90.524,182.583],[-95.377,184.076],[-98.062,183.939],[-96.393,181.646],[-94.635,181.933],[-90.743,180.578],[-83.215,181.485],[-80.869,181.198],[-81.3,179.724],[-81.354,179.453],[-78.042,179.997]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.092,0.435],[-0.743,0.438],[-3.573,0.931],[-1.296,-1.517],[2.749,-0.979],[1.574,-1.16],[1.945,-0.375],[-0.228,0.533],[-0.335,0.438],[0.423,0.621]],"o":[[0.942,0.061],[3.154,-1.857],[1.954,-0.509],[-2.6,1.528],[-1.723,0.614],[-1.501,1.106],[-0.52,0.1],[0.229,-0.534],[0.243,-0.318],[0.14,-0.293]],"v":[[198.624,-139.298],[201.03,-140.218],[210.951,-144.78],[215.531,-143.336],[207.24,-140.384],[202.195,-138.049],[197.067,-135.486],[196.584,-136.081],[197.629,-137.369],[198.118,-138.473]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.025,-0.58],[0.952,0.339],[0.393,-0.391],[-0.249,-0.441],[0.931,-0.073],[0.243,1.329],[0.651,0.163],[0.702,0.372],[0.49,1.17],[0.417,1.369],[-0.538,0.831],[-0.728,-1.443],[-3.302,-0.072],[-0.53,-0.003],[-1.347,-0.612]],"o":[[-0.967,-0.295],[-0.482,-0.172],[-0.409,0.407],[0.638,1.131],[-1.376,0.108],[-0.126,-0.688],[-0.562,-0.58],[0.249,-1.397],[0.179,-1.531],[-0.225,-0.737],[1.055,1.393],[1.287,2.549],[0.458,0.187],[1.349,0.613],[-0.094,0.599]],"v":[[-128.196,-18.885],[-131.094,-19.784],[-132.358,-19.618],[-132.445,-18.362],[-133.422,-16.925],[-135.998,-18.802],[-137.113,-20.041],[-139.079,-21.365],[-140.19,-24.986],[-141.32,-29.13],[-141.294,-31.386],[-138.768,-27.121],[-132.686,-22.189],[-131.307,-21.645],[-127.261,-19.807]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.674,-0.977],[-1.286,-1.454],[1.748,-0.707],[0.747,-1.2],[0.457,-0.052],[-0.328,1.626],[-0.004,0.091],[-0.435,0.687],[0.904,0.114],[0.736,1.151],[0.059,0.792],[-0.188,0.725],[-1.207,-0.041]],"o":[[0.546,2.014],[1.216,1.375],[-1.262,0.51],[-0.222,0.357],[-1.751,-0.079],[0.018,-0.088],[0.467,-0.667],[0.356,-0.563],[-1.548,-0.195],[-0.569,-0.89],[0.421,-0.459],[0.304,-1.176],[0.304,1.017]],"v":[[-118.163,147.091],[-114.668,151.749],[-115.136,153.796],[-118.291,156.145],[-119.274,156.845],[-120.696,155.14],[-120.682,154.867],[-119.289,152.86],[-119.781,151.764],[-122.777,149.146],[-122.102,147.065],[-120.896,145.628],[-118.499,143.978]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.019,1.615],[0.791,2.165],[-0.957,0.221],[0.034,0.576],[-0.582,-1.478],[0.964,-0.687],[0.038,-0.248],[-0.526,-2.998],[-1.488,0.662],[-0.254,-0.429],[0.463,-0.437],[0.928,-0.967],[-0.173,-1.446],[-0.937,-0.38],[0.024,-0.174],[0.752,0.565],[0.516,0.576],[-0.24,1.462],[-0.008,0.451]],"o":[[0.351,-2.227],[-0.222,-0.609],[0.693,-0.16],[1.668,0.858],[0.33,0.836],[-0.21,0.149],[-0.427,2.793],[1.594,-0.611],[0.604,-0.268],[0.368,0.621],[-0.977,0.923],[-0.897,0.935],[-0.085,0.82],[-0.024,0.174],[-1.15,0.117],[-0.148,-0.637],[-0.541,-1.469],[0.36,-0.388],[0.028,-1.615]],"v":[[-128.428,98.849],[-128.741,92.232],[-128.32,90.903],[-127.641,89.581],[-125.186,93.703],[-125.919,96.325],[-126.367,97.008],[-127.366,105.515],[-123.026,103.137],[-121.178,102.677],[-122.301,104.106],[-125.282,106.82],[-126.816,110.245],[-125.961,112.228],[-126.034,112.75],[-128.455,111.337],[-128.772,109.406],[-128.735,105.014],[-128.487,103.693]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.207,1.089],[-0.07,0.887],[0.005,2.357],[-0.206,0.591],[-1.128,-0.062],[-0.253,-1.906],[0.092,-0.023],[0.81,-0.441],[0.096,0.015],[0.114,-0.002],[0.254,-0.731],[-0.341,-0.415],[-0.21,-0.073],[1.277,0.38],[0.443,0.083],[0.225,-1.282],[1.077,0.08],[0.593,0.575],[0.21,-0.319],[0.865,0.198],[0.159,0.983],[-0.485,1.445],[-0.811,0.006],[-0.027,-0.914],[0.429,-1.09],[-0.688,-1.357],[-0.569,0.017],[-0.185,0.488]],"o":[[0.642,0.065],[2.691,0.723],[0.206,-0.591],[1.184,-0.147],[1.849,0.101],[-0.093,0.023],[-0.849,0.015],[-0.096,-0.015],[-0.115,-0.067],[-0.608,0.012],[-0.294,0.846],[0.121,0.147],[-0.003,1.454],[-0.473,-0.141],[-1.304,-0.244],[-0.101,0.577],[-0.469,-0.607],[-0.484,0.103],[-0.445,0.674],[-0.973,-0.223],[-0.234,-1.443],[0.316,-0.94],[0.785,-0.006],[-0.765,-0.024],[-0.493,1.253],[0.266,0.525],[0.582,-0.018],[0.409,-1.08]],"v":[[-114.215,-116.203],[-112.886,-117.002],[-109.268,-119.203],[-108.65,-120.975],[-105.713,-119.821],[-102.837,-117.015],[-103.115,-116.945],[-105.645,-116.711],[-105.933,-116.755],[-106.278,-116.947],[-107.99,-116.544],[-106.841,-115.542],[-106.225,-115.312],[-108.003,-113.75],[-109.353,-113.873],[-111.504,-112.269],[-112.589,-110.844],[-113.28,-112.912],[-114.061,-112.006],[-115.832,-110.737],[-117.776,-112.728],[-117.627,-117.113],[-115.712,-118.122],[-114.317,-116.969],[-116.535,-116.726],[-116.697,-112.719],[-115.392,-111.82],[-114.484,-112.904]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.26,0.321],[-3.127,-0.204],[-4.336,0.24],[-0.477,-0.178],[1.321,0.223],[1.395,-0.125],[0.317,-0.814],[-0.477,-0.666],[2.135,0.096],[1.285,-0.015],[0.243,-0.276],[0.654,1.216],[0.327,-0.011],[0.271,0.07]],"o":[[3.051,-0.747],[4.382,0.286],[0.457,-0.025],[-0.127,1.331],[-1.371,-0.232],[-0.719,0.065],[-0.358,0.919],[-2.222,0.249],[-1.282,-0.058],[-0.427,0.005],[-1.112,-0.298],[-0.243,-0.452],[-0.272,-0.07],[-0.068,-0.448]],"v":[[-99.334,200.271],[-90.049,199.305],[-77.044,198.485],[-75.66,198.441],[-77.819,200.079],[-81.966,199.79],[-83.883,200.597],[-82.674,202.267],[-89.153,202.429],[-93.007,202.458],[-93.89,203.061],[-96.873,201.483],[-97.838,201.508],[-98.653,201.299]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.375,1.136],[-0.967,0.663],[-0.598,0.075],[-0.092,0.025],[-0.207,0.007],[0.207,-0.21],[0.826,-0.739],[-0.752,-0.573],[-0.823,1.248],[-0.885,-0.706],[-0.647,-1.062],[-0.71,0.537],[-0.416,0.884],[-0.37,0.007],[-0.663,-1.069],[0.473,0.056],[1.427,-1.479],[0.523,0.718],[1.668,-0.095],[0.689,1.283]],"o":[[1.153,-0.421],[0.444,-0.305],[0.092,-0.025],[0.207,-0.007],[0.294,0.401],[-0.779,0.791],[-0.516,0.461],[0.572,0.436],[0.594,-0.901],[0.934,0.746],[0.488,0.801],[0.803,-0.607],[0.37,-0.007],[-0.538,1.284],[-0.424,0.305],[-1.9,-0.225],[-0.737,0.764],[-1.058,-1.451],[-1.402,0.08],[0.264,-1.197]],"v":[[-85.801,165.407],[-83.024,163.261],[-81.679,162.366],[-81.403,162.29],[-80.782,162.269],[-81.065,163.063],[-83.437,165.4],[-83.826,166.926],[-81.657,167.034],[-79.432,166.803],[-76.847,169.245],[-74.961,169.475],[-73.274,167.14],[-72.163,167.12],[-71.543,170.572],[-72.958,171.019],[-77.899,172.583],[-80.159,171.949],[-84.289,170.246],[-87.501,168.5]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.506,-1.838],[-1.265,-1.565],[-0.312,-0.341],[1.193,-0.318],[1.267,1.019],[0.195,0.27],[1.469,1.545],[1.637,2.769],[0.335,0.553],[0.013,0.616],[-0.92,0.188],[-0.282,-0.68],[-0.655,-1.626],[-0.231,-0.398]],"o":[[0.702,2.077],[0.289,0.358],[0.812,0.888],[-1.481,0.395],[-0.195,-0.27],[-0.457,-2.013],[-1.336,-2.942],[-0.329,-0.557],[-0.315,-0.52],[-0.019,-0.899],[0.833,-0.17],[0.671,1.619],[0.17,0.423],[1.237,2.018]],"v":[[-107.282,168.822],[-103.219,173.268],[-102.244,174.254],[-102.87,176.077],[-107.018,175.491],[-107.603,174.681],[-110.147,169.185],[-114.958,160.82],[-115.981,159.17],[-116.54,157.479],[-115.375,155.498],[-113.829,156.832],[-111.91,161.728],[-111.227,162.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.094,-0.719],[-0.139,1.12],[-0.108,2.303],[-1.659,3.002],[0.007,0.184],[0.059,-0.801],[-2.722,-1.101],[0.42,-0.766],[2.08,-1.046],[-0.366,-0.316],[-0.494,-0.609]],"o":[[-0.694,-0.872],[0.286,-2.309],[0.271,-3.167],[0.076,-0.138],[0.709,0.328],[-0.208,2.841],[1.004,0.406],[-1.015,1.851],[-0.564,0.284],[0.562,0.486],[-1.744,0.403]],"v":[[-127.628,89.129],[-128.488,86.16],[-128.791,79.279],[-127.632,69.815],[-127.641,69.27],[-126.701,70.927],[-123.118,77.007],[-122.68,78.675],[-126.523,83.593],[-126.396,84.75],[-124.724,86.267]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.403,-0.457],[0.003,-4.497],[-0.027,-7.883],[-0.137,-1.474],[0.047,-1.656],[0.403,0.002],[0.027,1.159],[0.251,-0.168],[0.189,0.677],[-0.001,0.401],[0.002,8.816],[0.048,0.458],[0.005,1.581],[-0.109,2.863]],"o":[[-0.029,4.497],[-0.006,7.883],[0.005,1.481],[0.156,1.676],[-0.403,-0.002],[-0.302,-1.144],[-0.015,-0.642],[-0.073,-0.661],[0.353,-0.343],[0.013,-8.816],[0,-0.459],[0.413,-1.57],[0.109,-2.863],[0.403,0.457]],"v":[[-194.75,-149.611],[-194.834,-136.121],[-194.797,-112.471],[-194.618,-108.029],[-194.865,-103.062],[-196.074,-103.069],[-196.274,-106.543],[-196.776,-106.729],[-196.51,-108.644],[-196.294,-109.83],[-196.277,-136.277],[-196.412,-137.652],[-196.285,-142.392],[-195.958,-150.981]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.438,0.121],[-0.774,0.13],[-2.507,-0.7],[-3.047,-1.465],[-1.104,-1.322],[1.3,-0.446],[1.534,0.763],[3.46,1.594],[1.731,0.093]],"o":[[-0.358,-0.694],[2.601,-0.438],[3.291,0.919],[1.451,0.697],[0.86,1.03],[-1.772,0.609],[-3.4,-1.691],[-1.571,-0.723],[-0.438,-0.121]],"v":[[231.262,-143.838],[231.88,-145.074],[239.511,-144.412],[248.785,-140.321],[252.929,-137.879],[252.404,-135.914],[247.461,-136.653],[237.499,-142.175],[232.577,-143.477]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.608,-0.785],[0.555,0.353],[0.466,-2.548],[0.05,-0.127],[0.98,0.157],[0.195,0.404],[-0.809,0.797],[0.215,1.081],[-1.439,0.058],[-1.344,-0.021],[-0.308,1.246],[-0.111,1.14],[-2.632,2.16],[0.551,-0.516],[0.3,-3.372],[2.711,-0.071],[0.923,-0.084],[-0.04,-0.539],[-0.658,0.013],[-1.854,0.25],[-0.671,-1.908],[0.225,-0.325],[0.384,0.041],[0.231,0.017]],"o":[[-0.838,-0.093],[-2.138,-1.041],[-0.024,0.132],[-0.868,0.289],[-0.376,-0.06],[-0.427,-0.883],[-1.028,-0.111],[-0.276,-1.386],[1.343,-0.054],[1.291,0.02],[0.276,-1.116],[0.352,-3.621],[-0.028,0.785],[-2.536,2.377],[-0.243,2.738],[-0.924,0.024],[-0.538,0.049],[0.04,0.547],[1.856,-0.037],[2.272,-0.306],[0.144,0.411],[-0.295,0.425],[-0.23,-0.024],[-1.687,-1.078]],"v":[[-118,-89.39],[-119.289,-90.793],[-121.892,-89.286],[-122.038,-88.903],[-124.703,-88.285],[-125.624,-88.77],[-124.771,-92.943],[-126.722,-94.548],[-124.951,-96.895],[-120.917,-96.913],[-118.462,-98.716],[-117.812,-102.104],[-112.628,-110.302],[-113.542,-108.332],[-117.352,-99.574],[-121.206,-96.077],[-123.972,-95.817],[-125.079,-95.029],[-123.847,-94.156],[-118.282,-94.363],[-113.876,-91.881],[-113.791,-90.684],[-114.92,-90.72],[-115.613,-90.772]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.649,0.464],[-0.141,0.083],[0.938,1.115],[2.01,0.773],[2.852,-0.322],[0.995,-0.105],[-0.116,1.549],[-4.257,-0.028],[-3.611,-2.398],[-0.319,-0.333],[0.364,-0.613],[0.535,0.218],[0.922,0.519],[0.336,-0.946],[0.148,-0.332]],"o":[[0.105,-0.144],[1.28,-0.751],[-1.405,-1.672],[-2.603,-1.001],[-0.682,-1.072],[-0.769,0.081],[4.247,-0.411],[4.075,1.618],[0.376,0.25],[0.52,0.543],[-0.41,0.69],[-0.98,-0.399],[-0.702,-0.396],[-0.12,0.337],[-0.366,0.818]],"v":[[247.133,-51.845],[247.454,-52.268],[247.918,-54.748],[242.735,-58.389],[234.608,-59.841],[231.937,-60.507],[230.174,-61.519],[242.937,-61.792],[254.106,-55.157],[255.08,-54.179],[255.281,-52.391],[253.67,-52.158],[250.804,-53.531],[249.259,-53.135],[248.665,-52.208]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.058,-0.919],[0.294,0.478],[3.101,1.597],[1.005,1.01],[0.382,0.044],[0.127,0.36],[-1.851,-0.06],[-1.633,-0.586],[-2.766,-1.59],[0.84,0.106],[1.187,-0.007],[0.071,-0.371],[-0.395,-0.047]],"o":[[-0.727,0.693],[-1.971,-3.205],[-1.222,-0.629],[-0.272,-0.274],[0.092,-0.341],[1.853,-0.003],[1.775,0.057],[2.989,1.073],[-0.098,0.676],[-1.168,-0.148],[-0.333,0.002],[-0.093,0.49],[-0.058,0.919]],"v":[[-137.92,123.044],[-139.307,122.602],[-147.764,116.612],[-151.351,114.585],[-152.316,114.097],[-152.225,113.058],[-146.666,113.063],[-141.648,114.477],[-132.939,118.317],[-134.104,119.21],[-137.659,119.172],[-138.42,119.628],[-137.746,120.286]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.522,0.192],[-0.355,-0.321],[-0.549,-0.967],[0.291,-1.138],[-0.05,-2.181],[0.243,-8.37],[0.006,-0.232],[1.891,-0.04],[0.007,4.122],[0.619,6.282],[1.095,0.628],[0.815,1.672],[-0.02,0.063],[0.06,-0.039]],"o":[[0.187,-0.4],[0.585,-0.215],[0.816,0.74],[-0.01,1.067],[-0.54,2.11],[0.192,8.37],[-0.013,0.231],[-0.043,1.788],[-0.658,-4.159],[-0.011,-6.293],[-0.081,-0.827],[0.46,-2.014],[0.02,-0.064],[-0.06,0.039],[0,0]],"v":[[-142.538,65.849],[-142.136,64.621],[-140.925,65.345],[-138.82,67.862],[-138.108,70.89],[-138.597,77.306],[-138.784,102.419],[-138.823,103.113],[-140.756,104.941],[-140.236,92.577],[-140.477,73.7],[-141.002,71.205],[-142.421,65.914],[-142.359,65.724],[-142.539,65.841]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.471,0.077],[1.292,-0.516],[0.812,0.192],[1.668,-0.446],[3.176,-0.938],[0.291,0.645],[-0.348,0.216],[-2.553,1.571],[-0.127,0.598],[-4.522,-2.226],[-0.388,-1.232],[1.205,-0.349]],"o":[[-0.855,-0.789],[-0.729,0.291],[-1.671,-0.395],[-3.218,0.861],[-0.273,0.081],[-0.246,-0.544],[2.547,-1.58],[0.425,-0.261],[4.761,-1.174],[1.02,0.502],[-1.205,0.349],[-0.471,-0.077]],"v":[[244.633,-149.959],[241.651,-150.718],[239.121,-150.749],[234.244,-150.531],[224.863,-147.269],[223.975,-147.298],[224.448,-148.268],[232.1,-152.994],[233.203,-153.962],[247.18,-153.014],[249.664,-150.775],[246.047,-149.728]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.075,1.084],[0.253,1.485],[-0.448,0.764],[0.187,1.934],[-0.055,3.477],[-1.137,0.084],[-0.374,0.079],[0.517,-0.899],[-1.099,-0.431],[-0.77,-2.011],[0.405,-0.696],[0.421,0.658],[1.181,0.805],[0.022,-0.555],[-0.68,-1.261],[1.098,-1.995],[0.951,-2.932]],"o":[[0.006,-1.417],[-0.075,-0.438],[0.967,-1.652],[-0.335,-3.469],[0.018,-1.141],[0.374,-0.079],[0.137,0.977],[-0.636,1.106],[2.281,0.895],[-1.122,0.488],[-0.667,-0.495],[-0.713,-1.114],[-0.447,-0.305],[-0.053,1.301],[-0.185,2.026],[-1.481,2.692],[-1.717,-0.169]],"v":[[-133.523,145.378],[-133.321,141.105],[-132.062,138.865],[-130.939,133.606],[-130.703,123.183],[-128.807,121.358],[-127.685,121.121],[-128.198,123.879],[-127.353,127.144],[-123.515,131.98],[-124.169,134.23],[-125.458,132.277],[-127.734,129.02],[-128.661,129.198],[-128.419,133.104],[-129.522,139.103],[-132.086,147.956]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.086,0.486],[-0.094,0.891],[-2.247,0.441],[-0.01,-1.147],[2.137,-3.554],[1.607,-0.021],[0.78,0.514],[-0.643,0.036],[-0.035,0.719]],"o":[[0.293,-0.827],[0.27,-2.56],[0.762,-0.15],[0.03,3.41],[-1.079,-0.905],[-0.847,0.011],[-0.541,-0.357],[1.028,-0.058],[0.086,-0.486]],"v":[[201.925,38.537],[202.538,35.992],[206.935,30.823],[208.502,31.758],[205.626,46.105],[201.93,44.298],[199.842,42.627],[200.576,41.406],[201.666,39.995]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.314,-0.722],[1.504,-0.77],[-0.367,-2.204],[0.165,-0.19],[1.84,-1.057],[-0.316,0.864],[0.655,0.296],[0.259,-0.312],[0.639,0.367],[-0.359,0.676],[-0.172,2.668],[0.056,0.36],[-0.937,0.551],[-1.071,-0.975],[-0.088,0.718],[-0.658,0.241],[-0.283,-0.608],[-0.954,1.183],[-0.16,-0.164]],"o":[[-0.567,1.554],[-1.455,0.745],[0.041,0.243],[-1.357,1.56],[0.329,-0.859],[0.249,-0.681],[-0.701,-0.317],[-0.409,0.493],[-0.775,-0.446],[1.292,-2.434],[0.023,-0.35],[-0.119,-0.758],[-0.203,1.441],[1.11,-0.521],[0.062,-0.502],[0.633,-0.232],[0.586,1.257],[0.163,-0.202],[1.14,1.171]],"v":[[186.62,64.617],[183.501,67.945],[180.744,71.74],[180.506,72.518],[176.039,76.792],[177.024,74.215],[176.381,72.746],[175.422,73.421],[174.16,74.737],[174.248,72.502],[175.997,64.765],[175.777,63.696],[176.65,61.686],[177.557,65.369],[177.895,63.237],[178.082,61.771],[179.66,62.625],[181.844,62.987],[182.476,62.927]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.129,-0.132],[-0.47,0.495],[-1.355,-0.978],[-0.468,0.03],[0.026,-1.279],[0.002,-2.601],[1.223,0.702],[0.517,-0.147],[0.902,0.902],[0.786,0.418],[-1.273,0.659],[0.045,0.512],[0.597,0.119],[0.629,0.72],[-0.313,0.242],[-1.724,1.314],[0.006,0.613],[0.441,0.16]],"o":[[0.246,-0.69],[0.881,-0.929],[0.378,0.272],[0.817,0.953],[-0.053,2.6],[-0.001,1.409],[-0.523,-0.3],[-1.13,0.322],[-0.747,-0.747],[0.063,-1.603],[0.379,-0.196],[-0.044,-0.508],[-0.389,-1.055],[0.389,-0.022],[2.145,0.809],[0.639,-0.487],[-0.006,-0.664],[-1.185,-0.43]],"v":[[224.262,20.534],[225.603,18.982],[228.764,18.246],[230.102,18.496],[231.254,21.806],[231.251,29.609],[228.417,31.231],[226.791,31.121],[223.703,30.624],[221.203,30.223],[223.614,27.18],[224.684,26.526],[223.541,25.479],[221.27,23.856],[222.333,23.492],[228.001,22.298],[228.903,20.53],[227.631,20.072]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.069,0.17],[-0.192,0.017],[-0.567,-1.016],[1.102,0.071],[2.574,-1.175],[2.512,-0.702],[3.423,-1.372],[0.708,0.102],[0.129,0.485],[-0.469,0.259],[-1.445,0.826],[-0.126,-0.125],[-1.253,0.649],[-2.798,1.252],[-1.661,0.249],[-0.135,0.032],[-2.387,-1.194],[-0.219,-0.056],[-0.509,0.664],[0.372,0.418]],"o":[[0.192,-0.017],[0.867,0.693],[-0.585,1.218],[-2.882,-0.185],[-2.427,1.108],[-3.561,0.995],[-0.652,0.261],[-0.511,-0.073],[-0.14,-0.526],[1.457,-0.805],[0.229,0.021],[1.332,1.327],[2.707,-1.403],[1.531,-0.685],[0.137,-0.02],[2.572,-0.607],[0.207,0.104],[0.534,0.137],[0.516,-0.674],[-0.115,-0.129]],"v":[[-205.766,156.565],[-205.191,156.514],[-202.759,158.776],[-205.535,159.892],[-213.737,161.539],[-221.288,163.613],[-231.684,167.379],[-233.724,167.675],[-234.706,166.815],[-234.118,165.697],[-229.777,163.228],[-229.102,163.305],[-225.163,163.279],[-217.149,158.862],[-212.411,157.354],[-212.004,157.269],[-207.045,157.856],[-206.423,158.164],[-204.839,158.473],[-205.552,157.069]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.753,0.462],[-2.439,-1.868],[-0.056,-0.172],[0.388,0.342],[1.406,0.218],[0.334,-1.015],[0.427,0.136],[0.235,1.241],[0.344,-0.095],[0.427,0.279],[0.612,-0.02],[-0.268,1.357],[0.096,0.108],[-0.558,1.722],[-1.185,-0.394],[-2.014,1.83],[-0.619,-2.566],[-0.057,-0.777],[0.674,-0.207],[0.269,0.441],[0.169,0.311],[0.135,-0.805]],"o":[[3.147,-2.118],[0.118,0.091],[-0.548,-0.002],[-1.129,-0.994],[-1.107,-0.172],[-0.202,0.614],[-0.71,-0.226],[-0.086,-0.452],[-0.378,0.104],[-0.094,-0.987],[-1.096,0.036],[0.035,-0.175],[-1.743,-1.959],[0.446,-1.379],[-0.265,-2.502],[1.111,2.522],[0.183,0.759],[0.046,0.627],[-0.784,0.241],[-0.116,-0.191],[-0.529,0.831],[-0.282,1.689]],"v":[[212.88,6.233],[220.755,7.377],[220.93,7.885],[219.583,7.249],[215.63,5.713],[213.46,7.285],[212.397,8.559],[210.291,7.492],[209.525,7.208],[208.356,7.348],[206.888,6.55],[205.286,5.008],[205.249,4.467],[205.716,-0.932],[208.578,-1.5],[210.781,-8.053],[213.112,-0.391],[213.489,1.923],[212.637,3.364],[211.513,2.427],[211.13,1.723],[210.398,4.214]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.524,-1.052],[-0.49,1.454],[-0.818,0.16],[-0.022,1.079],[-0.149,2.303],[-1.504,0.564],[0.949,1.261],[-0.304,0.045],[-0.039,0.814],[0.82,0.072],[0.579,-0.437],[2.676,0.047],[2.059,0.934],[0.369,0.191],[-0.137,0.527],[-0.45,0.006],[-0.833,-0.034],[-4.3,-0.013],[-0.191,0.003],[-0.888,-0.211],[-0.025,-0.556],[2.602,-0.819],[0.093,-1.474],[-0.035,-1.806],[1.921,-0.529],[0.215,-0.736]],"o":[[-0.482,-1.492],[0.264,-0.783],[1.102,-0.215],[0.047,-2.308],[0.09,-1.392],[1.522,-0.571],[0.317,0.048],[0.798,-0.117],[0.043,-0.894],[-1.462,-0.128],[-2.658,-0.569],[-2.232,-0.039],[-0.379,-0.172],[-0.494,-0.255],[0.146,-0.561],[0.834,-0.011],[4.305,0.176],[0.191,-0.003],[0.875,0.268],[0.619,0.147],[0.127,2.787],[-1.708,0.538],[-0.114,1.802],[0.035,1.807],[-0.741,0.204],[-0.322,1.103]],"v":[[-127.682,-59.848],[-127.602,-64.298],[-125.809,-65.684],[-124.296,-67.652],[-124.019,-74.572],[-121.957,-77.708],[-121.243,-80.202],[-120.293,-80.074],[-118.607,-81.381],[-120.211,-82.442],[-121.508,-80.752],[-129.535,-81.02],[-136.007,-82.178],[-137.133,-82.714],[-137.839,-83.937],[-136.647,-84.376],[-134.145,-84.374],[-121.251,-84.673],[-120.678,-84.683],[-118.051,-83.892],[-117.181,-82.812],[-120.98,-77.145],[-123.165,-73.816],[-123.265,-68.396],[-125.646,-64.676],[-126.933,-63.194]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.062,-0.073],[-0.503,-1.001],[0.245,-0.405],[0.464,0.085],[2.055,1.383],[5.006,1.855],[1.04,0.468],[-0.423,0.701],[-4.357,-1.512],[-2.561,-0.573],[-0.075,-0.045],[-0.099,-0.074],[0,0],[1.199,0.397],[1.776,0.515],[1.563,0.446],[-1.003,-0.375],[-2.428,-1.164],[-1.201,-0.106]],"o":[[-0.015,1.323],[0.2,0.399],[-0.343,0.569],[-2.57,-0.472],[-4.431,-2.983],[-1.069,-0.396],[-0.367,-0.165],[4.562,-0.538],[2.277,1.31],[0.087,-0.007],[0.099,0.074],[0,0],[0.231,0.808],[-1.755,-0.581],[-1.561,-0.453],[0.721,0.916],[2.513,0.941],[0.997,0.478],[0.062,0.073]],"v":[[261.382,-137.995],[263.134,-135.134],[263.703,-133.962],[262.333,-134.011],[255.928,-137.692],[241.695,-144.815],[238.537,-146.135],[237.943,-147.076],[251.334,-145.741],[258.602,-142.945],[258.846,-142.889],[259.144,-142.667],[259.142,-142.671],[258.245,-141.682],[252.927,-143.26],[248.238,-144.6],[250.887,-142.855],[258.365,-139.869],[261.197,-138.213]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.668,0.054],[-0.232,-0.712],[0.726,0.001],[6.873,0],[0.242,2.231],[0.078,0.162],[-1.85,0.742],[-0.226,-0.457],[-1.028,0.202],[-0.737,0.07],[0.011,-1.378],[-0.331,-0.11],[-0.143,0.32],[-1.288,-0.12],[-0.008,-0.57],[-0.803,0.041]],"o":[[0.074,0.733],[-0.611,0.47],[-6.872,-0.005],[-2.224,0],[-0.018,-0.168],[1.165,-1.857],[0.615,-0.247],[0.459,0.927],[0.718,-0.141],[1.001,-0.095],[-0.004,0.491],[0.38,0.126],[0.649,-1.45],[0.503,0.047],[0.014,0.981],[1.666,-0.086]],"v":[[264.665,16.467],[265.63,18.341],[263.571,18.797],[242.954,18.791],[240.423,16.499],[240.197,16.013],[245.22,12.907],[246.379,13.641],[248.54,14.672],[250.756,14.556],[252.639,15.833],[253.394,16.514],[254.138,16.056],[257.331,14.747],[258.272,15.579],[259.662,16.639]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.284,-1.266],[0.015,-0.509],[0.594,0.399],[0.072,-0.594],[-0.397,-3.135],[0,-0.417],[-0.004,-7.466],[0.047,-1.984],[-1.185,-0.847],[-0.088,-0.299],[0.025,-0.165],[-0.913,-1.063],[-0.187,-0.58],[0.343,-1.555],[1.207,-0.115],[-0.008,1.946],[-0.092,-0.287],[-0.722,0.137],[0.067,0.81],[-0.017,1.072],[0.016,2.729],[0.156,1.676],[0.005,1.481],[-0.006,7.883],[-0.029,4.497],[-0.126,0.645],[-0.162,-0.001],[-0.121,-3.236],[0.02,0.991],[0.498,4.146],[-0.135,0.707],[-0.62,-0.005],[-0.008,-0.506],[-0.003,-2.085],[-0.321,-0.501],[0.021,-0.755],[-0.005,-0.941]],"o":[[-0.013,0.509],[-0.018,0.619],[-0.656,-0.44],[-0.382,3.133],[0.052,0.411],[0.006,7.466],[0.001,1.985],[-0.032,1.366],[0.323,0.231],[-0.025,0.165],[-1.42,0.372],[0.282,0.631],[-0.642,1.486],[-0.27,1.224],[0.008,-1.946],[0.226,0.167],[0.191,0.594],[0.782,-0.148],[-0.087,-1.054],[0.042,-2.728],[0.047,-1.656],[-0.137,-1.474],[-0.027,-7.883],[0.003,-4.497],[0.34,-0.624],[0.162,0.001],[0.115,3.062],[0.886,-0.871],[-0.084,-4.154],[0.524,-0.661],[0.087,-0.454],[0.728,0.006],[0.031,2.085],[0.001,0.554],[-0.021,0.755],[-0.455,0.909],[0.105,1.293]],"v":[[-192.057,-142.7],[-192.097,-141.174],[-192.956,-140.658],[-193.773,-140.181],[-193.796,-130.783],[-193.768,-129.532],[-193.753,-107.135],[-193.769,-101.181],[-192.383,-97.749],[-192.051,-96.875],[-192.128,-96.381],[-192.92,-94.139],[-193.52,-93.026],[-194.592,-88.37],[-197.068,-86.061],[-197.044,-91.898],[-196.557,-91.253],[-195.481,-89.895],[-194.586,-91.711],[-194.838,-94.877],[-194.865,-103.062],[-194.618,-108.029],[-194.797,-112.471],[-194.834,-136.121],[-194.75,-149.611],[-194.552,-151.565],[-194.067,-151.562],[-193.716,-142.202],[-192.647,-144.972],[-192.902,-157.435],[-192.63,-159.578],[-192.293,-160.858],[-191.824,-159.485],[-191.803,-153.23],[-191.537,-151.61],[-191.599,-149.346],[-191.79,-146.538]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.192,-0.017],[0.691,0.899],[0.605,1.418],[1.476,0.321],[4.737,0.642],[2.4,0.671],[2.792,-0.286],[0.164,0.271],[-0.825,0.086],[-1.403,-1.08],[-0.922,0.143],[-1.429,-0.064],[-0.51,-0.781],[-0.168,-0.017],[-2.375,0.223],[-1.769,-1.846],[-0.699,0.722],[-0.381,-0.486],[-1.296,-2.043],[-0.002,0.056],[-3.205,-0.798],[0.657,-2.447],[1.005,0.259],[0.296,-1.197]],"o":[[-1.187,-0.284],[-0.953,-1.241],[-0.712,-1.669],[-4.645,-1.01],[-2.475,-0.335],[-2.627,-0.734],[-0.288,0.029],[0.818,-0.144],[1.424,-0.148],[0.712,0.548],[1.442,-0.224],[0.843,0.038],[0.122,0.187],[2.254,0.234],[2.683,-0.251],[0.459,0.479],[0.506,-0.523],[1.476,1.881],[0.135,-0.127],[0.122,-2.89],[2.573,0.641],[-0.252,0.938],[-0.508,-0.131],[-0.192,0.017]],"v":[[-205.766,156.565],[-208.479,154.56],[-211.05,150.635],[-214.573,148.165],[-228.476,144.987],[-235.506,142.548],[-243.512,141.214],[-244.227,140.884],[-241.77,140.462],[-237.531,140.827],[-234.82,141.135],[-230.524,141.209],[-228.372,142.279],[-227.919,142.763],[-221.413,144.438],[-214.923,147.299],[-213.388,147.515],[-211.998,147.858],[-207.404,153.365],[-207.161,153.13],[-204.199,151.109],[-201.847,155.153],[-203.564,156.168],[-205.191,156.514]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.062,-1.389],[1.026,-0.937],[1.991,-0.267],[0.604,0.341],[1.279,-0.37],[1.685,0.206],[0.1,0.909],[-0.816,0.154],[-1.647,0.237],[-1.065,0.122],[1.232,0.584],[-1.431,0.898],[-1.717,-1.77],[-0.847,-1.054],[-0.713,0.868],[-0.698,0.662],[-0.781,0.594]],"o":[[-1.368,0.552],[-1.322,1.206],[-0.674,0.09],[-1.199,-0.677],[-1.676,-0.541],[-0.505,-0.062],[-0.085,-0.769],[1.634,-0.309],[0.91,-0.131],[-0.888,-1.256],[-1.498,-0.71],[1.421,-0.891],[0.933,0.962],[0.651,0.81],[0.614,-0.748],[0.697,-0.66],[0.699,1.413]],"v":[[229.567,-154.132],[226.453,-151.357],[222.049,-148.43],[220.206,-148.584],[216.467,-148.848],[211.384,-149.079],[209.914,-149.486],[211.208,-151.083],[216.14,-151.856],[219.032,-152.192],[215.713,-154.652],[215.547,-157.445],[220.313,-157.186],[223.155,-154.338],[225.216,-154.298],[227.109,-156.497],[229.412,-158.277]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.746,-0.07],[-0.536,-1.172],[1.651,-0.754],[1.05,-0.486],[0.23,0.931],[-1.462,1.437],[-0.158,0.17],[0.181,0.353],[0.233,-0.102],[2.324,-1.558],[0.597,-0.521],[1.231,0.183],[-0.626,0.743],[0.403,0.234],[0.238,-0.187],[1.24,-0.169],[-0.493,0.852],[-2.897,0.187],[-3.075,0.791],[-0.844,0.131]],"o":[[0.191,1.324],[0.776,1.696],[-1.053,0.481],[-0.789,0.365],[-0.459,-1.855],[0.166,-0.163],[0.219,-0.236],[-0.231,-0.451],[-2.544,1.108],[-0.696,-0.076],[-1.104,0.964],[-0.587,-0.087],[0.307,-0.365],[-0.398,-0.232],[-0.979,0.768],[-0.59,-0.681],[1.676,-2.895],[3.086,-0.2],[0.739,-0.19],[0.606,0.341]],"v":[[224.27,-28.514],[225.829,-24.972],[224.759,-21.889],[221.599,-20.449],[220.033,-21.136],[221.115,-26.158],[221.606,-26.653],[221.958,-27.486],[221.115,-27.487],[213.647,-23.823],[211.718,-23.366],[208.024,-22.956],[207.522,-24.442],[207.455,-25.358],[206.717,-24.96],[203.376,-23.551],[203.383,-25.568],[210.683,-29.162],[219.959,-29.661],[222.418,-29.472]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.094,0.189],[1.212,-0.31],[2.511,0.398],[0.593,-0.201],[0.211,0.257],[1.312,0.652],[-0.037,0.715],[-0.687,0.076],[-1.616,-1.03],[-0.169,-0.076],[-0.326,0.467],[0.243,0.296],[0.201,0.089],[-0.306,0.669],[-0.834,-0.052],[-0.438,-0.365],[-0.514,0.008],[-0.552,-0.681],[-0.795,0.712],[-0.293,0.47],[-0.591,0.419],[-0.447,-0.177],[-0.017,-0.438],[-1.552,0.93],[-0.651,-0.344],[0.202,-0.716]],"o":[[-1.287,-0.607],[-2.531,0.648],[-0.604,-0.096],[-0.271,0.092],[-1.013,-1.233],[-0.545,-0.271],[0.036,-0.695],[1.747,-0.192],[0.155,0.099],[0.446,0.201],[0.345,-0.495],[-0.145,-0.177],[-0.48,-0.212],[0.265,-0.58],[0.578,0.036],[0.436,0.363],[0.606,0.637],[0.746,0.921],[0.43,-0.385],[0.365,-0.584],[0.415,-0.295],[0.458,0.181],[0.074,1.885],[0.88,-0.527],[0.657,0.348],[-0.526,1.863]],"v":[[222.04,-30.898],[218.263,-30.722],[210.719,-30.683],[208.949,-30.705],[208.182,-30.778],[204.285,-32.816],[203.193,-34.079],[204.385,-35.146],[209.496,-34.605],[209.995,-34.362],[211.25,-34.497],[210.812,-35.517],[210.296,-35.975],[209.564,-37.034],[210.998,-38.11],[212.556,-37.633],[213.992,-37.254],[215.8,-35.334],[218.024,-35.258],[219,-36.589],[220.223,-38.257],[221.588,-38.771],[221.846,-37.509],[224.177,-36.095],[226.325,-35.689],[226.846,-34.028]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.013,0.509],[0.005,-0.105],[0.388,-2.482],[0.062,-3.288],[-0.127,-2.397],[-0.443,-3.542],[0.381,-2.259],[0.242,-1.353],[0.323,0.231],[-0.032,1.366],[0.001,1.985],[0.006,7.466],[0.052,0.411],[-0.382,3.133],[-0.656,-0.44],[-0.018,0.619]],"o":[[0.139,0.111],[-0.102,2.301],[-0.501,3.211],[-0.046,2.448],[0.188,3.535],[0.28,2.232],[-0.228,1.355],[-0.088,-0.299],[-1.185,-0.847],[0.047,-1.984],[-0.004,-7.466],[0,-0.417],[-0.397,-3.135],[0.072,-0.594],[0.594,0.399],[0.015,-0.509]],"v":[[-192.057,-142.7],[-191.659,-142.367],[-190.842,-135.553],[-190.98,-125.706],[-191.082,-118.367],[-190.749,-107.749],[-191.328,-100.934],[-192.051,-96.875],[-192.383,-97.749],[-193.769,-101.181],[-193.753,-107.135],[-193.768,-129.532],[-193.796,-130.783],[-193.773,-140.181],[-192.956,-140.658],[-192.097,-141.174]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.759,-0.088],[0.188,-0.421],[0.308,-0.41],[0.066,-0.108],[0.028,-0.174],[0.79,1.344],[0.157,0.284],[1.151,-1.07],[0.51,-0.049],[0.27,0.133],[1.124,-0.623],[0.478,-0.69],[1.121,0.422],[0.216,1.436],[0.361,2.409],[-0.227,0.57],[-1.7,0.421],[-0.413,-0.374],[0.286,-0.408],[0.42,-0.351],[-0.236,-1.435],[-0.332,0.118],[0.305,-1.212],[-1.609,-0.054],[0.115,2.284],[-1.383,2.307],[-0.588,1.156],[0.4,0.539],[0.967,-0.374],[-0.777,0.878],[-0.618,-0.709],[-0.388,-0.453],[-0.016,-0.853],[-0.582,-0.308],[-0.841,-0.353],[0.897,0.361],[0.726,0.291],[0.262,-0.816],[-0.916,-3.246],[-0.63,0.112]],"o":[[-0.188,0.421],[-0.529,0.141],[-0.066,0.108],[-0.028,0.174],[-0.837,1.299],[-0.164,-0.279],[-0.735,-1.328],[-0.337,0.314],[-0.27,-0.133],[-1.115,-1.417],[-0.935,-0.048],[-0.677,1.249],[1.655,-0.982],[-0.363,-2.418],[1.077,0.08],[0.61,-1.529],[0.812,-0.201],[0.506,0.458],[-0.314,0.448],[-1.094,0.912],[0.347,-0.123],[-0.122,1.279],[-0.406,1.61],[2.213,0.074],[-0.135,-2.677],[0.666,-1.111],[0.206,-0.406],[-0.937,0.468],[0.149,-1.184],[0.628,-0.709],[0.392,0.45],[-0.624,0.298],[0.016,0.84],[0.803,0.425],[-0.056,0.916],[-0.725,-0.292],[-0.685,-0.275],[-1.092,3.407],[0.164,0.582],[0.723,-0.128]],"v":[[-192.929,-226.028],[-193.493,-224.765],[-194.649,-223.819],[-194.848,-223.495],[-194.931,-222.973],[-196.824,-223.022],[-197.269,-223.887],[-199.889,-224.246],[-201.023,-223.498],[-201.832,-223.897],[-205.196,-223.912],[-207.159,-222.697],[-209.901,-222.345],[-208.578,-226.307],[-209.065,-233.578],[-207.944,-235.006],[-204.712,-238.079],[-203.246,-237.339],[-203.294,-235.972],[-204.412,-234.756],[-205.672,-231.271],[-204.662,-231.631],[-205.938,-228.125],[-204.219,-225.754],[-201.033,-228.937],[-199.315,-236.393],[-197.466,-239.815],[-197.279,-241.192],[-199.343,-239.153],[-197.838,-242.179],[-195.995,-242.192],[-194.83,-240.835],[-196.08,-239.401],[-194.802,-237.937],[-192.288,-236.86],[-193.648,-236.002],[-195.874,-236.752],[-197.19,-236.165],[-196.493,-226.258],[-195.103,-225.657]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.092,0.077],[0.052,-0.087],[1.394,-1.682],[0.568,-0.168],[0.349,0.388],[-0.221,0.446],[0.028,0.644],[0.742,-0.293],[0.296,0.354],[-0.335,0.394],[-2.739,1.358],[-1.85,0.437],[-2.603,-1.001],[-1.405,-1.672],[1.28,-0.751],[0.105,-0.144],[0.826,0.342],[0.854,0.629],[0.544,-0.886],[0.892,-0.31],[0.002,-0.52],[0.605,-0.25],[0.717,-0.008],[0,0]],"o":[[-0.182,0.01],[-1.164,1.941],[-0.638,-0.117],[-0.54,0.159],[-0.321,-0.356],[0.22,-0.444],[-0.929,0.133],[-0.434,0.171],[-0.361,-0.433],[1.978,-2.324],[1.704,-0.845],[2.852,-0.322],[2.01,0.773],[0.938,1.115],[-0.141,0.083],[-0.826,-0.342],[-0.363,-1.108],[-0.454,-0.335],[-0.878,0.35],[-0.492,0.171],[-0.661,-0.052],[-0.356,-0.688],[0,0],[-0.092,-0.076]],"v":[[233.458,-53.944],[232.929,-53.904],[228.14,-49.507],[226.408,-49.084],[224.981,-49.321],[225.013,-50.63],[225.437,-52.172],[223.172,-51.109],[221.887,-51.03],[222.213,-52.39],[229.271,-57.937],[234.608,-59.841],[242.735,-58.389],[247.918,-54.748],[247.454,-52.268],[247.133,-51.845],[244.654,-52.871],[242.502,-55.245],[240.727,-55.161],[238.09,-54.122],[237.329,-53.162],[235.438,-52.816],[233.753,-53.691],[233.735,-53.715]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.241,-0.86],[0.922,0.74],[-0.596,1.241],[0.294,0.218],[0.25,-0.183],[0.526,2.03],[-1.481,0.395],[0.812,0.888],[0.289,0.358],[0.702,2.077],[-0.809,-0.347],[-1.242,-0.375],[-0.315,-0.193],[-3.862,-0.036],[-3.767,0.603],[-0.009,0.446],[0.34,-0.009],[3.868,1.018],[-4.229,0.107],[-1.377,0.083],[-1.881,-0.451],[0.103,-0.355],[-0.511,-0.77],[0.234,-0.045],[0.405,0.012],[3.102,0.131],[0.548,0.3],[0.761,-0.927],[0.703,0.374],[1.401,-0.775],[0.328,0.521],[0.614,-1.095],[0.737,-0.527]],"o":[[-1.066,-0.503],[-0.815,-0.655],[0.129,-0.268],[-0.308,-0.229],[-1.525,1.115],[1.267,1.019],[1.193,-0.318],[-0.312,-0.341],[-1.265,-1.565],[0.898,0.109],[0.143,1.267],[0.343,0.104],[3.317,2.033],[3.77,0.035],[0.308,-0.049],[0.011,-0.557],[-3.98,0.102],[4.218,-0.969],[1.381,-0.035],[1.975,-0.119],[0.293,0.07],[-0.255,0.875],[0.182,0.275],[-0.407,0.078],[-3.103,-0.09],[-0.594,-0.025],[-1.034,-0.566],[-0.734,-0.042],[-1.415,-0.753],[-0.559,0.309],[-0.986,-0.896],[-0.483,0.862],[-1.228,0.878]],"v":[[-99.164,182.007],[-102.153,180.16],[-103.173,177.641],[-103.326,176.744],[-104.219,176.906],[-107.018,175.491],[-102.87,176.077],[-102.244,174.254],[-103.219,173.268],[-107.282,168.822],[-104.809,169.744],[-102.767,172.209],[-101.813,172.768],[-91.037,176.372],[-79.689,176.069],[-78.935,175.661],[-79.765,175.203],[-91.555,174.029],[-78.867,173.881],[-74.723,173.84],[-68.999,174.677],[-68.289,175.186],[-67.995,177.594],[-68.355,178.013],[-69.577,178.227],[-78.884,177.895],[-80.621,177.479],[-83.334,177.994],[-85.521,177.731],[-89.774,177.751],[-91.047,177.462],[-93.317,177.727],[-95.445,179.422]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.601,-0.087],[-0.211,-2.57],[-0.069,-1.749],[-0.578,-0.848],[0.002,-0.666],[-0.017,-4.088],[1.255,-1.125],[-0.686,-0.341],[0.437,1.579],[0.347,-0.12],[1.167,-0.888],[1.258,0.833],[0.976,0.62],[1.42,-0.116],[0.13,-0.357],[-0.249,-0.184],[-0.497,-0.881],[2.1,0.659],[1.479,-0.938],[-0.215,-0.554],[-0.544,-0.029],[-0.679,-0.112],[-1.623,-0.658],[0.525,-0.119],[0.508,-0.199],[0.082,-0.649],[-0.496,-0.43],[-0.374,-0.179],[-1.018,-0.001],[-0.26,-0.807],[-0.941,0.564],[-0.585,-1.476],[-0.827,0.076],[-0.101,0.849],[-0.754,-0.175],[-0.193,-0.687],[0.371,0.185],[0.105,-0.51],[1.012,-0.018],[0.653,1.17],[0.963,-0.51],[0.524,1.68],[0.602,-0.029],[0.889,1.933],[2.062,0.13],[-0.011,0.695],[-0.7,0.35],[-2.441,-1.034],[0.078,1.687],[-0.446,0.093],[-1.648,-1.33],[-2.351,1.852],[-1.406,0.209],[0.013,0.767],[0.123,1.829],[0.423,0.715],[0.106,1.235],[0.815,0.326],[0.06,0.086],[-0.41,3.8],[0.046,1.918],[0.398,0.328]],"o":[[1.089,2.423],[0.148,1.802],[0.041,1.038],[0.396,0.581],[-0.014,4.088],[0.006,1.516],[-0.75,0.673],[-1.009,-0.121],[-0.102,-0.367],[-1.347,0.468],[-1.216,0.925],[-0.965,-0.639],[-1.139,-0.723],[-0.326,0.027],[-0.141,0.388],[0.769,0.568],[-2.283,0.016],[-1.587,-0.498],[-0.41,0.26],[0.168,0.434],[0.695,0.037],[1.64,0.271],[-0.505,0.282],[-0.541,0.123],[-0.528,0.207],[-0.077,0.613],[0.308,0.268],[0.956,0.457],[0.772,0.001],[0.409,1.269],[1.399,-0.839],[0.303,0.764],[0.762,-0.07],[0.112,-0.944],[0.678,0.158],[-0.445,0.046],[-0.51,-0.254],[-0.173,0.845],[-1.199,0.022],[-0.522,-0.935],[-1.547,0.819],[-0.284,-0.91],[-2.082,0.099],[-0.86,-1.871],[-0.523,-0.033],[0.012,-0.769],[2.292,-1.148],[0.781,0.331],[-0.023,-0.496],[2.22,-0.462],[2.069,1.669],[1.105,-0.871],[0.922,-0.137],[-0.031,-1.788],[-0.049,-0.726],[-0.654,-1.106],[-0.053,-0.625],[0.014,-0.138],[-2.517,-3.583],[0.202,-1.872],[-0.012,-0.517],[0.53,-0.425]],"v":[[-158.334,123.368],[-157.154,130.946],[-157.469,136.178],[-156.6,139.056],[-156.109,140.882],[-156.111,153.147],[-157.512,157.175],[-156.954,158.718],[-159.665,157.567],[-160.67,157.335],[-164.619,158.968],[-168.335,159.113],[-171.177,157.118],[-174.94,155.917],[-175.781,156.268],[-175.296,157.01],[-173.11,158.849],[-179.52,157.29],[-184.207,157.701],[-184.989,158.871],[-183.743,159.641],[-181.658,159.696],[-176.683,160.376],[-178.232,160.926],[-179.856,161.268],[-181.328,162.074],[-180.389,163.707],[-179.316,164.336],[-176.309,164.721],[-174.43,165.609],[-172.456,166.23],[-169.454,167.155],[-167.962,168.529],[-166.618,167],[-165.067,166.126],[-163.739,167.413],[-164.916,167.045],[-165.833,167.491],[-167.223,169.306],[-170.392,167.952],[-172.279,167.369],[-175.085,166.138],[-176.689,165.467],[-181.687,163.177],[-185.66,160.124],[-186.931,159.027],[-185.691,157.302],[-178.607,156.848],[-176.979,156.111],[-176.1,155.401],[-170.092,156.775],[-163.929,157.319],[-159.797,156.309],[-158.616,154.928],[-157.953,149.648],[-158.338,147.623],[-158.601,143.941],[-159.247,142.272],[-159.213,141.864],[-160.125,130.573],[-159.431,124.954],[-160.014,123.801]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.195,0],[-3.178,1.293],[-3.309,-0.122],[-1.189,-0.167],[-0.118,-0.486],[0.353,-0.145],[2.19,-0.734],[0.704,-0.627],[1.206,-0.637],[0.214,0.009],[3.973,2.895],[1.894,0.837],[-0.13,0.639],[-0.509,0.068],[-0.405,-0.025],[-1.973,-0.211],[-0.782,0.626]],"o":[[2.675,1.886],[3.188,-1.297],[1.193,0.044],[0.43,0.06],[0.166,0.684],[-2.138,0.879],[-1.009,0.338],[-1.101,0.98],[-0.201,0.106],[-4.548,-0.195],[-1.631,-1.189],[-0.332,-0.147],[0.099,-0.49],[0.411,-0.055],[1.918,0.118],[0.728,0.078],[0.195,0]],"v":[[101.024,197.85],[109.652,198.996],[119.556,198.506],[123.151,198.675],[124.328,199.235],[123.38,199.981],[116.909,202.476],[114.332,204.05],[110.67,205.92],[110.019,206.134],[96.974,202.984],[91.316,200.462],[90.481,199.758],[91.48,198.925],[92.71,198.766],[98.197,197.686],[100.439,197.849]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.754,-0.222],[-1.146,0.133],[-0.056,-0.352],[0.345,-0.056],[1.077,0.06],[0.648,-0.01],[1.841,-0.511],[1.406,0.055],[0.31,1.207],[0.508,-0.44],[0.513,0.609],[-0.067,1.346],[0.39,0.852],[0.774,-0.206],[1.171,1.327],[-0.693,0.107],[-2.178,0.462],[-0.006,0.15],[-0.907,0.065],[-1.106,0.105],[0.259,-1.14],[-0.609,-0.361],[-0.491,0.219],[-1.458,-2.182]],"o":[[0.012,0.666],[0.273,-0.032],[0.06,0.377],[-1.034,0.166],[0.222,-0.603],[-1.902,0.03],[-1.363,0.378],[-1.275,-0.05],[-0.722,0.299],[-0.6,0.52],[-0.727,-0.862],[0.05,-1.005],[-0.535,-1.167],[-2.013,0.536],[0.615,-0.536],[2.216,-0.341],[0.198,-0.042],[0.065,-1.623],[1.109,-0.08],[1.156,-0.11],[-0.097,0.427],[0.399,0.237],[2.343,-1.047],[1.448,2.167]],"v":[[207.275,13.549],[208.234,14.888],[208.876,15.253],[208.367,15.952],[205.287,16.556],[204.659,15.734],[199.006,16.303],[194.897,16.672],[192.652,14.891],[191.224,16.374],[189.541,16.355],[187.943,13.416],[186.544,11.105],[184.238,11.001],[179.947,9.981],[182.021,9.53],[188.321,7.45],[188.83,7.034],[191.026,5.791],[194.359,5.633],[195.604,7.067],[195.502,8.412],[196.963,8.217],[201.295,9.508]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.727,0.693],[-0.014,-0.865],[-0.006,-2.463],[-0.527,-0.655],[0.074,-0.236],[0.305,-3.19],[0.996,-0.062],[-0.016,0.693],[-0.068,1.018],[0.607,0.235],[0.255,-0.384],[0.125,-0.249],[0.575,0.578],[-0.99,0.824],[0.086,2.067],[-0.338,1.977],[-0.101,1.578],[0.353,0.139],[1.202,0.509],[0.879,0.033],[0.323,0.312],[0.738,0.176],[1.294,0.883],[-0.095,0.906],[0.003,0.124],[-0.972,-0.132],[-0.272,-0.274],[-1.222,-0.629],[-1.971,-3.205]],"o":[[0.427,0.837],[0.039,2.462],[0.002,0.733],[0.149,0.184],[-0.996,3.159],[-0.039,0.408],[-0.954,0.059],[0.024,-1.022],[0.058,-0.869],[-0.747,-0.289],[-0.153,0.23],[-0.261,0.519],[-0.447,-0.449],[2.096,-1.744],[-0.083,-1.99],[0.272,-1.589],[0.027,-0.424],[-1.213,-0.479],[-0.757,-0.321],[0.228,-0.167],[-0.536,-0.516],[-1.556,-0.37],[0.48,-0.865],[0.183,-0.129],[-0.048,-1.861],[0.382,0.044],[1.005,1.01],[3.101,1.597],[0.294,0.478]],"v":[[-137.92,123.044],[-137.724,125.643],[-137.708,133.031],[-137.297,135.166],[-137.175,135.963],[-137.734,145.563],[-138.17,146.824],[-139.096,145.499],[-139.078,142.433],[-140.204,141.071],[-141.249,141.886],[-141.625,142.632],[-142.839,143.218],[-143.468,141.321],[-142.285,135.245],[-142.228,129.302],[-142.478,124.603],[-143.18,123.824],[-146.817,122.381],[-149.431,122.229],[-149.269,121.596],[-151.105,120.403],[-155.27,118.321],[-154.979,115.603],[-154.453,115.217],[-152.316,114.097],[-151.351,114.585],[-147.764,116.612],[-139.307,122.602]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.995,0.264],[0.678,-3.194],[0.78,-1.07],[-0.453,0.758],[-1.039,2.857],[-0.481,1.586],[0.764,0.783],[0.044,0.485],[-0.83,2.603],[-0.765,-0.989],[-0.153,-0.101],[-0.242,-1.635],[-0.524,-0.062],[-0.153,0.364],[-0.296,0.453],[-0.096,-0.088],[-0.645,-1.433],[-0.317,-1.4],[0.006,-0.675],[-0.041,-0.549],[0.872,-1.536],[0.703,-1.071],[0.688,-2.281],[-0.918,-2.947],[0.938,-0.201],[0.317,-0.181],[0.816,0.74],[0.585,-0.215],[0.187,-0.4],[-0.935,0.552],[0.497,1.265],[0.047,-0.041],[0.712,2.693],[-0.955,2.548],[-1.586,3.535],[-0.242,0.081]],"o":[[-0.585,3.213],[-0.212,1.001],[1.337,-0.269],[1.539,-2.576],[0.568,-1.561],[0.284,-0.935],[-0.381,-0.39],[-0.242,-2.679],[0.354,-1.11],[0.106,0.138],[0.586,1.548],[0.052,0.353],[0.544,0.064],[0.214,-0.51],[0.149,-0.227],[-0.059,1.38],[-0.718,0.509],[-0.229,0.638],[-0.924,0.079],[0.138,1.825],[-0.632,1.114],[-1.315,2.003],[-0.945,3.135],[0.255,0.819],[-0.34,0.073],[-0.548,-0.967],[-0.355,-0.321],[-0.522,0.192],[-0.9,-0.572],[1.328,-0.784],[-0.071,-0.005],[-2.145,1.86],[-0.635,-2.402],[1.36,-3.628],[0.242,-0.081],[-0.585,1.32]],"v":[[-139.663,42.754],[-141.454,52.388],[-142.093,55.488],[-139.713,53.693],[-135.325,45.831],[-133.612,41.154],[-134.131,38.411],[-134.796,37.065],[-134.209,29.111],[-132.551,28.801],[-132.097,29.109],[-130.931,33.898],[-130.362,34.901],[-129.625,34.048],[-128.989,32.524],[-128.743,32.783],[-129.055,36.912],[-130.727,38.855],[-131.056,40.829],[-131.995,42.273],[-133.26,47.25],[-135.272,50.526],[-138.433,56.914],[-137.356,66.007],[-137.865,67.336],[-138.82,67.861],[-140.925,65.345],[-142.136,64.621],[-142.538,65.849],[-142.609,64.036],[-141.717,60.933],[-141.957,60.923],[-145.27,59.955],[-145.924,52.638],[-141.491,41.901],[-140.764,41.657]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.267,0.874],[-0.67,0.844],[-0.411,0.5],[-1.195,-0.182],[-0.031,0.909],[0.163,5.981],[0.75,2.556],[0.688,0.03],[0.137,-0.407],[0.688,-0.178],[1.079,-0.549],[0.107,1.779],[-0.015,0.836],[0.797,-0.37],[-2.08,-2.803],[-2.03,-2.025],[-0.014,0.382],[0.004,0.975],[-0.857,0.336],[-0.68,-0.517],[0.249,-0.705],[1.047,-3.114],[0.59,0.074],[0.007,0.379],[1.364,1.525],[1.888,1.447],[0.486,1.604],[-0.215,0.159],[0.525,0.995],[-2.544,1.108],[-0.231,-0.451],[0.219,-0.236],[0.166,-0.163],[-0.459,-1.855],[-0.789,0.365],[-1.053,0.481],[0.776,1.696],[0.191,1.324],[-1.318,-0.567],[-0.784,0.023],[-0.22,-1.157],[-0.007,-8.718],[0.358,-1.323],[1.054,-0.545],[-0.551,-0.305],[1.084,-0.813],[0.213,-0.441],[0.429,0.303],[-0.102,0.141],[0.349,0.71],[0.715,-0.004],[1.199,0.048]],"o":[[1.054,0.154],[0.402,-0.506],[0.729,-0.885],[0.691,0.105],[0.207,-5.988],[-0.071,-2.588],[-0.145,-0.493],[-0.525,-0.023],[-0.257,0.763],[-1.174,0.304],[-1.555,0.792],[-0.05,-0.833],[0.013,-0.737],[-2.403,1.117],[1.732,2.334],[0.562,0.56],[0.037,-0.974],[-0.004,-0.859],[0.867,-0.34],[0.751,0.571],[-1.096,3.097],[-0.215,0.638],[-0.708,-0.089],[-0.038,-2.158],[-1.563,-1.747],[-1.503,-1.152],[-0.037,-0.121],[0.865,-0.64],[2.324,-1.558],[0.233,-0.102],[0.181,0.353],[-0.158,0.17],[-1.462,1.437],[0.23,0.931],[1.05,-0.486],[1.651,-0.754],[-0.536,-1.172],[1.163,-0.672],[0.865,0.372],[0.227,1.19],[0.01,8.718],[0.001,1.339],[-0.285,1.052],[-0.421,0.218],[1.175,0.652],[-0.372,0.279],[-0.391,-0.05],[0.116,-0.156],[0.33,-0.456],[-0.34,-0.692],[-1.201,0.007],[-0.65,-0.026]],"v":[[220.955,7.908],[223.508,6.87],[224.869,5.476],[227.639,4.271],[228.642,3.308],[228.648,-14.654],[228.167,-22.451],[227.437,-23.76],[226.818,-22.65],[225.289,-21.373],[221.94,-20.055],[218.976,-21.836],[218.967,-24.344],[217.982,-25.039],[215.607,-17.797],[221.902,-11.954],[222.58,-12.503],[222.594,-15.429],[223.719,-17.321],[226.071,-16.887],[226.237,-14.848],[222.967,-5.55],[221.825,-4.581],[221.499,-5.714],[219.162,-11.212],[214.095,-16.117],[212.47,-20.853],[213.02,-21.411],[213.647,-23.823],[221.115,-27.487],[221.958,-27.486],[221.606,-26.653],[221.115,-26.158],[220.033,-21.136],[221.599,-20.449],[224.759,-21.889],[225.829,-24.972],[224.27,-28.514],[227.944,-28.937],[230.264,-29.42],[230.931,-25.915],[230.959,0.239],[230.665,4.237],[229.01,6.815],[228.982,7.578],[229.184,10.601],[228.186,11.532],[226.944,11.353],[227.269,10.918],[228.066,9.468],[226.244,8.736],[222.64,8.725]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-6.043],[1.976,0.556],[3.909,0.47],[1.531,-0.028],[-0.557,0.462],[-2.731,0.982],[-1.561,0.792],[-0.865,0.658],[-0.348,-0.286],[-0.379,0.269],[0.311,0.381],[-0.361,0.175],[-1.917,-0.012]],"o":[[-2.054,0.116],[-3.743,-1.053],[-1.447,-0.174],[-0.65,0.012],[2.15,-1.783],[1.564,-0.563],[0.947,-0.48],[0.528,-0.402],[0.36,0.296],[0.43,-0.305],[-0.191,-0.234],[1.602,-0.775],[0,6.043]],"v":[[279.73,111.086],[273.828,110.048],[262.497,107.142],[258.178,106.261],[257.872,104.492],[264.919,100.073],[269.464,97.525],[272.364,96.259],[273.544,96.612],[274.7,96.7],[274.764,95.619],[274.783,94.936],[279.73,92.956]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.166,1.192],[-0.683,0.861],[-2.324,2.089],[-1.827,0.127],[-2.055,0.448],[-0.64,-0.143],[-0.537,-0.004],[-3.617,-0.697],[-1.858,-2.082],[1.547,-0.318],[2.035,1.53],[1.361,-2.072],[0.773,-0.583],[1.117,1.574],[0.724,-0.001],[0,0],[0.964,-0.245],[0.443,-0.115],[2.512,-2.251],[1.687,-1.629],[0.937,-0.9],[0.448,-0.093],[-0.493,1.074]],"o":[[1.304,-0.314],[1.973,-2.489],[1.33,-1.195],[2.12,-0.148],[0.622,0.324],[0.48,0.428],[3.649,0.03],[2.713,0.523],[1.063,1.192],[-2.624,0.539],[-2.004,-1.507],[-0.506,0.77],[-2.187,1.649],[-0.34,-0.479],[0,0],[-0.338,-1.207],[-0.443,0.113],[-3.344,0.871],[-1.728,1.549],[-1.399,0.025],[-0.301,0.289],[-1.167,0.241],[0.678,-1.478]],"v":[[201.109,-130.413],[203.384,-132.897],[210.169,-139.412],[215.261,-141.226],[221.475,-142.289],[223.421,-142.081],[225.022,-141.84],[235.945,-141.279],[242.9,-137.548],[242.128,-135.09],[235.146,-136.982],[230.767,-136.367],[228.964,-134.312],[222.843,-135.446],[221.484,-136.496],[221.46,-136.529],[219.276,-137.483],[217.97,-137.053],[209.153,-132.226],[204.163,-127.276],[200.829,-125.539],[199.845,-124.826],[198.54,-126.261]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.41,-0.367],[1.477,-1.232],[1.578,-1.014],[-0.135,-0.427],[-0.045,-2.384],[0.678,-0.217],[0.296,-0.468],[2.849,-0.592],[1.476,-0.347],[0.564,-0.591],[0.545,-0.323],[0.34,1.295],[0.099,0.401],[-1.312,2.825],[-1.677,1.014],[0.416,0.271],[-1.065,0.642],[-0.726,0.528],[-2.492,1.517],[0.534,1.439],[-0.119,0.65],[-1.124,0.227],[0.438,-0.456],[0.823,-0.762],[-0.182,1.868],[-0.444,2.428],[-0.56,-0.019],[-0.007,-0.447],[-0.005,-2.74]],"o":[[0.201,2.479],[-1.43,1.193],[-0.324,0.208],[0.776,2.458],[0.016,0.869],[-0.56,0.179],[-1.79,2.834],[-1.485,0.309],[-0.764,0.18],[-0.444,0.465],[-1.144,0.678],[-0.105,-0.399],[3.241,-0.627],[1.346,-1.2],[-0.61,-0.397],[0.756,-0.855],[0.795,0.28],[2.337,-1.699],[1.673,-1.019],[0.119,-0.65],[1.069,0.464],[0.979,0.375],[-0.56,0.583],[2.327,-0.238],[0.239,-2.446],[0.078,-0.425],[0.604,0.021],[0.046,2.739],[0.072,0.503]],"v":[[212.845,50.583],[209.515,55.241],[204.829,58.346],[204.253,59.186],[203.633,66.281],[202.391,67.747],[201.038,68.656],[193.383,72.32],[188.919,73.207],[186.915,74.395],[185.461,75.668],[183.265,74.706],[182.967,73.504],[189.396,67.868],[193.361,64.064],[191.919,63.125],[193.851,60.328],[195.952,59.878],[202.76,54.526],[204.158,51.103],[204.516,49.153],[207.812,49.417],[207.925,50.781],[205.922,52.652],[210.622,48.235],[211.159,40.889],[211.682,39.768],[212.252,40.991],[212.288,49.211]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.304,-0.314],[0,0.766],[0.952,-0.952],[1.62,-1.209],[0.863,0.16],[-0.376,0.665],[-2.359,1.698],[1.377,0.819],[-0.563,0.727],[-1.017,0.695],[0.243,-0.318],[0.229,-0.534],[-0.52,0.1],[-1.501,1.106],[-1.723,0.614],[-2.6,1.528],[1.954,-0.509],[3.154,-1.857],[0.942,0.061],[1.193,-0.458],[0.685,0.081],[0.128,0.537],[-0.335,0.139],[-0.761,0.682],[-1.338,0.251],[-1.919,0.886],[-0.31,1.117],[-0.884,0.004],[-1.063,0.053],[0.741,-0.075],[-0.315,-0.291],[-0.753,0.092],[-0.449,0.111],[-0.67,-0.221],[-2.472,-0.46],[-0.228,0.653],[0.771,0.401],[1.407,0.804],[0.041,0.123],[-1.199,-0.677],[-0.674,0.09],[-1.322,1.206],[-1.368,0.552],[0.11,-0.368],[0.045,-0.081],[-0.106,-0.007],[-1.26,0.398],[0.425,-0.261],[2.547,-1.58],[-0.246,-0.544],[-0.273,0.081],[-3.218,0.861],[-1.671,-0.395],[-0.729,0.291],[-0.855,-0.789],[2.083,-0.365],[1.814,-1.017],[1.342,-1.065],[0.525,0.219],[1.229,0.064],[2.159,-0.203],[1.361,-0.49],[-1.399,-0.216],[2.12,-0.148],[1.33,-1.195],[1.973,-2.489]],"o":[[0,-0.404],[-1.278,1.1],[-1.443,1.441],[-0.613,0.458],[-0.792,-0.377],[1.388,-2.456],[1.341,-0.965],[-0.551,-0.328],[0.774,-1],[0.423,0.621],[-0.335,0.438],[-0.228,0.533],[1.945,-0.375],[1.574,-1.16],[2.749,-0.979],[-1.296,-1.517],[-3.573,0.931],[-0.743,0.438],[-1.518,-0.751],[-0.647,0.248],[-0.439,-0.052],[-0.057,-0.24],[0.987,-0.41],[0.947,-0.849],[2.055,-0.385],[1.046,-0.483],[0.226,-0.813],[1.064,-0.004],[-0.536,0.632],[-0.901,0.092],[0.631,0.583],[0.455,-0.056],[0.687,-0.17],[2.397,0.791],[0.482,0.09],[0.215,-0.616],[-1.436,-0.747],[-0.041,-0.123],[1.279,-0.37],[0.604,0.341],[1.991,-0.267],[1.026,-0.937],[-0.11,0.368],[-0.045,0.081],[0.106,0.007],[1.261,-0.399],[-0.127,0.598],[-2.553,1.571],[-0.348,0.216],[0.291,0.645],[3.176,-0.938],[1.668,-0.446],[0.812,0.192],[1.292,-0.516],[-2.04,0.599],[-2.063,0.362],[-1.454,0.815],[-0.446,0.354],[-1.101,-0.459],[0.641,2.025],[-1.36,0.128],[1.4,0.217],[-2.055,0.448],[-1.827,0.127],[-2.324,2.089],[-0.683,0.861]],"v":[[201.109,-130.413],[201.109,-131.989],[197.798,-129.114],[193.077,-125.303],[190.917,-124.547],[190.574,-126.119],[195.822,-132.604],[195.686,-134.649],[195.359,-136.053],[198.118,-138.473],[197.629,-137.369],[196.584,-136.081],[197.067,-135.486],[202.195,-138.049],[207.24,-140.384],[215.531,-143.336],[210.951,-144.78],[201.03,-140.218],[198.624,-139.298],[194.873,-138.315],[192.966,-137.888],[191.768,-138.299],[192.512,-139.206],[194.901,-141.068],[198.322,-142.765],[204.222,-144.821],[206.237,-146.798],[208.065,-147.956],[211.256,-148.103],[209.236,-147.39],[207.123,-145.713],[209.349,-145.537],[210.691,-145.882],[212.753,-145.875],[220.096,-144.181],[221.413,-144.445],[220.817,-146.084],[216.589,-148.479],[216.467,-148.848],[220.206,-148.584],[222.049,-148.43],[226.453,-151.357],[229.567,-154.132],[229.238,-153.029],[229.103,-152.786],[229.422,-152.767],[233.203,-153.962],[232.1,-152.994],[224.448,-148.268],[223.975,-147.298],[224.863,-147.269],[234.244,-150.531],[239.121,-150.749],[241.651,-150.718],[244.633,-149.959],[238.391,-148.82],[232.469,-146.945],[227.936,-145.012],[226.345,-145.16],[222.871,-145.954],[221.352,-143.743],[217.276,-142.939],[221.475,-142.289],[215.261,-141.226],[210.169,-139.412],[203.384,-132.897]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.392,-2.136],[0.043,-0.127],[0.072,0.178],[0.24,0.65],[0.313,0.023],[0.059,-0.284],[-0.472,-2.233],[0.857,-0.404],[0.433,0.396],[0.423,2.909],[-0.051,1.526],[0.809,0.563],[-0.459,1.246],[-0.726,0.479],[0.523,1.779],[-0.791,1.053],[-1.042,1.507],[-0.126,-0.688],[-1.376,0.108],[0.638,1.131],[-0.409,0.407],[-0.482,-0.172],[-0.967,-0.295],[0.172,-1.253],[0.16,0.073],[0.691,-1.017],[-0.543,-1.767],[-0.028,-0.754],[0.511,-1.271],[0.11,0.457],[0.52,1.862],[0.205,0.416],[0.555,0.006],[0.107,-0.474],[-0.446,-0.972],[0.006,-2.863],[-0.143,-0.822],[-1.785,-0.384],[-0.117,-1.204]],"o":[[-0.009,0.139],[-0.118,0.344],[-0.26,-0.642],[-0.075,-0.202],[-0.343,-0.026],[-0.426,2.039],[0.145,0.688],[-0.821,0.387],[-2.003,-1.833],[-0.218,-1.501],[0.033,-0.994],[-1.101,-0.767],[0.268,-0.729],[1.29,-0.85],[-0.387,-1.315],[1.107,-1.474],[0.651,0.163],[0.243,1.329],[0.931,-0.073],[-0.249,-0.441],[0.393,-0.391],[0.952,0.339],[0.611,0.379],[-0.184,-0.018],[-0.809,-0.368],[-0.847,1.247],[0.028,0.754],[-0.264,1.287],[-0.289,-0.007],[-0.46,-1.905],[-0.122,-0.438],[-0.315,-0.639],[-0.629,-0.007],[-0.277,1.229],[1.103,2.404],[-0.001,0.645],[0.761,-0.868],[0.117,1.204],[-0.441,2.134]],"v":[[-131.004,7.35],[-131.035,7.764],[-131.354,7.741],[-132.104,5.804],[-132.414,5.267],[-132.936,5.8],[-134.101,11.948],[-134.731,13.91],[-136.308,13.08],[-140.941,6.588],[-141.032,2.008],[-142.159,-0.192],[-144.002,-6.2],[-142.637,-8.061],[-141.003,-11.757],[-140.091,-15.42],[-137.113,-20.041],[-135.998,-18.802],[-133.422,-16.925],[-132.445,-18.362],[-132.358,-19.618],[-131.094,-19.784],[-128.196,-18.885],[-126.614,-17.469],[-127.163,-17.532],[-129.506,-17.417],[-131.032,-13.268],[-130.947,-11.005],[-131.211,-7.107],[-132.053,-7.161],[-134.853,-12.031],[-135.464,-13.276],[-136.991,-14.047],[-137.764,-12.887],[-136.642,-9.88],[-133.685,-2.523],[-133.336,-0.411],[-131.342,-2.666],[-130.99,0.944]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,-2.449],[0.051,-1.302],[-0.051,-2.227],[0.039,-1.301],[0.439,-0.184],[0.275,0.133],[0.26,1.965],[-0.001,0.695],[0.524,0.199],[0.142,-0.365],[0.674,0.151],[0.051,0.767],[-0.002,1.019],[-0.043,1.788],[-0.013,0.231],[0.032,1.499],[-0.033,2.413],[-0.472,6.667],[-0.137,1.151],[-0.205,-0.367],[-0.765,0.893],[-0.283,-0.308],[-0.782,0.451],[0.323,-2.563],[-0.964,-0.065],[0.286,-2.309],[-0.694,-0.872],[0.004,-0.151],[0.693,-0.16],[-0.222,-0.609],[0.351,-2.227],[0.009,1.242],[0.359,0.711],[0.533,-0.249],[-0.189,-0.41],[0.264,-0.613]],"o":[[-1.607,0.296],[-0.087,2.213],[0.03,1.32],[-0.01,0.342],[-0.356,0.149],[-2.277,-1.099],[-0.09,-0.683],[0.001,-0.811],[-0.542,-0.206],[-0.196,0.505],[-0.749,-0.168],[-0.068,-1.014],[1.891,-0.04],[0.006,-0.232],[1.407,-0.085],[-0.052,-2.403],[0.092,-6.673],[0.079,-1.114],[0.49,0.246],[0.546,0.978],[0.2,-0.234],[1.135,1.234],[-0.136,2.554],[-0.113,0.895],[-0.107,2.303],[-0.139,1.12],[-0.004,0.151],[0.034,0.576],[-0.957,0.221],[0.791,2.165],[-0.5,-1.203],[-0.006,-0.807],[-0.244,-0.483],[-0.511,0.239],[0.278,0.602],[-0.999,2.316]],"v":[[-131.09,102.473],[-133.188,105.354],[-133.548,111.988],[-132.957,115.801],[-133.204,116.793],[-134,116.356],[-136.292,111.089],[-136.313,109.006],[-137.53,107.876],[-138.377,108.574],[-139.425,109.398],[-140.747,107.996],[-140.756,104.941],[-138.823,103.113],[-138.784,102.419],[-136.871,100.308],[-137.156,93.1],[-136.847,73.081],[-136.452,69.709],[-135.488,70.635],[-133.555,70.853],[-132.75,70.544],[-130.224,70.075],[-130.152,77.736],[-128.791,79.279],[-128.488,86.16],[-127.628,89.129],[-127.641,89.581],[-128.32,90.903],[-128.741,92.232],[-128.428,98.849],[-128.745,95.136],[-129.24,92.854],[-130.465,92.218],[-130.615,93.451],[-130.239,95.308]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.59,-0.681],[3.361,0.196],[1.045,-0.719],[-0.279,-0.36],[-1.178,1.439],[-1.097,-1.076],[0.619,-2.587],[0.572,-0.736],[0.482,0.174],[-0.103,0.297],[1.561,0.9],[0.536,0.258],[0.685,3.638],[-0.45,0.452],[-0.506,-0.182],[-0.585,2.107],[-1.141,-0.73],[-0.338,0.097],[-1.223,-0.766],[-0.111,0.54],[-2.838,0.128],[-0.597,0.552],[-0.217,-1.277],[-0.065,-0.363],[-0.114,-0.569],[-1.463,0.178],[-0.281,0.365],[-1.934,-0.86],[0.288,-1.025],[0.436,0.363],[0.578,0.036],[0.265,-0.58],[-0.48,-0.212],[-0.145,-0.177],[0.345,-0.495],[0.446,0.201],[0.155,0.099],[1.747,-0.192],[0.036,-0.695],[-0.545,-0.271],[-1.013,-1.233],[-0.271,0.092],[-0.604,-0.096],[-2.531,0.648],[-1.287,-0.607],[-0.744,-0.594],[-0.225,-0.217],[0.739,-0.19],[3.086,-0.2],[1.676,-2.895]],"o":[[-2.886,1.431],[-1.461,-0.085],[-0.352,0.242],[1.134,1.462],[0.958,-1.17],[-2.596,-0.325],[-0.225,0.939],[-0.282,0.363],[-0.49,-0.177],[0.707,-2.038],[-0.52,-0.3],[-3.574,-1.721],[-0.116,-0.615],[0.493,-0.496],[1.998,0.717],[0.276,-0.993],[0.398,0.255],[0.808,-0.231],[0.062,0.039],[0.594,-2.903],[0.782,-0.035],[0.922,-0.852],[0.062,0.364],[0.057,0.318],[1.234,-0.985],[0.466,-0.057],[1.302,-1.69],[0.84,0.373],[-0.514,0.008],[-0.438,-0.365],[-0.834,-0.052],[-0.306,0.669],[0.201,0.089],[0.243,0.296],[-0.326,0.467],[-0.169,-0.076],[-1.616,-1.03],[-0.687,0.076],[-0.037,0.715],[1.312,0.652],[0.211,0.257],[0.593,-0.201],[2.511,0.398],[1.212,-0.31],[-0.451,0.123],[0.243,0.194],[-0.844,0.131],[-3.075,0.791],[-2.897,0.187],[-0.493,0.852]],"v":[[203.376,-23.551],[194.254,-20.809],[190.83,-19.229],[190.757,-18.261],[195.219,-18.209],[198.891,-18.378],[194.86,-15.59],[193.622,-13.148],[192.563,-12.737],[192.213,-13.669],[190.224,-17.682],[188.72,-18.676],[183.051,-27.178],[183.338,-28.894],[184.862,-28.733],[188.07,-30.421],[189.788,-31.379],[190.797,-31.474],[193.213,-32.35],[193.857,-33.766],[197.947,-37.423],[199.934,-38.179],[201.682,-37.471],[201.862,-36.378],[202.102,-35.175],[206.165,-36.763],[207.127,-37.71],[212.873,-39.171],[213.992,-37.254],[212.556,-37.633],[210.998,-38.11],[209.564,-37.034],[210.296,-35.975],[210.812,-35.517],[211.25,-34.497],[209.995,-34.362],[209.496,-34.605],[204.385,-35.146],[203.193,-34.079],[204.285,-32.816],[208.182,-30.778],[208.949,-30.705],[210.719,-30.683],[218.263,-30.722],[222.04,-30.898],[221.74,-30.12],[222.418,-29.472],[219.959,-29.661],[210.683,-29.162],[203.383,-25.568]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.3,-0.551],[1.535,-0.671],[0.856,-0.542],[0.154,-0.457],[0.906,0.345],[-0.225,1.003],[-1.153,0.481],[-0.234,0.149],[1.4,1.395],[0.782,0.913],[0.686,-0.607],[0.564,0.323],[0.177,0.837],[0.619,2.452],[0.047,0.125],[-0.188,1.417],[0.596,1.197],[-0.478,1.386],[-1.452,2.275],[-0.765,1.875],[-0.081,0.265],[-0.29,-0.004],[-0.024,-0.285],[-0.126,-0.219],[-0.684,-0.124],[-0.361,0.471],[-0.736,0.384],[-0.562,-0.579],[1.107,-1.474],[-0.387,-1.315],[1.29,-0.85],[0.268,-0.729],[-1.101,-0.767],[0.033,-0.994],[-0.218,-1.501],[-2.003,-1.833],[-0.821,0.387],[0.145,0.688],[-0.426,2.039],[-0.343,-0.026],[-0.075,-0.202],[-0.26,-0.642],[-0.118,0.344],[-0.009,0.139],[-0.046,-0.123],[-0.754,0.026],[-0.087,0.413],[-0.561,1.33],[0.37,0.847],[-0.008,2.417],[-0.342,1.638],[0.605,1.076],[0.653,-0.337],[-0.847,1.247],[-0.809,-0.368],[-0.184,-0.018],[-0.093,-0.412],[-0.83,-2.12],[-0.765,-1.672],[0.771,-0.555],[-1.316,-1.232],[0.024,-1.381],[0.167,0.062],[-0.006,-2.761],[-0.024,-0.277],[-0.348,-0.117],[0.833,-1.548],[-1.021,-1.578],[1.066,-1.485],[-0.276,-0.913]],"o":[[-1.889,-0.256],[-0.905,0.396],[-0.349,0.221],[-0.203,0.6],[-0.908,-0.346],[0.251,-1.116],[0.253,-0.106],[1.687,-1.074],[-0.85,-0.847],[-0.507,-0.592],[-0.594,0.526],[-0.596,-0.342],[-0.521,-2.469],[-0.034,-0.133],[-0.378,-1.009],[0.154,-1.166],[-0.673,-1.351],[0.867,-2.517],[1.151,-1.804],[0.104,-0.256],[0.069,-0.224],[0.378,0.006],[0.023,0.277],[0.239,0.416],[0.721,0.131],[0.441,-0.577],[0.702,0.372],[-1.043,1.507],[-0.791,1.053],[0.523,1.779],[-0.726,0.479],[-0.459,1.246],[0.809,0.563],[-0.051,1.526],[0.423,2.909],[0.433,0.396],[0.857,-0.404],[-0.472,-2.233],[0.059,-0.284],[0.313,0.023],[0.24,0.65],[0.072,0.178],[0.043,-0.127],[0.081,0.11],[0.143,0.378],[0.721,-0.025],[0.294,-1.389],[0.365,-0.864],[0.008,-2.417],[0.015,-1.706],[0.309,-1.48],[-0.675,0.462],[-0.543,-1.768],[0.691,-1.017],[0.16,0.073],[-0.011,0.462],[-1.8,0.05],[0.67,1.712],[0.366,0.8],[-1.463,1.053],[0.756,0.708],[-0.183,-0.02],[-2.515,-0.928],[0.001,0.278],[0.031,0.364],[1.601,0.539],[-0.928,1.724],[-0.885,1.623],[-0.555,0.774],[-0.3,0.551]],"v":[[-130.208,18.517],[-134.929,20.313],[-137.624,21.688],[-138.519,22.509],[-139.787,23.572],[-140.971,21.473],[-139.06,18.899],[-138.348,18.468],[-138.086,16.023],[-140.494,13.339],[-142.085,13.206],[-144.118,14.352],[-144.699,11.935],[-145.227,4.478],[-145.264,4.064],[-146.319,0.959],[-147.671,-2.765],[-147.817,-6.769],[-144.884,-14.179],[-143.551,-20.027],[-143.302,-20.82],[-142.877,-21.289],[-142.45,-20.7],[-142.354,-19.881],[-141.713,-18.615],[-140.29,-19.553],[-139.079,-21.365],[-137.113,-20.042],[-140.091,-15.42],[-141.003,-11.757],[-142.637,-8.061],[-144.002,-6.2],[-142.159,-0.192],[-141.032,2.008],[-140.941,6.588],[-136.308,13.08],[-134.731,13.91],[-134.101,11.948],[-132.936,5.8],[-132.414,5.267],[-132.104,5.804],[-131.354,7.741],[-131.035,7.764],[-131.004,7.35],[-130.767,7.681],[-130.172,8.703],[-129.619,7.649],[-128.81,3.471],[-128.814,0.928],[-128.789,-6.322],[-128.668,-11.426],[-129.607,-14.88],[-131.032,-13.268],[-129.506,-17.417],[-127.163,-17.532],[-126.614,-17.47],[-126.016,-16.427],[-127.659,-12.854],[-125.482,-7.785],[-125.962,-5.929],[-126.047,-2.503],[-124.019,-0.126],[-124.565,-0.19],[-127.074,1.64],[-127.056,2.475],[-126.456,3.144],[-125.635,5.269],[-125.35,10.166],[-128.762,14.437],[-129.309,16.864]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.373,-0.013],[0.024,-0.683],[-0.497,0.081],[-0.017,0.522]],"o":[[-0.603,0.306],[-0.02,0.566],[0.498,-0.081],[0.016,-0.499]],"v":[[-198.906,-224.288],[-199.855,-222.759],[-197.922,-220.798],[-197.103,-221.762]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.206,0.622],[0.363,0.097],[0.054,-0.4],[0.064,-0.731],[-0.587,-0.281],[-0.372,0.371],[0.25,0.419]],"o":[[0.25,-0.504],[-0.49,-0.131],[-0.099,0.727],[-0.05,0.564],[0.439,0.21],[0.536,-0.536],[-0.332,-0.555]],"v":[[-181.671,-229.853],[-182.141,-230.637],[-182.845,-230.018],[-183.11,-227.831],[-182.541,-226.391],[-181.275,-226.662],[-181.355,-228.169]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[1.013,0.416],[-0.281,-0.861],[-0.638,-0.855],[-0.403,0.404],[0.357,0.415]],"o":[[-1.199,-0.015],[0.332,1.017],[0.294,0.394],[0.454,-0.455],[-0.716,-0.832]],"v":[[-188.999,-226.051],[-190.31,-224.732],[-188.741,-221.968],[-187.7,-221.859],[-187.451,-223.373]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.816,0.017],[0.465,-0.182],[-0.425,-0.463],[-1.016,-0.046],[-0.138,0.949]],"o":[[-0.27,0.07],[-0.674,0.263],[0.647,0.705],[0.8,0.036],[0.072,-0.494]],"v":[[-195.864,-220.215],[-197.103,-219.881],[-197.475,-218.547],[-195.029,-217.127],[-193.283,-218.311]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.158,-1.253],[-0.328,-0.372],[-0.129,0.129],[-0.817,1.642],[0.831,0.393],[0.639,-0.926]],"o":[[-0.062,0.727],[0.156,0.177],[1.273,-1.279],[0.615,-1.237],[-0.755,-0.358],[-0.963,1.395]],"v":[[-180.888,-231.463],[-180.594,-229.895],[-180.129,-229.997],[-176.63,-234.104],[-177.917,-236.111],[-179.889,-235.632]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.072,-1.505],[-0.363,-0.344],[-0.055,0.116],[-1.034,0.201],[-0.167,0.48],[-0.56,2.149],[0.488,0.348],[0.631,-0.377],[0.187,-0.2],[1.202,-1.459]],"o":[[-0.026,0.365],[0.047,0.045],[0.599,-1.265],[0.544,-0.106],[0.729,-2.09],[0.119,-0.456],[-0.556,-0.397],[-0.234,0.14],[-1.296,1.381],[-0.772,0.937]],"v":[[-191.522,-215.177],[-191.141,-214.004],[-190.704,-214.203],[-187.834,-215.421],[-186.348,-215.985],[-183.694,-222.029],[-183.414,-223.38],[-185.382,-223.241],[-186.022,-222.718],[-189.871,-218.539]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.188,0.421],[-1.176,1.211],[-0.351,-0.884],[-0.412,-0.928],[-0.573,-0.002],[-0.226,0.485],[-1.325,3.134],[-0.276,1.389],[-1.114,-0.599],[0.672,-1.999],[0.764,-1.622],[-0.874,-0.309],[-0.701,-0.436],[0.935,-0.781],[2.062,0.88],[1.054,-2.024],[0.39,-0.785],[-1.07,-0.285],[0.018,-1.247],[-1.877,-1.646],[0.795,-1.715],[-1.077,-0.107],[-0.6,-1.001],[-1.457,1.215],[-1.476,-1.434],[-1.027,0.719],[-0.495,-0.561],[-0.969,-0.715],[0.463,-0.195],[0.179,-0.336],[-1.646,-1.41],[1.045,-0.657],[-0.076,-1.36],[-0.685,0.373],[0.013,-1.481],[1.8,-0.238],[0.738,1.15],[2.012,-1.367],[-1.475,0.926],[0.127,0.979],[-1.575,0.547],[0.869,0.353],[1.328,-1.137],[0.928,0.369],[0.591,-0.565],[0.092,-0.104],[0.817,0.946],[1.715,0.757],[-0.648,1.186],[1.109,0.833],[0.154,1.861],[0.578,-0.543],[-0.193,-0.521],[-0.074,-0.117],[-0.569,-0.417],[-0.559,-1.079],[0.641,-0.503],[0.676,0.64],[0.484,0.341],[1.045,0.265],[0.292,1.506],[0.658,-0.189],[-1.039,-1.506],[0.214,-0.336],[0.279,-0.016],[0.347,0.375],[0.39,0.328],[0.658,-0.399],[-0.12,-0.648],[-0.216,-0.801],[-0.78,0.626],[-0.316,-0.297],[0.226,-0.28],[0.279,-0.31],[-1.157,2.042],[0.698,0.224],[2.198,-0.695],[1.387,0.912],[-0.686,1.28],[-0.337,0.314],[-0.735,-1.328],[-0.164,-0.279],[-0.837,1.299],[-0.067,-0.309],[-1.197,-0.707],[-0.5,0.68],[0.565,0.636],[0.347,0.051],[-0.086,0.698],[0.797,0.103]],"o":[[0.919,-1.362],[0.728,-0.749],[0.375,0.943],[0.213,0.479],[0.568,0.002],[1.437,-3.086],[0.491,-1.163],[1.176,0.549],[1.816,0.976],[-0.574,1.706],[-0.498,1.059],[0.78,0.275],[1.056,0.656],[-1.418,1.183],[-2.121,-0.905],[-0.405,0.777],[-0.511,1.027],[1.243,0.331],[-0.034,2.347],[1.271,1.114],[-0.336,0.724],[1.188,0.118],[0.974,1.624],[1.626,-1.355],[0.821,0.797],[0.668,-0.468],[0.749,0.849],[0.273,0.201],[-0.526,0.221],[-0.923,1.736],[0.979,0.838],[-1.367,0.004],[0.017,0.296],[-0.013,1.481],[-0.712,-0.807],[0.881,-1.577],[-1.377,-2.146],[-0.651,-1.509],[0.767,-0.482],[1.887,0.36],[0.88,-0.306],[-1.214,-0.493],[-0.04,-1.016],[-0.976,-0.388],[-0.1,0.096],[-0.805,0.913],[-1.238,-1.434],[-1.132,-0.499],[0.684,-1.252],[-1.508,-1.132],[-0.357,-0.71],[-0.676,0.635],[0.047,0.127],[-0.525,0.663],[0.921,0.674],[0.264,0.509],[-0.637,0.5],[-0.436,-0.413],[-0.786,-0.553],[0.812,-1.624],[-0.134,-0.691],[-1.734,0.498],[0.143,0.207],[-0.168,0.264],[-0.487,0.028],[-0.347,-0.374],[-0.497,-0.419],[-0.664,0.403],[0.151,0.816],[0.171,0.633],[0.579,-0.465],[0.538,0.506],[-0.262,0.324],[-2.789,-1.075],[0.157,-0.278],[-1.871,-0.599],[0.85,-1.488],[-1.209,-0.795],[0.511,-0.049],[1.151,-1.07],[0.157,0.284],[0.79,1.344],[0.333,0.206],[0.302,1.397],[0.643,0.38],[0.48,-0.654],[-0.272,-0.307],[-0.905,-0.132],[0.112,-0.901],[0.188,-0.421]],"v":[[-192.929,-226.028],[-190.167,-230.116],[-188.773,-229.885],[-187.584,-227.081],[-186.488,-226.135],[-185.381,-227.062],[-181.106,-236.336],[-180.289,-240.237],[-176.824,-238.605],[-175.242,-234.474],[-177.124,-229.416],[-176.364,-227.776],[-174.11,-226.719],[-173.889,-224.319],[-178.809,-223.099],[-182.838,-221.53],[-184.002,-219.172],[-183.121,-217.147],[-181.435,-214.806],[-179.049,-208.686],[-177.986,-204.5],[-177.17,-203.121],[-174.684,-201.107],[-171.46,-200.608],[-167.795,-200.533],[-165.103,-200.137],[-163.406,-199.816],[-161.396,-197.084],[-161.527,-196.003],[-162.112,-194.994],[-161.332,-190.37],[-161.647,-188.075],[-164.056,-185.596],[-163.369,-185.029],[-163.409,-180.587],[-165.643,-182.913],[-166.615,-186.729],[-170.8,-187.768],[-169.722,-191.394],[-168.666,-193.66],[-163.951,-195.332],[-163.953,-197.931],[-167.789,-198.112],[-169.212,-200.316],[-171.295,-199.279],[-171.591,-198.984],[-174.045,-198.946],[-178.541,-202.126],[-179.406,-204.558],[-179.757,-208.14],[-182.37,-212.389],[-185.01,-213.146],[-184.508,-211.598],[-184.29,-211.247],[-183.897,-209.803],[-181.236,-207.655],[-181.022,-205.957],[-183.175,-206.088],[-184.461,-207.347],[-186.498,-209.304],[-186.984,-213.855],[-188.026,-214.452],[-188.731,-212.486],[-188.436,-211.807],[-189.192,-211.549],[-190.453,-212.005],[-191.539,-213.086],[-193.271,-213.527],[-193.716,-211.758],[-193.181,-209.327],[-191.938,-208.719],[-190.796,-208.399],[-191.094,-207.422],[-191.927,-206.488],[-193.724,-214.417],[-193.588,-215.372],[-199.308,-216.817],[-200.225,-220.391],[-201.023,-223.498],[-199.889,-224.246],[-197.269,-223.887],[-196.824,-223.022],[-194.931,-222.973],[-194.609,-222.106],[-192.25,-219.002],[-190.376,-219.222],[-190.469,-221.254],[-191.412,-222.03],[-192.315,-223.405],[-193.492,-224.766]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.147,-2.118],[-1.463,0.114],[-1.106,0.103],[-0.107,0.95],[3.834,4.191],[1.823,0.023],[0.733,-1.362],[0.549,0.248],[0.201,1.354],[0.153,1.051],[0.692,0.076],[0.236,-0.586],[0.057,-1.295],[0.093,-1.292],[0.407,0.054],[0.001,0.241],[0,2.276],[0.459,-0.523],[0.55,0.049],[0.134,0.571],[0.42,0.084],[0.958,-1.17],[1.134,1.462],[-0.352,0.242],[-1.461,-0.085],[-2.886,1.432],[-0.979,0.768],[-0.398,-0.232],[0.307,-0.365],[-0.587,-0.087],[-1.104,0.964],[-0.696,-0.076],[0.865,-0.64],[-0.037,-0.121],[-1.503,-1.152],[-1.563,-1.747],[-0.038,-2.158],[-0.708,-0.089],[-0.215,0.638],[-1.096,3.097],[0.751,0.571],[0.867,-0.34],[-0.004,-0.859],[0.037,-0.974],[0.562,0.56],[1.732,2.334],[-2.403,1.117],[0.013,-0.737],[-0.05,-0.833],[-1.555,0.792],[-1.174,0.304],[-0.257,0.763],[-0.525,-0.023],[-0.145,-0.493],[-0.071,-2.588],[0.207,-5.988],[0.691,0.105],[0.729,-0.885],[0.402,-0.506],[1.054,0.154],[0,0],[0.118,0.091]],"o":[[-0.33,-1.438],[1.108,-0.086],[0.991,-0.092],[0.616,-5.453],[-1.087,-1.188],[-1.439,-0.018],[-0.619,0.027],[1.164,-0.853],[-0.156,-1.051],[-0.084,-0.577],[-0.695,-0.077],[-0.495,1.231],[-0.057,1.294],[-0.025,0.355],[-0.399,-0.052],[-0.012,-2.106],[-0.959,0.423],[-0.338,0.385],[-0.626,-0.056],[-0.071,-0.304],[-1.097,-1.076],[-1.178,1.439],[-0.279,-0.36],[1.045,-0.719],[3.361,0.196],[1.24,-0.169],[0.238,-0.187],[0.403,0.234],[-0.626,0.743],[1.231,0.183],[0.597,-0.521],[0.525,0.994],[-0.215,0.159],[0.486,1.604],[1.888,1.447],[1.364,1.525],[0.007,0.379],[0.59,0.074],[1.047,-3.114],[0.249,-0.705],[-0.68,-0.517],[-0.857,0.336],[0.004,0.975],[-0.014,0.382],[-2.03,-2.025],[-2.08,-2.803],[0.797,-0.37],[-0.015,0.836],[0.107,1.779],[1.079,-0.549],[0.688,-0.178],[0.137,-0.407],[0.688,0.03],[0.75,2.556],[0.163,5.981],[-0.031,0.909],[-1.195,-0.182],[-0.411,0.5],[-0.67,0.844],[0,0],[-0.056,-0.172],[-2.439,-1.868]],"v":[[212.88,6.233],[214.297,4.294],[217.619,4.026],[219.162,2.374],[214.859,-12.16],[211.178,-14.668],[207.791,-13],[206.065,-13.435],[207.243,-16.802],[206.955,-19.981],[205.976,-21.336],[204.757,-20.223],[204.18,-16.406],[203.919,-12.529],[203.345,-11.91],[203.093,-12.582],[203.086,-19.069],[201.539,-17.312],[200.373,-16.449],[199.363,-17.628],[198.891,-18.378],[195.219,-18.209],[190.757,-18.261],[190.83,-19.229],[194.254,-20.809],[203.376,-23.551],[206.717,-24.96],[207.455,-25.358],[207.522,-24.442],[208.024,-22.956],[211.718,-23.366],[213.646,-23.822],[213.02,-21.411],[212.47,-20.853],[214.095,-16.117],[219.162,-11.212],[221.499,-5.714],[221.825,-4.581],[222.967,-5.55],[226.237,-14.848],[226.071,-16.887],[223.719,-17.321],[222.594,-15.429],[222.58,-12.503],[221.902,-11.954],[215.607,-17.797],[217.982,-25.039],[218.967,-24.344],[218.976,-21.836],[221.94,-20.055],[225.289,-21.373],[226.818,-22.65],[227.437,-23.76],[228.167,-22.451],[228.648,-14.654],[228.642,3.308],[227.639,4.271],[224.869,5.476],[223.508,6.87],[220.955,7.908],[220.93,7.885],[220.755,7.377]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.076,1.016],[0.891,1.458],[0.801,-0.846],[1.093,1.633],[1.595,-0.009],[1.453,1.567],[0.17,0.14],[0.42,-0.203],[-0.107,-0.389],[-0.083,-0.453],[1.75,0.705],[2.032,0.947],[0.379,0.335],[0.68,-0.674],[0.702,1.421],[-0.202,2.622],[0.14,0.068],[0.09,-0.17],[-0.196,-0.307],[0.721,-0.811],[1.173,-0.559],[1.071,0.93],[0.81,1.006],[0.214,1.346],[-0.34,-0.479],[-2.187,1.649],[-0.506,0.77],[-2.004,-1.507],[-2.624,0.539],[1.063,1.192],[2.713,0.523],[3.649,0.03],[0.48,0.428],[-1.667,0.049],[-1.68,0],[0.103,0.427],[-1.571,-0.723],[-3.4,-1.691],[-1.772,0.609],[0.86,1.03],[1.451,0.697],[3.291,0.919],[2.601,-0.438],[-0.358,-0.694],[0.616,0.517],[-2.793,0.518],[-0.367,-0.165],[-1.069,-0.396],[-4.431,-2.983],[-2.57,-0.472],[-0.343,0.569],[0.2,0.399],[-0.015,1.323],[-1.521,-3.01],[-0.27,-0.245],[-0.267,-0.371],[-0.397,-1.746],[0.402,-1.776],[0.472,-0.09],[0.21,0.525]],"o":[[-0.878,-1.466],[-0.384,-0.628],[-0.811,0.856],[-0.933,-1.393],[-2.297,0.013],[-0.155,-0.167],[-0.317,-0.261],[-0.514,0.249],[0.122,0.445],[0.338,1.844],[-2.079,-0.838],[-0.328,-0.153],[0.376,1.271],[-1.105,1.095],[-1.02,-2.065],[0.011,-0.138],[-0.182,-0.088],[-0.173,0.328],[0.848,1.327],[-0.71,0.799],[-1.372,0.653],[-0.979,-0.85],[-0.919,-1.141],[0.724,-0.001],[1.117,1.574],[0.773,-0.583],[1.361,-2.072],[2.035,1.53],[1.547,-0.318],[-1.858,-2.082],[-3.617,-0.697],[-0.537,-0.004],[1.665,-0.096],[1.648,-0.048],[-0.067,-0.752],[1.731,0.093],[3.46,1.594],[1.534,0.763],[1.3,-0.446],[-1.104,-1.322],[-3.047,-1.465],[-2.507,-0.7],[-0.774,0.13],[-0.494,-0.099],[2.614,-1.624],[-0.423,0.701],[1.04,0.468],[5.006,1.855],[2.055,1.383],[0.464,0.085],[0.245,-0.405],[-0.503,-1.001],[2.125,2.52],[0.148,0.292],[0.341,0.31],[1.093,1.518],[0.388,1.709],[-0.103,0.454],[-0.503,0.096],[-0.624,-1.561]],"v":[[266.107,-120.904],[263.469,-125.298],[261.945,-125.589],[259.052,-126.556],[255.547,-128.233],[250.334,-131.555],[249.941,-132.119],[248.827,-132.514],[248.706,-131.418],[249.048,-130.076],[246.287,-127.772],[240.134,-130.491],[239.233,-131.417],[238.006,-128.917],[235.438,-129.295],[232.59,-135.603],[232.292,-136.025],[231.868,-135.776],[231.574,-134.743],[230.704,-131.907],[228.653,-129.412],[225.081,-129.759],[222.329,-132.514],[221.484,-136.496],[222.843,-135.446],[228.964,-134.312],[230.767,-136.367],[235.146,-136.982],[242.128,-135.09],[242.9,-137.548],[235.945,-141.279],[225.022,-141.84],[223.421,-142.081],[228.417,-142.359],[233.395,-142.369],[232.577,-143.477],[237.499,-142.175],[247.461,-136.653],[252.404,-135.914],[252.929,-137.879],[248.785,-140.321],[239.511,-144.412],[231.88,-145.074],[231.262,-143.838],[229.681,-144.602],[237.943,-147.076],[238.537,-146.135],[241.695,-144.815],[255.928,-137.692],[262.333,-134.011],[263.703,-133.962],[263.134,-135.134],[261.382,-137.995],[267.555,-130.267],[268.412,-129.597],[269.371,-128.6],[270.913,-123.543],[271.482,-118.486],[270.786,-117.585],[269.398,-117.903]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.857,1.554],[0.517,-0.016],[1.53,-0.152],[1.716,-1.94],[-0.132,-0.522],[-0.363,-0.002],[-1.94,-0.15]],"o":[[-0.53,-0.472],[-1.525,0.047],[-2.179,0.216],[-0.206,0.233],[0.107,0.424],[1.952,0.009],[2.465,0.19]],"v":[[225.002,16.45],[223.445,15.986],[218.873,16.201],[212.676,17.85],[211.943,18.464],[212.917,18.79],[218.77,18.834]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.392,-0.05],[0.445,-1.475],[-0.205,-0.928],[0.204,-0.525],[0.378,0.272],[0.881,-0.929],[0.246,-0.69],[0.359,-0.168],[0.411,-0.392],[1.663,-0.057],[2.114,-1.497],[1.287,-1.016],[0.038,1.03],[0,1.208],[2.5,-0.484],[0.059,-0.592],[0.08,0.014],[0.307,-0.071],[0.353,1.707],[0.62,0.312],[0.479,0.012],[0.173,0.838],[-0.587,0.318],[-3.309,0.704],[-1.928,-0.206],[-1.034,0.166],[0.06,0.377],[0.273,-0.032],[0.012,0.666],[-0.27,0.046],[-0.039,0.538],[0.363,0.015],[0.992,0.327],[0.284,0.283],[-1.481,0.488],[-1.282,0.134],[-0.378,0.104],[-0.086,-0.452],[-0.71,-0.226],[-0.202,0.614],[-1.107,-0.172],[-1.129,-0.994],[-0.548,-0.002],[0,0],[-0.65,-0.026],[-1.201,0.007],[-0.34,-0.692],[0.33,-0.456],[0.116,-0.156]],"o":[[1.096,0.52],[-0.276,0.915],[0.123,0.556],[-0.468,0.03],[-1.355,-0.978],[-0.47,0.495],[-0.359,0.168],[-0.532,-0.059],[-1.228,1.173],[-2.645,0.091],[-1.323,0.937],[-0.64,0.505],[-0.042,-1.159],[-2.561,0.475],[-0.396,0.002],[-0.069,0.043],[-0.313,0.048],[-1.558,0.363],[0.227,-0.416],[-0.418,-0.211],[-0.757,-0.018],[-0.159,-0.771],[2.942,-1.592],[1.843,-0.392],[1.077,0.06],[0.345,-0.056],[-0.056,-0.352],[-1.146,0.133],[0.263,-0.089],[0.461,-0.078],[0.049,-0.677],[-1.101,-0.046],[-0.381,-0.125],[-1.126,-1.124],[1.268,-0.418],[0.427,0.279],[0.344,-0.095],[0.235,1.241],[0.427,0.136],[0.334,-1.015],[1.406,0.218],[0.388,0.342],[0,0],[0.267,0.874],[1.199,0.048],[0.715,-0.004],[0.349,0.71],[-0.102,0.141],[0.429,0.303]],"v":[[228.186,11.532],[229.614,14.124],[230.148,16.908],[230.102,18.496],[228.764,18.246],[225.603,18.982],[224.262,20.534],[223.183,21.037],[221.785,21.482],[217.377,23.292],[210.282,25.799],[206.083,28.173],[204.479,26.887],[204.47,23.359],[197.555,26.325],[196.656,26.838],[196.433,26.882],[195.496,27.029],[192.482,24.916],[192.299,23.806],[191.004,23.375],[189.183,22.463],[190.437,20.97],[199.744,17.417],[205.287,16.556],[208.367,15.952],[208.876,15.253],[208.234,14.888],[207.275,13.549],[208.065,13.291],[208.801,12.508],[207.971,11.642],[204.971,10.698],[203.924,10.055],[204.499,7.576],[208.356,7.348],[209.525,7.208],[210.291,7.492],[212.397,8.559],[213.46,7.285],[215.63,5.713],[219.583,7.249],[220.93,7.884],[220.955,7.908],[222.64,8.725],[226.244,8.736],[228.066,9.468],[227.269,10.918],[226.944,11.353]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.459,0.591],[-1.489,2.666],[0.097,1.552],[-1.367,3.549],[-0.012,0.795],[-0.393,3.138],[-0.621,-0.034],[-0.003,-0.349],[0.122,-2.151],[-0.284,-0.162],[-0.216,0.189],[0.112,2.482],[-1.241,0.433],[-0.252,0.689],[-0.081,-0.827],[-0.011,-6.293],[-0.658,-4.159],[-0.068,-1.014],[-0.749,-0.168],[-0.196,0.505],[-0.542,-0.206],[0.001,-0.811],[-0.09,-0.683],[-2.277,-1.099],[-0.356,0.149],[-0.01,0.342],[0.03,1.32],[-0.087,2.213],[-1.607,0.296],[0.06,-0.632],[0.161,-2.591],[0.005,-0.379],[0.404,-1.231],[-0.828,-0.026],[-0.006,-0.265],[0.817,0.184],[2.989,1.073],[1.775,0.057],[1.853,-0.003],[1.72,0.933],[-1.239,0.061],[-1.78,1.494],[0,0],[1.028,0.849],[0.593,0.029],[-0.616,-1.758]],"o":[[-1.497,-2.513],[0.763,-1.366],[-0.238,-3.794],[0.285,-0.74],[0.048,-3.148],[0.037,-0.299],[0.413,0.023],[0.021,2.13],[-0.016,0.274],[0.396,0.227],[1.731,-1.513],[-0.048,-1.058],[0.833,-0.291],[1.095,0.628],[0.619,6.282],[0.007,4.122],[-0.003,1.019],[0.051,0.767],[0.674,0.151],[0.142,-0.365],[0.524,0.199],[-0.001,0.695],[0.26,1.965],[0.275,0.133],[0.439,-0.184],[0.039,-1.301],[-0.051,-2.227],[0.051,-1.302],[-0.084,0.64],[-0.161,2.591],[-0.005,0.379],[-0.6,1.223],[-0.294,0.895],[0.006,0.265],[-0.817,-0.184],[-2.766,-1.589],[-1.633,-0.586],[-1.851,-0.06],[-1.793,-0.141],[1.224,-0.456],[2.055,0.43],[0,0],[0.849,-1.274],[-0.038,-0.521],[-1.305,-0.065],[-0.95,0.541]],"v":[[-152.053,109.73],[-152.457,101.977],[-151.373,97.589],[-149.724,86.582],[-149.406,84.258],[-149.177,74.816],[-148.746,73.994],[-148.054,74.762],[-146.905,80.938],[-146.671,81.689],[-145.877,81.331],[-142.972,75.613],[-141.449,73.282],[-141.002,71.205],[-140.477,73.7],[-140.236,92.577],[-140.756,104.941],[-140.747,107.996],[-139.425,109.398],[-138.377,108.574],[-137.53,107.876],[-136.313,109.006],[-136.292,111.089],[-134,116.356],[-133.204,116.793],[-132.957,115.801],[-133.548,111.988],[-133.188,105.354],[-131.09,102.473],[-130.543,104.128],[-131.026,111.902],[-131.04,113.039],[-131.406,116.839],[-130.505,118.074],[-130.487,118.869],[-132.939,118.317],[-141.648,114.477],[-146.666,113.063],[-152.224,113.058],[-157.599,112.493],[-153.876,112.208],[-148.015,111.373],[-148.009,111.36],[-148.246,108.542],[-149.085,107.721],[-150.246,110.514]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.61,-0.63],[2.531,0.614],[0.507,0.01],[0.076,0.208],[-0.299,0.551],[-0.493,0.037],[-1.297,0.102],[0.121,1.154],[-2.242,-1.099],[-0.817,0.211],[3.053,0.275],[4.217,0.141],[4.063,0.053],[4.579,0.023],[2.015,-0.019],[1.795,1.017],[1.607,0.238],[0.036,0.358],[-0.257,0.103],[-3.84,0.351],[-3.87,0.393],[-5.267,-0.789],[-3.262,-3.262],[-0.802,0.167],[-1.514,0.77],[-0.412,-0.737],[-0.537,0.135],[-0.789,-0.527],[-1.807,-1.207],[0.347,-1.513],[-0.805,-0.757],[0.952,-0.276],[-0.749,-0.585],[0.523,-0.297],[1.557,0.286],[1.077,0.098],[0.567,0.602],[-0.143,0.425],[-0.357,0.004],[-0.784,-0.001],[-1.828,-0.283],[0.189,0.554],[-0.235,0.423],[0.932,0.141],[0.778,-0.026]],"o":[[-2.271,-2.072],[-0.481,-0.117],[-0.138,-0.185],[-0.167,-0.455],[0.285,-0.526],[1.289,-0.096],[1.297,-0.102],[2.451,0.471],[0.551,0.27],[-2.139,-2.039],[-4.198,-0.378],[-4.07,-0.136],[-4.579,-0.06],[-2.014,-0.01],[-2.174,0.02],[-1.372,-0.777],[-0.278,-0.041],[-0.034,-0.338],[3.41,-1.374],[3.901,-0.357],[5.35,-0.543],[4.613,0.691],[0.508,0.508],[0.681,1.525],[0.525,-0.267],[0.254,0.454],[1.007,-0.254],[1.807,1.207],[1.107,0.739],[-0.205,0.895],[0.675,0.634],[0.835,0.652],[-0.488,0.531],[-1.594,-0.033],[-0.63,-1.056],[-0.565,-0.604],[-0.25,-0.265],[0.153,-0.454],[0.784,-0.009],[1.469,0.767],[-0.294,-0.749],[-0.093,-0.273],[0.418,-0.752],[-0.78,-0.019],[-1.637,0.054]],"v":[[-107.042,-130.693],[-114.717,-132.03],[-116.233,-132.077],[-116.638,-132.637],[-117.186,-133.956],[-115.78,-134.312],[-111.903,-134.446],[-110.35,-136.221],[-103.3,-133.893],[-101.396,-133.582],[-108.732,-137.421],[-121.333,-138.287],[-133.525,-138.268],[-147.262,-138.462],[-153.306,-138.254],[-159.053,-140.412],[-163.332,-142.327],[-163.948,-142.761],[-163.463,-143.367],[-153.033,-146.957],[-141.375,-147.185],[-125.47,-146.387],[-113.788,-140.11],[-112.006,-139.281],[-109.626,-138.447],[-108.284,-138.257],[-106.954,-137.703],[-104.382,-137.005],[-98.931,-133.431],[-97.491,-130.293],[-96.977,-127.55],[-97.375,-126.244],[-95.107,-124.472],[-96.801,-123.658],[-101.496,-124.351],[-104.262,-125.643],[-105.957,-127.453],[-106.425,-128.379],[-105.478,-128.742],[-103.125,-128.743],[-98.259,-127.292],[-98.974,-129.136],[-99.254,-129.964],[-99.792,-130.871],[-102.132,-130.921]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.62,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.22,0.688],[-1.396,0.422],[-1.622,0.882],[-1.743,0.648],[-2.206,1.087],[-1.427,1.28],[-1.275,0.465],[-2.742,-1.088],[-0.835,-0.195],[0.837,0.409],[0.058,0.79],[-0.682,0.278],[-2.125,0.782],[-0.167,-0.075],[-2.614,-0.427],[-1.961,-1.221],[-1.43,-0.378],[-0.375,0.912],[-0.151,-1.439],[-0.059,-0.315],[1.672,-0.781],[2.014,0.619],[1.829,-0.208],[4.858,-1.112],[0.029,1.099],[0.006,0.604],[0.34,0.085],[0.126,-0.267],[2.2,0.138],[0.761,-1.528],[1.351,-0.696],[1.501,-0.768],[-0.205,-0.046],[0.551,-0.878],[2.632,-0.749],[2.028,0.889],[1.377,0.61],[0.486,0.613],[-0.273,0.077]],"o":[[0.393,-1.519],[1.644,-0.498],[1.589,-0.864],[2.321,-0.863],[1.638,-0.807],[1.006,-0.902],[2.681,-0.978],[0.494,0.196],[-0.883,-0.997],[-0.705,-0.344],[-0.067,-0.917],[2.095,-0.855],[0.213,-0.078],[2.521,1.137],[2.357,0.385],[1.282,0.798],[0.586,0.155],[-0.059,1.479],[0.034,0.322],[0.326,1.742],[-2.025,0.946],[-1.774,-0.545],[-4.955,0.564],[-0.999,0.229],[-0.016,-0.604],[-0.003,-0.281],[-0.308,-0.077],[-1.112,2.351],[-1.326,-0.083],[-0.695,1.395],[-1.55,0.799],[0.052,0.474],[1.197,0.268],[-1.477,2.355],[-1.921,0.547],[-1.359,-0.596],[-0.086,-0.617],[-0.174,-0.219],[0.984,-0.279]],"v":[[155.363,158.002],[158.256,155.837],[163.259,154.077],[168.148,151.526],[174.551,147.875],[179.548,145.618],[182.899,143.436],[191.027,143.251],[192.904,143.7],[190.23,142.065],[188.466,140.683],[190.183,139.313],[196.542,136.927],[197.203,136.791],[205.071,137.745],[211.443,140.282],[215.536,141.948],[217.215,141.416],[216.737,145.693],[216.773,146.666],[214.96,149.926],[208.901,150.051],[203.567,149.793],[188.854,152.291],[187.191,151.001],[187.182,149.189],[186.836,148.512],[186.154,148.878],[180.769,151.242],[177.615,152.739],[173.777,155.107],[169.172,157.464],[169.705,157.984],[170.351,159.808],[164.086,164.336],[158.344,164.186],[154.194,162.411],[154.034,160.538],[154.306,159.849]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.459,0.207],[-0.139,2.115],[-1.136,0.066],[-0.1,-1.133],[-2.091,0.659],[-4.053,4.563],[-0.813,0.762],[-1.403,-0.149],[-0.464,0.615],[-1.138,-2.144],[-0.267,-0.537],[-0.839,0.134],[-0.137,0.874],[-0.095,0.403],[-0.631,0.181],[-0.406,-0.503],[-0.005,-0.864],[1.061,-2.369],[1.588,1.696],[0.641,0.849],[0.523,-0.643],[1.801,-3.057],[-0.07,-0.655],[0.191,-4.585],[0.446,-0.624],[0.001,0.554],[0.031,2.085],[0.728,0.006],[0.087,-0.454],[0.524,-0.661],[0.796,0.713],[-0.023,-2.655],[0.162,0.001],[0.906,2.096],[0.115,-2.36],[0.109,-2.863],[0.003,0.477],[0,3.805],[0.011,2.738],[0.51,0.037],[0.061,-0.434],[0.008,-0.501],[-0.252,-7.318],[-1.4,-0.2],[0,-0.459],[0.013,-8.816],[0.353,-0.343],[-0.002,0.956],[0.02,7.107],[1.456,0.342],[0.063,0.268],[0,0.797],[0.263,7.237],[0.037,0.72],[1.117,-0.501],[1.528,-0.343],[-0.062,-2.299],[0.086,-0.59],[-1.096,0.061],[0.072,-0.731],[-0.366,-0.486],[0.746,-1.013],[0.873,-0.715],[-1.055,-1.578],[0.164,-0.31],[1.394,-2.254],[0.02,-2.905],[0.012,-7.107],[1.022,-0.684],[0.003,-0.766],[0.037,-3.807],[-0.344,-0.194],[0.691,-0.736],[0.037,-0.081],[1.597,-0.696],[0.128,-1.203],[0.088,-2],[-0.044,0.935],[-0.021,0.65],[0.523,4.697],[0.125,4.726],[0.231,2.572],[0.117,4.024],[-0.083,2.92],[0.738,-0.002],[-0.341,-0.014],[-0.283,1.042],[-0.516,-0.057],[-0.025,-0.536],[0.125,-1.429],[-0.342,-0.523],[0.023,-2.308],[0.312,-3.899],[0.123,-2.874],[-0.631,-0.025],[-0.006,0.428],[-0.305,7.097],[-0.048,5.849],[-2.193,0.257],[-1.094,1.108],[0.32,0.559],[0.552,-0.103],[0.004,1.68],[0.003,0.278],[0.413,-0.309],[0.033,-1.477],[-0.012,2.056]],"o":[[0.185,-2.112],[0.076,-1.152],[1.233,-0.072],[0.194,2.206],[5.597,-1.763],[0.739,-0.832],[0.924,-0.866],[0.945,0.1],[1.457,-1.93],[0.282,0.531],[0.477,0.96],[0.881,-0.141],[0.064,-0.409],[0.146,-0.618],[0.749,-0.215],[0.478,0.592],[-2.184,-1.406],[-0.947,2.114],[-0.725,-0.774],[-0.463,-0.614],[-2.217,2.725],[-0.351,0.596],[0.493,4.585],[-0.031,0.749],[-0.321,-0.501],[-0.003,-2.085],[-0.008,-0.506],[-0.62,-0.005],[-0.135,0.707],[-0.675,-0.54],[-0.337,2.811],[-0.162,-0.001],[-0.615,-2.118],[-0.962,2.324],[-0.109,2.863],[-0.875,-0.17],[-0.028,-3.805],[0,-2.738],[-0.002,-0.46],[-0.629,-0.046],[-0.071,0.502],[-0.115,7.323],[0.031,0.906],[0.047,0.458],[0.002,8.816],[-0.001,0.401],[-0.486,-0.822],[0.015,-7.107],[-0.003,-1.044],[-0.331,-0.078],[-0.182,-0.772],[0.001,-7.24],[-0.026,-0.722],[-0.064,-1.243],[-1.419,0.636],[-2.189,0.491],[0.016,0.604],[-0.186,1.278],[0.757,-0.042],[-0.053,0.543],[0.857,1.139],[-0.663,0.899],[-1.427,1.169],[0.234,0.351],[-1.255,2.369],[-1.686,2.727],[-0.049,7.106],[-0.002,1.034],[-0.551,0.369],[-0.017,3.808],[-0.003,0.328],[1.147,0.648],[-0.063,0.068],[-0.469,1.039],[-1.018,0.444],[-0.201,1.887],[-0.764,-0.597],[0.03,-0.649],[0.156,-4.778],[-0.533,-4.782],[-0.068,-2.581],[-0.366,-4.081],[-0.085,-2.91],[0.021,-0.74],[0.03,-0.356],[1.353,0.055],[0.116,-0.425],[0.592,0.065],[0.067,1.436],[-0.056,0.636],[0.108,2.309],[-0.04,3.888],[-0.227,2.838],[-0.017,0.388],[0.747,0.029],[0.096,-7.093],[0.251,-5.839],[0.013,-1.565],[1.659,-0.394],[0.635,-0.321],[-0.253,-0.441],[-1.656,0.308],[-0.001,-0.278],[-0.007,-0.666],[-0.906,0.678],[-0.684,-2.073],[0.008,-1.328]],"v":[[-214.66,-159.933],[-214.12,-166.27],[-212.379,-168.201],[-210.21,-166.357],[-207.518,-164.421],[-192.429,-172.833],[-190.063,-175.195],[-186.761,-176.681],[-184.904,-177.945],[-181.565,-177.681],[-180.659,-176.121],[-178.5,-175.319],[-177.019,-176.936],[-176.763,-178.152],[-176.043,-179.846],[-174.49,-178.673],[-173.423,-176.617],[-176.668,-175.655],[-180.6,-174.971],[-182.577,-177.475],[-184.035,-177.574],[-190.557,-169.294],[-190.943,-167.444],[-190.958,-153.691],[-191.537,-151.61],[-191.803,-153.23],[-191.824,-159.485],[-192.293,-160.858],[-192.63,-159.578],[-192.902,-157.435],[-193.609,-159.671],[-194.067,-151.561],[-194.552,-151.565],[-195.403,-158.072],[-195.958,-150.981],[-196.285,-142.392],[-196.816,-143.742],[-196.831,-155.157],[-196.838,-163.371],[-197.381,-164.506],[-197.938,-163.454],[-198.182,-161.954],[-197.884,-139.992],[-196.411,-137.652],[-196.277,-136.277],[-196.294,-109.83],[-196.51,-108.644],[-197.142,-111.304],[-197.157,-132.624],[-198.45,-135.177],[-198.797,-135.865],[-199.067,-138.208],[-199.273,-159.925],[-199.124,-162.098],[-200.964,-163.136],[-205.352,-161.556],[-208.201,-157.821],[-208.19,-156.012],[-206.612,-154.38],[-205.701,-153.426],[-205.439,-151.812],[-205.704,-148.643],[-207.943,-146.184],[-208.469,-142.206],[-208.29,-141.168],[-210.745,-133.666],[-212.094,-125.113],[-212.147,-103.793],[-213.222,-101.123],[-214.095,-99.321],[-214.195,-87.898],[-213.869,-87.048],[-213.769,-84.945],[-213.947,-84.732],[-215.68,-81.724],[-216.098,-78.241],[-216.383,-72.445],[-217.471,-74.678],[-217.462,-76.628],[-217.903,-90.929],[-217.937,-105.122],[-218.07,-112.896],[-217.893,-125.051],[-218.03,-133.795],[-219.137,-134.899],[-218.596,-135.614],[-216.613,-137.507],[-215.887,-138.544],[-214.991,-137.262],[-215.021,-132.949],[-214.727,-131.26],[-214.428,-124.332],[-214.6,-112.661],[-214.372,-104.068],[-213.866,-103.118],[-213.277,-104.122],[-213.053,-125.405],[-212.963,-142.951],[-210.763,-146.469],[-207.127,-149.346],[-206.738,-150.735],[-207.913,-151.136],[-209.635,-152.604],[-209.635,-153.437],[-210.44,-153.829],[-212.614,-151.259],[-212.967,-157.478]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.645,0.082],[0.23,0.012],[0.082,-0.774],[-0.599,-0.213],[-0.309,0.057],[0.11,1.051]],"o":[[-0.323,0],[-0.714,-0.036],[-0.084,0.794],[0.284,0.101],[0.921,-0.171],[-0.102,-0.977]],"v":[[-133.713,-130.12],[-134.498,-130.122],[-135.961,-129.194],[-134.695,-127.95],[-133.744,-127.937],[-131.797,-129.46]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.705,-0.922],[1.304,0.032],[0.468,-0.694],[0.654,0.003],[1.161,-0.006],[0.14,-0.236],[-0.156,-0.168],[1.33,-0.488],[0.682,0.056],[3.489,-0.864],[-0.19,-1.138],[-0.763,0.011],[-0.879,-0.055],[-0.09,-0.429],[0.326,-0.056],[-0.31,-0.987],[0.393,0.119],[-0.847,1.574],[0.312,1.53],[0.105,0.078],[-2.499,1.476],[-1.023,0.625],[0.005,0.721],[0.59,0.19],[-0.987,0.843],[-0.239,0.312],[-0.662,-0.167],[-1.945,1.139],[-4.178,2.111],[-4.721,-0.287],[-5.374,-0.164],[-2.308,-0.26],[-1.617,-0.862],[-2.017,-2.611],[-0.637,-0.118],[0.497,-0.232],[0.508,0.508],[4.613,0.691],[5.35,-0.543],[3.901,-0.357],[3.41,-1.374],[-0.034,-0.338],[-0.278,-0.041],[-1.372,-0.777],[-2.174,0.02],[-2.014,-0.01],[-4.579,-0.06],[-4.07,-0.136],[-4.198,-0.378],[-2.139,-2.039],[0.551,0.27],[2.451,0.471],[1.421,0.034],[2.176,-0.065],[-0.783,-2.053],[0.454,-0.181],[0.749,-0.699],[-1.155,-0.438],[-0.453,-0.058],[-1.046,1.109],[-1.114,-0.322],[0.062,1.339],[-0.158,0.083],[-0.481,-0.117],[-2.271,-2.072],[-0.167,-0.98],[0.217,-0.849],[0.664,0.069],[0.656,0.086],[0.338,0.085],[2.447,-0.114],[0.264,-0.086],[0.073,-0.657],[-0.372,-0.251],[-0.321,-0.023],[-2.129,-0.443],[-0.539,-0.351],[0.447,-0.002],[3.055,0.188],[5.966,0.307],[2.003,-0.045],[0.934,-0.739],[0.953,-0.019],[0.236,0.016],[0.891,0.361],[-0.208,0.69],[-0.554,0.079],[-2.5,0.03],[-0.014,0.613],[0.456,0.047],[0.95,-0.279],[0.505,1.001],[-1.154,0.431],[-1.272,0.553],[0.255,-0.269],[-0.35,-0.266],[-2.095,0.248],[-0.137,0.352],[0.202,0.226],[-1.716,1.027],[-2.261,0.387],[0.052,0.775],[0.687,-0.108],[0.998,-0.13],[1.201,-0.771],[1.154,0.298],[-0.214,0.672],[1.578,0.131],[0.115,-0.24],[2.176,-0.798],[0.661,-1.417],[0.043,0.028],[1.477,0.717],[0.39,-0.24],[1.716,0.437],[0.07,0.613],[-0.43,0.264],[-0.256,-0.011],[-2.65,0.666],[0.059,0.491],[1.248,0.946],[0.387,-0.589]],"o":[[-1.155,0.38],[-0.598,-0.015],[-0.412,0.611],[-1.161,-0.006],[-0.223,0.001],[-0.16,0.268],[0.949,1.021],[-0.686,0.252],[-3.656,-0.301],[-0.715,0.177],[0.173,1.037],[0.881,-0.012],[0.353,0.022],[0.082,0.393],[-1.67,0.287],[-0.398,-0.1],[-1.637,-0.495],[-1.231,-0.249],[-0.022,-0.108],[-2.265,-1.676],[1.033,-0.61],[0.383,-0.234],[-0.005,-0.765],[-0.446,-1.106],[0.402,-0.029],[0.404,-0.528],[2.263,0.572],[4.053,-2.373],[4.208,-2.125],[5.382,0.328],[2.314,0.07],[2.027,0.228],[2.764,1.473],[0.292,0.378],[-0.636,0.297],[-0.802,0.167],[-3.262,-3.262],[-5.267,-0.789],[-3.87,0.393],[-3.84,0.351],[-0.257,0.103],[0.036,0.358],[1.607,0.238],[1.795,1.017],[2.015,-0.019],[4.579,0.023],[4.063,0.053],[4.217,0.141],[3.053,0.275],[-0.817,0.211],[-2.242,-1.099],[-1.276,0.599],[-2.177,-0.053],[-2.33,0.069],[0.216,0.566],[-0.893,0.357],[-0.902,0.843],[0.423,0.16],[1.784,0.228],[0.728,-0.772],[0.99,0.286],[-0.004,-0.076],[0.507,0.011],[2.531,0.614],[0.18,0.96],[-0.553,0.683],[-0.289,1.133],[-0.592,-0.453],[-0.05,-0.5],[-2.409,-0.608],[-0.268,0.012],[-0.829,0.271],[-0.089,0.799],[0.231,0.156],[2.142,0.099],[-0.59,0.782],[-0.375,0.406],[-3.066,0.015],[-5.969,-0.368],[-1.984,-0.102],[-0.932,0.021],[-0.876,0.694],[-0.167,0.003],[0.275,-0.286],[-0.448,-0.181],[0.197,-0.653],[2.489,-0.353],[0.371,-0.004],[0.013,-0.572],[-0.985,-0.102],[-0.492,0.145],[-0.553,-1.097],[1.297,-0.485],[0.045,0.42],[-0.248,0.261],[1.499,1.14],[0.317,-0.038],[0.145,-0.371],[-1.312,-1.469],[2.267,0.01],[0.761,-0.13],[-0.056,-0.832],[-1.019,0.16],[-1.349,0.175],[-1.081,-0.026],[0.041,-0.75],[-1.605,-0.461],[-0.242,-0.02],[-1.233,2.567],[-1.038,0.381],[-0.027,0.058],[-1.47,-0.955],[-0.471,-0.229],[-1.572,0.967],[-0.644,-0.164],[-0.06,-0.523],[0.231,-0.141],[2.908,0.124],[0.509,-0.128],[1.745,-1.575],[-0.917,-0.695],[-0.746,1.134]],"v":[[-159.722,-134.02],[-163.253,-133.083],[-165.096,-132.324],[-166.878,-131.79],[-170.36,-131.787],[-170.986,-131.599],[-170.757,-131.029],[-171.249,-129.199],[-173.308,-129.009],[-183.944,-127.555],[-185.37,-126.037],[-183.672,-125.081],[-181.028,-125.045],[-180.168,-124.46],[-180.613,-123.53],[-181.478,-121.228],[-182.671,-121.533],[-183.461,-123.605],[-186.277,-125.586],[-186.55,-125.868],[-186.224,-130.449],[-183.082,-132.205],[-182.057,-133.142],[-183.165,-134.33],[-182.618,-137.301],[-181.734,-137.877],[-180.121,-138.373],[-173.766,-139.413],[-161.395,-146.129],[-147.765,-148.727],[-131.633,-148.519],[-124.697,-147.929],[-119.633,-145.845],[-111.843,-140.676],[-110.377,-140.043],[-112.006,-139.281],[-113.788,-140.11],[-125.47,-146.387],[-141.375,-147.185],[-153.033,-146.957],[-163.463,-143.367],[-163.948,-142.761],[-163.332,-142.327],[-159.053,-140.412],[-153.306,-138.254],[-147.262,-138.462],[-133.525,-138.268],[-121.333,-138.287],[-108.732,-137.421],[-101.396,-133.582],[-103.3,-133.893],[-110.35,-136.221],[-114.377,-135.394],[-120.911,-135.391],[-123.323,-132.019],[-123.842,-131.14],[-126.497,-130.001],[-126.113,-127.904],[-124.77,-127.622],[-120.948,-129.739],[-118.294,-130.844],[-116.685,-131.828],[-116.233,-132.077],[-114.717,-132.03],[-107.042,-130.693],[-105.341,-129.57],[-107.38,-128.885],[-108.964,-128.153],[-110.919,-128.493],[-111.737,-129.104],[-119.043,-129.48],[-119.838,-129.239],[-120.809,-127.543],[-119.686,-126.865],[-118.74,-126.773],[-112.312,-126.534],[-111.754,-125.077],[-113.07,-124.82],[-122.267,-124.837],[-140.131,-124.5],[-146.087,-124.857],[-148.93,-125.13],[-151.679,-124.52],[-152.249,-124.556],[-152.102,-125.338],[-152.978,-126.373],[-151.591,-127.05],[-144.098,-127.333],[-143.097,-127.739],[-144.14,-128.427],[-147.003,-128.019],[-148.691,-128.354],[-147.952,-130.437],[-144.131,-132.081],[-144.609,-131.132],[-144.654,-130.309],[-139.608,-128.161],[-138.758,-128.475],[-139.215,-129.244],[-138.796,-131.849],[-132.001,-132.056],[-130.79,-133.27],[-132.21,-134.224],[-135.238,-134.2],[-139.18,-133.176],[-142.182,-132.366],[-140.958,-133.628],[-145.737,-133.709],[-146.302,-133.391],[-152.39,-130.136],[-155.501,-128.969],[-155.738,-128.876],[-160.174,-128.917],[-161.487,-128.653],[-166.426,-128.152],[-167.681,-129.271],[-166.724,-130.359],[-165.949,-130.634],[-158.142,-133.105],[-157.506,-133.994],[-156.977,-136.675],[-160.247,-137.055]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.296,1.103],[1.677,1.507],[0.492,-0.282],[-0.01,-0.514],[-0.085,-0.964],[-0.672,-1.551],[-0.722,-0.09],[-0.232,0.582]],"o":[[0.192,-2.613],[-0.395,-0.355],[-0.409,0.234],[0.019,0.967],[0.145,1.641],[0.3,0.693],[0.822,0.103],[0.402,-1.009]],"v":[[227.896,-116.577],[224.907,-122.325],[223.387,-122.718],[222.889,-121.339],[223.196,-118.457],[224.166,-113.598],[225.703,-112.328],[227.012,-113.55]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[4.247,-0.411],[-0.02,1.483],[-1.327,4.291],[-0.001,0.416],[-0.003,8.404],[0.047,0.54],[1.255,-2.173],[0.301,0.431],[0.055,-0.615],[0.521,1.733],[1.931,1.632],[1.915,1.607],[0.425,-0.3],[1.201,-0.778],[1.705,0.795],[0.784,-1.489],[0.871,-0.145],[0.158,-1.786],[0.367,-0.805],[1.194,0.042],[0.44,1.175],[1.513,1.075],[-0.676,1.105],[0.289,0.868],[-0.941,0.762],[-0.909,0.719],[0.859,0.795],[0.086,0.8],[-0.095,0.94],[-0.613,0.458],[-1.443,1.441],[-1.278,1.1],[0,-0.404],[0.678,-1.478],[-1.167,0.241],[-0.301,0.289],[-1.399,0.025],[0.403,-1.282],[-0.687,-0.154],[-1.022,0.955],[-1.076,0.844],[0.13,0.27],[-0.472,0.851],[-1.068,-0.963],[-0.57,0.909],[-0.476,1.557],[-0.744,0.577],[0,0],[-0.919,-1.141],[-0.979,-0.85],[-1.372,0.653],[-0.71,0.799],[0.848,1.327],[-0.173,0.328],[-0.182,-0.088],[0.011,-0.138],[-1.02,-2.065],[-1.105,1.095],[0.376,1.271],[-0.328,-0.153],[-2.079,-0.838],[0.338,1.844],[0.122,0.445],[-0.514,0.249],[-0.317,-0.261],[-0.155,-0.167],[-2.297,0.013],[-0.933,-1.393],[-0.811,0.856],[-0.384,-0.628],[-0.878,-1.466],[0.524,-0.178],[-0.107,-0.679],[-0.094,-3.57],[0.142,-6.039],[1.127,-0.53],[0.036,0.725],[0.004,0.601],[0.044,9.287],[0.508,0.289],[0.418,-0.276],[0.795,0.153],[0.011,-1.787],[0.048,-0.413],[1.066,-0.141],[1.938,2.454],[0.824,-0.435],[1.96,-1.319],[-0.996,-0.455],[-1.318,1.017],[-0.629,0],[0.074,-0.6],[-0.158,-1.419],[0.54,0.005],[0.683,0.382],[1.045,-1.141],[-0.696,-0.139],[1.051,-1.044],[-0.292,-1.406],[0.135,-1.714],[-0.438,-2.99],[-0.77,-2.058],[0.009,-0.917],[0.029,-3.808],[-0.92,-0.109],[-1.496,0.032],[0.047,-0.594]],"o":[[-1.133,-0.89],[0.059,-4.396],[0.12,-0.388],[0.01,-8.404],[0,-0.172],[-2.04,2.149],[-0.179,-0.257],[-0.049,0.54],[-0.765,-1.866],[-0.707,-2.354],[-1.909,-1.614],[-0.468,-0.392],[-1.168,0.825],[-1.407,0.912],[-0.786,-0.366],[-0.341,0.648],[-1.727,0.288],[-0.078,0.88],[-0.409,0.896],[-1.267,-0.044],[-0.706,-1.885],[-1.06,-0.753],[0.451,-0.738],[-0.411,-1.236],[0.901,-0.729],[0.977,-0.772],[-0.631,-0.585],[-0.074,-0.69],[0.863,0.16],[1.62,-1.209],[0.952,-0.952],[0,0.766],[-1.166,1.192],[-0.493,1.074],[0.448,-0.093],[0.937,-0.9],[-0.07,1.231],[-0.253,0.805],[1.238,0.277],[0.975,-0.911],[0.218,-0.171],[-0.512,-1.061],[0.588,-1.059],[0.937,0.845],[0.876,-1.398],[0.312,-1.021],[0,0],[0.214,1.346],[0.81,1.006],[1.071,0.93],[1.173,-0.559],[0.721,-0.811],[-0.196,-0.307],[0.09,-0.17],[0.14,0.068],[-0.202,2.622],[0.702,1.421],[0.68,-0.674],[0.379,0.335],[2.032,0.947],[1.75,0.705],[-0.083,-0.453],[-0.107,-0.389],[0.42,-0.203],[0.17,0.14],[1.453,1.567],[1.595,-0.009],[1.093,1.633],[0.801,-0.846],[0.891,1.458],[-0.522,0.185],[-0.664,0.225],[0.563,3.562],[0.158,6.034],[-0.025,1.042],[-0.501,0.236],[-0.03,-0.601],[-0.055,-9.287],[-0.003,-0.563],[-0.526,-0.299],[-0.64,0.422],[-1.708,-0.329],[-0.003,0.418],[-0.115,0.983],[-2.787,0.37],[-0.536,-0.678],[-2.09,1.104],[-0.915,0.616],[1.365,0.623],[0.494,-0.381],[0.627,0],[-0.181,1.465],[0.065,0.588],[-0.747,-0.006],[-1.355,-0.758],[0.808,0.162],[-1.608,0.261],[-0.936,0.93],[0.353,1.7],[-0.241,3.051],[0.306,2.085],[0.287,0.768],[-0.035,3.808],[-0.006,0.753],[1.461,0.174],[0.716,-0.015],[-4.257,-0.028]],"v":[[230.174,-61.519],[228.661,-65.005],[229.735,-78.104],[229.834,-79.349],[229.851,-104.56],[229.777,-105.445],[226.371,-98.382],[225.714,-99.325],[225.578,-97.813],[223.569,-102.996],[219.417,-109.046],[213.615,-113.799],[212.431,-113.775],[208.871,-111.378],[204.328,-110.743],[201.821,-110.373],[199.419,-109.486],[197.21,-107.054],[196.621,-104.492],[194.537,-102.737],[191.506,-104.35],[187.908,-108.447],[187.297,-111.184],[187.709,-113.552],[188.734,-116.483],[191.457,-118.645],[191.446,-120.942],[189.562,-122.592],[190.917,-124.547],[193.077,-125.303],[197.798,-129.114],[201.109,-131.989],[201.109,-130.413],[198.54,-126.261],[199.845,-124.826],[200.829,-125.539],[204.163,-127.276],[204.231,-123.572],[205.439,-122.129],[208.974,-122.765],[211.521,-125.837],[211.655,-126.618],[212.228,-129.335],[214.49,-129.772],[217.628,-129.918],[219.868,-134.332],[221.46,-136.529],[221.484,-136.496],[222.329,-132.514],[225.081,-129.759],[228.653,-129.412],[230.704,-131.907],[231.574,-134.743],[231.868,-135.776],[232.292,-136.025],[232.59,-135.603],[235.438,-129.295],[238.006,-128.917],[239.233,-131.417],[240.134,-130.491],[246.287,-127.772],[249.048,-130.076],[248.706,-131.418],[248.827,-132.514],[249.941,-132.119],[250.334,-131.555],[255.547,-128.233],[259.052,-126.556],[261.945,-125.589],[263.469,-125.298],[266.107,-120.904],[264.542,-120.35],[263.638,-118.974],[263.798,-108.265],[264.024,-90.156],[262.826,-87.549],[261.88,-88.025],[261.773,-89.828],[261.626,-117.689],[261.135,-119.179],[259.807,-118.649],[257.695,-118.245],[255.78,-116.579],[255.743,-115.327],[254.084,-113.598],[246.772,-115.825],[244.646,-116.206],[238.552,-112.598],[238.675,-111],[242.744,-111.158],[244.421,-111.719],[245.391,-110.813],[245.829,-106.543],[245.228,-105.83],[243.078,-106.241],[239.582,-105.414],[241.781,-104.974],[238.134,-102.57],[236.882,-99.269],[236.799,-94.16],[236.67,-84.991],[237.014,-78.781],[236.768,-76.057],[236.739,-64.631],[237.737,-63.407],[242.119,-62.776],[242.937,-61.792]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.029,-1.064],[-0.42,-0.566],[-0.204,0.736],[-0.332,1.333],[0.387,0.199],[0.21,-0.315]],"o":[[0,0.71],[0.265,0.357],[0.367,-1.324],[0.091,-0.364],[-0.407,-0.209],[-0.561,0.839]],"v":[[-139.102,45.942],[-138.529,47.894],[-137.674,47.811],[-136.602,43.831],[-136.995,42.88],[-137.953,43.188]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.307,0.016],[0.054,1.182],[1.3,-0.029],[0.012,-1.231]],"o":[[1.473,-0.019],[-0.046,-1.012],[-1.302,0.029],[-0.012,1.268]],"v":[[-123.112,-107.514],[-120.68,-109.571],[-122.859,-111.162],[-124.881,-109.223]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.047,0.681],[0.966,0.397],[0.969,-0.657],[-0.176,-0.528],[-0.787,-0.816],[-0.713,0.707]],"o":[[-0.151,-0.611],[-0.953,-0.392],[-0.333,0.225],[0.35,1.049],[0.725,0.752],[0.544,-0.54]],"v":[[-153.032,-75.665],[-153.632,-77.552],[-156.528,-77.602],[-157.094,-76.623],[-155.594,-73.706],[-153.443,-73.788]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.173,0.974],[1.216,-0.021],[0.046,-1.211],[-1.5,0.085]],"o":[[-0.006,-2.225],[-1.038,0.018],[-0.031,0.808],[1.085,-0.062]],"v":[[-119.851,-114.529],[-121.56,-117.566],[-124.307,-114.453],[-121.232,-112.853]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.041,0.502],[1.602,-0.218],[0.971,-0.271],[-0.102,-0.998],[-1.407,-0.113],[-0.529,1.666]],"o":[[0.018,-1.595],[-0.999,0.136],[-0.973,0.272],[0.146,1.425],[1.402,0.113],[0.16,-0.503]],"v":[[-118.989,-101.956],[-120.857,-103.618],[-123.823,-103.005],[-125.138,-100.997],[-122.103,-98.046],[-119.165,-100.455]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.057,-0.504],[-1.322,-1.462],[-0.299,0.281],[1.788,2.105],[1.09,-0.238],[0.117,-0.946]],"o":[[-0.231,2.46],[0.242,0.268],[2.013,-1.894],[-0.7,-0.825],[-1.005,0.22],[-0.062,0.503]],"v":[[-158.662,-112.391],[-155.545,-107.432],[-154.708,-107.533],[-154.226,-114.88],[-156.977,-115.83],[-158.491,-113.902]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.107,-2.191],[1.546,-2.069],[1.501,-2.162],[1.406,-2.621],[-0.584,-0.446],[-0.436,0.308],[-0.145,0.18],[-2.259,2.43],[-1.253,1.951],[-0.117,1.244],[-0.034,2.498],[0.498,0.933],[0.626,0.022],[0.078,-0.379]],"o":[[-0.153,2.304],[-1.572,2.104],[-1.685,2.428],[-0.309,0.575],[0.569,0.435],[0.187,-0.132],[2.09,-2.588],[1.642,-1.766],[0.564,-0.878],[0.235,-2.499],[0.012,-0.905],[-0.178,-0.334],[-0.64,-0.023],[-0.392,1.908]],"v":[[-132.102,-72.152],[-134.247,-65.228],[-139.007,-58.939],[-144.04,-51.638],[-143.98,-50.007],[-142.527,-50.442],[-142.032,-50.93],[-135.728,-58.66],[-132.114,-64.617],[-130.958,-67.93],[-130.716,-75.422],[-130.634,-78.141],[-131.266,-79.058],[-131.909,-78.179]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0.559,2.66],[-0.024,-0.824],[-0.538,-1.979],[-2.381,0.007],[-0.841,0.271],[-1.208,1.308],[0.91,0.404],[1.195,0.042],[-0.604,0.867],[-0.431,0.408],[0.517,1.013],[1.351,-0.214],[0.019,-0.954],[0,-2.424],[0.134,-0.016]],"o":[[-0.849,0.543],[0.058,1.98],[0.605,2.223],[0.928,-0.003],[1.308,-0.421],[0.669,-0.725],[-1.002,-0.445],[-1.013,-0.036],[0.342,-0.491],[0.886,-0.838],[-0.587,-1.15],[-1.671,0.264],[-0.049,2.423],[-0.134,0.016],[-0.539,-2.564]],"v":[[-166.516,-105.758],[-167.545,-103.679],[-167.08,-97.756],[-163.945,-95.25],[-161.177,-95.306],[-157.18,-95.989],[-157.318,-98.942],[-160.423,-100.062],[-161.139,-101.89],[-160.009,-103.285],[-159.703,-105.991],[-163.316,-107.78],[-164.459,-105.289],[-164.475,-98.018],[-164.879,-97.97]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.242,-0.081],[0.36,-0.316],[0.883,0.799],[-0.673,1.384],[-0.088,-0.166],[-0.635,0.063],[-0.184,0.384],[-1.377,1.823],[1.199,1.645],[0.015,-0.499],[-0.03,-0.323],[1.136,-0.333],[0.466,0.951],[2.077,-0.534],[0.023,0.784],[-0.054,1.994],[-0.231,0.469],[-1.203,-1.222],[-0.613,0.482],[0.417,0.738],[0.342,1.193],[-0.013,2.993],[-0.049,0.318],[1.567,-0.395],[-0.115,0.802],[0.486,-0.017],[-0.006,-0.291],[-0.012,-0.324],[1.337,-0.113],[0.159,0.185],[0.977,1.069],[-0.79,1.269],[0.058,1.852],[0.904,-0.139],[-0.075,0.422],[1.082,1.083],[0.06,0.114],[-2.86,0.868],[-0.154,1.28],[-0.051,2.969],[0.007,2.369],[1.494,1.39],[1.118,1.812],[0.065,0.258],[0,1.308],[-0.762,0.665],[0.001,1.682],[-0.125,4.642],[2.636,0.302],[0.623,1.364],[0.302,1.085],[2.051,0.599],[0.016,0.63],[-0.298,1.327],[0.668,0.296],[0,0.461],[-1.637,2.094],[0.935,0.176],[2.933,-0.176],[-0.022,1.627],[-0.07,2.126],[0.287,0.312],[0.656,-1.281],[0.442,0.202],[0.582,0.892],[-0.101,0.042],[-1.069,0.598],[0.056,0.485],[0.487,0.059],[-0.606,1.056],[1.438,0.409],[-0.113,0.622],[-0.49,-0.096],[-0.494,-0.379],[-1.248,1.609],[0.286,0.528],[0.285,-0.284],[0.832,-0.414],[0.724,-1.431],[1.859,1.342],[0.7,0.06],[-1.038,0.386],[-0.11,0.551],[0.31,0.081],[-1.67,0.287],[0.082,0.393],[0.353,0.022],[0.881,-0.012],[0.173,1.037],[-0.715,0.177],[-3.656,-0.301],[-0.686,0.252],[0.949,1.021],[-0.16,0.268],[-0.223,0.001],[-1.161,-0.006],[-0.412,0.611],[-0.598,-0.015],[-1.155,0.38],[-0.739,-0.009],[0.509,-0.128],[2.908,0.124],[0.231,-0.141],[-0.06,-0.523],[-0.644,-0.164],[-1.572,0.967],[-0.471,-0.229],[-1.47,-0.955],[-0.027,0.058],[-1.038,0.381],[-1.233,2.567],[-0.242,-0.02],[-1.605,-0.461],[0.041,-0.75],[0.591,-0.499],[1.297,-0.485],[-0.553,-1.097],[-0.492,0.145],[-0.985,-0.102],[0.013,-0.572],[0.371,-0.004],[2.489,-0.353],[0.197,-0.653],[-0.448,-0.181],[0.275,-0.286],[-0.167,0.003],[-0.876,0.694],[-0.932,0.021],[-1.984,-0.102],[-5.969,-0.368],[-3.066,0.015],[-0.375,0.406],[-1.202,-0.179],[-0.9,-0.135],[0.038,-0.735],[1.116,-0.258],[-0.065,-0.625],[0.206,-0.591],[0.457,0.001],[0.011,-1.837],[0.642,0.065],[0.034,0.255],[0.785,-0.006],[0.316,-0.94],[-0.234,-1.443],[-0.973,-0.223],[-0.445,0.674],[-0.484,0.103],[-0.469,-0.607],[0.013,-0.18],[0.352,-3.621],[0.276,-1.116],[1.291,0.02],[1.343,-0.054],[-0.276,-1.386],[-1.028,-0.111],[-0.427,-0.883],[-0.376,-0.06],[-0.868,0.289],[-0.248,-0.27],[-0.584,0.181],[-0.002,0.628],[-0.421,0.685],[-0.838,-0.093],[0.018,-0.644],[0.272,-1.84],[4.305,0.176],[0.834,-0.011],[0.146,-0.561],[-0.494,-0.255],[-0.379,-0.172],[-2.232,-0.039],[-2.658,-0.569],[-0.089,-0.183],[1.522,-0.571],[0.09,-1.392],[0.047,-2.308],[1.102,-0.215],[0.264,-0.783],[-0.482,-1.492],[0.016,-0.187],[-0.005,-0.013],[-0.038,-0.066],[0.801,-0.792],[0.039,0.499],[0.413,0.873],[0.005,0.449],[-0.086,1.025],[-1.264,0.07],[0.003,0.816],[-0.017,1.435],[1.041,0.055],[-0.014,-0.844],[0.49,-1.443],[-0.335,-0.922],[0.089,-0.261],[-0.802,-1.015],[-0.179,-0.935],[0.025,-0.597],[-0.669,-0.868],[0.027,-0.365],[-0.249,1.507],[0.12,0.852],[0.406,-0.256],[0.38,0.282],[0.044,-0.552],[-0.028,-0.539],[1.113,0.007],[0.223,-1.393],[-0.314,-1.419],[-0.727,-1.059],[0.308,-1.597],[-0.248,-0.235],[-0.426,-1.394],[-1.82,-0.475],[0.499,2.826],[-0.027,3.96],[-0.513,-0.095],[-0.43,0.034],[-0.024,-3.527],[-0.333,-0.728],[0.54,-1.279],[-0.08,-0.72],[0.473,-2.851],[-0.175,-1.033],[0.458,0.187],[0.35,0.113],[1.029,1.822],[0.317,3.864],[0.583,2.144],[0.51,0.044],[0.191,-0.494],[-0.11,-0.859],[-1.844,-4.815],[-0.626,-0.294],[0.249,-1.397],[0.441,-0.577],[0.721,0.131],[0.239,0.416],[0.023,0.277],[0.378,0.006],[0.069,-0.224],[0.104,-0.256],[1.151,-1.804],[0.867,-2.517],[-0.673,-1.351],[0.154,-1.166],[-0.378,-1.009],[-0.034,-0.133],[-0.521,-2.469],[-0.596,-0.342],[-0.594,0.526],[-0.507,-0.592],[-0.85,-0.847],[1.687,-1.074],[0.253,-0.106],[0.251,-1.116],[-0.908,-0.346],[-0.203,0.6],[-0.349,0.221],[-0.905,0.396],[-1.889,-0.256],[-0.131,-0.552],[0.501,-1.571],[-0.559,-0.391],[-0.539,0.361],[-0.252,0.2],[0.55,-0.95],[-0.175,-0.87],[0.106,0.138],[0.354,-1.11],[-0.242,-2.679],[-0.381,-0.39],[0.284,-0.935],[0.568,-1.561],[1.539,-2.576],[1.337,-0.269],[-0.212,1.001],[-0.585,3.213],[-0.659,1.477],[0.713,4.318],[-0.076,0.542],[0.957,-0.004],[-0.089,-1.082],[-0.029,-1.005],[1.612,-3.809],[0.531,-0.833]],"o":[[-0.436,-0.435],[-1.038,0.911],[-1.292,-1.169],[0.344,-0.017],[0.235,0.443],[0.528,-0.052],[0.992,-2.069],[1.414,-1.873],[-0.491,0.309],[-0.01,0.323],[0.11,1.183],[-0.856,0.251],[-0.884,-1.802],[-0.768,0.197],[-0.058,-1.994],[0.011,-0.404],[1.101,1.462],[0.473,0.48],[0.604,-0.475],[-0.589,-1.042],[-0.848,-2.96],[0.001,-0.325],[0.19,-1.235],[-0.965,0.243],[0.069,-0.478],[-0.523,0.018],[0.007,0.324],[0.051,1.436],[-0.379,0.032],[-0.935,-1.082],[-1.007,-1.101],[0.94,-1.51],[-0.022,-0.686],[-0.689,0.106],[0.772,-1.1],[-0.084,-0.102],[-1.395,-2.646],[1.236,-0.375],[0.356,-2.962],[0.041,-2.368],[-0.006,-1.999],[-1.554,-1.445],[-0.163,-0.264],[-0.328,-1.299],[0,-0.66],[1.165,-1.017],[-0.003,-4.643],[0.071,-2.628],[-1.497,-0.171],[-0.469,-1.026],[-0.541,-1.944],[-0.467,-0.136],[0.11,-1.369],[0.215,-0.954],[0,-0.461],[2.402,0.006],[0.465,-0.595],[-2.837,-0.532],[-1.587,-0.592],[0.028,-2.126],[0.014,-0.418],[-0.382,-0.415],[-0.234,0.457],[-0.951,-0.436],[-0.125,-0.192],[1.215,-0.512],[0.394,-0.221],[-0.064,-0.557],[-1.205,-0.146],[0.421,-0.734],[-0.672,-0.192],[0.385,-0.104],[0.223,0.366],[-0.32,-2.439],[0.529,-0.682],[-0.421,-0.777],[-0.729,0.726],[-1.272,0.634],[-1.115,1.262],[-0.573,-0.414],[0.013,-1.425],[0.571,-0.212],[0.073,-0.364],[-0.31,-0.987],[0.326,-0.056],[-0.09,-0.429],[-0.879,-0.055],[-0.763,0.011],[-0.19,-1.138],[3.489,-0.864],[0.682,0.056],[1.33,-0.488],[-0.156,-0.168],[0.14,-0.236],[1.161,-0.006],[0.654,0.003],[0.468,-0.694],[1.304,0.032],[0.739,0.009],[0.059,0.491],[-2.65,0.666],[-0.256,-0.011],[-0.43,0.264],[0.07,0.613],[1.716,0.437],[0.39,-0.24],[1.477,0.717],[0.043,0.028],[0.661,-1.417],[2.176,-0.798],[0.115,-0.24],[1.578,0.131],[-0.214,0.672],[-0.645,0.126],[-1.271,0.554],[-1.154,0.431],[0.505,1.001],[0.95,-0.279],[0.456,0.047],[-0.014,0.613],[-2.5,0.03],[-0.554,0.079],[-0.208,0.69],[0.891,0.361],[0.236,0.016],[0.953,-0.019],[0.934,-0.739],[2.003,-0.045],[5.966,0.307],[3.055,0.188],[0.447,-0.002],[1.202,0.179],[0.883,0.253],[0.844,0.126],[-1.064,0.533],[-0.739,0.171],[-0.206,0.591],[-0.457,-0.016],[-1.824,-0.005],[-0.07,0.887],[-0.034,-0.255],[-0.027,-0.914],[-0.811,0.006],[-0.485,1.445],[0.159,0.983],[0.865,0.198],[0.21,-0.319],[0.593,0.575],[-0.013,0.181],[-2.632,2.16],[-0.111,1.14],[-0.308,1.246],[-1.344,-0.021],[-1.439,0.058],[0.215,1.081],[-0.809,0.797],[0.195,0.404],[0.98,0.157],[0.248,0.27],[0.293,0.319],[0.574,-0.178],[0.003,-0.728],[0.555,0.353],[-0.018,0.644],[-1.391,0.555],[-4.3,-0.013],[-0.833,-0.034],[-0.45,0.006],[-0.137,0.527],[0.369,0.191],[2.059,0.934],[2.676,0.047],[0.089,0.183],[0.949,1.261],[-1.504,0.564],[-0.149,2.303],[-0.022,1.079],[-0.818,0.16],[-0.49,1.454],[-0.016,0.187],[-0.033,0.027],[0.027,0.07],[-0.098,0.926],[-0.297,-0.451],[-0.07,-0.899],[-0.005,-0.449],[1.058,-0.885],[0.094,-1.123],[0.86,-0.048],[-0.005,-1.435],[0.011,-0.936],[-1.066,-0.056],[0.026,1.588],[-0.252,0.741],[-0.088,0.261],[-0.79,0.618],[-0.316,0.901],[-0.019,0.597],[-0.037,0.885],[-0.027,0.365],[-1.55,-0.006],[0.135,-0.817],[-0.03,-0.212],[-0.791,0.499],[0,0.662],[-0.044,0.548],[0.07,1.353],[-1.418,-0.009],[-0.257,1.607],[0.288,1.3],[1.001,1.458],[-0.095,0.49],[1.253,1.188],[0.363,1.188],[0.044,-2.894],[-0.689,-3.9],[0.004,-0.66],[0.361,0.067],[0.024,3.527],[-0.468,0.767],[0.447,1.397],[-0.245,0.649],[0.316,2.829],[-0.55,1.019],[-0.53,-0.003],[-0.128,-0.401],[-2.086,-0.675],[-1.85,-3.275],[-0.18,-2.19],[-0.121,-0.446],[-0.563,-0.049],[-0.332,0.862],[0.651,5.094],[0.214,0.558],[0.489,1.17],[-0.736,0.384],[-0.361,0.471],[-0.684,-0.124],[-0.126,-0.219],[-0.024,-0.285],[-0.29,-0.004],[-0.081,0.265],[-0.765,1.875],[-1.452,2.275],[-0.478,1.386],[0.596,1.197],[-0.188,1.417],[0.047,0.125],[0.619,2.452],[0.177,0.837],[0.564,0.323],[0.686,-0.607],[0.782,0.913],[1.4,1.395],[-0.234,0.149],[-1.153,0.481],[-0.225,1.003],[0.906,0.345],[0.154,-0.457],[0.856,-0.542],[1.535,-0.671],[0.131,0.552],[-1.686,0.103],[-0.205,0.643],[0.468,0.327],[0.266,-0.178],[0.049,1.003],[-0.392,0.678],[-0.154,-0.101],[-0.765,-0.989],[-0.83,2.603],[0.044,0.485],[0.764,0.783],[-0.481,1.586],[-1.039,2.857],[-0.453,0.758],[0.78,-1.07],[0.678,-3.194],[0.653,-1.48],[1.8,-4.037],[1,-0.238],[0.079,-0.566],[-0.811,0.003],[-0.097,1.008],[0.118,4.03],[-0.371,0.877],[-0.242,0.081]],"v":[[-141.491,41.901],[-142.863,41.826],[-145.792,41.76],[-146.628,37.935],[-146.293,38.402],[-145.277,39.383],[-144.452,38.357],[-140.89,32.514],[-140.3,25.213],[-140.854,26.522],[-140.786,27.493],[-141.724,30.561],[-143.744,28.414],[-148.013,26.26],[-149.365,25.269],[-149.371,19.282],[-148.772,18.015],[-145.265,21.918],[-143.61,22.454],[-143.3,20.432],[-144.975,17.257],[-145.416,8.299],[-145.391,7.325],[-146.954,5.682],[-148.221,4.469],[-148.608,3.76],[-148.899,4.507],[-148.854,5.479],[-150.815,7.829],[-151.375,7.333],[-154.023,3.955],[-154.052,0.216],[-152.455,-4.727],[-153.384,-5.76],[-153.882,-6.573],[-153.913,-9.853],[-154.161,-10.161],[-152.566,-13.96],[-150.52,-16.494],[-150.311,-25.4],[-150.334,-32.507],[-152.489,-37.593],[-156.479,-42.501],[-156.682,-43.275],[-156.085,-46.978],[-153.833,-48.809],[-151.919,-52.54],[-151.63,-66.469],[-154.312,-69.572],[-157.792,-71.682],[-159.154,-74.8],[-162.69,-78.826],[-163.659,-79.869],[-163.281,-83.965],[-164.145,-85.5],[-164.145,-86.884],[-157.806,-89.222],[-158.105,-90.481],[-166.679,-91.64],[-169.473,-95.486],[-169.269,-101.863],[-169.484,-103.067],[-170.912,-103.251],[-172.078,-102.754],[-174.459,-104.71],[-174.457,-105.492],[-172.239,-108.159],[-171.62,-109.131],[-172.569,-109.986],[-173.299,-111.634],[-173.954,-113.769],[-174.473,-115.332],[-173.479,-115.92],[-173.114,-114.697],[-170.54,-120.219],[-170.595,-121.76],[-171.828,-121.792],[-174.377,-120.598],[-177.86,-118.121],[-181.942,-117.007],[-183.981,-117.341],[-181.868,-119.537],[-180.789,-120.703],[-181.478,-121.228],[-180.613,-123.53],[-180.168,-124.46],[-181.028,-125.045],[-183.672,-125.081],[-185.37,-126.037],[-183.944,-127.555],[-173.308,-129.009],[-171.249,-129.199],[-170.757,-131.029],[-170.986,-131.599],[-170.36,-131.787],[-166.878,-131.79],[-165.096,-132.324],[-163.253,-133.083],[-159.722,-134.02],[-157.506,-133.994],[-158.142,-133.105],[-165.949,-130.634],[-166.724,-130.359],[-167.681,-129.271],[-166.426,-128.152],[-161.487,-128.653],[-160.174,-128.917],[-155.738,-128.876],[-155.501,-128.969],[-152.39,-130.136],[-146.302,-133.391],[-145.737,-133.709],[-140.958,-133.628],[-142.182,-132.366],[-144.131,-132.081],[-147.952,-130.437],[-148.691,-128.354],[-147.003,-128.019],[-144.14,-128.427],[-143.097,-127.739],[-144.098,-127.333],[-151.591,-127.05],[-152.978,-126.373],[-152.102,-125.338],[-152.249,-124.556],[-151.679,-124.52],[-148.93,-125.13],[-146.087,-124.857],[-140.131,-124.5],[-122.267,-124.837],[-113.07,-124.82],[-111.755,-125.077],[-108.148,-124.539],[-105.496,-123.808],[-104.466,-122.511],[-107.824,-122.088],[-108.65,-120.975],[-109.268,-119.203],[-110.639,-119.249],[-112.886,-117.002],[-114.215,-116.203],[-114.318,-116.969],[-115.712,-118.122],[-117.627,-117.113],[-117.776,-112.728],[-115.832,-110.737],[-114.061,-112.006],[-113.28,-112.912],[-112.589,-110.844],[-112.628,-110.302],[-117.812,-102.104],[-118.462,-98.716],[-120.917,-96.913],[-124.951,-96.895],[-126.722,-94.548],[-124.771,-92.943],[-125.624,-88.77],[-124.703,-88.285],[-122.038,-88.903],[-121.294,-88.092],[-120.316,-87.286],[-119.532,-88.619],[-119.289,-90.793],[-118,-89.39],[-118.053,-87.458],[-121.252,-84.673],[-134.145,-84.374],[-136.647,-84.376],[-137.839,-83.937],[-137.133,-82.714],[-136.007,-82.178],[-129.535,-81.02],[-121.508,-80.752],[-121.243,-80.202],[-121.957,-77.708],[-124.019,-74.572],[-124.296,-67.652],[-125.809,-65.684],[-127.602,-64.298],[-127.682,-59.848],[-127.73,-59.286],[-127.823,-59.207],[-127.715,-59.006],[-128.235,-56.271],[-128.49,-57.734],[-128.688,-60.433],[-128.702,-61.78],[-128.254,-64.861],[-126.626,-66.82],[-125.428,-68.205],[-125.425,-72.511],[-126.722,-74.302],[-128.18,-72.627],[-129.255,-68.226],[-129.957,-65.958],[-130.223,-65.175],[-130.797,-62.874],[-130.986,-60.118],[-131.044,-58.327],[-130.978,-55.676],[-131.059,-54.582],[-132.789,-56.579],[-132.415,-59.032],[-132.73,-59.544],[-133.803,-60.185],[-133.812,-58.412],[-134.048,-56.778],[-135.881,-55.104],[-138.276,-52.932],[-137.153,-48.72],[-135.872,-44.94],[-135.088,-40.475],[-135.093,-38.998],[-133.793,-34.799],[-131.911,-31.546],[-132.209,-40.051],[-132.87,-51.888],[-131.919,-52.547],[-130.971,-52.032],[-130.9,-41.451],[-130.794,-39.223],[-131.266,-35.249],[-131.422,-33.259],[-131.249,-24.733],[-131.307,-21.645],[-132.686,-22.189],[-133.503,-22.885],[-137.827,-26.946],[-141.662,-37.383],[-142.701,-43.922],[-143.456,-44.766],[-144.438,-43.992],[-144.639,-41.381],[-141.111,-26.464],[-140.19,-24.986],[-139.079,-21.365],[-140.29,-19.553],[-141.713,-18.615],[-142.354,-19.881],[-142.45,-20.7],[-142.877,-21.289],[-143.302,-20.82],[-143.551,-20.027],[-144.884,-14.179],[-147.817,-6.769],[-147.671,-2.765],[-146.319,0.959],[-145.264,4.064],[-145.227,4.478],[-144.699,11.935],[-144.118,14.352],[-142.085,13.206],[-140.494,13.339],[-138.086,16.023],[-138.348,18.468],[-139.06,18.899],[-140.971,21.473],[-139.787,23.572],[-138.519,22.509],[-137.624,21.688],[-134.929,20.313],[-130.208,18.517],[-129.814,20.172],[-133.672,23.054],[-133.549,24.985],[-131.805,24.436],[-131.047,23.841],[-131.544,26.746],[-132.097,29.11],[-132.551,28.801],[-134.209,29.111],[-134.796,37.065],[-134.131,38.411],[-133.612,41.154],[-135.325,45.831],[-139.713,53.693],[-142.093,55.488],[-141.454,52.388],[-139.663,42.754],[-137.703,38.316],[-136.295,25.759],[-135.761,24.182],[-136.561,22.957],[-137.977,24.09],[-138.249,27.114],[-139.807,38.94],[-140.764,41.657]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.837,0],[0.031,-0.123],[1.093,-0.426],[0.056,0.83]],"o":[[0.017,0.135],[-0.168,0.673],[-0.652,0.254],[0.837,0]],"v":[[-200.446,-273.992],[-200.4,-273.589],[-200.592,-271.592],[-202.956,-273.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.182,-0.356],[0.547,-0.026],[0,1.208],[-0.442,-1.069]],"o":[[-0.547,0.026],[0,-1.208],[0.811,0.745],[-0.908,0.004]],"v":[[-247.327,-257.34],[-248.969,-257.262],[-248.969,-260.887],[-246.803,-258.418]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.004,-1.357],[0.543,0.402],[0,0.929],[-0.547,0.026]],"o":[[-0.543,-0.402],[0,-0.929],[0.547,-0.026],[-0.004,1.357]],"v":[[-247.339,-253.268],[-248.969,-254.473],[-248.969,-257.262],[-247.327,-257.34]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.487,0],[1.081,0.086],[0.22,1.905]],"o":[[0.043,1.136],[-1.159,-0.093],[1.487,0]],"v":[[-229.448,-273.992],[-231.071,-272.535],[-233.91,-273.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.068,0],[0.007,-0.203],[2.071,0.188],[0.638,0.028],[0.088,0.676]],"o":[[-0.007,0.202],[-2.069,0.263],[-0.632,-0.057],[-0.442,-0.02],[3.068,0]],"v":[[-208.812,-273.992],[-208.834,-273.385],[-215.055,-273.259],[-216.96,-273.422],[-218.014,-273.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.58,0],[0.846,0.086],[0.024,0.321],[0.27,0.473],[-0.047,0.084]],"o":[[-0.473,0.861],[-0.473,-0.048],[-0.037,-0.5],[0.047,-0.084],[1.58,0]],"v":[[-189.012,-273.992],[-193.262,-271.55],[-193.725,-272.248],[-193.895,-273.74],[-193.753,-273.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,2.138],[-0.102,-0.888],[1.905,-1.343]],"o":[[0.912,-0.145],[0.225,1.962],[0,-2.138]],"v":[[-248.969,-145.169],[-247.424,-144.013],[-248.969,-138.755]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-1.795],[0.543,-0.219],[0,2.417],[-0.544,-0.402]],"o":[[-0.543,0.219],[0,-2.417],[0.543,0.402],[-0.001,1.795]],"v":[[-247.341,-247.881],[-248.969,-247.223],[-248.969,-254.473],[-247.339,-253.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.115],[-1.388,-1.001],[0.093,-0.323],[0.259,-0.031],[0.87,-0.1],[0.55,0.024]],"o":[[1.735,0.269],[0.213,0.154],[-0.101,0.351],[-0.869,0.104],[-0.55,-0.024],[0,-1.115]],"v":[[-248.969,-159.668],[-244.398,-157.513],[-244.011,-156.842],[-244.71,-156.551],[-247.319,-156.25],[-248.969,-156.322]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.58],[-1.088,-0.521],[-0.01,-0.613],[0.47,-0.218],[1.162,-0.534]],"o":[[1.17,0.185],[0.526,0.252],[0.01,0.578],[-1.161,0.538],[0,-1.58]],"v":[[-248.969,161.274],[-245.538,162.14],[-244.545,163.339],[-245.482,164.411],[-248.969,166.015]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.484,-0.896],[0.538,-0.198],[0,1.673],[-0.543,0.219],[-0.702,-0.048],[0.543,-1.447]],"o":[[-0.635,-0.1],[0,-1.673],[0.543,-0.219],[0.028,0.558],[1.539,0.105],[-0.393,1.048]],"v":[[-247.334,-242.737],[-248.969,-242.204],[-248.969,-247.223],[-247.341,-247.882],[-246.468,-246.923],[-245.332,-244.95]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.908,-1.078],[1.011,-0.115],[1.416,-0.002],[0,0.837]],"o":[[0.043,1.314],[-1.426,0.162],[0,-0.837],[2.216,-0.588]],"v":[[-242.855,-162.722],[-244.739,-161.059],[-248.969,-161.341],[-248.969,-163.851]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.043,1.314],[1.31,-0.398],[0.724,-0.154],[-0.478,-0.225],[-0.418,-0.612],[0.31,-0.458],[0.681,0.155],[0.902,0.326],[-0.869,0.104],[-0.101,0.351],[0.213,0.154],[1.735,0.269],[0,0.558],[-1.426,0.162]],"o":[[0.462,1.144],[-0.683,0.207],[0.225,0.677],[0.69,0.325],[0.298,0.436],[-0.375,0.555],[-0.929,-0.211],[0.87,-0.1],[0.259,-0.031],[0.093,-0.323],[-1.388,-1.001],[0,-0.558],[1.416,-0.002],[1.011,-0.115]],"v":[[-242.855,-162.722],[-244.152,-160.296],[-246.273,-159.833],[-244.981,-158.808],[-243.288,-157.416],[-242.743,-155.951],[-244.605,-155.302],[-247.319,-156.25],[-244.71,-156.551],[-244.011,-156.842],[-244.398,-157.513],[-248.969,-159.668],[-248.969,-161.341],[-244.739,-161.059]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.183,0.104],[0.004,1.226],[0.009,4.803],[1.54,0.374],[0,0.279],[0.001,-3.097],[-0.049,-3.333],[-0.061,-1.904]],"o":[[1.013,-0.748],[-0.016,-4.803],[-0.003,-1.512],[0,-0.279],[3.076,0.813],[-0.001,3.334],[0.028,1.898],[0.038,1.18]],"v":[[-248.142,-195.085],[-246.763,-198.09],[-246.784,-212.5],[-248.969,-215.436],[-248.969,-216.272],[-245.895,-212.362],[-245.882,-202.362],[-246.209,-196.699]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.579,-0.828],[0.573,0.888],[0.644,0.028],[0,1.487],[-0.129,-2.041],[-0.271,-0.536]],"o":[[-1.223,-0.34],[-0.226,-0.35],[0,-1.487],[1.577,0.318],[0.034,0.541],[0.779,1.542]],"v":[[-246.181,223.225],[-248.203,220.823],[-248.969,219.83],[-248.969,215.369],[-245.825,218.141],[-244.987,219.718]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,2.974],[-0.283,-0.536],[-1.031,-1.949],[0.812,-0.583],[0.636,-0.052]],"o":[[0.68,0.109],[1.029,1.95],[-0.812,0.583],[-0.636,0.052],[0,-2.974]],"v":[[-248.969,-228.262],[-247.716,-227.092],[-244.625,-221.245],[-247.06,-219.496],[-248.969,-219.34]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.744],[-0.243,0.588],[-0.149,0.318],[-0.961,-0.175],[0.006,-0.772],[0.35,-3.353],[0.682,1.639],[0.513,0.029]],"o":[[0.893,-0.282],[0.136,-0.328],[0.335,-0.715],[0.94,0.171],[-0.026,3.152],[-1.417,-1.177],[-0.139,-0.334],[0,-0.744]],"v":[[-248.969,-267.858],[-248.161,-269.592],[-247.964,-270.663],[-246.259,-271.994],[-245.327,-270.233],[-245.326,-260.58],[-248.375,-264.843],[-248.969,-265.627]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.022],[-1.802,1.269],[-1.757,1.159],[-0.671,-0.777],[1.842,-1.423],[2.739,-2.196]],"o":[[1.983,-1.014],[1.721,-1.212],[1.31,-0.864],[-2.276,0.807],[-2.777,2.146],[0,-1.022]],"v":[[-248.969,-120.631],[-243.588,-124.47],[-238.422,-128.106],[-235.019,-128.143],[-240.743,-124.138],[-248.969,-117.564]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.013,-0.748],[0.276,-0.002],[0,6.785],[-0.003,-1.512],[-0.016,-4.803]],"o":[[-0.276,0.002],[0,-6.785],[1.54,0.374],[0.009,4.803],[0.004,1.226]],"v":[[-248.142,-195.085],[-248.969,-195.081],[-248.969,-215.436],[-246.784,-212.5],[-246.763,-198.09]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.999,0.999,0.999,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.394],[-0.242,-0.152],[-1.482,0.801],[-0.29,-0.17],[-0.743,1.127],[-0.78,1.199],[-1.297,-0.538],[0.562,-0.615],[3.456,-1.806],[0.32,-0.632],[1.3,1.626],[0.596,0.018]],"o":[[0.321,0.025],[1.485,0.929],[0.297,-0.161],[1.556,0.914],[0.787,-1.194],[0.608,-0.935],[0.778,0.323],[-2.552,2.789],[-0.64,0.335],[-0.935,1.845],[-0.322,-0.403],[0,-1.394]],"v":[[-248.969,-181.139],[-248.016,-181.045],[-243.592,-181.026],[-242.652,-181.027],[-239.513,-182.228],[-237.244,-185.872],[-234.625,-187.007],[-234.277,-185.662],[-242.615,-178.035],[-243.929,-176.465],[-247.812,-176.078],[-248.969,-176.956]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.88,-0.438],[1.215,-0.813],[5.681,0.407],[0,1.115],[-2.755,1.448],[-1.869,0.908],[-0.027,0.607]],"o":[[-0.369,1.659],[-4.56,3.052],[0,-1.115],[3.289,0.957],[1.838,-0.966],[0.393,-0.191],[1.033,-0.087]],"v":[[-230.854,-157.165],[-233.843,-153.889],[-248.969,-149.072],[-248.969,-152.419],[-240.208,-154.403],[-234.592,-157.107],[-233.639,-157.979]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.929,1.112],[0.357,0.969],[-0.165,1.984],[-0.189,1.313],[-0.399,0.613],[-0.017,0.671],[-1.208,0],[-0.22,-0.926],[-0.005,-0.018],[-0.034,-0.07],[0.008,-0.174],[-1.104,-1.743],[0.004,-0.641],[0.079,-0.104],[0,-0.175],[-0.003,-3.407],[-0.856,-0.182],[0.258,-0.43],[-1.126,-0.222],[-0.85,-0.165],[0.543,-0.22],[0.106,-0.714],[0.006,-0.213],[-0.469,-3.941],[-0.736,-0.109],[-0.031,-0.709],[-0.004,-0.502],[0,-1.339],[0.288,0.207],[-0.456,2.334],[0.207,1.243],[0.094,1.316],[-0.407,1.598],[1.099,1.876],[-0.332,1.11]],"o":[[0.121,-1.075],[-0.735,-1.995],[0.11,-1.319],[0.098,-0.682],[0.499,-0.767],[1.208,0],[-0.311,0.807],[-0.035,0.028],[0.02,0.073],[-0.008,0.174],[-1.091,1.028],[-0.004,0.641],[-0.079,0.104],[0.001,0.175],[-0.008,3.407],[0,0.645],[-0.261,0.428],[-0.538,0.898],[0.866,0.171],[-0.271,0.793],[-0.491,0.199],[-0.094,0.21],[-0.12,3.962],[0.049,0.413],[0.031,0.709],[0.004,0.502],[0,1.19],[-0.471,-0.335],[-1.837,-1.321],[0.26,-1.331],[-0.221,-1.324],[-0.114,-1.592],[0.508,-1.994],[-0.571,-0.974],[0.332,-1.109]],"v":[[-243.109,-256.985],[-243.499,-260.115],[-243.863,-266.142],[-243.704,-270.091],[-243.26,-272.08],[-243.67,-273.992],[-240.045,-273.992],[-240.606,-271.489],[-240.704,-271.406],[-240.608,-271.195],[-240.632,-270.674],[-240.611,-266.175],[-240.623,-264.252],[-240.86,-263.94],[-240.858,-263.414],[-240.877,-253.192],[-240.029,-251.68],[-240.812,-250.396],[-240.065,-248.816],[-237.484,-248.577],[-239.089,-247.82],[-240.296,-246.961],[-240.567,-246.33],[-240.183,-234.467],[-239.509,-233.259],[-239.415,-231.132],[-239.404,-229.625],[-239.404,-225.907],[-240.452,-226.653],[-243.055,-232.017],[-243.164,-235.848],[-243.266,-239.8],[-242.42,-244.656],[-242.863,-250.421],[-243.038,-253.582]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.301],[-1.712,0.962],[-0.044,1.607],[-0.625,2.133],[-0.427,0.033],[-0.094,-0.329],[-0.207,-0.851],[-1.213,0.991],[-1.982,2.149],[-0.435,0.418],[-0.291,-0.154],[0.097,-0.307],[0.332,-0.339],[1.587,-1.755],[0.058,-1.944],[3.542,-3.557],[0.431,0.332],[-0.279,0.469],[-0.713,2.209],[-0.067,0.219],[0.689,0.587],[0.614,-0.359],[1.42,-1.169],[1.422,0.203]],"o":[[1.952,-0.432],[1.5,-0.843],[0.06,-2.222],[0.082,-0.281],[0.489,-0.037],[0.239,0.841],[0.382,1.567],[2.259,-1.845],[0.409,-0.443],[0.205,-0.196],[0.372,0.197],[-0.142,0.449],[-1.653,1.686],[-1.364,1.509],[-0.155,5.172],[-0.346,0.347],[-0.473,-0.365],[1.153,-1.94],[0.07,-0.218],[0.252,-0.826],[-0.449,-0.382],[-1.607,0.941],[-1.111,0.914],[0,-1.301]],"v":[[-248.969,-191.177],[-243.446,-193.327],[-241.72,-197.48],[-240.722,-204.018],[-240.229,-204.771],[-239.543,-204.026],[-238.929,-201.473],[-236.797,-200.711],[-230.341,-206.596],[-229.056,-207.871],[-228.313,-208.096],[-228.133,-207.238],[-228.887,-206.087],[-233.794,-200.977],[-235.848,-195.835],[-241.929,-183.01],[-243.142,-182.65],[-243.146,-184.025],[-239.619,-189.803],[-239.323,-190.431],[-239.167,-192.883],[-240.939,-191.879],[-245.306,-188.483],[-248.969,-187.273]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.68,0.109],[0,4.647],[-0.636,-0.099],[-0.011,-1.201],[0.056,-0.355],[-1.419,-1.612],[-0.388,0.185],[0.025,0.257],[0.096,1.751],[0.004,1.09],[0.022,4.786],[1.705,0.546],[0.811,0.745],[0,1.58],[-0.139,-0.334],[-1.417,-1.177],[-0.026,3.152],[0.94,0.171],[0.335,-0.715],[0.136,-0.328],[0.893,-0.282],[0.051,1.811],[-0.602,-0.022],[-1.534,0],[0.499,-0.767],[0.098,-0.682],[0.11,-1.319],[-0.735,-1.995],[0.122,-1.075],[0.033,-1.537],[0.121,-3.727],[0.095,-3.044],[0.337,-2.131],[-1.523,-0.354],[0.114,-0.519],[0.186,-0.194],[0.679,-0.115],[1.029,1.95]],"o":[[0,-4.647],[0.538,-0.198],[0.011,1.201],[-0.124,0.345],[-0.295,1.864],[0.194,0.22],[0.302,-0.144],[-0.168,-1.757],[0.716,-0.775],[-0.018,-4.786],[-0.008,-1.759],[-0.442,-1.069],[0,-1.58],[0.513,0.029],[0.682,1.639],[0.35,-3.353],[0.006,-0.772],[-0.961,-0.175],[-0.149,0.318],[-0.243,0.588],[0,-1.812],[-0.017,-0.602],[1.532,0.055],[-0.017,0.671],[-0.399,0.613],[-0.189,1.313],[-0.165,1.984],[0.357,0.969],[-0.511,1.439],[-0.081,3.744],[-0.099,3.045],[-0.066,2.119],[-0.169,1.067],[0.433,0.101],[-0.186,0.194],[-0.679,0.115],[-1.031,-1.949],[-0.283,-0.536]],"v":[[-248.969,-228.262],[-248.969,-242.204],[-247.333,-242.737],[-247.3,-239.133],[-247.662,-238.098],[-246.887,-232.736],[-246.104,-232.333],[-245.9,-233.077],[-245.622,-238.302],[-244.493,-241.047],[-244.51,-255.406],[-246.803,-258.419],[-248.969,-260.887],[-248.969,-265.627],[-248.375,-264.843],[-245.326,-260.58],[-245.327,-270.233],[-246.259,-271.994],[-247.964,-270.663],[-248.161,-269.592],[-248.969,-267.858],[-248.987,-273.294],[-248.271,-274.01],[-243.67,-273.992],[-243.26,-272.08],[-243.704,-270.091],[-243.863,-266.142],[-243.499,-260.115],[-243.109,-256.985],[-243.961,-252.537],[-243.748,-241.323],[-243.964,-232.188],[-244.156,-225.823],[-242.641,-223.101],[-242.03,-222.172],[-242.589,-221.591],[-244.625,-221.246],[-247.716,-227.092]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.497,-1.068],[1.04,0.846],[1.152,1.527],[-1.018,0.545],[0.41,0.377],[0.252,1.098],[-0.192,2.286],[-0.037,-0.5],[-0.473,-0.048],[-0.473,0.861],[-1.115,0],[-1.293,-0.55],[-0.086,-1.073],[-1.246,-0.605],[-1.289,-0.913],[1.576,-1.307],[1.646,-1.901],[0.92,0.503],[0.197,-1.52],[0.119,-1.523],[-0.669,-0.776],[1.061,-1.372],[0.845,-1.528],[0.461,-0.611],[-0.076,0.288],[-1.07,0.693],[0.298,0.714],[0.807,-0.051],[0.083,-0.54],[-0.167,-0.348],[0.072,-0.398],[0.05,0.246],[1.004,1.88],[-0.395,0.711],[-0.54,-1.875],[-0.724,-0.448],[-0.337,0.335],[0.1,0.281],[-0.386,0.292],[-0.382,-0.235],[-0.199,-0.251],[-1.623,0.254],[0.433,0.326],[0.33,0.856],[-0.233,2.12],[0.808,0.037],[-0.124,0.23],[0.572,1],[-0.489,-0.571],[-0.563,-0.338],[-1.216,-0.958],[-0.212,0.444],[-1.641,1.094],[-0.109,0.912],[1.243,0.902],[-0.325,0.011],[-0.24,0.764],[0.577,0.41],[1.737,1.519],[2.494,-1.052],[0.146,-0.84],[-0.508,-0.352],[-2.011,-0.781],[-0.189,-0.746],[0.684,0.224]],"o":[[-1.401,-0.341],[-1.456,-1.184],[-0.459,-0.609],[0.499,-0.267],[-0.652,-0.6],[1.212,-0.09],[0.27,0.473],[0.024,0.321],[0.846,0.086],[1.115,0],[-0.251,1.135],[0.929,0.395],[0.118,1.468],[1.421,0.69],[1.679,1.189],[-1.93,1.6],[-0.689,0.796],[-1.384,-0.757],[-0.196,1.515],[-0.08,1.021],[1.12,1.299],[-1.076,1.391],[-0.594,1.075],[0.076,-0.288],[0.506,-1.087],[0.49,-0.317],[-0.273,-0.655],[-0.674,0.043],[-0.057,0.372],[0.156,0.326],[-0.234,-0.054],[-0.445,-2.207],[-0.385,-0.721],[1.844,-0.705],[0.245,0.852],[0.285,0.177],[0.295,-0.293],[-0.16,-0.446],[0.363,-0.275],[0.268,0.165],[1.073,1.358],[-0.247,-0.622],[-0.652,-0.49],[0.181,-2.125],[0.093,-0.845],[-0.235,-0.142],[0.571,-1.06],[0.852,0.122],[-0.62,1.012],[1.261,0.757],[0.467,0.368],[0.906,-1.899],[0.594,-0.396],[-1.397,0.549],[0.325,-0.008],[0.683,-0.024],[0.23,-0.732],[-1.89,-1.343],[-2.042,-1.785],[-0.623,0.263],[-0.135,0.773],[1.753,1.214],[0.513,0.199],[-0.692,-0.2],[-1.179,-0.387]],"v":[[-187.852,-261.511],[-191.268,-263.755],[-195.489,-267.51],[-195.322,-269.335],[-195.312,-270.311],[-197.008,-272.524],[-193.895,-273.74],[-193.725,-272.248],[-193.262,-271.55],[-189.012,-273.992],[-185.666,-273.992],[-184.51,-271.446],[-182.882,-269.049],[-180.707,-266.063],[-176.607,-263.716],[-176.385,-259.836],[-181.873,-254.726],[-184.221,-254.415],[-186.136,-253.469],[-186.592,-248.908],[-185.609,-246.243],[-185.599,-242.854],[-188.664,-238.566],[-190.388,-238.269],[-190.16,-239.133],[-188.053,-241.96],[-187.423,-243.483],[-190.592,-245.248],[-193.758,-242.863],[-193.577,-241.79],[-193.27,-240.748],[-193.796,-241.142],[-197.035,-246.645],[-197.149,-248.705],[-194.742,-247.541],[-193.274,-245.614],[-192.277,-245.439],[-192.47,-246.304],[-192.466,-247.59],[-191.206,-247.297],[-190.51,-246.628],[-186.398,-245.368],[-187.533,-246.627],[-189.367,-248.231],[-188.807,-254.605],[-189.815,-255.856],[-189.972,-256.432],[-190.131,-259.511],[-188.406,-258.115],[-187.551,-256.535],[-183.471,-254.946],[-182.189,-255.411],[-177.942,-259.433],[-176.797,-261.173],[-180.71,-261.106],[-179.735,-261.13],[-177.911,-261.757],[-178.998,-263.361],[-184.624,-267.445],[-191.267,-268.696],[-192.882,-267.574],[-191.811,-266.08],[-186.272,-262.906],[-184.838,-261.977],[-186.912,-262.581]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.929],[-1.321,1.337],[-0.379,1.65],[0.653,1.259],[0.022,2.457],[-0.413,0.319],[-0.339,-0.943],[-0.005,-0.519],[-1.769,0.816],[-0.35,-0.045],[0.127,-0.485],[-0.541,-0.448],[0.289,-1.516],[-0.762,-0.075],[-0.696,1.541],[-1.644,1.451],[-1.705,2.824],[0.34,-0.748],[4.623,-2.747],[-0.384,-0.828],[-0.634,0.285],[-1.885,0.895],[-0.6,-0.107],[2.499,-0.623],[2.376,-0.569],[1.31,-0.864],[1.721,-1.212],[1.983,-1.014]],"o":[[1.746,-0.837],[1.177,-1.191],[0.354,-1.541],[-1.236,-2.384],[-0.004,-0.491],[0.689,-0.531],[0.174,0.484],[0.018,1.914],[0.292,-0.135],[-0.202,0.466],[-0.134,0.51],[1.27,1.052],[-0.131,0.689],[1.515,0.148],[2.585,1.636],[2.42,-2.136],[0.723,0.328],[-2.278,5.007],[-0.453,0.269],[0.357,0.771],[1.902,-0.857],[0.501,-0.238],[-1.713,2.075],[-2.371,0.591],[-0.671,-0.777],[-1.757,1.159],[-1.802,1.269],[0,-0.929]],"v":[[-248.969,-123.419],[-244.685,-127.054],[-242.377,-131.298],[-243.275,-135.388],[-243.849,-142.735],[-243.027,-143.98],[-241.427,-143.58],[-241.158,-142.092],[-238.346,-140.362],[-237.458,-140.672],[-238.047,-139.27],[-238,-137.706],[-236.812,-133.808],[-235.939,-132.497],[-231.424,-135.399],[-225.332,-136.988],[-219.041,-144.386],[-218.569,-142.883],[-229.336,-131.674],[-230.405,-130.547],[-228.549,-130.311],[-222.883,-132.975],[-221.313,-133.436],[-227.891,-129.854],[-235.019,-128.143],[-238.422,-128.106],[-243.588,-124.47],[-248.969,-120.631]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,2.138],[-1.465,0.388],[-0.302,-0.496],[-1.755,0.563],[0.425,-1.188],[-0.633,-0.377],[-1.28,-0.737],[-0.379,1.534],[-1.363,0.211],[-1.134,-0.971],[0.988,-2.047],[-1.655,-0.793],[0.3,-0.11],[-0.061,-0.557],[-0.568,0.144],[-1.703,-0.872],[-0.74,0.11],[1.908,-1.086],[0.749,-0.359],[1.797,0.948],[1.212,1.016],[1.069,1.022],[0.618,0.48],[-1.164,1.333],[0.505,0.715],[0.546,-0.243],[1.775,-0.883]],"o":[[1.483,-0.321],[0.65,-0.172],[0.953,1.567],[0.994,-0.319],[-0.214,0.598],[1.269,0.757],[1.365,0.786],[0.308,-1.248],[1.519,-0.235],[-1.55,-0.194],[-0.521,1.079],[-0.491,0.04],[-0.397,0.145],[0.056,0.51],[1.993,-0.503],[0.577,0.295],[-1.589,1.599],[-0.127,-0.746],[-1.714,0.822],[-1.325,-0.699],[-1.14,-0.955],[-0.568,-0.543],[-1.409,-1.094],[0.415,-0.476],[-0.319,-0.451],[-1.809,0.806],[0,-2.138]],"v":[[-248.969,147.89],[-244.525,146.906],[-243.311,147.465],[-239.858,148.768],[-238.879,149.679],[-238.276,151.209],[-234.516,153.558],[-231.702,152.361],[-229.547,149.778],[-225.642,151.274],[-229.88,152.164],[-227.903,155.355],[-229.05,155.465],[-230.122,156.077],[-228.932,157.043],[-223.573,158.128],[-221.485,158.122],[-226.929,161.837],[-228.059,161.347],[-233.484,162.058],[-237.547,160.902],[-240.797,157.884],[-242.53,156.286],[-242.874,152.779],[-241.921,151.202],[-243.632,151.685],[-248.969,154.303]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.852,0.123],[0.181,0.176],[0.326,0.601],[0.327,-0.072],[0.019,-0.339],[-0.448,-0.584],[1.352,1.228],[1.013,0.619],[0.443,-0.416],[0.711,-0.586],[0.72,1.597],[0.084,0.491],[0.834,-0.698],[0.91,-0.36],[0.091,1.415],[-1.143,0.975],[-0.779,0.405],[-2.331,0.531],[2.459,-1.098],[2.121,-0.327],[0.197,0.606],[-0.486,0.318],[-2.019,-0.131],[-0.693,0.036],[-0.136,0.499],[0.381,0.185],[0.25,0.113],[-0.007,0.202],[-1.952,0],[-0.652,0.254],[-0.168,0.673],[0.017,0.135],[-2.231,0],[0.047,-0.084],[1.212,-0.09],[-0.652,-0.6],[0.499,-0.267],[-0.459,-0.609],[-1.456,-1.184],[-1.401,-0.341],[0,0],[0.745,-1.438],[0.163,0.007],[0.132,-0.052],[0.246,-0.004]],"o":[[-0.181,-0.176],[-0.311,-0.609],[-0.154,-0.284],[-0.49,0.108],[-0.038,0.694],[-1.555,0.92],[-0.851,-0.773],[-0.551,-0.337],[-0.671,0.629],[-1.363,1.124],[-0.208,-0.462],[-0.267,-1.551],[-0.747,0.625],[-1.279,0.506],[-0.101,-1.569],[0.681,-0.581],[2.309,-0.593],[-2.697,-1.241],[-2.126,0.076],[-0.627,0.097],[-0.177,-0.545],[1.676,-1.096],[0.691,0.045],[0.341,-0.018],[0.146,-0.537],[-0.246,-0.12],[0.007,-0.203],[1.952,0],[0.056,0.83],[1.093,-0.426],[0.031,-0.123],[2.231,0],[-0.047,0.084],[-0.192,2.286],[0.252,1.098],[0.41,0.377],[-1.018,0.545],[1.152,1.527],[1.04,0.846],[0,0],[0.755,0.943],[-0.163,-0.007],[-0.132,0.052],[-0.246,0.004],[-0.49,-0.571]],"v":[[-190.131,-259.511],[-190.674,-260.04],[-191.611,-261.865],[-192.322,-262.429],[-192.632,-261.496],[-192.173,-259.536],[-196.007,-259.946],[-198.562,-262.27],[-199.888,-262.171],[-201.974,-260.361],[-205.599,-261.186],[-206.131,-262.609],[-207.917,-263.068],[-210.374,-261.513],[-212.402,-262.838],[-210.552,-266.544],[-208.262,-267.843],[-201.239,-269.175],[-208.877,-268.436],[-215.257,-268.219],[-216.787,-268.904],[-215.963,-270.22],[-210.448,-271.734],[-208.366,-271.767],[-207.433,-272.133],[-208.085,-273.044],[-208.834,-273.385],[-208.812,-273.992],[-202.956,-273.992],[-200.592,-271.592],[-200.4,-273.589],[-200.446,-273.992],[-193.753,-273.992],[-193.895,-273.74],[-197.008,-272.524],[-195.312,-270.311],[-195.322,-269.335],[-195.489,-267.51],[-191.268,-263.755],[-187.852,-261.51],[-187.849,-261.487],[-186.784,-258.263],[-187.271,-258.282],[-187.669,-258.126],[-188.405,-258.115]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.7,0.274,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.119,0.689],[-0.406,-1.035],[0.652,-0.641],[0.384,-0.404],[-0.327,-0.653],[-0.815,-0.045],[0.38,-2.121],[0.799,0.768],[0.76,0.871],[0.42,-0.93],[0.62,0.807],[1.755,1.685],[-0.156,-0.3],[0.085,-1.294],[1.017,0.727],[1.318,2.651],[0.446,-0.874],[2.487,1.923],[0.082,0.111],[1.505,-1.264],[3.768,-2.762],[2,-0.587],[0,2.417],[-3.807,3.096],[-2.62,1.325],[-4.391,-0.927],[-0.501,0.296],[0.192,0.26],[-0.414,0.184],[-0.503,-0.763],[0.178,-0.436],[0.385,-0.064],[0.142,-0.361],[-0.282,-0.176],[-1.68,-0.445],[-1.004,0.566],[-0.931,1.067],[0.733,0.572]],"o":[[1.102,-0.141],[0.373,0.95],[-0.397,0.391],[-0.446,0.469],[0.321,0.642],[2.169,0.121],[-0.194,1.083],[-0.831,-0.799],[-0.539,-0.617],[-0.568,1.26],[-1.49,-1.941],[-0.485,0.516],[0.632,1.213],[-0.08,1.219],[-2.242,-1.604],[-0.441,-0.886],[-1.465,2.87],[-0.107,-0.083],[-1.125,-1.527],[-3.572,2.998],[-1.724,1.264],[0,-2.417],[4.912,0.349],[2.279,-1.853],[4.32,-2.186],[0.484,0.102],[0.037,-0.377],[-0.306,-0.415],[0.827,-0.367],[0.226,0.343],[-0.213,0.523],[-0.303,0.05],[-0.195,0.496],[1.408,0.879],[0.521,0.41],[1.209,-0.681],[0.624,-0.715],[-0.418,-0.326]],"v":[[-203.825,-181.377],[-201.471,-180.078],[-202.285,-177.762],[-203.466,-176.577],[-204.223,-174.925],[-202.385,-173.881],[-200.175,-171.083],[-202.093,-170.401],[-204.413,-172.977],[-205.847,-172.869],[-207.593,-172.858],[-212.671,-178.08],[-212.687,-176.939],[-212.174,-173.128],[-214.25,-172.235],[-220.296,-177.801],[-222.104,-177.672],[-229.127,-175.987],[-229.401,-176.297],[-232.46,-176.587],[-243.274,-167.712],[-248.969,-165.245],[-248.969,-172.495],[-236.046,-176.837],[-228.312,-181.022],[-215.214,-181.366],[-213.773,-181.276],[-214.146,-182.162],[-213.87,-183.028],[-210.559,-182.09],[-210.272,-180.919],[-211.37,-180.57],[-212.251,-180.369],[-211.63,-179.612],[-207.414,-176.962],[-205.703,-176.018],[-202.382,-178.501],[-202.591,-180.364]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.981,-0.036],[-0.076,-0.617],[-0.045,0.017],[-1.446,-1.142],[-1.103,-0.377],[-1.149,-1.275],[0.63,0.008],[1.251,0.349],[-0.192,-1.677],[0.146,-0.075],[-0.394,-0.661],[-0.173,-0.274],[1.158,0.058],[0.928,-0.012],[0.035,-0.465],[-0.265,-0.082],[0.203,-0.915],[0.764,0.007],[-0.459,-1.547],[0.51,0.105],[0.819,1.952],[0.098,0.26],[0.301,-0.012],[0.053,-0.238],[1.572,-0.089],[0,7.25],[-0.226,-0.35],[-1.223,-0.34],[-1.191,-0.588],[-0.597,0.548],[-0.28,0.363],[1.238,1.461],[-0.903,1.856],[-0.45,0.204],[-1.303,0.023],[-0.662,0.323],[-0.721,-1.091],[0.893,-0.3],[1.711,0.017],[1.247,-1.538],[0.546,-1.541],[-0.762,-0.438]],"o":[[0.059,0.606],[0.07,0.049],[1.93,-0.704],[0.987,0.779],[1.826,0.624],[0.563,0.625],[-1.235,-0.016],[-0.783,-0.218],[0.015,0.132],[-1.006,0.514],[0.166,0.278],[0.572,0.904],[-0.926,-0.047],[-0.31,0.004],[-0.028,0.374],[0.602,0.187],[-0.177,0.799],[-0.857,-0.008],[0.192,0.649],[-2.065,-0.424],[-0.107,-0.256],[-0.144,-0.381],[-0.422,0.017],[-0.303,1.366],[0,-7.25],[0.644,0.028],[0.573,0.888],[-0.137,0.822],[0.935,0.462],[0.325,-0.299],[1.25,-1.616],[1.977,0.382],[0.172,-0.354],[0.751,0.436],[0.581,-0.01],[1.201,-0.586],[0.61,0.924],[-0.205,-1.706],[-1.717,-0.017],[-1.04,1.282],[-0.316,0.892],[1.112,0.638]],"v":[[-239.787,224.297],[-240.396,225.802],[-240.191,225.939],[-235.217,227.155],[-231.926,228.56],[-228.007,231.95],[-228.755,232.916],[-232.467,232.747],[-234.286,233.863],[-234.603,234.291],[-234.814,236.124],[-234.295,236.944],[-235.041,238.239],[-237.826,238.234],[-238.573,238.639],[-237.999,239.093],[-236.793,240.281],[-238.411,241.302],[-239.814,242.587],[-240.736,243.166],[-245.085,239.628],[-245.371,238.845],[-246.181,238.441],[-246.463,239.09],[-248.969,241.58],[-248.969,219.83],[-248.203,220.823],[-246.181,223.225],[-246.482,225.605],[-244.924,223.914],[-244.206,222.736],[-244.474,218.151],[-241.094,216.401],[-240.523,215.353],[-239.885,217.131],[-237.9,216.246],[-233.612,217.255],[-234.408,219.005],[-236.593,217.034],[-241.092,218.743],[-243.545,222.865],[-242.704,224.615]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.168,0.214,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.149,0.532],[-0.218,-0.319],[0.302,-0.609],[-0.331,-0.444],[-0.256,0.091],[-0.107,0.467]],"o":[[-0.16,0.477],[0.407,0.595],[-0.182,0.366],[0.15,0.2],[0.484,-0.173],[0.253,-1.107]],"v":[[-225.115,151.641],[-224.72,152.74],[-224.604,154.564],[-224.814,155.675],[-224.209,155.855],[-223.352,154.848]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.23,0.021],[-1.09,0.176],[-1.589,1.599],[0.577,0.295],[1.993,-0.503],[0.056,0.51],[-0.397,0.145],[-0.491,0.04],[-0.521,1.079],[-1.55,-0.194],[1.519,-0.235],[0.308,-1.248],[1.365,0.786],[1.269,0.757],[-0.214,0.598],[0.994,-0.319],[0.953,1.567],[0.65,-0.172],[1.483,-0.321],[0,2.51],[-1.52,-0.333],[0,0],[0,0],[0,0],[-0.288,0.029],[-2.627,-0.734],[-2.475,-0.335],[-4.645,-1.01],[-0.712,-1.669],[-0.953,-1.241],[-1.187,-0.284],[-0.115,-0.129],[0.516,-0.674],[0.534,0.137],[0.207,0.104],[2.572,-0.607],[0.137,-0.02],[1.531,-0.685],[2.707,-1.403],[1.332,1.327]],"o":[[0.878,-0.609],[1.908,-1.086],[-0.74,0.11],[-1.703,-0.872],[-0.568,0.144],[-0.061,-0.557],[0.3,-0.11],[-1.655,-0.793],[0.988,-2.047],[-1.134,-0.971],[-1.363,0.211],[-0.379,1.534],[-1.28,-0.737],[-0.633,-0.377],[0.425,-1.188],[-1.755,0.563],[-0.302,-0.496],[-1.465,0.388],[0,-2.51],[1.562,-0.053],[-0.001,0],[0,0],[0,0],[0.164,0.271],[2.792,-0.286],[2.4,0.671],[4.737,0.642],[1.476,0.321],[0.605,1.418],[0.691,0.899],[0.069,0.17],[0.372,0.418],[-0.509,0.664],[-0.219,-0.056],[-2.387,-1.194],[-0.135,0.032],[-1.661,0.249],[-2.798,1.252],[-1.253,0.649],[-0.126,-0.125]],"v":[[-229.778,163.228],[-226.929,161.837],[-221.485,158.122],[-223.573,158.128],[-228.932,157.043],[-230.122,156.077],[-229.05,155.465],[-227.903,155.355],[-229.88,152.164],[-225.642,151.274],[-229.547,149.778],[-231.702,152.361],[-234.516,153.558],[-238.276,151.209],[-238.879,149.679],[-239.858,148.768],[-243.311,147.465],[-244.525,146.906],[-248.969,147.89],[-248.969,140.362],[-244.353,140.856],[-244.256,140.842],[-244.223,140.937],[-244.227,140.884],[-243.512,141.214],[-235.506,142.548],[-228.476,144.987],[-214.573,148.165],[-211.05,150.635],[-208.479,154.56],[-205.766,156.565],[-205.552,157.069],[-204.839,158.473],[-206.423,158.164],[-207.045,157.856],[-212.004,157.269],[-212.411,157.354],[-217.149,158.862],[-225.163,163.279],[-229.102,163.305]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.332,0.302,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.55,-0.044],[-0.033,0.423],[0.492,0.097],[0.101,-0.888]],"o":[[0.545,-0.018],[0.034,-0.438],[-0.885,-0.174],[-0.067,0.588]],"v":[[-218.581,-262.539],[-215.862,-264.669],[-216.478,-265.603],[-219.315,-263.558]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.01,-0.056],[0.156,-0.869],[-0.546,-1.137],[-0.536,0.484],[0.067,1.484]],"o":[[-0.844,0.031],[-0.211,1.17],[0.36,0.75],[1.058,-0.955],[-0.046,-1.025]],"v":[[-208.605,-255.311],[-210.405,-254.116],[-210.035,-250.609],[-208.628,-250.267],[-206.981,-253.89]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.493,-1.991],[-0.903,0.195],[-1.636,0.945],[0.519,0.574],[0.934,0.539],[0.459,-0.279]],"o":[[0.091,0.837],[1.876,-0.406],[0.617,-0.356],[-0.709,-0.785],[-0.415,-0.24],[-1.888,1.148]],"v":[[-207.151,-247.13],[-205.798,-245.975],[-200.622,-248.25],[-200.367,-249.917],[-202.772,-251.993],[-204.073,-252.147]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.076,-0.288],[0.307,-0.214],[0.937,1.328],[0.392,0.45],[0.628,-0.709],[0.149,-1.184],[1.773,-2.507],[0.347,-0.123],[-1.094,0.912],[-0.314,0.448],[0.506,0.458],[0.812,-0.201],[0.61,-1.529],[1.077,0.08],[-0.158,1.002],[0.287,2.237],[0.882,0.086],[0.064,-0.798],[0.167,-0.48],[0.197,0.354],[0.442,-0.091],[0.012,-0.39],[-0.67,-0.749],[-0.059,-1.894],[-0.999,-0.625],[-0.312,-0.809],[-0.352,-2.078],[0.728,0.273],[1.076,-0.096],[1.833,0.175],[0.846,0.008],[1.192,-0.29],[0.884,1.201],[0.294,0.412],[1.019,-0.244],[0.923,-0.586],[-0.244,0.439],[0.048,0.449],[-0.516,0.831],[-0.942,-1.285],[-0.417,-0.923],[-1.39,1.554],[-3.65,-0.108],[-0.167,0.067],[0,0],[0,0],[0.126,0.449],[-0.848,-0.396],[-0.282,0.313],[0.129,0.38],[2.558,1.443],[0.143,0.179],[0.544,0.484],[-0.494,1.214],[0.255,0.505],[0.47,-0.071],[2.028,-2.626],[1.32,-0.312],[2.485,0.823],[0.145,-0.161],[0.306,0.193],[0.882,-0.348],[0.031,0.709],[0.018,0.228],[-1.474,-0.805],[-2.013,1.044],[-0.453,0.267],[0.766,1.342],[1.879,-0.639],[0.211,1.722],[2.031,0.544],[-0.002,1.225],[0.758,0.157],[-0.491,0.199],[-0.271,0.793],[-0.611,0.044],[-0.127,0.049],[0.444,1.12],[0.092,0.482],[0.044,0.484],[-2.501,0.242],[-0.134,0.92],[0.652,0.132],[0.328,0.722],[-1.227,1.542],[-0.367,0.003],[-0.667,0.551],[0.356,1.068],[0.517,0.865],[0.404,1.021],[-0.245,0.128],[0.804,1.079],[1.242,-2.082],[1.279,0.305],[2.017,0.477],[0.105,-2.269],[-0.137,-1.002],[0.431,-0.057],[0.076,0.234],[0.76,0.208],[0.001,0.175],[-0.079,0.104],[-0.004,0.641],[0.007,1.5],[-0.008,0.174],[-0.001,0.098],[-0.311,0.807],[-2.045,0],[-1.159,-0.093],[0.043,1.136],[-3.811,0],[-0.442,-0.02],[-0.632,-0.057],[-2.069,0.262],[-0.246,-0.12],[0.146,-0.537],[0.341,-0.018],[0.691,0.045],[1.676,-1.096],[-0.177,-0.545],[-0.627,0.097],[-2.126,0.076],[-0.091,-0.316],[0.681,-0.581],[-0.101,-1.569],[-1.279,0.506],[-0.747,0.625],[-0.267,-1.551],[-0.208,-0.462],[-1.363,1.124],[-0.671,0.629],[-0.551,-0.337],[-0.851,-0.773],[-1.555,0.92],[-0.495,0.182],[-0.181,-0.177],[0.571,-1.06],[-0.235,-0.142],[0.431,-2.486],[0.092,0.856],[-0.01,1.326],[0.559,0.05],[0.4,-2.064],[0.425,-1.124],[-0.385,-0.721],[-0.445,-2.207],[-0.234,-0.054],[-1.061,-0.491]],"o":[[-0.308,0.215],[-1.327,-0.901],[-0.388,-0.453],[-0.618,-0.709],[-0.777,0.878],[-1.773,2.507],[-0.331,0.118],[-0.236,-1.435],[0.42,-0.351],[0.286,-0.408],[-0.413,-0.374],[-1.7,0.421],[-0.227,0.57],[-0.1,-1.021],[0.087,-2.268],[-0.143,-1.114],[-0.863,-0.084],[-0.03,0.37],[-0.352,-0.472],[-0.25,-0.448],[-0.597,0.122],[-0.03,0.955],[1.242,1.388],[0.03,0.964],[-0.309,0.897],[0.788,2.045],[0.151,0.893],[-1.098,-0.412],[-1.771,0.159],[-0.846,-0.008],[-1.286,-0.096],[-1.536,0.374],[-0.3,-0.408],[-0.631,-0.885],[-1.178,0.282],[-0.699,-0.126],[0.205,-0.368],[0.784,-0.465],[0.836,-1.345],[0.61,0.831],[0.905,2.003],[3.652,0.237],[0.165,0.005],[0,0],[0,0],[0.407,-0.414],[-0.171,-0.609],[0.219,0.103],[-0.058,-0.401],[-0.737,-2.173],[-0.175,-0.099],[-0.458,-0.576],[-0.912,-0.811],[0.257,-0.138],[-0.176,-0.348],[-3,0.453],[-0.863,1.117],[-2.075,0.491],[-0.121,-0.04],[-0.303,0.336],[-0.998,-0.629],[-0.031,-0.709],[0.009,-0.23],[-0.085,-1.089],[1.841,1.006],[0.506,-0.049],[1.332,-0.784],[-0.733,-1.283],[-1.594,0.542],[0.109,-2.263],[-1.21,-0.324],[0.001,-0.458],[0.106,-0.714],[0.543,-0.22],[0.611,-0.045],[0.127,-0.049],[1.03,-0.106],[-0.178,-0.448],[0.132,-0.393],[2.522,-0.021],[1.201,-0.116],[0.123,-0.846],[-0.663,-0.135],[1.623,0.051],[0.367,-0.003],[0.466,0.275],[0.654,-0.54],[-0.361,-1.083],[-0.565,-0.756],[0.036,-0.23],[1.264,-0.66],[-1.375,-1.846],[-0.742,0.745],[-2.016,-0.481],[-2.214,-0.524],[-0.048,1.038],[0.037,0.271],[-0.278,0.037],[-0.174,-0.536],[-0.001,-0.175],[0.079,-0.104],[0.004,-0.641],[-0.007,-1.5],[0.008,-0.174],[0.001,-0.098],[-0.22,-0.926],[2.045,0],[0.22,1.905],[1.081,0.086],[3.811,0],[0.088,0.676],[0.638,0.028],[2.071,0.188],[0.25,0.113],[0.381,0.185],[-0.136,0.499],[-0.693,0.036],[-2.019,-0.131],[-0.486,0.318],[0.197,0.606],[2.121,-0.327],[0.284,0.116],[-0.779,0.405],[-1.143,0.975],[0.091,1.415],[0.91,-0.36],[0.834,-0.698],[0.084,0.491],[0.72,1.597],[0.711,-0.586],[0.443,-0.416],[1.013,0.619],[1.352,1.228],[0.584,0.083],[0.181,0.176],[0.572,1],[-0.124,0.23],[-0.249,2.501],[-1.157,0.027],[0,-1.326],[0.004,-0.487],[-1.976,-0.175],[0.188,1.35],[-0.394,0.712],[1.004,1.88],[0.05,0.246],[0.806,0.981],[-0.076,0.288]],"v":[[-190.388,-238.269],[-191.311,-237.625],[-194.83,-240.835],[-195.995,-242.192],[-197.838,-242.179],[-199.343,-239.153],[-204.662,-231.631],[-205.672,-231.271],[-204.412,-234.756],[-203.294,-235.972],[-203.246,-237.339],[-204.712,-238.079],[-207.944,-235.006],[-209.065,-233.578],[-208.84,-236.603],[-209.407,-243.338],[-211.324,-245.045],[-212.474,-243.475],[-212.877,-242.269],[-213.708,-243.402],[-214.763,-243.848],[-215.224,-242.838],[-214.331,-240.303],[-212.414,-235.377],[-211.351,-232.72],[-211.532,-229.989],[-210.583,-223.725],[-211.51,-222.771],[-214.731,-222.833],[-219.937,-221.832],[-222.474,-221.855],[-226.312,-222.065],[-229.746,-223.192],[-230.716,-224.365],[-233.151,-225.106],[-235.86,-223.242],[-236.264,-224.281],[-235.854,-225.425],[-233.658,-227.034],[-230.89,-227.125],[-229.564,-224.393],[-224.982,-223.522],[-214.047,-223.775],[-213.547,-223.967],[-213.571,-224.037],[-213.507,-224.074],[-213.453,-225.361],[-212.738,-226.04],[-211.989,-225.988],[-212.173,-227.195],[-214.761,-233.571],[-215.13,-234.148],[-216.544,-235.842],[-217.441,-238.744],[-216.992,-239.384],[-217.827,-239.948],[-225.799,-236.328],[-229.114,-233.906],[-235.152,-231.94],[-235.674,-231.562],[-236.689,-231.388],[-239.415,-231.131],[-239.509,-233.259],[-239.485,-233.948],[-238.13,-234.895],[-232.235,-234.636],[-230.824,-235.106],[-230.083,-237.775],[-233.823,-238.699],[-235.628,-239.878],[-238.033,-243.435],[-239.772,-245.733],[-240.296,-246.961],[-239.089,-247.82],[-237.484,-248.577],[-235.65,-248.71],[-235.269,-248.857],[-234.176,-250.504],[-234.467,-251.944],[-233.903,-253.036],[-226.634,-254.587],[-225.628,-257.051],[-226.719,-258.127],[-228.404,-259.19],[-223.854,-260.322],[-222.753,-260.33],[-221.293,-259.726],[-220.497,-261.997],[-222.459,-264.265],[-224.703,-265.625],[-224.359,-266.166],[-223.764,-268.455],[-226.983,-268.165],[-229.666,-266.856],[-235.729,-268.235],[-239.785,-265.158],[-239.4,-262.146],[-239.617,-261.515],[-240.039,-261.961],[-240.858,-263.414],[-240.86,-263.94],[-240.623,-264.252],[-240.611,-266.175],[-240.632,-270.674],[-240.608,-271.195],[-240.606,-271.489],[-240.045,-273.992],[-233.91,-273.992],[-231.071,-272.535],[-229.448,-273.992],[-218.014,-273.992],[-216.96,-273.422],[-215.055,-273.259],[-208.833,-273.385],[-208.085,-273.044],[-207.433,-272.133],[-208.366,-271.767],[-210.448,-271.734],[-215.963,-270.22],[-216.787,-268.904],[-215.257,-268.219],[-208.877,-268.436],[-208.262,-267.843],[-210.552,-266.544],[-212.402,-262.838],[-210.374,-261.513],[-207.917,-263.068],[-206.131,-262.609],[-205.599,-261.186],[-201.974,-260.361],[-199.888,-262.171],[-198.562,-262.27],[-196.007,-259.946],[-192.173,-259.536],[-190.673,-260.04],[-190.131,-259.511],[-189.972,-256.432],[-189.815,-255.856],[-190.423,-248.342],[-191.798,-249.999],[-191.793,-253.977],[-192.491,-254.77],[-195.905,-252.089],[-197.15,-248.705],[-197.035,-246.645],[-193.796,-241.142],[-193.27,-240.748],[-190.161,-239.133]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.163,-0.049],[0.114,0.995],[1.261,-0.086],[-0.147,-0.75]],"o":[[0.327,-0.257],[-0.131,-1.144],[-0.749,0.051],[0.228,1.161]],"v":[[-228.781,-147.639],[-227.648,-148.238],[-229.734,-149.936],[-231.41,-149.034]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.685,-0.379],[-0.01,1.048],[0.943,0.122],[0.051,-0.732]],"o":[[0.592,-0.48],[0.01,-1.084],[-1.15,-0.149],[-0.071,1.023]],"v":[[-212.494,-191.63],[-210.599,-192.803],[-212.646,-194.243],[-214.237,-192.712]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.06,-1.602],[-1.05,1.053],[0.193,0.447],[0.34,-0.08]],"o":[[1.546,-0.552],[0.37,-0.371],[-0.186,-0.43],[-1.353,0.318]],"v":[[-223.502,-196.316],[-219.743,-198.803],[-219.493,-200.081],[-220.473,-200.342]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[1.208,0.073],[-0.031,-0.852],[-1.208,0.872],[0.652,0.473]],"o":[[-0.476,0.21],[0.055,1.485],[0.636,-0.459],[-0.891,-0.646]],"v":[[-224.828,-153.837],[-226.219,-153.019],[-221.845,-151.066],[-221.699,-152.672]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.011,1.202],[0.982,-0.248],[-0.918,-1.178],[-0.846,-0.27]],"o":[[-0.009,-1.035],[-1.424,0.359],[0.567,0.728],[1.144,0.365]],"v":[[-194.836,-181.334],[-198.003,-183.848],[-198.826,-181.364],[-196.606,-180.017]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.082,-1.06],[-1.635,-0.704],[-0.307,0.526],[0.505,0.257],[0.17,0.951],[1.1,-0.188]],"o":[[0.391,1.735],[0.568,0.244],[0.303,-0.518],[-1.014,-0.516],[-0.163,-0.913],[-1.065,0.182]],"v":[[-194.335,-189.025],[-191.009,-185.605],[-189.714,-185.928],[-190.023,-187.255],[-191.427,-189.654],[-192.979,-191.149]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.282,-0.015],[-0.077,1.522],[0.919,0.114],[-0.015,-0.943]],"o":[[1.241,0.015],[0.065,-1.288],[-1.189,-0.147],[0.018,1.138]],"v":[[-209.15,-194.241],[-206.854,-196.947],[-208.619,-198.625],[-211.586,-196.402]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.071,-0.053],[-0.603,0.34],[0.093,0.932],[0.775,0.306],[0.797,-0.356],[-0.286,-1.065]],"o":[[0.757,-0.003],[0.748,-0.421],[-0.089,-0.897],[-0.945,-0.374],[-0.853,0.381],[0.281,1.045]],"v":[[-221.17,-185.871],[-219.145,-186.446],[-217.81,-188.398],[-219.462,-189.87],[-221.996,-189.587],[-223.262,-187.549]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.17,1.192],[0.61,0.743],[1.228,-0.908],[-0.738,-0.961],[-0.857,-0.772],[-0.48,0.395]],"o":[[0.238,-1.051],[-0.87,-1.059],[-1.12,0.828],[0.699,0.91],[0.453,0.408],[0.818,-0.672]],"v":[[-224.436,-199.117],[-225.418,-201.72],[-228.89,-201.897],[-229.654,-198.891],[-227.236,-196.411],[-225.704,-196.467]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.242,1.143],[1.766,-0.519],[-0.384,-1.355],[-0.598,-1.196],[-0.745,0.677]],"o":[[0.035,-2.238],[-1.33,0.391],[0.369,1.301],[0.505,1.01],[1.162,-1.055]],"v":[[-227.496,-192.929],[-231.522,-196.396],[-233.114,-193.374],[-231.506,-189.704],[-229.49,-189.341]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0.339,0.048],[0.501,-0.251],[2.226,-1.048],[0.708,-0.802],[1.143,-1.272],[3.702,-3.825],[0.915,-0.261],[0.186,-0.616],[-0.098,-0.032],[-0.429,0.292],[-4.792,2.44],[-0.198,1.451],[-4.137,1.741],[-1.408,0.715],[0.078,0.411]],"o":[[-0.593,-0.081],[-2.2,1.103],[-1,0.471],[-1.132,1.282],[-3.56,3.962],[-0.655,0.677],[-0.544,0.155],[-0.041,0.136],[0.61,0.202],[4.459,-3.028],[1.219,-0.621],[0.597,-4.375],[1.452,-0.611],[0.275,-0.14],[-0.098,-0.519]],"v":[[-213.418,-199.262],[-215.001,-198.82],[-221.613,-195.537],[-224.106,-193.576],[-227.461,-189.694],[-238.608,-178.259],[-240.93,-176.799],[-242.208,-175.866],[-242.053,-175.395],[-240.532,-175.898],[-226.526,-183.867],[-224.379,-186.876],[-217.355,-196.125],[-213.112,-198.228],[-212.503,-198.884]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.987,-0.392],[1.061,-1.516],[1.444,1.921],[0.579,0.702],[0.478,0.592],[0.749,-0.215],[0.146,-0.618],[0.064,-0.409],[0.881,-0.141],[0.477,0.96],[0.282,0.531],[1.457,-1.93],[0.945,0.1],[0.924,-0.866],[0.739,-0.832],[5.597,-1.763],[0.194,2.206],[1.233,-0.072],[0.076,-1.152],[0.185,-2.112],[-0.097,-0.871],[0.885,-0.173],[-0.04,-0.812],[-0.161,-3.086],[-0.017,-4.087],[0.181,-0.575],[-0.056,0.636],[0.067,1.436],[0.592,0.065],[0.116,-0.425],[1.353,0.055],[0.03,-0.356],[0.75,-0.45],[0.501,-0.238],[1.902,-0.857],[0.357,0.771],[-0.453,0.269],[-2.278,5.007],[0.723,0.328],[2.42,-2.136],[2.585,1.636],[0.546,0.23],[-0.443,1.09],[-0.206,0.299],[0.237,0.531],[0.463,0.06],[0.54,0.1],[0.304,-0.509],[0.292,-0.135],[0.018,1.914],[0.174,0.484],[0.689,-0.531],[-0.004,-0.491],[-1.236,-2.384],[0.354,-1.541],[1.177,-1.191],[1.746,-0.837],[0,0.744],[-1.171,0.901],[0.718,1.707],[0.37,0.641],[2.066,-0.542],[0,0.837],[0.225,1.962],[0.912,-0.145],[0,1.301],[-4.56,3.052],[-0.369,1.659],[-0.672,-0.303],[-0.639,0.701],[-1.474,-0.924],[-1.755,2.051],[0.97,0.401],[0.501,0.318],[-0.029,0.241],[-0.175,0.194],[0.46,-0.07],[0.452,0.03],[0.561,0.485],[0.099,0.409],[-0.122,0.175],[0.503,0.529],[1.227,-0.418],[0.092,0.888],[0.601,-0.048],[0.15,-0.864],[0.637,0.907],[0.54,0.558],[1.391,-0.204],[1.21,-0.838],[-2.103,-1],[-1.926,-0.889],[-0.648,0.63],[-0.186,0.029],[-0.244,0.013],[-0.093,-0.291],[0.941,-0.63],[0.408,-0.444],[0.031,-1.03],[-0.427,-0.665],[0.393,-0.191],[1.838,-0.966],[3.289,0.957],[0,1.301],[-0.55,-0.024],[-0.929,-0.211],[-0.375,0.555],[0.298,0.436],[0.69,0.325],[0.225,0.677],[-0.683,0.207],[0.462,1.144],[2.216,-0.588],[0,0.465],[-1.724,1.264],[-3.572,2.998],[-1.125,-1.527],[-0.107,-0.083],[-1.465,2.87],[-0.441,-0.886],[-2.242,-1.604],[-0.08,1.219],[0.632,1.213],[-0.485,0.516],[-1.49,-1.941],[-0.568,1.26],[-0.539,-0.617],[-0.831,-0.799],[-0.194,1.083],[2.169,0.121],[0.321,0.642],[-0.446,0.469],[-0.397,0.391],[0.373,0.95],[1.102,-0.141],[0.222,0.285],[0.71,-0.551],[-1.128,-2.356],[-0.086,-0.26],[1.408,0.879],[-0.195,0.496],[-0.303,0.05],[-0.213,0.523],[0.226,0.343],[0.827,-0.367],[-0.306,-0.415],[0.037,-0.377],[0.484,0.102],[4.32,-2.186],[2.279,-1.853],[4.912,0.349],[0,1.487],[-0.322,-0.403],[-0.935,1.845],[-0.64,0.335],[-2.552,2.789],[0.778,0.323],[0.608,-0.935],[0.787,-1.194],[1.556,0.914],[0.297,-0.161],[1.485,0.929],[0.321,0.025],[0,2.045],[-1.111,0.914],[-1.607,0.941],[-0.449,-0.382],[0.252,-0.826],[0.07,-0.218],[1.153,-1.94],[-0.473,-0.365],[-0.346,0.347],[-0.155,5.172],[-1.364,1.509],[-1.653,1.686],[-0.142,0.449],[0.372,0.197],[0.205,-0.196],[0.409,-0.443],[2.259,-1.845],[0.382,1.567],[0.239,0.841],[0.489,-0.037],[0.082,-0.281],[0.06,-2.222],[1.5,-0.843],[1.952,-0.432],[0,1.301],[-0.276,0.002],[0.038,1.18],[0.028,1.898],[-0.001,3.334],[3.076,0.813],[0,1.022],[-0.636,0.052],[-0.806,-0.166],[-1.117,-0.25],[0.429,-0.729],[0.565,-0.951],[-0.483,-0.528],[-0.5,0.237],[-1.76,0.813],[-0.877,-0.895],[0.687,-1.771],[-0.274,-0.301],[-0.308,0.08],[-0.29,0.144],[-3.912,1.95],[-0.228,0.011],[-0.1,-0.369],[0.249,-0.136],[0.167,-0.702],[-0.456,-1.593],[-0.896,0.232],[-2.009,2.125],[-0.723,0],[0.35,-0.576],[0.625,-1.194],[-0.169,-0.865],[-0.554,-0.099],[-1.128,0.371],[-0.133,1.894],[-1.738,0.722],[-0.878,-0.16],[0.219,-0.523],[0,0],[0.079,-0.096],[-0.424,-0.52],[-2.248,0.245],[-0.742,-0.552],[0.626,-1.051],[0.724,-1.066],[-0.448,-0.188],[0.477,-0.381],[1.382,-1.435],[0.189,0.815],[0.795,-0.106],[-0.072,-0.664],[1.357,-0.575],[1.057,-0.367],[2.828,-0.429],[-0.024,-0.684],[-0.593,-0.037],[-1.332,0.16],[-3.004,1.713],[-2.594,2.506],[0.103,0.777],[-0.433,1.166],[-0.161,-0.404],[-0.454,0.125],[-0.005,0.317],[-0.594,0.046],[-0.458,-1.111],[-1.098,-0.117],[-0.797,-0.781],[-0.905,0.143],[-0.022,-0.519],[0.367,-0.159],[-0.054,-0.624],[-0.425,-0.137],[-0.327,-0.453],[-2.073,0.715],[-0.609,-1.167],[0.007,-0.279],[-0.002,-0.67],[-1.552,0.332],[-0.544,-0.639],[-0.498,0.045]],"o":[[-0.922,1.59],[-1.41,2.014],[-0.546,-0.727],[-0.005,-0.864],[-0.406,-0.503],[-0.631,0.181],[-0.095,0.403],[-0.137,0.874],[-0.839,0.134],[-0.267,-0.537],[-1.138,-2.144],[-0.464,0.615],[-1.403,-0.149],[-0.813,0.762],[-4.053,4.563],[-2.091,0.659],[-0.1,-1.133],[-1.136,0.066],[-0.139,2.115],[-0.001,0.882],[0.102,0.908],[1.102,-0.078],[0.154,3.08],[0.213,4.076],[0.003,0.619],[-0.342,-0.523],[0.125,-1.429],[-0.025,-0.536],[-0.516,-0.057],[-0.283,1.042],[-0.341,-0.014],[-0.868,0.275],[-0.6,-0.107],[-1.885,0.895],[-0.634,0.285],[-0.384,-0.828],[4.623,-2.747],[0.34,-0.748],[-1.705,2.824],[-1.644,1.451],[-0.531,-0.266],[-1.113,-0.468],[0.137,-0.337],[0.296,-0.429],[-0.28,-0.628],[-0.548,-0.072],[-0.658,-0.122],[-0.35,-0.045],[-1.769,0.816],[-0.005,-0.519],[-0.339,-0.943],[-0.413,0.319],[0.022,2.457],[0.653,1.259],[-0.379,1.65],[-1.321,1.337],[0,-0.744],[1.201,-0.861],[1.448,-1.114],[-0.286,-0.68],[-1.09,-1.885],[0,-0.837],[1.905,-1.343],[-0.102,-0.888],[0,-1.301],[5.681,0.407],[1.215,-0.813],[0.757,0.107],[0.89,0.402],[1.422,-1.561],[2.102,1.318],[0.669,-0.782],[-0.55,-0.228],[-0.598,-0.38],[0.306,-0.076],[0.299,-0.332],[-0.508,0.077],[-0.316,-0.599],[0.172,-0.357],[0.122,-0.175],[0.585,-0.396],[-0.764,-0.804],[-0.475,0.162],[-0.075,-0.722],[-0.626,0.049],[-0.782,-0.002],[-0.461,-0.656],[-1.063,-0.935],[-1.537,0.225],[-1.936,1.341],[1.916,0.911],[0.801,0.37],[0.186,-0.029],[0.081,0.28],[0.093,0.292],[-0.91,0.701],[-0.471,0.144],[-0.955,0.145],[-0.038,1.252],[-0.027,0.607],[-1.869,0.908],[-2.755,1.448],[0,-1.301],[0.55,0.024],[0.903,0.325],[0.681,0.155],[0.31,-0.458],[-0.418,-0.612],[-0.478,-0.225],[0.724,-0.154],[1.31,-0.398],[-1.908,-1.078],[0,-0.465],[2,-0.587],[3.768,-2.762],[1.505,-1.264],[0.082,0.111],[2.487,1.923],[0.446,-0.874],[1.318,2.651],[1.017,0.727],[0.085,-1.294],[-0.156,-0.3],[1.755,1.685],[0.62,0.807],[0.42,-0.93],[0.76,0.871],[0.799,0.768],[0.38,-2.121],[-0.815,-0.045],[-0.327,-0.653],[0.384,-0.404],[0.652,-0.641],[-0.406,-1.035],[-0.322,-0.027],[-0.736,-0.944],[-1.978,1.537],[0.117,0.245],[-1.68,-0.445],[-0.282,-0.176],[0.142,-0.361],[0.385,-0.064],[0.178,-0.436],[-0.503,-0.763],[-0.414,0.184],[0.192,0.26],[-0.501,0.296],[-4.391,-0.927],[-2.62,1.325],[-3.807,3.096],[0,-1.487],[0.596,0.018],[1.3,1.626],[0.32,-0.632],[3.456,-1.806],[0.562,-0.615],[-1.297,-0.538],[-0.78,1.199],[-0.743,1.127],[-0.29,-0.17],[-1.482,0.801],[-0.242,-0.152],[0,-2.045],[1.422,0.203],[1.42,-1.169],[0.614,-0.359],[0.689,0.587],[-0.067,0.219],[-0.713,2.209],[-0.279,0.469],[0.431,0.332],[3.542,-3.557],[0.058,-1.944],[1.587,-1.755],[0.332,-0.339],[0.097,-0.307],[-0.291,-0.154],[-0.435,0.418],[-1.982,2.149],[-1.213,0.991],[-0.207,-0.851],[-0.094,-0.329],[-0.427,0.033],[-0.625,2.133],[-0.044,1.607],[-1.712,0.962],[0,-1.301],[0.276,-0.002],[1.183,0.104],[-0.061,-1.904],[-0.049,-3.333],[0.001,-3.097],[0,-1.022],[0.636,-0.052],[0.307,0.971],[1.122,0.231],[0.724,0.162],[-0.561,0.954],[-0.421,0.708],[0.465,0.508],[1.753,-0.829],[0.88,-0.406],[-0.493,1.866],[-0.114,0.295],[0.246,0.27],[0.31,-0.081],[3.916,-1.937],[0.196,-0.098],[0.346,-0.016],[0.09,0.332],[-0.663,0.361],[-1.128,0.683],[0.284,0.993],[2.603,-0.674],[0.346,-0.366],[-0.439,0.722],[-0.868,1.029],[-1.017,0.739],[0.141,0.723],[1.276,0.227],[1.803,-0.593],[0.107,-1.519],[0.862,0.247],[0.876,0.159],[0,0],[-0.079,0.096],[0.084,0.573],[1.536,1.399],[0.796,-0.087],[0.902,1.175],[-1.211,0.745],[-0.1,0.376],[0.78,0.327],[-1.555,1.242],[-0.645,0.67],[-0.157,-0.679],[-0.743,0.099],[0.17,1.568],[-1.022,0.433],[-2.726,0.947],[-0.459,0.07],[0.026,0.744],[1.347,0.084],[3.435,-0.413],[3.196,-1.823],[0.551,-0.532],[1.603,-0.693],[0.439,0.109],[0.11,0.278],[0.37,-0.102],[0.006,-0.425],[0.627,1.138],[0.545,1.321],[0.918,0.582],[0.569,0.558],[0.582,-0.052],[0.023,0.542],[-0.416,0.18],[0.05,0.58],[0.524,0.169],[1.247,1.726],[1.216,-0.062],[-0.007,0.279],[-0.387,0.486],[-0.061,1.721],[0.773,-0.165],[0.248,0.292],[0.643,1.041]],"v":[[-165.48,-179.479],[-168.066,-174.613],[-171.69,-174.507],[-173.423,-176.617],[-174.49,-178.673],[-176.043,-179.846],[-176.763,-178.152],[-177.019,-176.936],[-178.5,-175.319],[-180.659,-176.121],[-181.565,-177.681],[-184.904,-177.945],[-186.761,-176.681],[-190.063,-175.195],[-192.429,-172.833],[-207.518,-164.421],[-210.21,-166.357],[-212.379,-168.201],[-214.12,-166.27],[-214.66,-159.933],[-214.643,-157.288],[-215.856,-155.852],[-214.64,-154.531],[-214.47,-145.284],[-214.408,-133.025],[-214.727,-131.26],[-215.021,-132.949],[-214.991,-137.262],[-215.887,-138.544],[-216.613,-137.507],[-218.596,-135.614],[-219.137,-134.899],[-221.313,-133.436],[-222.883,-132.975],[-228.549,-130.311],[-230.405,-130.547],[-229.336,-131.674],[-218.569,-142.883],[-219.041,-144.386],[-225.332,-136.988],[-231.424,-135.399],[-233.02,-136.191],[-233.992,-138.534],[-233.474,-139.5],[-233.101,-140.894],[-234.456,-141.253],[-236.115,-141.339],[-237.458,-140.672],[-238.346,-140.362],[-241.158,-142.092],[-241.427,-143.58],[-243.027,-143.98],[-243.849,-142.735],[-243.275,-135.388],[-242.377,-131.298],[-244.685,-127.054],[-248.969,-123.419],[-248.969,-125.65],[-245.373,-128.242],[-244.228,-132.713],[-245.262,-134.677],[-248.969,-136.246],[-248.969,-138.755],[-247.424,-144.013],[-248.969,-145.169],[-248.969,-149.072],[-233.843,-153.889],[-230.854,-157.165],[-228.825,-156.283],[-226.364,-156.561],[-222.032,-156.786],[-216.281,-157.425],[-216.569,-158.986],[-218.17,-159.784],[-217.965,-160.459],[-217.069,-160.707],[-218.331,-162.838],[-219.654,-163.127],[-220.51,-164.966],[-220.294,-166.096],[-219.928,-166.621],[-219.782,-167.983],[-222.564,-168.985],[-223.842,-169.441],[-224.848,-170.863],[-226.387,-169.492],[-228.697,-169.704],[-230.324,-171.376],[-234.01,-172.408],[-237.882,-170.373],[-237.665,-166.726],[-231.867,-164.1],[-229.71,-164.391],[-229.152,-164.477],[-228.61,-164.175],[-228.332,-163.3],[-231.397,-161.964],[-232.838,-161.661],[-235.432,-158.984],[-233.639,-157.979],[-234.592,-157.107],[-240.208,-154.403],[-248.969,-152.419],[-248.969,-156.322],[-247.319,-156.25],[-244.605,-155.302],[-242.743,-155.951],[-243.288,-157.416],[-244.981,-158.808],[-246.273,-159.833],[-244.152,-160.296],[-242.855,-162.722],[-248.969,-163.851],[-248.969,-165.245],[-243.274,-167.712],[-232.46,-176.587],[-229.401,-176.297],[-229.127,-175.987],[-222.104,-177.672],[-220.296,-177.801],[-214.25,-172.235],[-212.174,-173.128],[-212.687,-176.939],[-212.671,-178.08],[-207.593,-172.858],[-205.847,-172.869],[-204.413,-172.977],[-202.093,-170.401],[-200.175,-171.083],[-202.385,-173.881],[-204.223,-174.925],[-203.466,-176.577],[-202.285,-177.762],[-201.471,-180.078],[-203.825,-181.377],[-204.713,-181.68],[-206.82,-181.621],[-207.676,-177.74],[-207.414,-176.962],[-211.63,-179.612],[-212.251,-180.369],[-211.37,-180.57],[-210.272,-180.919],[-210.559,-182.09],[-213.87,-183.028],[-214.146,-182.162],[-213.773,-181.276],[-215.214,-181.366],[-228.312,-181.022],[-236.046,-176.837],[-248.969,-172.495],[-248.969,-176.956],[-247.812,-176.078],[-243.929,-176.465],[-242.615,-178.035],[-234.277,-185.662],[-234.625,-187.007],[-237.244,-185.872],[-239.513,-182.228],[-242.652,-181.027],[-243.592,-181.026],[-248.016,-181.045],[-248.969,-181.139],[-248.969,-187.273],[-245.306,-188.483],[-240.939,-191.879],[-239.167,-192.883],[-239.323,-190.431],[-239.619,-189.803],[-243.146,-184.025],[-243.142,-182.65],[-241.929,-183.01],[-235.848,-195.835],[-233.794,-200.977],[-228.887,-206.087],[-228.133,-207.238],[-228.313,-208.096],[-229.056,-207.871],[-230.341,-206.596],[-236.797,-200.711],[-238.929,-201.473],[-239.543,-204.026],[-240.229,-204.771],[-240.722,-204.018],[-241.72,-197.48],[-243.446,-193.327],[-248.969,-191.177],[-248.969,-195.081],[-248.142,-195.085],[-246.209,-196.699],[-245.882,-202.362],[-245.895,-212.362],[-248.969,-216.272],[-248.969,-219.34],[-247.06,-219.496],[-245.081,-218.236],[-241.701,-217.613],[-241.145,-216.286],[-242.761,-213.385],[-242.559,-211.488],[-241.032,-211.591],[-235.771,-214.073],[-233.11,-214.046],[-235.628,-208.959],[-235.723,-208.062],[-234.802,-207.938],[-233.908,-208.316],[-221.834,-213.35],[-221.157,-213.458],[-220.385,-213.008],[-220.816,-212.381],[-221.961,-210.72],[-222.858,-207.502],[-220.989,-206.018],[-213.579,-209.124],[-212.111,-209.759],[-213.25,-207.886],[-215.507,-204.562],[-215.948,-201.885],[-214.36,-201.494],[-210.896,-202.346],[-207.958,-206.301],[-206.04,-210.126],[-203.451,-209.405],[-203.001,-208.268],[-203.03,-208.221],[-203.267,-207.934],[-203.002,-206.219],[-197.582,-203.969],[-195.168,-203.637],[-195.434,-200.354],[-197.561,-197.126],[-197.284,-196.169],[-197.222,-195.112],[-201.697,-191.172],[-202.908,-191.478],[-203.711,-193.231],[-204.042,-191.269],[-205.935,-188.276],[-209,-186.969],[-217.392,-185.257],[-218.74,-184.614],[-217.287,-183.922],[-213.282,-184.199],[-203.596,-187.328],[-195.552,-194.554],[-194.938,-196.606],[-193.54,-200.063],[-192.674,-199.253],[-192.123,-198.644],[-191.802,-199.475],[-191.226,-200.38],[-188.789,-197.492],[-186.25,-195.908],[-183.586,-194.029],[-181.38,-193.156],[-180.47,-192.358],[-181.34,-191.618],[-182.221,-190.726],[-181.244,-189.878],[-179.732,-189.266],[-174.853,-187.569],[-171.994,-186.157],[-172.014,-185.319],[-172.792,-183.681],[-171.218,-182.209],[-169.25,-181.615],[-168.279,-180.961]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.461,-0.032],[0.189,0.468],[0.673,0.084],[0.006,-0.721]],"o":[[1.318,-0.001],[-0.372,-0.924],[-0.575,-0.072],[-0.006,0.779]],"v":[[-160.991,173.278],[-158.983,172.424],[-160.917,171.867],[-162.185,172.587]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,-0.002],[-0.054,0.963],[0.733,0.033],[0.094,-0.935]],"o":[[1.035,0.268],[0.057,-1.01],[-0.982,-0.044],[-0.115,1.139]],"v":[[213.101,197.234],[214.703,195.845],[213.138,194.755],[211.478,196.199]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.601,0.821],[0.563,-0.379],[-0.337,-0.621],[-0.874,0.207],[0.149,0.517]],"o":[[-0.658,0.348],[-0.615,0.414],[0.405,0.746],[0.469,-0.111],[-0.254,-0.884]],"v":[[-126.925,195.012],[-128.782,196.009],[-129.199,197.719],[-127.219,198.609],[-126.396,197.698]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.095,0.007],[-0.263,0.063],[0.424,0.267],[0.841,-0.084],[0.076,-0.871],[-0.623,-0.231]],"o":[[0.606,0],[0.675,-0.161],[-0.656,-0.412],[-0.882,0.089],[-0.072,0.833],[0.209,0.077]],"v":[[247.001,48.898],[248.161,48.887],[249.063,47.254],[246.9,46.403],[245.055,47.799],[246.636,48.863]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.56,0.052],[-1.12,1.014],[0.174,0.271],[0.303,-0.026],[1.133,-0.79],[-0.25,-0.631]],"o":[[1.657,-0.062],[0.218,-0.197],[-0.173,-0.269],[-1.44,0.124],[-0.319,0.222],[0.208,0.526]],"v":[[173.066,202.25],[176.909,200.057],[177.008,199.301],[176.287,199.078],[172.538,200.714],[171.769,201.649]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.677,-0.015],[0.556,-0.02],[0.016,-0.782],[-0.501,-0.066],[-0.459,0.2],[-0.603,-0.466],[-0.362,0.74],[0.857,0.37]],"o":[[-0.758,0],[-0.987,0.036],[-0.018,0.909],[0.529,0.07],[0.706,-0.307],[0.491,0.38],[0.331,-0.675],[-0.838,-0.362]],"v":[[-163.58,229.879],[-165.451,229.883],[-166.675,231.414],[-165.451,232.092],[-163.972,231.782],[-162.012,231.954],[-160.654,231.9],[-161.182,230.173]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.25,-0.21],[-0.164,0.669],[0.424,0.226],[0.98,0.384],[0.027,-1.024],[-0.559,0.13]],"o":[[0.473,-0.12],[0.13,-0.529],[-0.932,-0.496],[-0.931,-0.364],[-0.015,0.592],[1.353,-0.314]],"v":[[222.171,184.166],[223.393,183.704],[222.785,182.571],[219.94,181.179],[217.348,183.062],[218.269,184.004]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.896,0.171],[-0.398,0.081],[0.11,0.687],[0.933,-0.488],[0.554,0.221],[0.362,-1.108],[-0.677,-0.166]],"o":[[0.46,0],[0.589,-0.12],[-0.165,-1.036],[-0.587,0.307],[-0.824,-0.329],[-0.386,1.183],[0.886,0.218]],"v":[[-230.034,196.941],[-228.748,196.926],[-227.848,195.767],[-230.404,194.315],[-231.873,194.3],[-233.771,195.211],[-232.696,196.58]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.062,-0.106],[-0.19,1.488],[0.809,0.035],[-0.027,-1.156]],"o":[[0.966,-0.046],[0.157,-1.23],[-1.445,-0.063],[0.035,1.501]],"v":[[262.233,51.82],[264.607,50.531],[263.12,48.01],[259.982,50.363]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.798,0.796],[0.454,-0.532],[0.333,-1.696],[-0.497,-0.132],[-1.017,0.708],[0.133,0.716]],"o":[[-0.573,0.121],[-1.085,1.272],[-0.072,0.365],[1.404,0.372],[0.728,-0.507],[-0.139,-0.749]],"v":[[-152.819,189.171],[-154.435,189.467],[-156.857,193.748],[-156.569,194.674],[-153.198,193.42],[-152.867,191.591]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.03,0.889],[1.173,0.045],[0.053,-0.723],[-0.727,0.004]],"o":[[0.036,-1.076],[-0.646,-0.025],[-0.046,0.626],[0.81,-0.005]],"v":[[261.93,214.305],[259.391,211.802],[257.203,213.986],[259.909,216.455]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[0.025,-0.322],[-0.543,-1.036],[-0.513,0.252],[0.269,0.411],[-0.533,0.536],[1.034,0.415],[0.18,0.2],[0.591,-0.207],[0.092,-0.504]],"o":[[-0.172,1.366],[0.42,0.801],[0.582,-0.286],[-0.424,-0.647],[0.84,-0.844],[-0.252,-0.101],[-0.465,-0.516],[-0.731,0.256],[-0.058,0.316]],"v":[[-128.016,160.698],[-126.505,163.845],[-124.944,164.009],[-124.843,162.834],[-124.856,160.91],[-125.191,159.172],[-125.879,158.712],[-127.528,158.271],[-127.935,159.733]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.416,0],[0,-0.003],[-0.369,0.019],[-0.467,0.773],[0.429,0.4],[0.842,-0.376],[0.747,-0.357],[-0.188,-0.66],[-0.81,-0.039]],"o":[[0,0.003],[0.37,0],[1.072,-0.054],[0.262,-0.433],[-0.697,-0.651],[-0.757,0.338],[-0.478,0.228],[0.184,0.647],[0.415,0.02]],"v":[[145.164,175.488],[145.164,175.496],[146.274,175.493],[148.336,173.851],[148.031,172.462],[145.73,172.15],[143.437,173.115],[142.421,174.227],[143.915,175.484]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.553,0],[0,0.002],[-0.692,-0.012],[-0.197,0.493],[0.444,0.298],[0.429,0.024],[1.291,-0.002],[0.143,-0.315],[-1.138,-0.049]],"o":[[0,-0.002],[0.692,0],[0.626,0.011],[0.226,-0.565],[-0.375,-0.251],[-1.287,-0.073],[-0.282,0],[-0.474,1.042],[0.552,0.024]],"v":[[-102.22,223.741],[-102.22,223.735],[-100.145,223.738],[-99.059,222.843],[-99.516,221.528],[-100.767,220.99],[-104.64,220.958],[-105.304,221.33],[-103.88,223.736]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0.107,1.114],[0.118,0.18],[1.636,1.45],[0.407,-0.329],[-0.279,-0.5],[-2.127,-1.151]],"o":[[0.008,0.031],[-1.199,-1.835],[-0.391,-0.346],[-0.459,0.371],[1.179,2.111],[0.73,0.395]],"v":[[-113.461,165.098],[-113.571,164.691],[-117.866,159.794],[-119.142,159.856],[-119.459,161.225],[-114.508,166.163]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.113,0.624],[1.024,0.328],[0.434,-0.778],[0.442,-0.918],[-0.315,-0.202],[-0.995,0.144],[-0.244,0.878]],"o":[[-0.042,-0.935],[-1.09,-0.349],[-0.496,0.889],[-0.108,0.225],[0.718,0.461],[0.905,-0.131],[0.196,-0.706]],"v":[[181.625,77.054],[180.653,74.869],[178.615,76.091],[177.241,78.822],[177.163,79.552],[179.458,80.673],[181.237,79.123]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.55,0.064],[-0.539,0.547],[-1.525,1.677],[0.553,0.568],[0.509,-0.509],[1.969,-1.966],[-0.248,-0.549]],"o":[[1.092,0.282],[1.59,-1.615],[0.472,-0.519],[-0.616,-0.632],[-1.966,1.969],[-0.338,0.337],[0.233,0.516]],"v":[[175.09,89.61],[176.94,88.272],[181.6,83.32],[181.98,81.455],[180.213,81.93],[174.31,87.831],[173.914,89.038]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[2.773,-0.277],[0.932,-0.619],[-0.751,-0.483],[-2.05,-0.6],[-0.135,0.203],[-1.41,0.696],[0.642,0.284]],"o":[[-0.996,0.059],[-0.754,0.501],[1.795,1.154],[0.221,0.065],[1.011,-1.521],[0.972,-0.48],[-2.392,-1.058]],"v":[[-133.87,207.315],[-136.84,207.714],[-136.913,210.291],[-131.142,212.914],[-130.503,212.961],[-126.281,210.842],[-126.366,209.408]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[0.01,0.331],[1.113,-0.657],[1.506,-1.202],[-1.285,-0.461],[-0.662,0.314],[-1.277,1.27]],"o":[[0.007,-1.062],[-1.659,0.979],[-1.068,0.852],[0.698,0.25],[1.685,-0.799],[0.252,-0.25]],"v":[[127.216,212.325],[125.107,211.348],[120.348,214.644],[120.839,216.901],[122.85,216.728],[126.954,213.234]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.01,0.379],[-0.32,0.036],[-0.442,0.943],[0.393,0.299],[0.93,-0.589],[0.463,0.85],[1.193,0.715],[0.454,-0.446],[-0.267,-0.398],[-1.055,-1.27]],"o":[[0.458,0],[1.064,-0.119],[0.214,-0.457],[-0.766,-0.582],[-0.496,0.314],[-0.699,-1.283],[-0.312,-0.187],[-0.337,0.331],[0.923,1.378],[0.577,0.694]],"v":[[-118.895,175.491],[-117.789,175.485],[-115.638,173.786],[-115.834,172.699],[-118.221,172.579],[-120.195,172.245],[-123.208,169.471],[-124.18,169.041],[-124.094,170.337],[-121.248,174.413]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.52,-0.311],[-0.555,0.24],[0.137,1.018],[0.99,-0.015],[0.254,0.094],[1.094,-0.713],[-0.394,-0.479]],"o":[[0.694,-0.136],[1.286,-0.557],[-0.137,-1.018],[-0.267,0.004],[-1.382,-0.513],[-0.598,0.39],[1.017,1.237]],"v":[[-147.074,161.307],[-145.289,160.686],[-143.954,157.911],[-146.183,156.708],[-146.983,156.54],[-150.602,157.341],[-150.942,158.94]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.851,0.056],[-2.274,0.557],[0.183,0.706],[0.465,-0.278],[0.993,-0.08],[1.492,-0.203],[0.22,-0.634],[-0.334,-0.356]],"o":[[2.352,-0.302],[0.778,-0.191],[-0.229,-0.884],[-0.97,0.58],[-1.502,0.121],[-0.668,0.091],[-0.206,0.593],[0.578,0.616]],"v":[[232.513,132.036],[239.173,129.865],[240.102,128.428],[238.5,127.913],[235.544,128.364],[231.046,128.805],[229.632,130.016],[230.354,131.25]],"c":true}},"nm":"P"},{"ind":22,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.618,-0.006],[-0.435,0.526],[1.827,1.519],[0.509,-0.555],[-0.279,-1.505]],"o":[[2.562,0.006],[1.329,-1.607],[-0.632,-0.526],[-0.715,0.779],[0.466,2.518]],"v":[[-140.443,168.251],[-137.446,167.731],[-138.173,163.169],[-141.973,162.794],[-143.351,165.695]],"c":true}},"nm":"P"},{"ind":23,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.042],[0.004,0],[0.056,-2.086],[-0.836,-0.042],[0.012,0.682],[0.186,4.173],[1.111,-0.004],[-0.013,-0.993]],"o":[[-0.004,0],[0,2.088],[-0.024,0.902],[0.924,0.047],[-0.076,-4.172],[-0.034,-0.753],[-1.106,0.004],[0.026,2.041]],"v":[[-134.079,129.698],[-134.091,129.698],[-134.109,135.962],[-132.924,137.282],[-131.859,135.997],[-131.569,123.495],[-132.68,121.955],[-134.087,123.574]],"c":true}},"nm":"P"},{"ind":24,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.687,-1.828],[-1.108,-0.536],[-0.97,-0.361],[-0.361,2.158],[-0.643,-0.589],[-0.738,-0.632],[-1.68,1.626],[-0.386,0.449],[0.6,1.046],[0.789,-0.527],[0.935,1.121],[0.443,0.409],[1.631,0.884],[0.533,-1.138]],"o":[[0.21,0.762],[0.916,0.443],[2.04,0.76],[0.145,-0.868],[0.716,0.656],[1.812,1.552],[0.43,-0.416],[0.596,-0.693],[-0.697,-1.216],[-1.34,0.896],[-0.385,-0.462],[-1.366,-1.261],[-0.882,-0.478],[-0.635,1.355]],"v":[[168.261,219.568],[168.821,221.916],[171.534,223.316],[174.287,221.795],[175.259,221.406],[177.466,223.312],[181.12,223.225],[182.496,222.066],[183.942,219.824],[181.276,220.049],[178.032,219.488],[176.748,218.212],[172.264,214.96],[169.695,215.256]],"c":true}},"nm":"P"},{"ind":25,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.216,-0.542],[-1.455,-0.335],[-0.797,-0.622],[-0.517,0.491],[-1.297,1.181],[1.362,0.324],[1.443,-0.976],[0.398,-0.012],[1.106,-0.175]],"o":[[-0.009,0.882],[0.865,0.199],[0.284,0.222],[1.271,-1.208],[1.036,-0.943],[-1.44,-0.343],[-0.333,0.225],[-1.173,0.034],[-0.324,0.051]],"v":[[208.317,135.562],[209.8,137.701],[212.442,138.834],[213.802,138.79],[217.742,135.303],[217.237,133.084],[212.854,133.22],[211.678,133.615],[208.595,134.776]],"c":true}},"nm":"P"},{"ind":26,"ty":"sh","ks":{"a":0,"k":{"i":[[0.316,-2.549],[-1.132,-0.304],[-0.484,0.556],[-0.651,3.049],[0.464,0.249],[0.276,-1.651]],"o":[[0.3,0.587],[1.025,0.275],[2.167,-2.489],[0.114,-0.534],[-1.496,-0.803],[-0.409,2.443]],"v":[[218.646,116.605],[219.33,118.549],[221.041,117.214],[224.231,108.522],[223.619,107.415],[219.6,109.14]],"c":true}},"nm":"P"},{"ind":27,"ty":"sh","ks":{"a":0,"k":{"i":[[1.219,0.062],[0.203,-0.625],[-0.313,-0.149],[-1.243,-0.377],[-3.109,0.133],[-0.307,0.661],[0.386,0.319],[1.548,0.924],[1.394,-0.015]],"o":[[-0.374,0.007],[-0.103,0.316],[1.125,0.535],[2.924,0.887],[0.411,-0.018],[0.268,-0.578],[-1.393,-1.152],[-1.181,-0.705],[-1.229,0.013]],"v":[[105.481,213.143],[104.422,213.395],[104.617,214.285],[107.781,216.226],[116.725,217.89],[117.94,217.815],[117.35,216.529],[112.878,213.499],[109.023,212.555]],"c":true}},"nm":"P"},{"ind":28,"ty":"sh","ks":{"a":0,"k":{"i":[[0.528,-0.156],[-2.805,3.431],[1.31,0.294],[0.488,0.225],[2.191,0.053],[-0.559,-0.789],[0.276,-0.646],[0.623,-0.133]],"o":[[2.801,2.989],[0.844,-1.032],[-0.538,-0.121],[-2.14,-0.985],[-0.969,-0.023],[0.337,0.476],[-0.209,0.489],[-0.403,0.086]],"v":[[-166.351,202.994],[-154.747,202.409],[-155.577,200.087],[-157.191,199.737],[-163.765,199.276],[-164.381,200.828],[-163.28,202.027],[-165.028,202.61]],"c":true}},"nm":"P"},{"ind":29,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.282,-0.066],[2.42,1.815],[1.026,-0.03],[0.966,-0.003],[0.856,-0.47],[-0.288,0.013],[-1.152,0.395],[-1.001,-1.349],[-0.883,0.025],[-0.502,-0.097]],"o":[[-2.545,-2.132],[-0.815,-0.611],[-0.945,0.028],[-1.012,0.003],[-0.399,0.219],[0.938,-0.043],[1.203,-0.413],[0.665,0.896],[0.511,-0.014],[1.891,0.364]],"v":[[-111.438,183.884],[-118.662,177.908],[-121.733,176.993],[-124.619,177.162],[-127.373,178.01],[-127.821,180.726],[-125.059,181.132],[-121.15,181.534],[-118.92,182.464],[-117.417,182.663]],"c":true}},"nm":"P"},{"ind":30,"ty":"sh","ks":{"a":0,"k":{"i":[[0.505,-0.005],[0.763,-1.602],[0.659,0.121],[1.137,-0.573],[-0.682,-0.613],[-1.201,-0.423],[-2.184,-0.585],[-0.278,0.253],[0.155,0.23],[1.528,1.648],[-0.344,0.063],[-0.772,0.45],[0.313,0.525]],"o":[[-1.784,0.297],[-0.179,0.377],[-1.447,-0.265],[-1.156,0.583],[0.92,0.827],[2.134,0.752],[0.316,0.084],[0.253,-0.23],[-1.233,-1.829],[-0.291,-0.314],[1.063,-0.195],[0.358,-0.209],[-0.246,-0.413]],"v":[[143.957,202.803],[140.246,205.774],[139.422,206.706],[135.873,207.959],[135.763,209.722],[138.921,211.52],[145.375,213.575],[146.294,213.545],[146.282,212.788],[142.866,207.132],[142.772,206.201],[144.689,204.428],[145.218,203.296]],"c":true}},"nm":"P"},{"ind":31,"ty":"sh","ks":{"a":0,"k":{"i":[[1.016,1.366],[2.011,0.621],[0.313,0.008],[0.31,-0.754],[-0.455,-0.505],[-0.435,-0.116],[-1.267,-0.563],[0.484,-0.852],[-0.627,-0.56],[-0.789,0.169],[-1.894,-0.17],[-0.173,0.841],[0.706,0.27],[0.234,0.923],[0.742,-0.3],[0.277,0.446]],"o":[[-0.538,2.093],[-0.308,-0.095],[-0.722,-0.019],[-0.243,0.589],[0.28,0.311],[1.352,0.361],[0.787,0.35],[-0.257,0.454],[0.542,0.484],[1.792,-0.384],[0.704,0.063],[0.158,-0.77],[-0.815,-0.312],[-0.183,-0.722],[-0.623,0.252],[-0.906,-1.458]],"v":[[-219.856,216.662],[-222.942,218.43],[-223.874,218.184],[-225.894,218.648],[-224.902,220.33],[-223.875,220.993],[-220.077,222.682],[-219.495,224.271],[-219.588,225.899],[-217.687,226.39],[-212.272,225.401],[-210.802,224.517],[-211.667,223.005],[-213.32,221.293],[-214.815,220.494],[-216.322,220.177]],"c":true}},"nm":"P"},{"ind":32,"ty":"sh","ks":{"a":0,"k":{"i":[[1.986,-0.248],[0.21,-0.737],[-0.423,-0.333],[-2.717,-1.75],[-0.392,0.878],[-1.025,1.436],[0.627,0.881],[2.666,-0.111],[0.878,-0.73],[0.054,-0.67],[-0.073,-0.17],[0.474,-0.285],[0.239,0.268]],"o":[[-0.22,0.115],[-0.176,0.617],[2.556,2.01],[0.827,0.532],[0.76,-1.702],[0.504,-0.706],[-1.324,-1.862],[-1.492,0.062],[-0.924,0.769],[-0.013,0.16],[0.165,0.382],[-0.403,0.243],[-1.137,-1.274]],"v":[[109.498,207.722],[108.322,208.439],[109.02,209.637],[117.221,214.808],[119.382,214.359],[122.698,210.207],[123.051,207.663],[117.577,204.617],[114.582,206.134],[114.816,208.086],[115.041,208.587],[114.973,209.693],[114.039,209.291]],"c":true}},"nm":"P"},{"ind":33,"ty":"sh","ks":{"a":0,"k":{"i":[[1.363,0],[-1.798,-0.081],[-1.482,-0.077],[0.564,-1.267],[0.253,-0.841],[-0.6,-0.078],[-1.695,-0.905],[-1.883,-1.352],[-0.474,0.568],[0.532,0.543],[0.036,0.029],[2.642,1.709],[-0.603,1.129],[-0.675,-0.248],[-1.861,-0.165],[-0.208,0.525],[0.247,0.314],[0.616,0.326],[1.018,2.204],[0.088,0.009],[1.68,-0.784],[1.188,0.228],[0.668,-0.057]],"o":[[0.334,1.95],[1.458,0.065],[0.986,0.051],[-0.354,0.796],[-0.164,0.543],[1.909,0.248],[2.038,1.088],[0.503,0.361],[0.409,-0.491],[-0.033,-0.033],[-2.455,-1.958],[-0.95,-0.615],[0.645,-1.206],[1.74,0.638],[0.515,0.046],[0.176,-0.444],[-0.447,-0.566],[-1.668,-0.882],[-0.028,-0.062],[-1.687,-0.169],[-1.086,0.506],[-0.564,-0.108],[-1.417,0.122]],"v":[[-191.727,204.214],[-188.356,206.786],[-183.968,207.311],[-182.826,209],[-183.592,211.519],[-183.01,212.242],[-177.536,213.929],[-171.7,217.676],[-170.059,218.516],[-171.109,216.687],[-171.209,216.59],[-178.672,210.845],[-179.563,208.47],[-177.422,208.365],[-172.087,209.797],[-170.761,209.283],[-171.41,208.308],[-173.122,207.146],[-178.2,204.642],[-178.448,204.535],[-183.499,204.651],[-186.891,204.865],[-187.511,204.177]],"c":true}},"nm":"P"},{"ind":34,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.417,2.919],[0.072,0.407],[0.775,0.276],[0.644,-0.581],[0.427,-0.613],[1.187,-1.705],[0.716,-1.739],[-0.925,-0.098],[-0.383,2.113],[-0.903,-0.562],[-0.233,-0.151],[-0.511,1.733]],"o":[[-0.055,-0.388],[-0.132,-0.749],[-0.788,-0.281],[-0.552,0.498],[-1.188,1.705],[-1.054,1.514],[-0.394,0.958],[2.061,0.218],[0.173,-0.953],[0.235,0.147],[1.544,0.997],[0.839,-2.846]],"v":[[183.179,88.511],[183.004,87.306],[182.659,85.135],[180.505,86.386],[179.077,88.078],[175.445,93.145],[172.375,97.75],[173.926,100.841],[176.877,98.548],[178.429,97.803],[179.116,98.275],[181.92,97.241]],"c":true}},"nm":"P"},{"ind":35,"ty":"sh","ks":{"a":0,"k":{"i":[[1.231,-0.287],[0.072,0.098],[-0.767,0.82],[0.87,0.412],[0.33,-1.643],[1.601,0.968],[2.489,-0.289],[0.154,-0.539],[-0.366,-0.51],[-0.102,-0.085],[-0.962,-0.564],[-2.74,-0.268],[-1.504,0.716],[-3.602,-0.114],[-0.037,0.552],[0.675,0.157],[3.865,-2.737]],"o":[[-0.072,-0.098],[0.746,-0.841],[0.719,-0.769],[-1.123,-0.531],[-0.353,1.758],[-2.053,-1.242],[-0.528,0.061],[-0.165,0.579],[0.068,0.095],[0.881,0.734],[2.385,1.4],[1.421,0.139],[3.166,-1.507],[0.567,0.018],[0.037,-0.55],[-4.159,-0.969],[-1.011,0.716]],"v":[[121.01,237.401],[120.793,237.107],[123.034,234.589],[122.667,232.899],[120.022,234.911],[118.081,235.678],[111.386,233.784],[109.874,234.031],[110.859,235.576],[111.232,235.743],[114.263,237.036],[121.986,239.553],[126.312,239.374],[136.386,236.824],[137.255,235.957],[136.565,234.808],[124.435,235.863]],"c":true}},"nm":"P"},{"ind":36,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.401,0.307],[-0.035,-0.675],[-1.053,-0.074],[-0.342,1.801],[-0.815,4.347],[0.915,0.259],[1.176,-0.196],[0.031,-1.792],[0.121,-0.58],[0.029,-3.283]],"o":[[0.536,0.593],[0.054,1.045],[1.69,0.119],[0.825,-4.345],[0.179,-0.953],[-1.19,-0.337],[-1.736,0.289],[-0.01,0.603],[-0.664,3.178],[0.465,-0.39]],"v":[[211.63,115.779],[212.001,117.771],[213.639,119.451],[216.141,117.433],[218.563,104.388],[217.461,102.642],[213.882,102.541],[211.443,105.547],[211.396,107.352],[211.185,116.996]],"c":true}},"nm":"P"},{"ind":37,"ty":"sh","ks":{"a":0,"k":{"i":[[0.886,0.726],[-0.902,0.373],[0.22,-0.005],[3.79,-0.071],[0.133,0.584],[-0.373,0.267],[-0.269,1.079],[0.271,0.235],[0.795,-1.25],[0.661,-1.115],[0.515,0.198],[-0.047,0.291],[1.747,1.175],[0.612,-0.688],[-0.657,-0.839],[-0.655,-0.837],[0.165,-0.319],[0.246,0.056],[2.412,0.387],[0.337,-0.563],[-0.388,-0.374],[-1.085,-0.193],[-2.307,-0.414],[0.515,-0.018],[1.699,-0.149],[2.521,-2.769],[-0.364,-0.603],[-0.515,0.104],[-1.708,0.815],[-3.258,1.433],[-1.295,-0.052],[-2.473,0.64],[-2.138,0.144],[-1.108,0.347]],"o":[[0.93,-0.217],[-0.418,-0.036],[-3.79,0.09],[-0.418,0.008],[-0.102,-0.448],[0.836,-0.597],[0.068,-0.274],[-1.103,-0.957],[-0.695,1.093],[-0.174,0.293],[-0.392,-0.151],[0.364,-2.255],[-0.706,-0.475],[-0.553,0.622],[0.655,0.836],[0.163,0.208],[-0.155,0.3],[-2.402,-0.547],[-0.802,-0.129],[-0.363,0.605],[0.851,0.82],[2.103,0.375],[-0.621,0.624],[-1.714,0.058],[-3.717,0.326],[-0.392,0.43],[0.339,0.56],[1.888,-0.383],[3.224,-1.539],[1.172,-0.515],[2.503,0.101],[2.023,-0.524],[0.99,-0.067],[-0.906,-0.832]],"v":[[254.518,223.267],[257.106,222.974],[256.246,222.904],[244.876,223.171],[243.665,222.865],[244.506,221.848],[246.429,219.572],[246.345,218.818],[242.065,219.409],[240.102,222.767],[239.323,223.353],[239.059,222.496],[236.526,217.665],[234.459,217.318],[234.381,219.768],[236.346,222.277],[236.661,222.973],[235.911,223.168],[228.622,222.413],[226.993,223.176],[227.543,224.593],[230.615,225.679],[237.127,226.849],[235.419,227.614],[230.332,228.194],[220.958,232.76],[220.512,234.213],[221.881,234.433],[227.173,232.361],[237.105,228.441],[240.715,227.62],[248.131,226.859],[254.358,225.629],[257.417,224.712]],"c":true}},"nm":"P"},{"ind":38,"ty":"sh","ks":{"a":0,"k":{"i":[[1.198,0.827],[-1.021,1.357],[-0.531,0.918],[-0.69,-0.261],[-1.896,-0.761],[-2.143,0.251],[-0.899,-0.041],[-3.962,1.234],[-0.751,0.227],[-0.341,0.943],[0.322,0.002],[0.996,0.294],[4.121,0.846],[1.673,0.871],[1.523,-1.316],[0.785,-0.459],[0.887,-1.429],[1.783,-0.584],[0.588,-0.26],[5.443,-2.599],[0.448,-0.782],[1.074,-1.177],[-0.917,-0.18],[-2.859,-0.7],[-2.368,0.859],[0.1,0.498],[0.27,0.02],[1.036,0.389],[-1.643,1.453],[-0.744,0.125],[-2.332,0.237],[-0.497,-2.929],[-0.464,0.086],[-0.433,0.242],[-1.95,0.332],[-0.104,3.896],[-0.033,0.086],[1.5,-0.02],[1.306,0.311],[1.117,-0.675],[0.6,-0.752],[0.176,-0.212]],"o":[[1.559,-0.655],[0.636,-0.846],[0.368,-0.636],[1.9,0.72],[1.895,0.761],[0.869,-0.102],[4.245,0.195],[0.749,-0.233],[1.353,-0.409],[0.173,-0.478],[-1.117,-0.007],[-4.03,-1.191],[-1.747,-0.358],[-1.637,-0.853],[-0.718,0.62],[-1.374,0.804],[-1.138,1.833],[-0.614,0.201],[-5.522,2.439],[-0.905,0.432],[-0.781,1.363],[-0.722,0.792],[2.889,0.566],[2.4,0.588],[0.289,-0.105],[-0.072,-0.356],[-1.106,-0.083],[-2.097,-0.787],[0.567,-0.501],[2.315,-0.388],[2.862,-0.29],[0.095,0.561],[0.496,-0.092],[1.782,-0.994],[2.724,-0.464],[0.002,-0.085],[0.546,-1.415],[-1.363,0.018],[-0.896,-0.213],[-0.853,0.516],[-0.172,0.216],[-0.996,1.197]],"v":[[240.002,122.113],[244.264,119.947],[245.988,117.271],[247.554,116.426],[253.373,118.175],[259.353,119.454],[261.964,119.156],[274.1,116.7],[276.343,115.99],[277.756,113.347],[277.141,112.599],[274.159,111.626],[261.94,108.546],[256.702,107.394],[251.801,107.785],[249.409,109.137],[245.361,111.66],[240.582,114.42],[238.739,115.018],[222.486,122.975],[220.522,124.852],[217.933,128.763],[218.376,130.857],[226.539,133.896],[233.599,133.972],[234.219,133.441],[233.537,133.115],[230.278,132.542],[229.558,128.804],[231.52,127.817],[238.477,126.727],[242.113,129.652],[242.95,130.3],[244.402,129.857],[250.114,128.358],[255.955,123.876],[256.066,123.623],[253.5,119.742],[249.545,119.12],[246.936,118.317],[245.102,120.541],[244.641,121.233]],"c":true}},"nm":"P"},{"ind":39,"ty":"sh","ks":{"a":0,"k":{"i":[[0.883,0.241],[1.778,-0.003],[0.339,0.095],[1.822,-0.39],[3.564,-1.516],[2.972,-1.812],[-1.067,-0.963],[-2.182,-0.39],[-4.127,-0.169],[-4.912,-0.087],[-2.319,-0.088],[-0.945,0.574],[1.105,0.794],[0.108,0.148],[1.533,1.612],[1.07,0.132],[0.64,0.678]],"o":[[-1.151,-1.406],[-0.047,-0.404],[-1.85,-0.516],[-3.826,0.819],[-3.204,1.362],[-0.824,0.502],[1.662,1.5],[4.035,0.72],[4.915,0.202],[2.322,0.041],[1.203,0.046],[1.168,-0.71],[-0.149,-0.107],[-1.321,-1.813],[-0.629,-0.662],[-0.744,-0.092],[-0.587,-0.621]],"v":[[-198.212,163.505],[-202.662,161.528],[-203.337,160.968],[-208.819,161.137],[-219.699,165.181],[-228.955,169.955],[-229.138,171.683],[-223.503,174.325],[-211.375,176.327],[-196.674,175.763],[-189.707,175.796],[-186.582,174.811],[-186.54,172.777],[-186.941,172.392],[-191.533,167.55],[-193.835,166.187],[-196.084,164.984]],"c":true}},"nm":"P"},{"ind":40,"ty":"sh","ks":{"a":0,"k":{"i":[[0.992,-2.103],[0.217,-0.348],[0.525,0.297],[1.974,0.183],[-0.374,-0.695],[-0.961,0.13],[0.294,-0.707],[-0.962,-0.027],[-1.941,1.379],[-0.298,-0.61],[0.463,-0.224],[0.654,-0.227],[-0.155,-0.455],[-0.448,0.068],[-0.442,0.448],[-1.161,-0.047],[-0.917,1.286],[0.481,0.244],[1.195,-0.469],[0.803,1.458],[-0.406,2.822],[1.769,-0.408],[0.056,-0.855],[-0.699,-0.115],[-0.163,-0.598]],"o":[[-0.223,0.345],[-0.287,0.461],[-1.864,-1.054],[-0.724,-0.067],[0.354,0.657],[0.861,-0.117],[-0.447,1.077],[2.313,0.065],[0.515,-0.366],[0.281,0.575],[-0.623,0.302],[-0.321,0.111],[0.117,0.344],[0.535,-0.081],[0.721,-0.731],[1.501,0.061],[0.18,-0.252],[-0.903,-0.459],[-1.88,0.737],[0.204,-2.814],[0.246,-1.704],[-0.786,0.181],[-0.053,0.811],[0.688,0.113],[0.62,2.276]],"v":[[-168.355,182.182],[-169.022,183.217],[-170.174,183.545],[-176.087,182.85],[-176.887,184.251],[-175.072,185.513],[-174.257,186.51],[-173.283,187.769],[-166.841,186.148],[-165.406,186.331],[-166.136,187.484],[-168.058,188.274],[-168.59,188.871],[-167.829,189.538],[-166.322,188.937],[-163.629,187.806],[-159.856,185.974],[-159.712,185.036],[-162.53,183.905],[-166.187,182.203],[-165.955,173.747],[-168.475,171.836],[-169.771,173.177],[-168.715,174.563],[-167.71,175.642]],"c":true}},"nm":"P"},{"ind":41,"ty":"sh","ks":{"a":0,"k":{"i":[[2.556,-1.238],[1.007,-0.788],[-1.119,0.104],[-1.498,-0.501],[-2.526,1.171],[-0.53,0.9],[-0.932,-0.471],[0.182,-0.897],[0.841,-0.049],[0.233,-0.619],[-0.384,-0.475],[-0.744,0.235],[-1.369,-0.035],[-0.094,-1.09],[-0.911,0.379],[-0.468,0.285],[-2.258,-0.171],[-1.678,-0.398],[0.523,0.361],[3.32,0.56],[4.483,0.083],[1.821,-0.738]],"o":[[-1.295,0.348],[1.046,1.408],[1.546,-0.144],[2.341,0.783],[0.887,-0.411],[0.99,-0.383],[0.561,0.284],[-0.109,0.536],[-0.607,0.035],[-0.28,0.747],[0.543,0.931],[1.285,-0.405],[0.9,0.023],[0.079,0.912],[0.512,-0.213],[1.925,-1.171],[1.513,0.115],[-0.425,-0.797],[-2.883,-1.987],[-4.383,-0.739],[-1.853,-0.034],[-3.041,-0.363]],"v":[[60.345,201.153],[56.904,202.922],[60.275,203.223],[64.881,202.681],[71.918,203.169],[74.243,201.674],[77.204,201.684],[78.784,202.592],[76.833,203.671],[75.261,204.328],[76.189,205.859],[78.267,206.244],[82.208,205.584],[83.811,206.809],[85.383,207.705],[86.912,207.057],[93.147,205.585],[97.869,205.934],[96.643,204.267],[87.101,200.708],[73.964,198.436],[68.398,198.714]],"c":true}},"nm":"P"},{"ind":42,"ty":"sh","ks":{"a":0,"k":{"i":[[4.692,-1.054],[0.401,-0.46],[1.928,-0.634],[-0.074,-0.67],[-0.647,-0.132],[-0.231,0],[-3.727,0.129],[-2.206,1.916],[-0.454,0.198],[-0.274,0.152],[0.097,0.565],[0.391,0.106],[0.303,-0.041]],"o":[[-0.479,0.041],[-1.402,1.638],[-0.506,0.166],[0.078,0.706],[0.223,0.046],[3.731,0],[2.868,-0.099],[0.454,-0.198],[0.304,-0.098],[0.404,-0.223],[-0.089,-0.521],[-0.308,-0.083],[-4.717,0.633]],"v":[[201.96,125.309],[200.548,125.573],[195.229,128.354],[194.019,129.259],[195.501,130.3],[196.194,130.319],[207.387,130.286],[215.077,127.274],[216.44,126.681],[217.346,126.377],[218.077,125.317],[217.116,124.659],[216.172,124.503]],"c":true}},"nm":"P"},{"ind":43,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.083,-0.075],[-0.135,-0.123],[-0.731,0.331],[0.029,0.787],[-0.276,0.746],[-0.6,-0.54],[-1.539,0.337],[-0.16,0.158],[0.129,2.002],[-0.822,-0.367],[-0.611,0.041],[-0.206,0.558],[0.421,0.241],[2.193,0.975],[0.373,0.307],[0.773,0.058],[1.457,-0.893],[0.934,0.02],[0.083,-0.047],[0.181,-0.014],[1.064,0.031],[2.22,0.019],[-0.077,-1.025],[0.029,-0.105],[0.557,0.074],[0.569,-0.17],[0.643,0.593],[-0.453,0.844],[-0.776,0.6],[0.068,1.538],[1.801,0.146],[0.648,-0.005],[1.594,-1.247],[-0.305,0.641],[0.673,0.605],[1.163,-0.317],[0.007,-0.794],[0.624,-0.223],[0.594,0.706],[0.906,0.197],[0.442,-0.58],[-0.461,-0.457],[0.93,-0.365],[0.206,-0.106],[0.004,-0.911],[-0.632,-0.354],[-1.231,-1.252],[1.356,-0.749],[-0.536,-0.795],[-1.103,-1.367],[-0.865,0.808],[-0.675,0.876],[-0.654,-0.069],[-1.062,-1.081],[-0.376,0.206],[-0.741,1.523],[0.385,0.38],[-1.133,0.224],[-0.217,0.148],[0.461,-1.196],[-1.3,-0.247],[-0.275,-1.021],[-1.919,0.62],[-0.368,0.176],[-0.02,1.593],[-0.611,0.694],[0.222,-1.284],[-1.267,-0.318]],"o":[[0.083,0.075],[0.148,0.109],[0.607,0.556],[0.762,-0.345],[-0.029,-0.794],[0.913,0.221],[0.872,0.783],[0.16,0.212],[1.144,-1.133],[-0.053,-0.82],[0.558,0.25],[0.692,-0.047],[0.244,-0.66],[-2.077,-1.191],[-0.373,-0.307],[-0.064,-0.761],[-1.275,-0.096],[-0.934,-0.02],[-0.092,-0.025],[-0.181,0.014],[-1.071,-0.347],[-2.218,-0.065],[-0.768,-0.007],[-0.029,0.105],[-0.511,0.157],[-0.617,-0.116],[-0.581,-0.03],[0.548,-0.795],[0.909,-0.319],[1.471,-0.232],[-0.039,-0.898],[-0.648,0.005],[-1.774,0.176],[0.401,-1.054],[0.43,-0.903],[-0.892,-0.801],[-0.868,0.236],[-0.002,0.241],[-0.542,-0.61],[-0.641,-0.762],[-0.687,-0.149],[-0.469,0.615],[1.217,1.206],[-0.215,0.085],[-0.612,0.314],[-0.004,0.852],[1.233,0.692],[-1.936,-0.289],[-1.038,0.573],[0.983,1.457],[0.744,0.922],[0.813,-0.759],[0.429,-0.556],[0.648,1.418],[0.362,0.368],[1.365,-0.75],[0.209,-0.43],[-0.677,-0.995],[0.237,-0.047],[0.96,-0.102],[-0.424,1.102],[1.252,0.238],[0.551,2.049],[0.394,-0.127],[1.273,-0.61],[0.007,-0.54],[0.013,1.632],[-0.193,1.115],[0,0]],"v":[[174.67,215.097],[174.92,215.322],[175.361,215.653],[177.475,216.33],[178.241,214.258],[178.551,211.951],[180.3,213.634],[183.286,215.399],[183.887,215.566],[186.602,211.659],[187.606,210.892],[189.366,211.169],[190.707,210.122],[189.867,209.057],[183.544,205.654],[182.427,204.734],[181.185,203.57],[177.415,202.907],[174.614,202.846],[174.352,202.88],[173.81,202.922],[170.66,203.108],[164.001,203.08],[162.648,204.153],[162.561,204.467],[160.997,204.78],[159.253,205.069],[157.452,205.08],[159.602,203.538],[162.201,202.311],[164.842,199.172],[163.743,196.744],[161.799,196.759],[157.532,199.696],[158.45,197.316],[157.93,195.1],[154.786,194.032],[154.017,196.078],[153.528,196.873],[151.764,194.88],[149.33,193.659],[147.62,194.326],[147.632,196.123],[146.971,197.98],[146.346,198.286],[145.053,199.724],[146.206,201.296],[149.88,203.967],[145.245,205.265],[144.236,207.945],[147.35,212.203],[150.161,212.341],[152.466,209.93],[153.981,209.208],[156.84,212.715],[158.095,213.076],[161.701,210.174],[161.526,208.898],[162.295,207.139],[162.95,206.709],[164.001,207.953],[165.415,210.263],[167.35,212.326],[169.811,213.756],[170.999,213.403],[173.265,210.372],[173.999,208.542],[173.337,212.708],[174.637,215.05]],"c":true}},"nm":"P"},{"ind":44,"ty":"sh","ks":{"a":0,"k":{"i":[[0.089,-0.919],[-0.318,-0.305],[-0.048,-1.097],[-0.949,-2.285],[-2.083,0.343],[-2.072,-1.183],[-0.561,0.431],[0.205,0.533],[0.307,1.944],[-0.524,0.201],[-0.155,-0.266],[-1.7,-2.916],[-0.499,0.189],[0.061,0.284],[1.889,1.957],[1.894,0.876],[0.306,0.614],[2.53,1.078],[1.912,0.442]],"o":[[-0.049,0.543],[0.787,0.756],[-0.262,2.534],[0.798,1.923],[2.738,-0.452],[0.451,0.257],[0.479,-0.368],[-0.692,-1.798],[-0.051,-0.323],[0.373,-0.143],[1.696,2.919],[0.171,0.293],[0.367,-0.139],[-0.526,-2.463],[-1.359,-1.408],[-0.289,-0.622],[-1.197,-2.405],[-1.934,-0.824],[-1.028,-0.238]],"v":[[-114.577,149.603],[-113.883,150.706],[-112.591,153.461],[-111.042,160.55],[-106.883,163.205],[-100.251,165.704],[-98.878,166.258],[-98.869,164.705],[-100.918,159.3],[-100.878,158.368],[-100.244,158.972],[-95.157,167.73],[-94.409,168.354],[-94.207,167.482],[-96.713,160.423],[-100.857,156.258],[-101.726,154.393],[-107.241,149.225],[-113.077,148.448]],"c":true}},"nm":"P"},{"ind":45,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.359,0.989],[-1.461,0.184],[-0.495,-0.387],[-1.061,-0.036],[-0.103,0.526],[0.775,0.28],[-0.468,0.462],[0.64,0.356],[0.328,0.326],[1.858,-1.351],[0.39,-0.098],[1.069,0.114],[0.243,-0.764],[-0.611,-0.444]],"o":[[1.106,1.142],[0.387,0.605],[0.904,0.706],[0.728,0.025],[0.091,-0.466],[-0.832,-0.301],[0.438,-0.433],[-0.389,-0.216],[-1.549,-1.542],[-0.318,0.377],[-1.006,-0.71],[-0.905,-0.096],[-0.175,0.552],[0.975,0.709]],"v":[[-148.039,201.675],[-144.087,202.731],[-142.463,203.322],[-139.401,203.914],[-138.492,202.979],[-138.748,201.726],[-138.929,200.484],[-139.034,199.412],[-140.029,198.454],[-145.482,198.148],[-146.651,198.449],[-149.858,198.108],[-151.493,199.304],[-151.326,200.961]],"c":true}},"nm":"P"},{"ind":46,"ty":"sh","ks":{"a":0,"k":{"i":[[0.257,0.689],[0.367,0.243],[1.042,0.275],[0.876,-0.741],[-1.085,-0.426],[-0.01,-1.187],[-0.747,-0.122],[-0.869,0.965],[0.191,0.553]],"o":[[0.079,-0.413],[-0.891,-0.591],[-1.363,-0.602],[-0.834,0.705],[0.921,0.362],[0.01,1.117],[0.989,0.161],[0.43,-0.478],[-0.24,-0.695]],"v":[[-179.577,178.256],[-180.021,177.356],[-182.86,175.953],[-186.056,176.979],[-185.541,178.902],[-183.742,180.834],[-182.059,182.355],[-179.079,181.865],[-178.81,180.324]],"c":true}},"nm":"P"},{"ind":47,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.565,-0.896],[0.085,-0.162],[0.296,0.007],[1.511,-1.141],[1.701,-0.774],[0.552,-0.316],[-0.181,-0.664],[-0.727,0.114],[-0.277,-0.221],[-1.494,-0.235],[0.183,-0.291],[-0.439,-0.655],[-0.83,0.303],[-0.086,0.035],[-1.946,1.931],[-0.256,-1.049],[-1.93,-0.715],[-0.219,1.086],[-1.009,-0.193],[-0.015,-0.058],[-2.156,0.583],[0.413,0.846],[1.318,0.949],[0.035,0.103],[0.2,0.016],[0.727,0.362],[-0.025,0.095],[-1.354,-0.254],[-2.342,-0.491],[-0.273,0.594],[0.332,0.29],[1.77,1.551],[1.159,0.271],[0.053,0.413],[1.282,-0.434],[0.802,-1.49],[0.486,0.014],[0.007,1.109],[0.625,0.194],[0.462,-0.439],[0.559,-1.076],[0.533,-0.012],[1.116,-0.831]],"o":[[-0.085,0.162],[-0.296,-0.007],[-1.784,-0.495],[-1.701,0.774],[-0.564,0.293],[-0.574,0.328],[0.175,0.642],[0.405,0.059],[1.345,1.073],[0.001,0.452],[-0.376,0.597],[0.463,0.689],[0.087,-0.032],[2.352,-0.953],[0.368,-0.365],[0.571,2.345],[0.788,0.292],[0.175,-0.87],[0.051,0.032],[0.372,2.307],[1.165,-0.315],[-0.678,-1.388],[-0.035,-0.103],[0.034,-0.293],[-0.582,-0.496],[0.025,-0.095],[1.405,-0.048],[2.352,0.441],[0.502,0.105],[0.158,-0.343],[-1.771,-1.55],[-0.251,-1.117],[-0.407,-0.095],[-0.21,-1.642],[-1.158,0.391],[-0.486,-0.014],[0.005,-1.109],[-0.003,-0.492],[-0.562,-0.174],[-0.829,0.788],[-0.273,0.526],[-1.6,0.037],[-1.408,1.048]],"v":[[197.215,217.633],[196.961,218.121],[196.074,218.1],[191.11,218.928],[186.006,221.25],[184.316,222.134],[183.62,223.635],[184.94,224.543],[186.137,224.744],[190.585,225.668],[189.941,226.509],[189.098,228.384],[191.395,228.687],[191.653,228.584],[198.636,225.534],[200,225.779],[204.456,229.559],[206.16,228.699],[207.876,227.46],[207.974,227.595],[212.857,230.925],[214.682,228.406],[211.997,224.647],[211.891,224.338],[211.517,224.021],[209.986,222.34],[210.062,222.054],[214.144,222.733],[221.167,224.224],[222.502,223.813],[222.307,222.795],[216.996,218.143],[214.986,215.94],[214.214,215.266],[211.628,213.768],[208.134,214.853],[206.675,214.81],[206.687,211.483],[206.208,210.169],[204.483,210.322],[201.967,212.653],[200.688,213.623],[197.017,215.634]],"c":true}},"nm":"P"},{"ind":48,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.346],[-1.155,-0.505],[-0.329,1.162],[-0.665,1.54],[0.949,0.009],[-0.207,-1.409]],"o":[[-0.383,1.041],[1.241,0.543],[0.448,-1.585],[0.335,-0.775],[-1.403,-0.013],[0,0.346]],"v":[[161.403,217.84],[162.402,219.911],[164.522,219.072],[165.908,214.326],[164.717,212.889],[161.403,216.802]],"c":true}},"nm":"P"},{"ind":49,"ty":"sh","ks":{"a":0,"k":{"i":[[0.546,2.014],[-0.493,0.659],[-0.32,-0.444],[-0.988,1.721],[-0.25,0.741],[-0.288,-0.481],[0.416,-0.716],[-0.972,-0.295],[-1.748,-2.645],[-2.659,-2.497],[-0.138,-0.422],[-0.228,-1.653],[0.053,-0.96],[-0.061,-0.423],[0.626,-0.235],[0.821,0.813],[1.917,1.673],[1.756,-0.035],[1.159,1.288],[0.573,-0.546],[0.17,0.423],[0.671,1.619],[0.833,-0.17],[-0.019,-0.899],[-0.315,-0.52],[-0.329,-0.557],[-1.336,-2.942],[0.762,-1.123],[-0.302,-0.254],[-1.339,0.668],[-0.195,-0.27],[-1.525,1.115],[-0.308,-0.229],[0.129,-0.268],[-0.815,-0.655],[-1.066,-0.503],[-0.049,-0.503],[1.743,-0.822],[0.923,-0.951],[0.415,0.601],[0.952,-0.345],[1.11,0.261],[0.391,-0.48],[-0.195,-0.634],[-0.568,0.025],[-0.505,0.249],[-1.231,-0.033],[0.697,-0.813],[0.196,-0.197],[-1.838,-1.563],[1.077,-0.878],[2.356,0.939],[0.036,0.411],[1.558,-0.315],[-0.683,-1.247],[0.298,-0.03],[0.463,-0.321],[0.022,-0.351],[1.294,0.491],[0.046,-0.572],[-0.95,-0.092],[-1.248,-0.209],[0.717,-1.143],[-0.87,-1.111],[-0.9,0.431],[-0.392,-1.329],[-0.399,-0.085],[-0.182,-0.238],[-1.128,1.539],[-0.53,0.758],[-0.888,-0.615],[-1.508,-0.611],[-0.237,1.23],[-1.04,-0.5],[-1.754,0.086],[0.244,1.094],[-0.751,0.238],[-0.357,-0.749],[-2.301,-0.042],[-2.903,0.972],[-0.22,-0.668],[0.547,-0.196],[1.837,-0.154],[6.993,0.628],[1.325,0.098],[-0.779,0.012],[-1.603,-0.21],[0.472,-0.555],[0.081,-0.211],[-0.715,-0.979],[-1.329,0.126],[-0.925,0.041],[-0.395,-1.342],[-0.606,-0.028],[-2.32,-0.059],[-1.566,-0.141],[-3.609,0.684],[-1.019,0.043],[0.24,-1.488],[-0.28,-0.047],[-0.529,-0.319],[0.674,-0.222],[4.664,1.246],[0.601,0.021],[4.328,0.104],[0.669,-0.172],[-0.189,-0.48],[-0.538,0],[-0.182,-0.37],[0.361,-0.548],[0.864,0.009],[3.353,0.646],[2.268,0.045],[5.844,0.278],[3.053,-0.249],[0.452,-0.043],[-0.501,-0.923],[-0.345,0.099],[-2,0.276],[-0.191,-1.061],[0.783,-0.005],[0.769,-0.941],[1.902,0.502],[-0.121,-1.98],[-0.392,-0.185],[-1.526,0.627],[-1.529,-1.255],[-1.124,-0.086],[-0.04,0.823],[-0.965,-0.718],[-0.989,-0.976],[0.012,-0.806],[-0.636,-0.072],[-0.183,0.662],[-0.684,0.731],[-1.713,-1.021],[0.926,-1.057],[0.445,-0.498],[-53.308,0],[0.496,0.404],[-0.128,0.567],[-0.271,0.154],[-1.378,0.562],[0.745,0.48],[-2.439,0.12],[0.424,0.002],[2.37,0.026],[0.201,0.501],[-0.363,0.226],[0.69,0.324],[-0.215,0.731],[0.534,0.636],[0.544,1.291],[0.946,0.016],[3.808,0.108],[0.174,0.843],[-0.475,0.086],[-0.115,0.321],[-1.283,-0.139],[-3.807,-0.066],[-0.258,1.094],[0,0],[-0.304,0.031],[-0.512,0.92],[-0.727,0.463],[-0.292,0.174],[-1.227,1.956],[-1.406,1.317],[-0.06,0.063],[0,0],[-0.074,0.073],[0,0],[-0.073,0.076],[0,0],[-1.887,1.696],[-0.063,0.213],[0,0],[-0.11,0.072],[0,0],[-0.072,0.065],[-1.343,1.637],[0.522,0.224],[-0.004,0.07],[-0.371,-0.054],[-2.492,0.723],[-1.005,0],[-2.826,-0.135],[-2.651,-1.519],[-0.688,0.126],[-1.235,0.073],[-2.576,-0.339],[0.728,0.078],[1.918,0.118],[0.411,-0.055],[0.099,-0.49],[-0.332,-0.147],[-1.631,-1.189],[-4.548,-0.195],[-0.201,0.106],[-1.101,0.98],[-1.009,0.338],[-2.138,0.879],[0.166,0.684],[0.43,0.06],[1.193,0.044],[3.188,-1.297],[2.675,1.886],[-2.339,-0.563],[-0.257,0.066],[-4.875,-0.275],[-0.75,1.949],[-0.325,-0.403],[-0.665,0.087],[-0.15,0.624],[-0.11,1.019],[-1.582,0.135],[0.377,-1.067],[0.632,0.099],[-0.005,0.729],[-0.132,3.384],[-0.805,0.306],[-1.995,0.733],[0.561,0.92],[-0.438,0.381],[-4.285,2.423],[-1.542,1.248],[-0.195,0.232],[-1.359,-0.596],[-1.921,0.547],[-1.477,2.355],[1.197,0.268],[0.052,0.474],[-1.55,0.799],[-0.695,1.395],[-1.326,-0.083],[-1.112,2.351],[-0.308,-0.077],[-0.003,-0.281],[-0.016,-0.604],[-0.999,0.229],[-4.955,0.564],[-1.774,-0.545],[-2.025,0.946],[0.326,1.742],[0.034,0.322],[-0.059,1.479],[0.586,0.155],[1.282,0.798],[2.357,0.385],[2.521,1.137],[0.213,-0.078],[2.095,-0.855],[-0.067,-0.917],[-0.705,-0.344],[-0.883,-0.997],[0.494,0.196],[2.681,-0.978],[1.006,-0.902],[1.638,-0.807],[2.321,-0.863],[1.589,-0.864],[1.644,-0.498],[0.393,-1.519],[-0.074,1.18],[0.563,0.006],[1.637,0.32],[-0.938,0.026],[-2.699,-0.042],[0.574,2.099],[-0.473,2.13],[-0.62,-0.087],[-0.01,-0.524],[-0.035,-1.3],[-0.567,-0.007],[-0.072,0.829],[-0.125,1.152],[-0.17,0.473],[-0.6,0.002],[-0.229,-0.407],[-0.252,-1.121],[-0.761,0.114],[0.08,0.797],[-1.393,0.365],[-0.01,0.555],[-0.01,1.254],[-0.214,0.438],[-0.451,0.03],[-0.087,-0.321],[-0.01,-1.576],[-0.804,-0.021],[-0.021,0.686],[-0.062,2.507],[1.454,-0.239],[-0.155,1.03],[0.383,0.035],[2.708,-0.335],[-0.397,0.006],[-1.507,-0.327],[0.062,-1.338],[1.13,-0.06],[0.001,-0.906],[0,-0.984],[0.26,0.634],[0.661,-0.572],[2.006,-1.085],[0.492,1.473],[0.234,1.883],[0.532,2.645],[-0.957,0.188],[-0.71,-0.262],[-0.45,0.511],[-0.276,0.35],[0.319,-0.57],[-0.555,-0.318],[-2.065,1.359],[-0.34,-0.597],[-0.893,0.494],[-1.673,5.013],[-1.08,0.659],[0.076,0.527],[1.913,0.238],[1.277,0.812],[0.958,2.15],[0.956,0.883],[-1.305,1.74],[1.103,1.814],[0.042,-0.163],[1.311,0.819],[0.022,0.518],[-0.838,0.864],[-1.016,2.095],[-1.12,1.857],[-0.06,0.087],[0,0],[-1.357,1.56],[0.041,0.243],[-1.455,0.745],[-0.567,1.554],[-3.211,3.032],[-1.28,-0.396],[0.259,-0.377],[1.028,-1.993],[0.756,-0.855],[0.684,-1.16],[0.395,-0.665],[1.472,-1.616],[-0.539,-0.647],[-0.105,-0.399],[-1.144,0.678],[-0.444,0.465],[-0.764,0.18],[-1.485,0.309],[-1.79,2.834],[-0.56,0.179],[0.016,0.869],[0.776,2.458],[-0.324,0.208],[-1.43,1.193],[0.201,2.479],[0.01,0.467],[0.001,0.556],[0.001,0.506],[0.013,4.49],[-0.285,0.309],[-0.633,0.016],[-1.663,1.403],[-0.747,-0.747],[-1.13,0.322],[-0.523,-0.3],[-0.001,1.409],[-0.053,2.6],[0.817,0.953],[0.123,0.556],[-0.276,0.915],[1.096,0.52],[-0.372,0.279],[1.175,0.652],[-0.421,0.218],[-0.285,1.052],[0.001,1.339],[0.01,8.718],[0.023,5.277],[1.493,0.476],[0.105,0.51],[0.035,1.255],[-1.164,1.941],[-0.182,0.01],[-0.092,-0.076],[0,0],[-0.571,-0.307],[-0.376,0.568],[-0.661,-0.052],[0.293,-19.033],[-0.067,-3.281],[-1.931,0.701],[-0.018,-0.168],[-2.224,0],[-6.872,-0.005],[-0.611,0.47],[0.074,0.733],[-0.227,-0.014],[-0.291,-0.107],[-3.893,0.491],[0.384,0.615],[0.114,-1.262],[0.018,-1.388],[1.082,0.092],[0.94,-0.03],[2.278,0.29],[0.41,-1.054],[0.735,-0.198],[1.599,0.03],[3.232,-0.15],[0.898,-1.294],[0.441,-0.006],[1.616,0.063],[1.337,1.13],[0.889,-0.498],[-0.221,-0.71],[-0.123,-2.26],[-0.072,-4.212],[0.292,-0.838],[-0.036,-1.232],[-0.624,-0.209],[-0.346,0.447],[-1.792,0.653],[-3.069,1.171],[1.429,1.417],[-0.38,0.624],[-0.649,-0.264],[-1.669,2.39],[-0.862,-0.814],[-1.999,1.12],[-3.773,1.677],[0.086,0.803],[0.935,0.146],[0.045,0.009],[3.472,1.184],[-0.002,0.388],[-0.269,0.1],[-0.687,0.276],[-1.442,0.059],[-2.979,0.007],[-0.002,-4.589],[0.002,-18.971],[0.015,-0.324],[1.602,-0.775],[-0.191,-0.234],[0.43,-0.305],[0.36,0.296],[0.528,-0.402],[0.947,-0.48],[1.564,-0.562],[2.15,-1.783],[-0.65,0.012],[-1.447,-0.174],[-3.743,-1.053],[-2.054,0.116],[-0.003,-8.41],[0.002,-19.796],[0.013,-0.324],[1.311,1.165],[0.675,-0.312],[0.593,0.012],[1.245,-0.008],[0.322,0.007],[0.845,-0.941],[-0.136,-0.668],[0.528,-0.597],[0.388,-0.121],[-1.222,0.676],[0.15,0.701],[0.507,-0.037],[2.048,-0.697],[0.11,-0.863],[-0.463,-0.386],[-0.228,-0.15],[2.126,1.449],[-1.259,0.663],[-0.794,1.584],[1.209,1.806],[1.15,-0.043],[0.28,-0.657],[0.428,0.069],[0.102,0.274],[1.125,1.053],[0.992,-0.975],[-0.411,-1.148],[0.084,-0.619],[1.027,-0.111],[0.748,0.155],[0.639,-1.006],[-0.731,-0.963],[-0.964,-0.991],[0.674,-0.325],[0.61,-0.791],[0.447,-0.194],[0.335,-0.202],[1.447,-0.983],[-0.806,-0.384],[-0.061,-0.889],[-2.697,1.717],[-1.682,1.133],[0.077,-1.012],[-0.648,-1.074],[-1.608,-0.043],[-0.404,0.967],[-0.188,0.421],[-0.358,-0.546],[-0.844,-0.341],[0.013,1.524],[0.589,0.282],[0.481,0.99],[-0.332,-0.905],[-1.296,-0.713],[-0.324,0.257],[-0.891,1.249],[-2.776,0.026],[-0.478,-0.002],[0.358,-0.457],[0.298,-0.617],[0.071,-0.098],[0.573,0.2],[0.853,0.186],[0.924,-1.395],[-0.167,-0.369],[-1.48,0.372],[-0.495,0.892],[-0.775,-1.22],[-0.541,-0.738],[-0.978,0.118],[1.007,1.919],[0.319,0.505],[-0.383,-0.168],[-1.498,-0.287],[-0.036,-10.316],[0.656,0.093],[0.186,0],[175.5,0],[0.279,0.003],[0,0.651],[-0.303,1.366],[-0.422,0.017],[-0.144,-0.381],[-0.107,-0.256],[-2.065,-0.424],[0.192,0.649],[-0.857,-0.008],[-0.177,0.799],[0.602,0.187],[-0.028,0.374],[-0.31,0.004],[-0.926,-0.047],[0.572,0.904],[0.166,0.278],[-1.006,0.514],[0.015,0.132],[-0.783,-0.218],[-1.235,-0.016],[0.563,0.625],[1.826,0.624],[0.987,0.779],[1.93,-0.704],[0.07,0.049],[0.059,0.606],[0,0],[-0.01,0.35],[0,0],[-0.175,0.084],[-1.356,0.892],[-0.002,0.381],[0,0],[-0.074,0.071],[0,0],[0.61,0.924],[1.201,-0.586],[0.581,-0.01],[0.751,0.436],[0.01,0.556],[0.005,0.012],[0.034,0.059],[0.679,-0.928],[0.448,-0.378],[-0.733,-1.218],[1.25,-1.616],[0.325,-0.299],[0.935,0.462],[-0.137,0.822],[0.779,1.542],[0.034,0.541],[1.577,0.318],[0,16.451],[-1.161,0.538],[0.01,0.578],[0.526,0.252],[1.17,0.185],[0,2.324],[-1.809,0.806],[-0.319,-0.451],[0.415,-0.476],[-1.409,-1.094],[-0.568,-0.543],[-1.14,-0.955],[-1.325,-0.699],[-1.714,0.822],[-0.127,-0.746],[0.878,-0.609],[1.457,-0.805],[-0.14,-0.526],[-0.511,-0.073],[-0.652,0.261],[-3.561,0.995],[-2.427,1.108],[-2.882,-0.185],[-0.585,1.218],[0.165,1.346],[-0.035,0.369],[-0.515,0.133],[-0.286,-0.328],[-0.927,0.283],[-0.06,0.767],[-0.028,1.068],[-0.406,0.047],[-0.064,-0.364],[-0.48,-0.76],[-0.653,0.16],[-0.076,0.858],[0.547,1.844],[-0.932,0.143],[-0.168,-1.082],[-0.58,-1.091],[-1.344,-0.485],[-1.897,2.067],[-0.305,1.893],[-0.446,0.033],[-0.095,-0.349],[-0.191,-1.057],[-1.405,0.845],[0.329,0.669],[0.521,0.011],[0.397,0.218],[-0.733,0.457],[-0.278,0.231],[-0.495,-1.899],[-0.321,0.163],[-0.251,0.115],[-0.187,-1.563],[-0.108,-0.202],[-0.662,0.98],[-0.053,-0.625],[-0.654,-1.106],[-0.049,-0.726],[-0.031,-1.788],[0.922,-0.137],[1.105,-0.871],[2.069,1.669],[2.22,-0.462],[-0.023,-0.496],[0.781,0.331],[2.292,-1.148],[0.012,-0.769],[-0.523,-0.033],[-0.86,-1.871],[-2.082,0.099],[-0.284,-0.91],[-1.547,0.819],[-0.522,-0.935],[-1.199,0.022],[-0.173,0.845],[-0.51,-0.254],[-0.445,0.046],[-0.128,-0.078],[-0.272,-0.036],[-1.537,0.387],[-0.547,0.049],[-0.376,-0.831],[0.414,-0.367],[-0.699,-0.87],[-1.458,0.94],[-0.407,-0.529],[-0.922,-0.509],[0.471,-0.664],[-0.901,0],[-0.121,-0.042],[-0.387,-0.191],[-1.896,-0.925],[-0.03,-0.049],[1.396,-0.872],[0.648,0.024],[0.807,-0.479],[0.352,1.259],[0.433,0.273],[1.966,0.748],[0.933,0],[0.9,-0.238],[-0.07,-0.912],[-0.646,0.007],[-0.503,-0.759],[-0.322,0.507],[-0.648,-0.025],[-0.515,-0.74],[0.457,0.026],[0.614,-1.158],[0.09,-0.007],[1.149,-0.003],[0.217,-0.927],[-1.365,-0.512],[-0.792,-0.048],[-2.102,0.885],[-0.797,-0.532],[-1.975,-0.861],[0.007,0.573],[-1.029,0.615],[0.902,0.54],[1.165,0.645],[0,0.359],[-0.234,0.131],[1.224,1.857],[-0.764,-0.271],[-0.554,0.97],[0.961,0.699],[-0.308,0.4],[-0.862,-0.446],[-0.306,0.431],[0.32,0.503],[-0.78,0.293],[-0.504,0.232],[0.745,0.624],[0.974,0.372],[1.645,-0.655],[0.329,0.242],[1.589,-0.952],[0.335,0.408],[1.359,-0.145],[0.331,0.686],[0.182,1.033],[-0.283,0.019],[-0.571,-0.144],[0.072,0.538],[0.528,0.224],[1.179,0.528],[0.235,2.277],[0.495,0.01],[1.109,0.309],[-0.75,0.673],[0.006,1.516],[-0.014,4.088],[0.396,0.581],[0.041,1.038],[0.148,1.802],[1.089,2.423],[-3.021,-0.04],[-0.757,-0.321],[-1.213,-0.479],[0.027,-0.424],[0.272,-1.589],[-0.083,-1.99],[2.096,-1.744],[-0.447,-0.449],[-0.261,0.519],[-0.153,0.23],[-0.747,-0.289],[0.058,-0.869],[0.024,-1.022],[-0.954,0.059],[-0.039,0.408],[-0.996,3.159],[0.149,0.184],[0.002,0.733],[0.039,2.462],[0.427,0.837],[-0.059,0.919],[-0.808,0.008],[-1.659,0.036],[-0.112,-1.059],[0.018,-1.141],[-0.335,-3.469],[0.967,-1.652],[-0.075,-0.438],[0.006,-1.417],[0.069,-0.553],[0.074,-2.164],[-0.977,-1.393],[-0.36,-0.046],[-0.107,0.286],[-0.518,0.667],[-0.371,-1.14],[-0.805,-0.155],[-0.257,0.603],[-2.633,1.461],[0.596,0.676],[-0.944,0.764],[-0.489,-0.063],[-0.569,-0.89],[-1.548,-0.195],[0.356,-0.563],[0.467,-0.667],[0.293,0.321],[0.651,-0.55],[-0.438,-0.525],[0.938,-1.2],[-0.571,-0.169],[0.091,-0.463],[0.453,0.012],[-0.054,-0.53],[-0.773,-1.059],[-1.796,-1.577],[1.034,-2.993],[1.227,1.704],[2,2.237],[-1.026,2.24],[0.002,0.837],[-0.222,0.357],[-1.262,0.51],[1.216,1.375]],"o":[[0.489,-0.653],[0.524,0.309],[1.18,1.636],[0.365,-0.637],[0.206,-0.608],[0.36,0.602],[-0.37,0.636],[2.882,0.876],[1.991,3.013],[0.325,0.305],[0.518,1.58],[-0.256,0.976],[-0.69,0.009],[0.096,0.668],[-0.91,0.343],[-1.805,-1.788],[-1.266,-1.105],[-1.663,0.033],[-0.337,-0.375],[-0.231,-0.398],[-0.655,-1.626],[-0.282,-0.68],[-0.92,0.188],[0.013,0.616],[0.335,0.553],[1.637,2.769],[0.094,1.253],[-0.203,0.299],[0.877,0.739],[0.195,0.27],[0.526,2.03],[0.25,-0.183],[0.294,0.218],[-0.596,1.241],[0.922,0.74],[0.022,0.505],[0.186,1.915],[-1.264,0.596],[-0.464,0.478],[-0.478,-0.693],[-1.11,0.402],[-0.588,-0.138],[-0.531,0.652],[0.174,0.565],[0.574,-0.026],[0.917,-0.452],[-0.522,1.184],[-0.18,0.21],[-1.731,1.732],[-1.269,0.223],[-2.413,1.966],[-0.004,-0.414],[-0.106,-1.201],[-0.879,0.178],[-0.2,0.32],[-0.654,0.003],[-0.371,-0.033],[-0.105,1.693],[-0.54,-0.205],[-0.052,0.638],[1.307,0.127],[1.243,0.208],[-0.767,1.222],[0.896,1.144],[1.211,-0.58],[0.102,0.346],[0.182,0.238],[1.892,0.708],[0.547,-0.746],[0.538,-0.77],[1.327,0.919],[0.961,0.389],[0.316,-1.638],[1.437,0.692],[1.16,-0.057],[-0.059,-0.265],[0.463,-0.146],[0.281,2.23],[3.021,0.055],[0.4,-0.134],[0.185,0.562],[-1.762,0.633],[-7.011,0.588],[-1.24,-0.111],[0.13,0.897],[1.649,-0.025],[0.694,0.091],[-0.149,0.176],[-0.241,0.631],[0.742,1.016],[0.923,-0.087],[0.912,-0.04],[0.167,0.568],[2.319,0.109],[1.57,0.04],[3.68,0.332],[0.995,-0.189],[0.764,-0.032],[-0.085,0.525],[0.697,0.117],[-0.689,0.198],[-4.307,1.423],[-0.57,-0.152],[-4.327,-0.153],[-0.671,-0.016],[-0.209,0.054],[0.103,0.26],[0.322,0],[0.251,0.511],[-0.414,0.628],[-3.386,-0.035],[-2.247,-0.433],[-5.851,-0.115],[-3.069,-0.146],[-0.482,0.039],[-1.037,0.098],[0.15,0.277],[1.945,-0.56],[1.002,-0.138],[0.186,1.033],[-1.742,0.011],[-1.271,1.555],[-1.904,-0.503],[0.031,0.513],[1.515,0.715],[1.768,-0.726],[0.849,0.697],[-0.963,-0.834],[0.06,-1.225],[1.113,0.828],[0.696,0.686],[-0.005,0.316],[0.444,0.05],[0.259,-0.936],[1.406,-1.504],[1.214,0.724],[-0.425,0.485],[53.294,0],[-0.153,-0.564],[-0.202,-0.164],[0.057,-0.254],[1.045,-0.593],[-0.533,-0.344],[2.909,-0.143],[-0.373,-0.592],[-2.37,-0.012],[-0.426,-0.005],[-0.19,-0.475],[1.345,-0.836],[-0.763,-0.358],[0.283,-0.958],[-0.855,-1.018],[-0.364,-0.864],[-3.809,-0.065],[-0.482,-0.014],[-0.174,-0.844],[0.44,-0.079],[0.447,-1.249],[3.797,0.411],[1.216,0.021],[0,0],[0.442,0.355],[0.831,-0.559],[0.727,-0.463],[0.292,-0.174],[2.244,-0.762],[1,-1.595],[0.06,-0.063],[0,0],[0.074,-0.073],[0,0],[0.073,-0.076],[0,0],[2.341,-1.073],[0.141,-0.127],[0,0],[0.11,-0.072],[0,0],[0.071,-0.065],[1.56,-1.097],[-0.578,-0.248],[0.004,-0.07],[0.379,0],[2.676,0.393],[0.996,-0.289],[2.831,0.001],[2.872,0.138],[0.828,0.474],[1.215,-0.223],[2.584,-0.152],[-0.782,0.626],[-1.973,-0.211],[-0.405,-0.025],[-0.509,0.068],[-0.13,0.639],[1.894,0.837],[3.973,2.895],[0.214,0.009],[1.206,-0.637],[0.704,-0.627],[2.19,-0.734],[0.353,-0.145],[-0.118,-0.486],[-1.189,-0.167],[-3.309,-0.122],[-3.178,1.293],[2.355,0.011],[0.262,0.063],[4.866,-1.248],[1.766,0.1],[0.575,0.405],[0.334,0.414],[0.673,-0.088],[0.238,-0.991],[0.121,-1.125],[-1.442,-0.472],[-0.229,0.649],[-0.739,-0.116],[0.025,-3.386],[0.03,-0.779],[1.987,-0.754],[0.765,-0.281],[-0.325,-0.532],[3.708,-3.228],[1.858,-1.051],[0.231,-0.187],[1.377,0.61],[2.028,0.889],[2.632,-0.749],[0.551,-0.878],[-0.205,-0.046],[1.501,-0.768],[1.351,-0.696],[0.761,-1.528],[2.2,0.138],[0.126,-0.267],[0.34,0.085],[0.006,0.604],[0.029,1.099],[4.858,-1.112],[1.829,-0.208],[2.014,0.619],[1.672,-0.781],[-0.059,-0.315],[-0.151,-1.439],[-0.375,0.912],[-1.43,-0.378],[-1.961,-1.221],[-2.614,-0.427],[-0.167,-0.075],[-2.125,0.782],[-0.682,0.278],[0.058,0.79],[0.837,0.409],[-0.835,-0.195],[-2.742,-1.088],[-1.275,0.465],[-1.427,1.28],[-2.206,1.087],[-1.743,0.648],[-1.622,0.882],[-1.396,0.422],[-1.059,0.244],[0.047,-0.754],[-1.459,-0.015],[0.784,-0.714],[2.691,-0.074],[2.166,0.034],[-0.593,-2.165],[0.091,-0.411],[0.775,0.109],[0.025,1.3],[0.016,0.601],[0.748,0.009],[0.101,-1.155],[0.054,-0.502],[0.151,-0.419],[0.569,-0.002],[0.591,1.049],[0.158,0.701],[0.656,-0.098],[-0.123,-1.222],[0.631,-0.165],[0.023,-1.254],[0.004,-0.463],[0.134,-0.273],[0.546,-0.037],[0.42,1.541],[0.004,0.617],[0.81,0.021],[0.075,-2.507],[0.037,-1.501],[-0.859,0.141],[0.045,-0.299],[-2.474,-0.223],[0.535,0.629],[1.537,-0.024],[1.272,0.276],[-0.058,1.243],[-0.996,0.053],[-0.002,0.911],[-0.975,-0.253],[-0.31,-0.755],[-1.718,1.488],[-1.355,0.733],[-0.609,-1.821],[-0.331,-2.663],[-0.142,-0.708],[0.034,0.571],[0.769,0.284],[0.294,-0.334],[0.892,0.473],[-0.165,0.295],[1.592,0.913],[0.467,-0.307],[0.619,1.088],[4.547,-2.517],[0.365,-1.092],[0.337,-0.206],[-0.281,-1.938],[-0.406,-1.81],[1.638,-1.677],[-0.594,-1.333],[-1.636,-1.512],[1.591,-2.12],[-0.236,-0.043],[-0.439,1.683],[-0.49,-0.306],[-0.052,-1.218],[1.64,-1.692],[0.942,-1.943],[0.06,-0.087],[0,0],[1.84,-1.057],[0.165,-0.19],[-0.367,-2.204],[1.504,-0.77],[3.547,-2.703],[0.748,-0.706],[-0.249,0.385],[-1.251,1.82],[-1.065,0.642],[-1.251,0.253],[-0.393,0.666],[-1.515,1.577],[-0.416,0.457],[0.099,0.401],[0.34,1.295],[0.545,-0.323],[0.564,-0.591],[1.476,-0.347],[2.849,-0.592],[0.296,-0.468],[0.678,-0.217],[-0.045,-2.384],[-0.135,-0.427],[1.578,-1.014],[1.477,-1.232],[-0.01,-0.467],[-0.001,-0.557],[0.028,-0.506],[-0.007,-4.49],[0.285,-0.309],[0.632,-0.089],[1.935,-0.05],[0.786,0.418],[0.902,0.902],[0.517,-0.147],[1.223,0.702],[0.002,-2.601],[0.026,-1.279],[0.205,-0.525],[-0.205,-0.928],[0.445,-1.475],[0.213,-0.441],[1.084,-0.813],[-0.551,-0.305],[1.054,-0.545],[0.358,-1.323],[-0.007,-8.718],[-0.023,-5.277],[-0.005,-1.163],[-0.46,-0.147],[-0.251,-1.221],[1.394,-1.682],[0.052,-0.087],[0.092,0.076],[0,0],[-0.108,0.437],[0.58,0.312],[0.605,-0.25],[-1.745,19.013],[-0.05,3.26],[0.04,1.981],[0.078,0.162],[0.242,2.231],[6.872,0],[0.726,0.001],[-0.232,-0.712],[0.161,-0.201],[0.319,0.03],[3.861,1.412],[0.612,-0.077],[0.997,-0.32],[-0.124,1.378],[-0.579,-0.403],[-0.915,-0.078],[-2.298,0.072],[-0.78,-0.099],[-0.671,0.434],[-1.598,0.503],[-3.232,-0.061],[-1.564,0.073],[-0.441,0.006],[0.408,-1.508],[-1.486,-0.058],[-0.881,-0.745],[-0.739,0.414],[0.695,2.234],[0.228,4.182],[0.016,0.945],[-0.421,1.208],[0.014,0.469],[0.614,0.205],[1.151,-1.49],[3.086,-1.125],[1.86,-0.71],[-0.465,-0.462],[0.365,-0.599],[2.706,1.101],[0.601,-0.861],[1.786,1.687],[3.603,-2.019],[0.765,-0.34],[-0.109,-1.015],[-0.046,-0.007],[-3.573,-0.692],[-0.244,-0.083],[0.002,-0.316],[0.693,-0.258],[1.513,0.295],[2.886,-0.991],[0.022,4.589],[0.007,18.971],[0,0.324],[-1.917,-0.012],[-0.361,0.175],[0.311,0.381],[-0.379,0.269],[-0.348,-0.286],[-0.865,0.658],[-1.561,0.792],[-2.731,0.982],[-0.557,0.462],[1.531,-0.028],[3.909,0.47],[1.976,0.556],[0.015,8.41],[0.006,19.796],[0,0.324],[-1.493,0.018],[-0.534,-0.474],[-0.496,0.229],[-0.942,-1.283],[-0.322,-0.011],[-1.38,-0.029],[-0.631,0.703],[0.159,0.78],[-0.388,0.121],[-0.839,-0.549],[0.782,-0.432],[-0.19,-0.883],[-2.182,0.16],[-0.906,0.308],[-0.113,0.88],[0.166,0.138],[-2.055,0.784],[-1.149,-0.783],[1.425,-0.751],[0.947,-1.889],[-0.588,-0.878],[-1.043,0.039],[-0.117,0.274],[-0.289,-0.047],[-0.517,-1.384],[-1.013,-0.948],[-0.955,0.938],[0.207,0.578],[-0.954,-0.165],[-0.729,-0.246],[-1.042,-0.217],[-0.651,1.025],[0.845,1.112],[0.416,0.428],[-0.804,0.388],[-0.535,-0.225],[-0.359,-0.13],[-1.498,0.906],[-0.985,0.669],[0.847,0.404],[0.219,3.202],[1.713,-1.09],[1.181,-0.796],[-0.093,1.224],[0.887,1.468],[1.438,0.038],[0.178,-0.426],[0.23,-0.515],[0.534,0.813],[1.546,0.625],[-0.033,-0.602],[-1.197,-0.574],[0.927,-0.151],[0.595,1.621],[0.37,0.203],[1.164,-0.925],[2.776,-0.027],[0.478,0.002],[0.283,0.454],[-0.605,0.235],[-0.071,0.098],[-0.617,0.102],[-0.828,-0.289],[-1.559,-0.34],[-0.232,0.35],[0.629,1.386],[1.021,-0.256],[0.689,-1.241],[0.492,0.775],[0.522,0.713],[2.132,-0.257],[-0.277,-0.528],[0.428,-0.032],[1.373,0.6],[0.015,10.316],[0.002,0.684],[-0.182,-0.026],[-175.5,0],[-0.279,0],[0,-0.651],[1.572,-0.089],[0.053,-0.238],[0.301,-0.012],[0.098,0.26],[0.819,1.952],[0.51,0.105],[-0.459,-1.547],[0.764,0.007],[0.203,-0.915],[-0.265,-0.082],[0.035,-0.465],[0.928,-0.012],[1.158,0.058],[-0.173,-0.274],[-0.394,-0.661],[0.146,-0.075],[-0.192,-1.677],[1.251,0.349],[0.63,0.008],[-1.149,-1.275],[-1.103,-0.377],[-1.446,-1.142],[-0.045,0.017],[-0.076,-0.617],[0,0],[0.349,0.009],[0,0],[0.175,-0.084],[1.531,-0.716],[0.514,-0.041],[0,0],[0.074,-0.071],[0,0],[0.892,-0.3],[-0.721,-1.091],[-0.662,0.323],[-1.303,0.023],[-0.01,-0.556],[0.03,-0.025],[-0.023,-0.063],[-0.396,-1.036],[-0.371,0.507],[-1.266,1.069],[1.237,1.461],[-0.28,0.363],[-0.597,0.548],[-1.191,-0.588],[1.579,-0.828],[-0.271,-0.536],[-0.129,-2.041],[0,-16.451],[1.162,-0.534],[0.47,-0.218],[-0.01,-0.613],[-1.088,-0.521],[0,-2.324],[1.775,-0.883],[0.546,-0.243],[0.505,0.715],[-1.164,1.333],[0.618,0.48],[1.069,1.022],[1.212,1.016],[1.797,0.948],[0.749,-0.359],[-1.09,0.176],[-1.445,0.826],[-0.469,0.259],[0.129,0.485],[0.708,0.102],[3.423,-1.372],[2.512,-0.702],[2.574,-1.175],[1.102,0.071],[0.872,0.531],[-0.044,-0.359],[0.053,-0.554],[0.57,-0.148],[0.392,0.451],[0.838,-0.256],[0.083,-1.063],[0.007,-0.253],[0.432,-0.051],[0.152,0.864],[0.314,0.496],[0.707,-0.173],[0.153,-1.728],[-0.236,-0.796],[1.089,-0.167],[0.169,1.084],[0.921,-1.421],[2.216,0.8],[1.057,-1.151],[0.067,-0.416],[0.523,-0.038],[0.229,0.842],[1.474,-0.826],[0.57,-0.343],[-0.293,-0.596],[-0.312,-0.007],[-0.009,-0.917],[0.313,-0.195],[1.112,-0.922],[0.081,0.31],[0.246,-0.125],[1.073,-0.493],[0.019,0.157],[0.969,-0.941],[0.815,0.326],[0.106,1.235],[0.423,0.715],[0.123,1.829],[0.013,0.767],[-1.406,0.209],[-2.351,1.852],[-1.648,-1.33],[-0.446,0.093],[0.078,1.687],[-2.441,-1.034],[-0.7,0.35],[-0.011,0.695],[2.062,0.13],[0.889,1.933],[0.602,-0.029],[0.524,1.68],[0.963,-0.51],[0.653,1.17],[1.012,-0.018],[0.105,-0.51],[0.371,0.185],[0.128,0.078],[0.11,0.365],[1.544,0.472],[0.575,0.094],[0.633,-0.057],[0.316,0.698],[-1.185,1.051],[0.785,0.978],[0.374,-0.241],[0.694,0.902],[0.496,0.273],[-0.378,0.532],[0.121,0.042],[0.174,0.561],[1.888,0.934],[0.052,0.026],[-0.053,0.678],[-0.648,-0.024],[-0.914,-0.207],[-0.822,0.488],[-0.139,-0.498],[-1.792,-1.131],[-0.933,0],[-1.02,-0.329],[-0.51,0.135],[0.074,0.969],[0.613,0.569],[0.341,0.515],[0.518,-0.817],[0.25,1.117],[0.171,0.246],[-1.406,-0.081],[-0.031,0.058],[-1.148,0.096],[-0.808,0.002],[-0.221,0.944],[0.806,0.302],[2.206,0.133],[0.989,-0.416],[1.771,1.183],[1.019,0.444],[-0.023,-1.764],[0.935,-0.558],[-1.142,-0.683],[-0.236,-0.131],[0,-0.36],[1.023,-0.572],[1.159,0.529],[0.926,0.328],[0.477,-0.834],[-0.202,-0.147],[0.86,0.464],[0.395,0.205],[0.226,-0.318],[-0.597,-0.94],[0.52,-0.196],[0.901,-0.414],[-0.843,-0.706],[-1.617,-0.617],[-0.31,0.123],[-1.61,-1.182],[-0.317,0.19],[-1.141,-1.389],[-0.886,0.094],[-0.44,-0.911],[0.283,-0.019],[0.598,0.038],[0.726,0.183],[-0.073,-0.539],[-1.189,-0.505],[-1.969,-0.883],[-0.043,-0.414],[-1.218,0.087],[-0.686,-0.341],[1.255,-1.125],[-0.017,-4.088],[0.002,-0.666],[-0.578,-0.848],[-0.069,-1.749],[-0.211,-2.57],[2.961,-0.432],[0.879,0.033],[1.202,0.509],[0.353,0.139],[-0.101,1.578],[-0.338,1.977],[0.086,2.067],[-0.99,0.824],[0.575,0.578],[0.125,-0.249],[0.255,-0.384],[0.607,0.235],[-0.068,1.018],[-0.016,0.693],[0.996,-0.062],[0.305,-3.19],[0.074,-0.236],[-0.527,-0.655],[-0.006,-2.463],[-0.014,-0.865],[0.058,-0.919],[0.786,-0.042],[1.653,-0.016],[0.59,-0.013],[-1.137,0.085],[-0.055,3.477],[0.187,1.934],[-0.448,0.764],[0.253,1.485],[-0.553,0.051],[-0.264,2.126],[-0.046,1.351],[0.148,0.212],[0.433,0.056],[0.264,-0.701],[0.764,1.189],[0.24,0.736],[0.846,0.162],[1.1,-2.577],[0.903,-0.501],[0.346,-1.235],[0.436,-0.227],[0.059,0.792],[0.736,1.151],[0.904,0.114],[-0.435,0.687],[-0.582,-0.004],[-0.581,-0.635],[-0.589,0.498],[0.776,0.93],[-0.307,0.392],[0.483,0.143],[-0.1,0.508],[-0.62,-0.017],[0.113,1.115],[1.453,1.991],[1.682,1.477],[2.113,-0.628],[-1.755,-2.438],[-1.642,-1.837],[0.325,-0.709],[0.457,-0.052],[0.747,-1.2],[1.748,-0.707],[-1.286,-1.454]],"v":[[-118.163,147.091],[-116.692,145.127],[-115.641,146.41],[-111.25,146.225],[-110.09,144.345],[-109.037,144.347],[-108.944,146.297],[-108.309,147.658],[-101.244,152.677],[-94.407,161.087],[-93.669,162.241],[-92.491,167.08],[-92.258,169.927],[-92.72,170.799],[-92.971,172.689],[-95.791,172.102],[-101.313,166.85],[-105.661,165.067],[-109.991,163.233],[-111.227,162.926],[-111.91,161.728],[-113.829,156.832],[-115.375,155.498],[-116.54,157.479],[-115.981,159.17],[-114.958,160.82],[-110.147,169.185],[-110.707,172.814],[-110.646,173.689],[-107.603,174.681],[-107.018,175.491],[-104.219,176.906],[-103.326,176.744],[-103.173,177.641],[-102.153,180.16],[-99.164,182.007],[-99.093,183.523],[-101.078,187.122],[-104.067,189.753],[-105.19,189.74],[-107.188,189.085],[-110.578,188.792],[-112.111,189.019],[-111.944,190.98],[-110.717,191.654],[-109.141,191.18],[-106.018,190.534],[-108.227,193.111],[-108.814,193.703],[-108.706,196.999],[-112.467,197.834],[-119.567,197.772],[-119.585,196.531],[-121.806,195.344],[-122.901,196.97],[-123.731,197.25],[-125.176,198.119],[-125.917,198.592],[-128.255,199.889],[-129.282,200.431],[-128.708,202.167],[-124.987,203.053],[-124.128,204.751],[-123.886,208.362],[-120.99,208.384],[-118.68,209.293],[-117.879,209.995],[-117.334,210.71],[-114.108,209.821],[-112.46,207.587],[-110.524,207.218],[-106.299,209.601],[-104.082,208.79],[-102.033,208.078],[-97.556,209.806],[-95.941,207.831],[-95.979,207.036],[-94.565,207.264],[-91.332,210.183],[-82.404,209.087],[-81.233,209.252],[-81.971,210.4],[-87.421,211.421],[-108.427,211.022],[-112.235,210.738],[-110.826,211.999],[-106.065,212.88],[-105.703,213.881],[-106.09,214.457],[-106.531,216.451],[-103.709,218.076],[-100.939,217.822],[-98.658,218.875],[-97.056,219.499],[-90.097,219.788],[-85.402,220.056],[-74.492,219.149],[-71.442,218.934],[-69.903,220.013],[-69.196,220.39],[-67.776,221.552],[-69.031,222.904],[-82.285,224.638],[-84.082,224.515],[-97.064,224.088],[-99.084,224.522],[-99.54,224.966],[-99.106,225.681],[-98.281,226.029],[-97.58,227.534],[-99.636,228.49],[-109.771,227.981],[-116.566,227.527],[-134.102,226.812],[-143.278,227.252],[-144.649,227.144],[-146.766,231.083],[-145.894,231.23],[-139.951,230.101],[-137.732,231.235],[-139.354,233.155],[-142.268,235.508],[-146.359,237.013],[-148.954,239.185],[-148.234,240.091],[-143.648,240.193],[-138.686,240.724],[-136.005,240.718],[-136.862,238.226],[-135.016,237.228],[-131.876,239.976],[-131.694,242.363],[-131.388,243.227],[-130.315,242.7],[-128.962,240.154],[-123.627,239.312],[-123.258,241.578],[-124.562,243.04],[35.295,243.04],[34.222,241.606],[33.567,241.212],[34.252,240.574],[37.911,239.403],[36.219,238.311],[44.005,237.928],[42.744,237.453],[35.634,237.434],[34.386,237.217],[34.945,235.893],[34.66,234.376],[33.799,232.707],[33.062,230.516],[30.671,227.32],[28.43,226.205],[17.004,225.956],[15.62,225.476],[16.6,224.734],[17.203,223.873],[19.797,222.327],[31.217,222.606],[32.72,221.51],[32.693,221.525],[33.533,221.225],[35.764,219.25],[37.945,217.862],[38.821,217.341],[43.846,213.053],[47.031,208.395],[47.212,208.206],[47.268,208.139],[47.49,207.921],[47.551,207.86],[47.768,207.631],[47.804,207.584],[53.93,203.129],[54.13,202.502],[54.121,202.512],[54.451,202.295],[54.504,202.287],[54.719,202.092],[59.749,199.261],[58.128,198.565],[58.141,198.356],[59.278,198.363],[66.916,197.14],[69.928,196.864],[78.419,196.98],[86.914,198.322],[88.982,198.039],[92.686,197.579],[100.439,197.849],[98.197,197.686],[92.71,198.766],[91.48,198.925],[90.481,199.758],[91.316,200.462],[96.974,202.984],[110.019,206.134],[110.67,205.92],[114.332,204.05],[116.909,202.476],[123.38,199.981],[124.328,199.235],[123.151,198.675],[119.556,198.506],[109.652,198.996],[101.024,197.85],[108.084,198.075],[108.907,198.09],[123.552,197.925],[127.518,196.177],[128.409,197.602],[129.572,198.662],[130.592,197.328],[131.174,194.335],[133.026,191.905],[130.777,193.323],[129.895,195.108],[129.211,193.049],[129.482,182.894],[130.745,181.24],[136.675,178.893],[137.428,177.485],[137.743,176.154],[149.558,167.409],[153.604,163.099],[154.194,162.411],[158.344,164.186],[164.086,164.336],[170.351,159.808],[169.705,157.984],[169.172,157.464],[173.777,155.107],[177.615,152.739],[180.769,151.242],[186.154,148.878],[186.836,148.512],[187.182,149.189],[187.191,151.001],[188.854,152.291],[203.567,149.793],[208.901,150.051],[214.96,149.926],[216.773,146.666],[216.737,145.693],[217.215,141.416],[215.536,141.948],[211.443,140.282],[205.071,137.745],[197.203,136.791],[196.542,136.927],[190.183,139.313],[188.466,140.683],[190.23,142.065],[192.904,143.7],[191.027,143.251],[182.899,143.436],[179.548,145.618],[174.551,147.875],[168.148,151.526],[163.259,154.077],[158.256,155.837],[155.363,158.002],[153.746,156.739],[152.79,155.971],[148.224,155.78],[150.619,154.573],[158.69,154.267],[160.877,151.289],[161.099,144.83],[162.017,143.778],[162.562,145.144],[162.614,149.045],[163.279,150.554],[164.573,148.987],[164.875,145.523],[165.198,144.037],[166.127,143.145],[167.138,143.965],[167.836,147.338],[168.98,148.762],[169.895,147.087],[171.446,144.545],[172.076,143.13],[172.107,139.368],[172.305,138.003],[172.831,137.294],[173.462,138.048],[173.809,142.748],[174.379,144.38],[175.166,142.729],[175.388,135.209],[173.622,133.629],[172.389,132.593],[171.982,132.016],[164.332,132.089],[165.743,132.548],[170.316,132.9],[172.137,135.285],[170.249,137.034],[168.907,138.634],[168.907,141.439],[167.63,139.733],[166.313,139.418],[160.758,143.327],[157.949,142.255],[157.101,136.624],[156.255,128.616],[157.068,127.008],[157.596,128.563],[159.299,127.742],[160.129,126.696],[160.265,128.327],[160.197,129.225],[165.333,130.257],[166.64,130.511],[168.993,130.912],[178.564,119.842],[180.452,117.009],[180.986,115.974],[176.366,111.323],[172.984,108.373],[173.654,102.871],[171.121,99.915],[170.757,96.368],[171.362,91.491],[170.958,91.783],[168.35,92.604],[167.77,91.625],[168.877,88.499],[172.532,82.651],[175.854,77.062],[176.036,76.802],[176.039,76.792],[180.506,72.518],[180.744,71.74],[183.502,67.945],[186.62,64.617],[195.919,55.188],[198.64,53.935],[197.893,55.089],[193.851,60.328],[191.919,63.125],[188.881,65.026],[187.696,67.023],[183.169,71.77],[182.967,73.504],[183.265,74.706],[185.461,75.668],[186.915,74.395],[188.919,73.207],[193.383,72.32],[201.038,68.656],[202.391,67.747],[203.633,66.281],[204.253,59.186],[204.829,58.346],[209.515,55.241],[212.845,50.583],[212.814,49.183],[212.81,47.512],[212.89,45.994],[212.854,32.524],[213.708,31.596],[215.603,31.341],[221.203,30.223],[223.703,30.624],[226.791,31.121],[228.417,31.231],[231.251,29.609],[231.254,21.806],[230.102,18.496],[230.148,16.908],[229.614,14.124],[228.186,11.532],[229.184,10.601],[228.982,7.578],[229.01,6.815],[230.665,4.237],[230.959,0.239],[230.931,-25.915],[230.862,-41.746],[229.46,-44.555],[228.722,-45.817],[228.14,-49.507],[232.929,-53.904],[233.458,-53.944],[233.735,-53.715],[233.753,-53.691],[234.005,-52.5],[235.438,-52.815],[237.329,-53.162],[236.627,3.938],[236.815,13.778],[240.197,16.013],[240.423,16.499],[242.954,18.791],[263.571,18.797],[265.63,18.341],[264.665,16.467],[265.275,16.28],[266.23,16.38],[277.874,16.586],[278.379,15.756],[279.799,16.845],[279.721,21.005],[278.897,19.359],[276.163,19.038],[269.308,18.539],[267.196,19.311],[264.991,19.904],[260.199,19.909],[250.506,20.113],[246.824,21.773],[245.502,21.791],[243.801,19.799],[239.367,18.494],[236.344,18.722],[236.23,20.759],[236.868,27.618],[236.566,40.231],[236.196,42.964],[235.719,46.602],[236.045,47.963],[237.349,47.139],[241.715,43.874],[250.946,40.429],[251.445,37.698],[250.157,36.336],[252.104,36.753],[257.017,35.318],[259.194,34.919],[264.91,35.421],[275.975,29.883],[277.653,28.234],[275.47,26.878],[275.331,26.872],[264.637,24.674],[264.007,24.296],[264.593,23.798],[266.655,22.976],[270.849,22.14],[279.709,21.303],[279.772,35.071],[279.773,91.985],[279.73,92.956],[274.783,94.936],[274.764,95.619],[274.7,96.7],[273.544,96.612],[272.364,96.259],[269.464,97.525],[264.919,100.073],[257.872,104.492],[258.178,106.261],[262.497,107.142],[273.828,110.048],[279.73,111.086],[279.773,136.316],[279.774,195.703],[279.735,196.677],[275.415,195.849],[273.438,195.838],[271.909,196.441],[268.374,195.611],[267.409,195.581],[264.256,197.303],[264.371,199.349],[263.89,201.397],[262.725,201.759],[262.657,200.012],[263.247,198.016],[261.725,197.593],[255.461,199.243],[253.928,201.247],[255.345,202.294],[255.934,202.685],[251.753,202.02],[251.862,200.448],[255.481,197.418],[255.445,191.923],[252.891,190.561],[251.55,192.065],[250.93,192.693],[250.447,192.07],[248.297,188.247],[245.423,188.257],[244.869,191.468],[245.191,193.215],[242.394,192.476],[240.203,191.757],[237.493,192.648],[237.796,195.572],[240.605,198.623],[240.413,199.596],[237.985,200.723],[236.583,201.015],[235.504,201.01],[231.044,203.782],[231.303,205.571],[232.415,207.407],[236.88,209.616],[242.059,206.411],[243.261,207.179],[243.983,210.648],[247.861,212.568],[249.935,210.537],[250.457,209.255],[251.333,209.163],[253.562,210.717],[256.529,208.91],[256.264,207.168],[254.385,204.482],[256.388,205.523],[259.81,208.269],[261.005,208.26],[264.42,205.389],[272.747,205.309],[274.181,205.317],[274.186,206.683],[272.739,207.844],[272.526,208.139],[270.765,207.865],[268.263,207.055],[262.427,209.661],[262.362,210.7],[266,212.42],[268.166,210.64],[270.235,210.62],[271.674,212.969],[273.787,214.415],[275.346,211.288],[274.394,209.769],[275.549,210.101],[279.729,211.763],[279.789,242.71],[278.925,243.545],[278.367,243.541],[-248.132,243.541],[-248.969,243.532],[-248.969,241.58],[-246.463,239.09],[-246.181,238.441],[-245.371,238.845],[-245.085,239.628],[-240.736,243.166],[-239.814,242.587],[-238.411,241.302],[-236.793,240.281],[-237.999,239.093],[-238.573,238.639],[-237.826,238.234],[-235.041,238.239],[-234.295,236.944],[-234.814,236.124],[-234.603,234.291],[-234.286,233.863],[-232.467,232.747],[-228.755,232.916],[-228.007,231.95],[-231.926,228.56],[-235.217,227.155],[-240.191,225.939],[-240.396,225.802],[-239.787,224.297],[-239.755,224.272],[-239.215,223.762],[-239.181,223.728],[-238.657,223.476],[-235.273,220.113],[-234.744,219.316],[-234.702,219.265],[-234.48,219.051],[-234.408,219.005],[-233.612,217.255],[-237.9,216.246],[-239.885,217.131],[-240.523,215.353],[-240.555,213.684],[-240.469,213.61],[-240.567,213.431],[-243.212,213.098],[-244.116,214.76],[-244.473,218.151],[-244.206,222.736],[-244.924,223.914],[-246.482,225.605],[-246.181,223.225],[-244.987,219.718],[-245.825,218.141],[-248.969,215.369],[-248.969,166.015],[-245.482,164.411],[-244.545,163.339],[-245.538,162.14],[-248.969,161.274],[-248.969,154.303],[-243.632,151.685],[-241.921,151.202],[-242.874,152.779],[-242.53,156.286],[-240.797,157.884],[-237.547,160.902],[-233.484,162.058],[-228.059,161.347],[-226.929,161.837],[-229.777,163.228],[-234.118,165.697],[-234.706,166.815],[-233.724,167.675],[-231.684,167.379],[-221.288,163.613],[-213.737,161.539],[-205.535,159.892],[-202.759,158.776],[-201.457,158.04],[-201.362,156.935],[-200.521,155.771],[-199.536,156.585],[-198.129,157.606],[-196.912,155.913],[-196.833,152.71],[-196.524,152.063],[-195.959,152.665],[-195.234,155.186],[-193.874,156.167],[-192.401,154.681],[-191.928,149.48],[-190.567,147.877],[-188.503,149.209],[-187.33,152.32],[-183.984,151.616],[-177.586,150.717],[-174.401,147.253],[-173.303,146.499],[-172.614,147.408],[-172.089,150.183],[-167.763,147.738],[-166.994,146.122],[-168.511,145.983],[-169.489,146.088],[-168.243,144.116],[-167.262,143.6],[-164.699,144.158],[-164.035,144.399],[-163.273,144.073],[-161.107,145.013],[-160.847,145.515],[-159.247,142.272],[-158.601,143.941],[-158.338,147.623],[-157.953,149.648],[-158.616,154.928],[-159.797,156.309],[-163.929,157.319],[-170.092,156.775],[-176.1,155.401],[-176.979,156.111],[-178.607,156.848],[-185.691,157.302],[-186.931,159.027],[-185.66,160.124],[-181.687,163.177],[-176.689,165.467],[-175.085,166.138],[-172.279,167.369],[-170.392,167.952],[-167.223,169.306],[-165.833,167.491],[-164.916,167.045],[-163.739,167.413],[-163.356,167.649],[-162.656,167.991],[-158.036,167.954],[-156.404,167.692],[-154.554,167.716],[-155.722,168.824],[-156.66,172.239],[-153.242,172.283],[-152.026,172.18],[-149.336,173.842],[-148.945,174.967],[-148.39,176.059],[-148.026,176.184],[-146.898,176.84],[-140.901,178.015],[-140.778,178.128],[-140.495,180.1],[-142.438,180.027],[-144.935,180.551],[-146.983,179.872],[-147.83,178.627],[-153.593,176.084],[-156.392,176.085],[-159.129,176.666],[-160.307,177.689],[-158.916,178.556],[-156.987,180.174],[-153.481,180.23],[-151.667,179.745],[-149.592,181.123],[-149.462,181.8],[-152.341,183.474],[-152.599,183.558],[-156.044,183.813],[-157.989,184.622],[-156.947,187.11],[-154.53,187.633],[-147.932,187.335],[-145.537,187.544],[-140.087,190.882],[-137.589,190.398],[-135.323,187.806],[-135.278,186.192],[-138.748,184.213],[-139.328,183.717],[-138.745,183.219],[-137.797,180.271],[-135.153,181.462],[-132.676,180.869],[-133.089,178.419],[-133.312,177.59],[-130.741,178.97],[-129.624,178.806],[-129.338,177.721],[-128.542,176.099],[-126.99,175.488],[-126.796,173.707],[-129.646,172.466],[-134.477,172.23],[-135.377,172.246],[-140.192,172.291],[-141.143,172.456],[-145.151,171.751],[-147.023,170.946],[-148.331,168.2],[-147.482,168.144],[-145.694,168.278],[-144.979,167.587],[-145.841,166.43],[-149.389,164.872],[-153.018,160.376],[-153.625,159.633],[-156.954,158.718],[-157.512,157.175],[-156.111,153.147],[-156.109,140.882],[-156.6,139.056],[-157.469,136.178],[-157.154,130.946],[-158.334,123.368],[-149.431,122.229],[-146.817,122.381],[-143.18,123.824],[-142.478,124.603],[-142.228,129.302],[-142.285,135.245],[-143.468,141.321],[-142.839,143.218],[-141.625,142.632],[-141.249,141.886],[-140.204,141.071],[-139.078,142.433],[-139.096,145.499],[-138.17,146.824],[-137.734,145.563],[-137.175,135.963],[-137.297,135.166],[-137.708,133.031],[-137.724,125.643],[-137.92,123.044],[-137.745,120.286],[-135.407,119.976],[-130.484,120.34],[-128.807,121.358],[-130.703,123.183],[-130.939,133.606],[-132.062,138.865],[-133.321,141.105],[-133.523,145.378],[-134.358,146.286],[-135.425,152.622],[-135.557,156.679],[-135.112,157.311],[-134.463,156.711],[-133.467,154.622],[-132.715,158.231],[-131.754,160.222],[-130.557,158.65],[-125.693,152.12],[-125.685,150.114],[-123.489,147.321],[-122.103,147.065],[-122.777,149.146],[-119.781,151.764],[-119.289,152.86],[-120.682,154.867],[-121.679,153.987],[-123.708,153.333],[-123.157,155.069],[-122.721,158.145],[-122.377,159.086],[-121.847,160.078],[-122.787,160.71],[-123.832,161.583],[-123.134,164.901],[-117.803,169.702],[-114.775,175.3],[-113.459,171.832],[-119.18,164.884],[-120.123,159.025],[-119.273,156.846],[-118.291,156.145],[-115.136,153.796],[-114.668,151.749]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.081,0.1,0.12,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1422,"st":0},{"ind":16,"ty":0,"nm":"C","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0.008},"t":55,"s":[878.792,1326.475,0],"to":[3.567,44.227,0],"ti":[-3.567,-44.227,0]},{"i":{"x":0.6,"y":0.6},"o":{"x":0.37,"y":0.37},"t":69,"s":[900.192,1591.835,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":0.37,"y":0},"t":77,"s":[900.192,1591.835,0],"to":[34.24,2.853,0],"ti":[-34.24,-2.853,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":107,"s":[1105.632,1608.955,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.521},"o":{"x":0.333,"y":0},"t":142,"s":[1105.632,1608.955,0],"to":[93.274,0,0],"ti":[-174.796,0,0]},{"t":185,"s":[1749.272,1608.955,0]}]},"a":{"a":0,"k":[382.5,765,0]},"s":{"a":0,"k":[74.9,74.9,100]}},"ao":0,"w":765,"h":765,"ip":55,"op":186,"st":55},{"ind":17,"ty":4,"nm":"C","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1222.457,1453.381,0]},"a":{"a":0,"k":[879.183,1.104,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":55,"s":[0,0,100]},{"t":61,"s":[48.15,48.15,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[984.01,-19.052],[1043.374,-19.052],[1043.374,-14.356],[984.01,-14.356]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.953,0.737,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[788.833,54.226],[788.833,49.157],[788.833,44.084],[788.833,39.006],[788.833,33.943],[788.833,28.869],[788.833,23.792],[788.833,18.728],[788.833,13.645],[788.833,8.577],[788.833,3.509],[788.833,-1.569],[788.833,-6.638],[781.129,-6.638],[781.129,-1.569],[781.129,3.509],[781.129,8.577],[781.129,13.645],[781.129,18.728],[781.129,23.792],[781.129,28.869],[781.129,33.943],[781.129,39.006],[781.129,44.084],[781.129,49.157],[781.129,54.226],[781.129,59.308],[788.833,59.308]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.886,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[895.356,54.226],[895.356,49.157],[895.356,44.084],[895.356,39.006],[895.356,33.943],[895.356,28.869],[895.356,23.792],[895.356,18.728],[895.356,13.645],[895.356,8.577],[895.356,3.509],[895.356,-1.569],[895.356,-6.638],[887.638,-6.638],[887.638,-1.569],[887.638,3.509],[887.638,8.577],[887.638,13.645],[887.638,18.728],[887.638,23.792],[887.638,28.869],[887.638,33.943],[887.638,39.006],[887.638,44.084],[887.638,49.157],[887.638,54.226],[887.638,59.308],[895.356,59.308]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.886,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[963.728,-22.06],[958.662,-22.06],[953.582,-22.06],[948.514,-22.06],[943.448,-22.06],[938.365,-22.06],[933.299,-22.06],[928.216,-22.06],[923.15,-22.06],[918.084,-22.06],[913.001,-22.06],[907.933,-22.06],[902.867,-22.06],[902.867,-29.779],[897.787,-29.779],[892.719,-29.779],[887.638,-29.779],[882.57,-29.779],[882.57,-37.483],[877.504,-37.483],[872.421,-37.483],[867.355,-37.483],[862.289,-37.483],[862.289,-45.202],[857.206,-45.202],[857.206,-52.906],[857.206,-60.624],[857.206,-68.328],[857.206,-76.047],[857.206,-83.751],[857.206,-91.47],[857.206,-99.174],[862.289,-99.174],[867.355,-99.174],[872.421,-99.174],[877.504,-99.174],[882.57,-99.174],[887.638,-99.174],[892.719,-99.174],[897.787,-99.174],[902.867,-99.174],[907.933,-99.174],[913.001,-99.174],[918.084,-99.174],[923.15,-99.174],[928.216,-99.174],[928.216,-91.47],[933.299,-91.47],[938.365,-91.47],[938.365,-83.751],[943.448,-83.751],[948.514,-83.751],[948.514,-76.047],[953.582,-76.047],[958.662,-76.047],[963.728,-76.047],[963.728,-68.328],[968.796,-68.328],[973.877,-68.328],[973.877,-60.624],[978.945,-60.624],[984.011,-60.624],[984.011,-52.906],[984.011,-45.202],[984.011,-37.483],[984.011,-29.779],[978.945,-29.779],[973.877,-29.779],[968.796,-29.779],[968.796,-22.06]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[786.197,-22.06],[781.129,-22.06],[776.048,-22.06],[770.982,-22.06],[765.913,-22.06],[760.833,-22.06],[755.765,-22.06],[750.699,-22.06],[745.616,-22.06],[740.55,-22.06],[735.47,-22.06],[730.401,-22.06],[725.335,-22.06],[720.252,-22.06],[720.252,-29.779],[715.186,-29.779],[710.117,-29.779],[710.117,-37.483],[710.117,-45.202],[710.117,-52.906],[710.117,-60.624],[715.186,-60.624],[720.252,-60.624],[720.252,-68.328],[725.335,-68.328],[730.401,-68.328],[730.401,-76.047],[735.47,-76.047],[740.55,-76.047],[745.616,-76.047],[745.616,-83.751],[750.699,-83.751],[755.765,-83.751],[755.765,-91.47],[760.833,-91.47],[765.913,-91.47],[770.982,-91.47],[770.982,-99.174],[776.048,-99.174],[781.129,-99.174],[786.197,-99.174],[791.28,-99.174],[796.346,-99.174],[801.412,-99.174],[806.495,-99.174],[811.561,-99.174],[816.627,-99.174],[821.709,-99.174],[826.778,-99.174],[831.844,-99.174],[831.844,-91.47],[831.844,-83.751],[831.844,-76.047],[831.844,-68.328],[831.844,-60.624],[831.844,-52.906],[831.844,-45.202],[826.778,-45.202],[821.709,-45.202],[816.627,-45.202],[811.561,-45.202],[806.495,-45.202],[806.495,-37.483],[806.495,-29.779],[801.412,-29.779],[796.346,-29.779],[791.28,-29.779],[791.28,-22.06]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[994.159,-68.328],[989.093,-68.328],[989.093,-76.047],[984.01,-76.047],[978.944,-76.047],[978.944,-83.751],[973.876,-83.751],[968.795,-83.751],[963.727,-83.751],[963.727,-91.47],[958.661,-91.47],[953.581,-91.47],[953.581,-99.174],[948.513,-99.174],[943.447,-99.174],[938.364,-99.174],[938.364,-106.893],[933.298,-106.893],[928.215,-106.893],[928.215,-114.611],[923.149,-114.611],[918.083,-114.611],[913,-114.611],[907.932,-114.611],[902.866,-114.611],[897.786,-114.611],[892.718,-114.611],[887.637,-114.611],[882.569,-114.611],[877.503,-114.611],[872.42,-114.611],[867.354,-114.611],[862.288,-114.611],[857.205,-114.611],[852.139,-114.611],[847.057,-114.611],[841.991,-114.611],[836.923,-114.611],[831.843,-114.611],[826.777,-114.611],[821.708,-114.611],[816.626,-114.611],[811.56,-114.611],[806.494,-114.611],[801.411,-114.611],[796.345,-114.611],[791.279,-114.611],[786.196,-114.611],[781.128,-114.611],[776.047,-114.611],[770.98,-114.611],[765.911,-114.611],[765.911,-106.893],[760.832,-106.893],[755.764,-106.893],[755.764,-99.174],[750.698,-99.174],[745.615,-99.174],[740.548,-99.174],[740.548,-91.47],[735.469,-91.47],[730.4,-91.47],[730.4,-83.751],[725.333,-83.751],[720.25,-83.751],[715.184,-83.751],[715.184,-76.047],[710.115,-76.047],[705.034,-76.047],[705.034,-68.328],[699.968,-68.328],[694.885,-68.328],[694.885,-60.624],[694.885,-52.906],[694.885,-45.202],[694.885,-37.483],[694.885,-29.779],[694.885,-22.06],[694.885,-14.356],[699.968,-14.356],[705.034,-14.356],[710.115,-14.356],[715.184,-14.356],[720.25,-14.356],[725.333,-14.356],[730.4,-14.356],[735.469,-14.356],[740.548,-14.356],[745.615,-14.356],[750.698,-14.356],[755.764,-14.356],[760.832,-14.356],[765.911,-14.356],[770.98,-14.356],[776.047,-14.356],[781.128,-14.356],[786.196,-14.356],[791.279,-14.356],[796.345,-14.356],[801.411,-14.356],[806.494,-14.356],[811.56,-14.356],[816.626,-14.356],[821.708,-14.356],[826.777,-14.356],[831.843,-14.356],[836.923,-14.356],[836.923,-6.637],[836.923,1.077],[836.923,8.786],[836.923,16.5],[841.991,16.5],[847.057,16.5],[852.139,16.5],[852.139,8.786],[852.139,1.077],[852.139,-6.637],[852.139,-14.356],[857.205,-14.356],[862.288,-14.356],[867.354,-14.356],[872.42,-14.356],[877.503,-14.356],[882.569,-14.356],[887.637,-14.356],[892.718,-14.356],[897.786,-14.356],[902.866,-14.356],[907.932,-14.356],[913,-14.356],[918.083,-14.356],[923.149,-14.356],[928.215,-14.356],[933.298,-14.356],[938.364,-14.356],[943.447,-14.356],[948.513,-14.356],[953.581,-14.356],[958.661,-14.356],[963.727,-14.356],[968.795,-14.356],[973.876,-14.356],[978.944,-14.356],[984.01,-14.356],[989.093,-14.356],[994.159,-14.356],[999.225,-14.356],[999.225,-22.06],[999.225,-29.779],[999.225,-37.483],[999.225,-45.202],[999.225,-52.906],[999.225,-60.624],[999.225,-68.328]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.961,0.737,0.078,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[989.093,-6.638],[984.01,-6.638],[984.01,1.076],[984.01,8.785],[984.01,16.499],[984.01,24.207],[984.01,31.926],[984.01,39.63],[984.01,47.344],[984.01,55.053],[984.01,62.766],[984.01,70.475],[984.01,78.198],[984.01,85.898],[984.01,93.616],[984.01,101.325],[978.945,101.325],[973.876,101.325],[968.796,101.325],[963.728,101.325],[958.662,101.325],[953.581,101.325],[948.513,101.325],[943.447,101.325],[938.365,101.325],[933.298,101.325],[928.216,101.325],[923.15,101.325],[918.084,101.325],[913.001,101.325],[907.933,101.325],[902.867,101.325],[902.867,93.616],[902.867,85.898],[902.867,78.198],[902.867,70.475],[902.867,62.766],[902.867,55.053],[902.867,47.344],[902.867,39.63],[902.867,31.926],[902.867,24.207],[902.867,16.499],[902.867,8.785],[902.867,1.076],[902.867,-6.638],[897.787,-6.638],[892.719,-6.638],[887.638,-6.638],[887.638,1.076],[887.638,8.785],[887.638,16.499],[887.638,24.207],[887.638,31.926],[887.638,39.63],[887.638,47.344],[887.638,55.053],[887.638,62.766],[887.638,70.475],[887.638,78.198],[887.638,85.898],[887.638,93.616],[887.638,101.325],[882.57,101.325],[877.504,101.325],[872.421,101.325],[867.355,101.325],[862.289,101.325],[857.207,101.325],[852.14,101.325],[847.058,101.325],[841.992,101.325],[836.924,101.325],[831.843,101.325],[826.777,101.325],[821.709,101.325],[816.626,101.325],[811.56,101.325],[806.495,101.325],[801.412,101.325],[796.346,101.325],[796.346,93.616],[796.346,85.898],[796.346,78.198],[796.346,70.475],[796.346,62.766],[796.346,55.053],[796.346,47.344],[796.346,39.63],[796.346,31.926],[796.346,24.207],[796.346,16.499],[796.346,8.785],[796.346,1.076],[796.346,-6.638],[791.28,-6.638],[786.197,-6.638],[781.129,-6.638],[781.129,1.076],[781.129,8.785],[781.129,16.499],[781.129,24.207],[781.129,31.926],[781.129,39.63],[781.129,47.344],[781.129,55.053],[781.129,62.766],[781.129,70.475],[781.129,78.198],[781.129,85.898],[781.129,93.616],[781.129,101.325],[776.048,101.325],[770.983,101.325],[765.914,101.325],[760.834,101.325],[755.766,101.325],[750.7,101.325],[745.617,101.325],[740.551,101.325],[735.471,101.325],[730.402,101.325],[725.337,101.325],[720.254,101.325],[715.188,101.325],[710.12,101.325],[710.12,93.616],[710.12,85.898],[710.12,78.198],[710.12,70.475],[710.12,62.766],[710.12,55.053],[710.12,47.344],[710.12,39.63],[710.12,31.926],[710.12,24.207],[710.12,16.499],[710.12,8.785],[710.12,1.076],[710.12,-6.638],[705.039,-6.638],[699.973,-6.638],[694.89,-6.638],[694.89,1.076],[694.89,8.785],[694.89,16.499],[694.89,24.207],[694.89,31.926],[694.89,39.63],[694.89,47.344],[694.89,55.053],[694.89,62.766],[694.89,70.475],[694.89,78.198],[694.89,85.898],[694.89,93.616],[694.89,101.325],[694.89,109.043],[694.89,116.743],[699.973,116.743],[705.039,116.743],[710.12,116.743],[715.188,116.743],[720.254,116.743],[725.337,116.743],[730.402,116.743],[735.471,116.743],[740.551,116.743],[745.617,116.743],[750.7,116.743],[755.766,116.743],[760.834,116.743],[765.914,116.743],[770.983,116.743],[776.048,116.743],[781.129,116.743],[786.197,116.743],[791.28,116.743],[796.346,116.743],[801.412,116.743],[806.495,116.743],[811.56,116.743],[816.626,116.743],[821.709,116.743],[826.777,116.743],[831.843,116.743],[836.924,116.743],[841.992,116.743],[847.058,116.743],[852.14,116.743],[857.207,116.743],[862.289,116.743],[867.355,116.743],[872.421,116.743],[877.504,116.743],[882.57,116.743],[887.638,116.743],[892.719,116.743],[897.787,116.743],[902.867,116.743],[907.933,116.743],[913.001,116.743],[918.084,116.743],[923.15,116.743],[928.216,116.743],[933.298,116.743],[938.365,116.743],[943.447,116.743],[948.513,116.743],[953.581,116.743],[958.662,116.743],[963.728,116.743],[968.796,116.743],[973.876,116.743],[978.945,116.743],[984.01,116.743],[989.093,116.743],[994.159,116.743],[999.225,116.743],[999.225,109.043],[999.225,101.325],[999.225,93.616],[999.225,85.898],[999.225,78.198],[999.225,70.475],[999.225,62.766],[999.225,55.053],[999.225,47.344],[999.225,39.63],[999.225,31.926],[999.225,24.207],[999.225,16.499],[999.225,8.785],[999.225,1.076],[999.225,-6.638],[994.159,-6.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.961,0.737,0.078,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[750.7,-106.891],[755.766,-106.891],[755.766,-99.172],[750.7,-99.172]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.984,0.902,0.722,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[938.365,-106.891],[943.447,-106.891],[943.447,-99.172],[938.365,-99.172]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.976,0.816,0.424,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[781.129,-91.469],[786.197,-91.469],[786.197,-99.172],[781.129,-99.172],[776.048,-99.172],[770.983,-99.172],[770.983,-91.469],[776.048,-91.469]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[755.766,-76.046],[760.834,-76.046],[760.834,-83.75],[765.914,-83.75],[770.983,-83.75],[770.983,-91.469],[765.914,-91.469],[760.834,-91.469],[755.766,-91.469],[755.766,-83.75],[750.7,-83.75],[745.617,-83.75],[745.617,-76.046],[750.7,-76.046]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[872.421,-45.201],[872.421,-52.905],[872.421,-60.623],[872.421,-68.328],[872.421,-76.046],[872.421,-83.75],[872.421,-91.469],[872.421,-99.172],[864.821,-99.172],[857.207,-99.172],[857.207,-91.469],[857.207,-83.75],[857.207,-76.046],[857.207,-68.328],[857.207,-60.623],[857.207,-52.905],[857.207,-45.201],[864.821,-45.201]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[725.337,-29.778],[730.402,-29.778],[735.471,-29.778],[740.551,-29.778],[745.617,-29.778],[750.7,-29.778],[755.766,-29.778],[760.834,-29.778],[765.914,-29.778],[770.983,-29.778],[776.048,-29.778],[781.129,-29.778],[786.197,-29.778],[791.28,-29.778],[796.346,-29.778],[801.412,-29.778],[806.495,-29.778],[806.495,-37.482],[801.412,-37.482],[796.346,-37.482],[791.28,-37.482],[786.197,-37.482],[781.129,-37.482],[776.048,-37.482],[770.983,-37.482],[765.914,-37.482],[760.834,-37.482],[755.766,-37.482],[750.7,-37.482],[745.617,-37.482],[740.551,-37.482],[735.471,-37.482],[730.402,-37.482],[730.402,-45.201],[730.402,-52.905],[730.402,-60.623],[735.471,-60.623],[735.471,-68.328],[738.017,-68.328],[745.617,-68.328],[745.617,-76.046],[738.017,-76.046],[730.402,-76.046],[730.402,-68.328],[727.646,-68.328],[725.337,-68.328],[720.254,-68.328],[720.254,-60.623],[725.337,-60.623],[725.337,-60.623],[720.254,-60.623],[715.188,-60.623],[715.188,-52.905],[715.188,-45.201],[715.188,-37.482],[715.188,-29.778],[720.254,-29.778]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[892.719,-29.778],[897.787,-29.778],[902.867,-29.778],[907.933,-29.778],[913.001,-29.778],[918.084,-29.778],[923.15,-29.778],[928.216,-29.778],[933.298,-29.778],[938.365,-29.778],[943.447,-29.778],[948.513,-29.778],[953.581,-29.778],[958.662,-29.778],[963.728,-29.778],[968.796,-29.778],[973.876,-29.778],[978.945,-29.778],[984.01,-29.778],[984.01,-37.482],[984.01,-45.201],[984.01,-52.905],[984.01,-60.623],[978.945,-60.623],[978.945,-52.905],[978.945,-45.201],[978.945,-37.482],[973.876,-37.482],[968.796,-37.482],[963.728,-37.482],[958.662,-37.482],[953.581,-37.482],[948.513,-37.482],[943.447,-37.482],[938.365,-37.482],[933.298,-37.482],[928.216,-37.482],[923.15,-37.482],[918.084,-37.482],[913.001,-37.482],[907.933,-37.482],[902.867,-37.482],[897.787,-37.482],[892.719,-37.482],[892.719,-45.201],[887.638,-45.201],[882.57,-45.201],[882.57,-37.482],[882.57,-29.778],[887.638,-29.778]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[801.412,-6.638],[806.495,-6.638],[811.56,-6.638],[816.626,-6.638],[821.709,-6.638],[821.709,-14.356],[816.626,-14.356],[811.56,-14.356],[806.495,-14.356],[801.412,-14.356],[796.346,-14.356],[791.28,-14.356],[786.197,-14.356],[781.129,-14.356],[776.048,-14.356],[770.983,-14.356],[765.914,-14.356],[760.834,-14.356],[755.766,-14.356],[750.7,-14.356],[745.617,-14.356],[740.551,-14.356],[735.471,-14.356],[730.402,-14.356],[725.337,-14.356],[720.254,-14.356],[715.188,-14.356],[710.12,-14.356],[705.039,-14.356],[699.973,-14.356],[694.89,-14.356],[694.89,-6.638],[699.973,-6.638],[705.039,-6.638],[710.12,-6.638],[710.12,1.076],[710.12,8.785],[710.12,16.499],[710.12,24.207],[710.12,31.926],[710.12,39.63],[710.12,47.344],[710.12,55.053],[710.12,62.766],[710.12,70.475],[710.12,78.198],[710.12,85.898],[710.12,93.616],[710.12,101.325],[715.188,101.325],[720.254,101.325],[725.337,101.325],[730.402,101.325],[735.471,101.325],[740.551,101.325],[745.617,101.325],[750.7,101.325],[755.766,101.325],[760.834,101.325],[765.914,101.325],[770.983,101.325],[776.048,101.325],[781.129,101.325],[781.129,93.616],[776.048,93.616],[770.983,93.616],[765.914,93.616],[760.834,93.616],[755.766,93.616],[750.7,93.616],[745.617,93.616],[740.551,93.616],[735.471,93.616],[730.402,93.616],[725.337,93.616],[720.254,93.616],[720.254,85.898],[720.254,78.198],[720.254,70.475],[720.254,62.766],[720.254,55.053],[720.254,47.344],[720.254,39.63],[720.254,31.926],[720.254,24.207],[720.254,16.499],[720.254,8.785],[720.254,1.076],[720.254,-6.638],[725.337,-6.638],[730.402,-6.638],[735.471,-6.638],[740.551,-6.638],[745.617,-6.638],[750.7,-6.638],[755.766,-6.638],[760.834,-6.638],[765.914,-6.638],[770.983,-6.638],[776.048,-6.638],[781.129,-6.638],[786.197,-6.638],[791.28,-6.638],[796.346,-6.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[994.159,-14.356],[989.093,-14.356],[984.01,-14.356],[978.945,-14.356],[973.876,-14.356],[968.796,-14.356],[963.728,-14.356],[958.662,-14.356],[953.581,-14.356],[948.513,-14.356],[943.447,-14.356],[938.365,-14.356],[933.298,-14.356],[928.216,-14.356],[923.15,-14.356],[918.084,-14.356],[913.001,-14.356],[907.933,-14.356],[902.867,-14.356],[897.787,-14.356],[892.719,-14.356],[887.638,-14.356],[882.57,-14.356],[877.504,-14.356],[872.421,-14.356],[867.355,-14.356],[867.355,-6.638],[872.421,-6.638],[877.504,-6.638],[882.57,-6.638],[887.638,-6.638],[892.719,-6.638],[897.787,-6.638],[902.867,-6.638],[907.933,-6.638],[913.001,-6.638],[918.084,-6.638],[923.15,-6.638],[928.216,-6.638],[933.298,-6.638],[938.365,-6.638],[943.447,-6.638],[948.513,-6.638],[953.581,-6.638],[958.662,-6.638],[963.728,-6.638],[968.796,-6.638],[973.876,-6.638],[978.945,-6.638],[984.01,-6.638],[989.093,-6.638],[994.159,-6.638],[999.225,-6.638],[999.225,-14.356]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[877.504,93.616],[872.421,93.616],[867.355,93.616],[862.289,93.616],[857.207,93.616],[852.14,93.616],[847.058,93.616],[841.992,93.616],[836.924,93.616],[831.843,93.616],[826.777,93.616],[821.709,93.616],[816.626,93.616],[811.56,93.616],[806.495,93.616],[801.412,93.616],[796.346,93.616],[796.346,101.325],[801.412,101.325],[806.495,101.325],[811.56,101.325],[816.626,101.325],[821.709,101.325],[826.777,101.325],[831.843,101.325],[836.924,101.325],[841.992,101.325],[847.058,101.325],[852.14,101.325],[857.207,101.325],[862.289,101.325],[867.355,101.325],[872.421,101.325],[877.504,101.325],[882.57,101.325],[887.638,101.325],[887.638,93.616],[882.57,93.616]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[973.876,93.616],[968.796,93.616],[963.728,93.616],[958.662,93.616],[953.581,93.616],[948.513,93.616],[943.447,93.616],[938.365,93.616],[933.298,93.616],[928.216,93.616],[923.15,93.616],[918.084,93.616],[913.001,93.616],[907.933,93.616],[902.867,93.616],[902.867,101.325],[907.933,101.325],[913.001,101.325],[918.084,101.325],[923.15,101.325],[928.216,101.325],[933.298,101.325],[938.365,101.325],[943.447,101.325],[948.513,101.325],[953.581,101.325],[958.662,101.325],[963.728,101.325],[968.796,101.325],[973.876,101.325],[978.945,101.325],[984.01,101.325],[984.01,93.616],[978.945,93.616]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[730.402,-76.046],[735.471,-76.046],[735.471,-68.327],[730.402,-68.327]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[710.12,-52.905],[710.12,-45.201],[710.12,-37.482],[710.12,-29.778],[715.188,-29.778],[715.188,-37.482],[715.188,-45.201],[715.188,-52.905],[715.188,-60.623],[710.12,-60.623]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.235,0.145,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[862.289,-52.905],[862.289,-60.623],[862.289,-68.328],[862.289,-76.046],[862.289,-83.75],[862.289,-91.469],[862.289,-99.172],[857.207,-99.172],[857.207,-91.469],[857.207,-83.75],[857.207,-76.046],[857.207,-68.328],[857.207,-60.623],[857.207,-52.905],[857.207,-45.201],[862.289,-45.201]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[801.412,-37.482],[806.495,-37.482],[806.495,-45.201],[811.56,-45.201],[816.626,-45.201],[821.709,-45.201],[826.777,-45.201],[831.843,-45.201],[831.843,-52.905],[831.843,-60.623],[831.843,-68.328],[831.843,-76.046],[831.843,-83.75],[831.843,-91.469],[831.843,-99.172],[826.777,-99.172],[821.709,-99.172],[816.626,-99.172],[811.56,-99.172],[806.495,-99.172],[801.412,-99.172],[796.346,-99.172],[791.28,-99.172],[786.197,-99.172],[786.197,-91.469],[781.129,-91.469],[776.048,-91.469],[770.983,-91.469],[770.983,-83.75],[765.914,-83.75],[760.834,-83.75],[760.834,-76.046],[755.766,-76.046],[750.7,-76.046],[745.617,-76.046],[745.617,-68.328],[740.551,-68.328],[735.471,-68.328],[735.471,-60.623],[730.402,-60.623],[730.402,-52.905],[730.402,-45.201],[730.402,-37.482],[735.471,-37.482],[740.551,-37.482],[745.617,-37.482],[750.7,-37.482],[755.766,-37.482],[760.834,-37.482],[765.914,-37.482],[770.983,-37.482],[776.048,-37.482],[781.129,-37.482],[786.197,-37.482],[791.28,-37.482],[796.346,-37.482]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[907.933,-37.482],[913.001,-37.482],[918.084,-37.482],[923.15,-37.482],[928.216,-37.482],[933.298,-37.482],[938.365,-37.482],[943.447,-37.482],[948.513,-37.482],[953.581,-37.482],[958.662,-37.482],[963.728,-37.482],[968.796,-37.482],[973.876,-37.482],[978.945,-37.482],[978.945,-45.201],[978.945,-52.905],[978.945,-60.623],[973.876,-60.623],[973.876,-68.328],[968.796,-68.328],[963.728,-68.328],[963.728,-76.046],[958.662,-76.046],[953.581,-76.046],[948.513,-76.046],[948.513,-83.75],[943.447,-83.75],[938.365,-83.75],[938.365,-91.469],[933.298,-91.469],[928.216,-91.469],[923.15,-91.469],[923.15,-99.172],[918.084,-99.172],[913.001,-99.172],[907.933,-99.172],[902.867,-99.172],[897.787,-99.172],[892.719,-99.172],[887.638,-99.172],[882.57,-99.172],[877.504,-99.172],[872.421,-99.172],[872.421,-91.469],[872.421,-83.75],[872.421,-76.046],[872.421,-68.328],[872.421,-60.623],[872.421,-52.905],[872.421,-45.201],[877.504,-45.201],[882.57,-45.201],[887.638,-45.201],[892.719,-45.201],[892.719,-37.482],[897.787,-37.482],[902.867,-37.482]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[770.983,-6.638],[765.914,-6.638],[760.834,-6.638],[755.766,-6.638],[750.7,-6.638],[745.617,-6.638],[740.551,-6.638],[735.471,-6.638],[730.402,-6.638],[725.337,-6.638],[720.254,-6.638],[720.254,1.076],[720.254,8.785],[720.254,16.499],[720.254,24.207],[720.254,31.926],[720.254,39.63],[720.254,47.344],[720.254,55.053],[720.254,62.766],[720.254,70.475],[720.254,78.198],[720.254,85.898],[720.254,93.616],[725.337,93.616],[730.402,93.616],[735.471,93.616],[740.551,93.616],[745.617,93.616],[750.7,93.616],[755.766,93.616],[760.834,93.616],[765.914,93.616],[770.983,93.616],[776.048,93.616],[781.129,93.616],[781.129,85.898],[781.129,78.198],[781.129,70.475],[781.129,62.766],[781.129,55.053],[781.129,47.344],[781.129,39.63],[781.129,31.926],[781.129,24.207],[781.129,16.499],[781.129,8.785],[781.129,1.076],[781.129,-6.638],[776.048,-6.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[877.504,-6.638],[872.421,-6.638],[867.355,-6.638],[867.355,1.076],[867.355,8.785],[867.355,16.499],[872.421,16.499],[877.504,16.499],[877.504,24.207],[877.504,31.926],[877.504,39.63],[872.421,39.63],[872.421,47.344],[872.421,55.053],[867.355,55.053],[862.289,55.053],[862.289,62.766],[857.207,62.766],[852.14,62.766],[847.058,62.766],[841.992,62.766],[836.924,62.766],[831.843,62.766],[826.777,62.766],[826.777,55.053],[821.709,55.053],[821.709,47.344],[816.626,47.344],[816.626,39.63],[816.626,31.926],[816.626,24.207],[816.626,16.499],[821.709,16.499],[821.709,8.785],[821.709,1.076],[821.709,-6.638],[816.626,-6.638],[811.56,-6.638],[806.495,-6.638],[801.412,-6.638],[796.346,-6.638],[796.346,1.076],[796.346,8.785],[796.346,16.499],[796.346,24.207],[796.346,31.926],[796.346,39.63],[796.346,47.344],[796.346,55.053],[796.346,62.766],[796.346,70.475],[796.346,78.198],[796.346,85.898],[796.346,93.616],[801.412,93.616],[806.495,93.616],[811.56,93.616],[816.626,93.616],[821.709,93.616],[826.777,93.616],[831.843,93.616],[836.924,93.616],[841.992,93.616],[847.058,93.616],[852.14,93.616],[857.207,93.616],[862.289,93.616],[867.355,93.616],[872.421,93.616],[877.504,93.616],[882.57,93.616],[887.638,93.616],[887.638,85.898],[887.638,78.198],[887.638,70.475],[887.638,62.766],[887.638,55.053],[887.638,47.344],[887.638,39.63],[887.638,31.926],[887.638,24.207],[887.638,16.499],[887.638,8.785],[887.638,1.076],[887.638,-6.638],[882.57,-6.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[978.945,-6.638],[973.876,-6.638],[968.796,-6.638],[963.728,-6.638],[958.662,-6.638],[953.581,-6.638],[948.513,-6.638],[943.447,-6.638],[938.365,-6.638],[933.298,-6.638],[928.216,-6.638],[923.15,-6.638],[918.084,-6.638],[913.001,-6.638],[907.933,-6.638],[902.867,-6.638],[902.867,1.076],[902.867,8.785],[902.867,16.499],[902.867,24.207],[902.867,31.926],[902.867,39.63],[902.867,47.344],[902.867,55.053],[902.867,62.766],[902.867,70.475],[902.867,78.198],[902.867,85.898],[902.867,93.616],[907.933,93.616],[913.001,93.616],[918.084,93.616],[923.15,93.616],[928.216,93.616],[933.298,93.616],[938.365,93.616],[943.447,93.616],[948.513,93.616],[953.581,93.616],[958.662,93.616],[963.728,93.616],[968.796,93.616],[973.876,93.616],[978.945,93.616],[984.01,93.616],[984.01,85.898],[984.01,78.198],[984.01,70.475],[984.01,62.766],[984.01,55.053],[984.01,47.344],[984.01,39.63],[984.01,31.926],[984.01,24.207],[984.01,16.499],[984.01,8.785],[984.01,1.076],[984.01,-6.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.533,0.325,0.2,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[923.15,-99.172],[928.216,-99.172],[928.216,-91.468],[923.15,-91.468]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.749,0.529,0.188,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[963.728,-91.469],[968.796,-91.469],[968.796,-83.75],[963.728,-83.75]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.984,0.894,0.702,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[862.289,-45.201],[867.355,-45.201],[867.355,-37.482],[862.289,-37.482]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.667,0.486,0.176,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[867.355,-45.201],[872.421,-45.201],[872.421,-37.482],[867.355,-37.482]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.667,0.486,0.176,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[872.421,-45.201],[877.503,-45.201],[877.503,-37.482],[872.421,-37.482]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.667,0.486,0.176,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[877.504,-45.201],[882.57,-45.201],[882.57,-37.482],[877.504,-37.482]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.608,0.439,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[781.129,-29.778],[776.048,-29.778],[770.983,-29.778],[765.914,-29.778],[760.834,-29.778],[755.766,-29.778],[750.7,-29.778],[745.617,-29.778],[740.551,-29.778],[735.471,-29.778],[730.402,-29.778],[725.337,-29.778],[720.254,-29.778],[720.254,-22.06],[725.337,-22.06],[730.402,-22.06],[735.471,-22.06],[740.551,-22.06],[745.617,-22.06],[750.7,-22.06],[755.766,-22.06],[760.834,-22.06],[765.914,-22.06],[770.983,-22.06],[776.048,-22.06],[781.129,-22.06],[786.197,-22.06],[791.28,-22.06],[791.28,-29.778],[786.197,-29.778]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.886,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[963.728,-29.778],[958.662,-29.778],[953.581,-29.778],[948.513,-29.778],[943.447,-29.778],[938.365,-29.778],[933.298,-29.778],[928.216,-29.778],[923.15,-29.778],[918.084,-29.778],[913.001,-29.778],[907.933,-29.778],[902.867,-29.778],[902.867,-22.06],[907.933,-22.06],[913.001,-22.06],[918.084,-22.06],[923.15,-22.06],[928.216,-22.06],[933.298,-22.06],[938.365,-22.06],[943.447,-22.06],[948.513,-22.06],[953.581,-22.06],[958.662,-22.06],[963.728,-22.06],[968.796,-22.06],[968.796,-29.778]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.886,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[872.421,16.499],[867.355,16.499],[867.355,8.785],[867.355,1.076],[867.355,-6.638],[867.355,-14.356],[862.289,-14.356],[857.207,-14.356],[857.207,-6.638],[857.207,1.076],[857.207,8.785],[852.14,8.785],[852.14,16.499],[847.058,16.499],[841.992,16.499],[836.924,16.499],[836.924,8.785],[836.924,1.076],[836.924,-6.638],[836.924,-14.356],[831.843,-14.356],[826.777,-14.356],[821.709,-14.356],[821.709,-6.638],[821.709,1.076],[821.709,8.785],[821.709,16.499],[821.709,24.207],[821.709,31.926],[826.777,31.926],[826.777,39.63],[826.777,47.344],[831.843,47.344],[836.924,47.344],[836.924,55.053],[841.992,55.053],[841.992,47.344],[841.992,39.63],[841.992,31.926],[847.058,31.926],[852.14,31.926],[852.14,39.63],[852.14,47.344],[852.14,55.053],[857.207,55.053],[862.289,55.053],[867.355,55.053],[872.421,55.053],[872.421,47.344],[872.421,39.63],[877.504,39.63],[877.504,31.926],[877.504,24.207],[877.504,16.499]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.725,0.737,0.765,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[852.14,-14.356],[857.206,-14.356],[857.206,-6.638],[852.14,-6.638]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.651,0.663,0.686,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[852.14,-6.638],[857.206,-6.638],[857.206,1.076],[852.14,1.076]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.651,0.663,0.686,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[852.14,1.076],[857.206,1.076],[857.206,8.785],[852.14,8.785]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.651,0.663,0.686,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[857.207,55.053],[852.14,55.053],[847.058,55.053],[841.992,55.053],[836.924,55.053],[836.924,47.344],[831.843,47.344],[826.777,47.344],[826.777,39.63],[826.777,31.926],[821.709,31.926],[821.709,24.207],[821.709,16.499],[816.626,16.499],[816.626,24.207],[816.626,31.926],[816.626,39.63],[816.626,47.344],[821.709,47.344],[821.709,55.053],[826.777,55.053],[826.777,62.766],[831.843,62.766],[836.924,62.766],[841.992,62.766],[847.058,62.766],[852.14,62.766],[857.207,62.766],[862.289,62.766],[862.289,55.053]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.576,0.592,0.616,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[847.058,31.926],[841.992,31.926],[841.992,39.63],[841.992,47.344],[841.992,55.053],[847.058,55.053],[852.14,55.053],[852.14,47.344],[852.14,39.63],[852.14,31.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.255,0.271,0.267,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[797.085,-68.255],[802.108,-68.255],[802.108,-74.044],[807.145,-74.044],[812.168,-74.044],[812.168,-79.823],[817.19,-79.823],[822.227,-79.823],[822.227,-85.602],[827.252,-85.602],[832.272,-85.602],[832.272,-91.396],[837.297,-91.396],[837.297,-97.17],[842.334,-97.17],[847.356,-97.17],[852.378,-97.17],[857.4,-97.17],[862.437,-97.17],[867.459,-97.17],[872.482,-97.17],[877.504,-97.17],[882.541,-97.17],[887.563,-97.17],[892.585,-97.17],[897.622,-97.17],[902.644,-97.17],[907.666,-97.17],[912.689,-97.17],[917.726,-97.17],[922.75,-97.17],[927.77,-97.17],[932.795,-97.17],[937.829,-97.17],[942.854,-97.17],[947.874,-97.17],[952.899,-97.17],[957.936,-97.17],[962.958,-97.17],[967.98,-97.17],[973.017,-97.17],[978.04,-97.17],[983.062,-97.17],[988.084,-97.17],[988.084,-91.396],[993.121,-91.396],[993.121,-85.602],[998.144,-85.602],[1003.166,-85.602],[1008.189,-85.602],[1008.189,-79.823],[1013.226,-79.823],[1013.226,-74.044],[1018.248,-74.044],[1023.271,-74.044],[1023.271,-68.255],[1028.31,-68.255],[1033.33,-68.255],[1033.33,-62.476],[1038.355,-62.476],[1038.355,-56.682],[1043.375,-56.682],[1043.375,-50.908],[1043.375,-45.129],[1043.375,-39.335],[1043.375,-33.556],[1043.375,-27.762],[1038.355,-27.762],[1033.33,-27.762],[1028.31,-27.762],[1023.271,-27.762],[1018.248,-27.762],[1013.226,-27.762],[1008.189,-27.762],[1003.166,-27.762],[998.144,-27.762],[993.121,-27.762],[988.084,-27.762],[983.062,-27.762],[983.062,-21.988],[983.062,-16.209],[988.084,-16.209],[993.121,-16.209],[998.144,-16.209],[1003.166,-16.209],[1008.189,-16.209],[1013.226,-16.209],[1018.248,-16.209],[1023.271,-16.209],[1028.31,-16.209],[1033.33,-16.209],[1038.355,-16.209],[1043.375,-16.209],[1043.375,-10.415],[1043.375,-4.636],[1043.375,1.148],[1043.375,6.932],[1043.375,12.711],[1043.375,18.505],[1043.375,24.284],[1043.375,30.068],[1043.375,35.852],[1043.375,41.631],[1043.375,47.425],[1043.375,53.199],[1043.375,58.988],[1043.375,64.772],[1043.375,70.551],[1043.375,76.34],[1043.375,82.119],[1043.375,87.908],[1043.375,93.692],[1043.375,99.466],[1038.355,99.466],[1033.33,99.466],[1028.31,99.466],[1023.271,99.466],[1018.248,99.466],[1013.226,99.466],[1008.189,99.466],[1003.166,99.466],[998.144,99.466],[993.121,99.466],[988.084,99.466],[983.062,99.466],[978.04,99.466],[973.017,99.466],[967.98,99.466],[962.958,99.466],[957.936,99.466],[952.899,99.466],[947.874,99.466],[942.854,99.466],[937.829,99.466],[932.795,99.466],[927.77,99.466],[922.75,99.466],[917.726,99.466],[912.689,99.466],[907.666,99.466],[902.644,99.466],[897.622,99.466],[892.585,99.466],[887.563,99.466],[882.541,99.466],[877.504,99.466],[872.482,99.466],[867.459,99.466],[862.437,99.466],[857.4,99.466],[852.378,99.466],[847.356,99.466],[842.334,99.466],[837.297,99.466],[832.272,99.466],[827.252,99.466],[822.227,99.466],[817.19,99.466],[812.168,99.466],[807.145,99.466],[802.108,99.466],[797.085,99.466],[792.063,99.466],[787.041,99.466],[782.004,99.466],[782.004,93.692],[782.004,87.908],[782.004,82.119],[782.004,76.34],[782.004,70.551],[782.004,64.772],[782.004,58.988],[782.004,53.2],[782.004,47.426],[782.004,41.632],[782.004,35.853],[782.004,30.069],[782.004,24.285],[782.004,18.506],[782.004,12.712],[782.004,6.933],[782.004,1.149],[782.004,-4.635],[782.004,-10.414],[782.004,-16.208],[782.004,-21.987],[782.004,-27.761],[782.004,-33.555],[782.004,-39.334],[782.004,-45.128],[782.004,-50.907],[782.004,-56.681],[787.041,-56.681],[787.041,-62.475],[792.063,-62.475],[792.063,-68.254],[797.085,-68.254]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1058.458,-68.255],[1053.433,-68.255],[1053.433,-74.044],[1048.413,-74.044],[1043.374,-74.044],[1043.374,-79.823],[1038.354,-79.823],[1038.354,-85.602],[1033.329,-85.602],[1028.309,-85.602],[1028.309,-91.396],[1023.27,-91.396],[1018.247,-91.396],[1018.247,-97.17],[1013.225,-97.17],[1008.188,-97.17],[1008.188,-102.964],[1003.165,-102.964],[1003.165,-108.743],[998.143,-108.743],[993.12,-108.743],[993.12,-114.527],[988.083,-114.527],[983.061,-114.527],[978.039,-114.527],[973.016,-114.527],[967.979,-114.527],[962.957,-114.527],[957.935,-114.527],[952.898,-114.527],[947.873,-114.527],[942.853,-114.527],[937.828,-114.527],[932.794,-114.527],[927.769,-114.527],[922.749,-114.527],[917.725,-114.527],[912.688,-114.527],[907.665,-114.527],[902.643,-114.527],[897.621,-114.527],[892.584,-114.527],[887.562,-114.527],[882.54,-114.527],[877.503,-114.527],[872.481,-114.527],[867.458,-114.527],[862.436,-114.527],[857.399,-114.527],[852.377,-114.527],[847.355,-114.527],[842.333,-114.527],[837.296,-114.527],[832.271,-114.527],[832.271,-108.743],[827.251,-108.743],[822.226,-108.743],[822.226,-102.964],[817.189,-102.964],[817.189,-97.17],[812.167,-97.17],[807.144,-97.17],[807.144,-91.396],[802.107,-91.396],[797.084,-91.396],[797.084,-85.602],[792.062,-85.602],[787.04,-85.602],[787.04,-79.823],[782.003,-79.823],[776.981,-79.823],[776.981,-74.044],[771.958,-74.044],[771.958,-68.255],[766.937,-68.255],[761.9,-68.255],[761.9,-62.476],[761.9,-56.682],[761.9,-50.908],[761.9,-45.129],[761.9,-39.335],[761.9,-33.556],[761.9,-27.762],[761.9,-21.988],[761.9,-16.209],[761.9,-10.415],[761.9,-4.636],[761.9,1.148],[761.9,6.932],[761.9,12.711],[761.9,18.505],[761.9,24.284],[761.9,30.068],[761.9,35.852],[761.9,41.631],[761.9,47.425],[761.9,53.199],[761.9,58.988],[761.9,64.772],[761.9,70.551],[761.9,76.34],[761.9,82.119],[761.9,87.908],[761.9,93.692],[761.9,99.466],[761.9,105.255],[761.9,111.039],[761.9,116.818],[766.937,116.818],[771.958,116.818],[776.981,116.818],[782.003,116.818],[787.04,116.818],[792.062,116.818],[797.084,116.818],[802.107,116.818],[807.144,116.818],[812.167,116.818],[817.189,116.818],[822.226,116.818],[827.251,116.818],[832.271,116.818],[837.296,116.818],[842.333,116.818],[847.355,116.818],[852.377,116.818],[857.399,116.818],[862.436,116.818],[867.458,116.818],[872.481,116.818],[877.503,116.818],[882.54,116.818],[887.562,116.818],[892.584,116.818],[897.621,116.818],[902.643,116.818],[907.665,116.818],[912.688,116.818],[917.725,116.818],[922.749,116.818],[927.769,116.818],[932.794,116.818],[937.828,116.818],[942.853,116.818],[947.873,116.818],[952.898,116.818],[957.935,116.818],[962.957,116.818],[967.979,116.818],[973.016,116.818],[978.039,116.818],[983.061,116.818],[988.083,116.818],[993.12,116.818],[998.143,116.818],[1003.165,116.818],[1008.188,116.818],[1013.225,116.818],[1018.247,116.818],[1023.27,116.818],[1028.309,116.818],[1033.329,116.818],[1038.354,116.818],[1043.374,116.818],[1048.413,116.818],[1053.433,116.818],[1058.458,116.818],[1063.48,116.818],[1063.48,111.039],[1063.48,105.255],[1063.48,99.466],[1063.48,93.692],[1063.48,87.908],[1063.48,82.119],[1063.48,76.34],[1063.48,70.551],[1063.48,64.772],[1063.48,58.988],[1063.48,53.2],[1063.48,47.426],[1063.48,41.632],[1063.48,35.853],[1063.48,30.069],[1063.48,24.285],[1063.48,18.506],[1063.48,12.712],[1063.48,6.933],[1063.48,1.149],[1063.48,-4.635],[1063.48,-10.414],[1063.48,-16.208],[1063.48,-21.987],[1063.48,-27.761],[1063.48,-33.555],[1063.48,-39.334],[1063.48,-45.128],[1063.48,-50.907],[1063.48,-56.681],[1063.48,-62.475],[1063.48,-68.254],[1058.458,-68.254]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.953,0.737,0.075,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1008.189,-102.964],[1008.189,-97.17],[1013.226,-97.17]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.984,0.918,0.769,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[802.108,-97.17],[807.145,-97.17],[807.145,-91.396],[802.108,-91.396]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.98,0.902,0.71,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1038.354,-56.682],[1038.354,-62.476],[1033.329,-62.476],[1033.329,-68.255],[1028.31,-68.255],[1023.271,-68.255],[1018.248,-68.255],[1018.248,-74.044],[1013.226,-74.044],[1013.226,-79.823],[1008.189,-79.823],[1003.166,-79.823],[1003.166,-85.602],[998.144,-85.602],[993.122,-85.602],[993.122,-91.396],[988.085,-91.396],[988.085,-97.17],[983.062,-97.17],[978.04,-97.17],[973.018,-97.17],[967.981,-97.17],[962.959,-97.17],[957.936,-97.17],[952.899,-97.17],[947.875,-97.17],[942.855,-97.17],[937.83,-97.17],[932.796,-97.17],[927.771,-97.17],[922.75,-97.17],[917.726,-97.17],[912.689,-97.17],[907.667,-97.17],[902.645,-97.17],[897.622,-97.17],[892.585,-97.17],[887.563,-97.17],[882.541,-97.17],[877.504,-97.17],[872.482,-97.17],[867.459,-97.17],[862.437,-97.17],[857.4,-97.17],[852.377,-97.17],[847.355,-97.17],[842.333,-97.17],[837.296,-97.17],[837.296,-91.396],[832.271,-91.396],[832.271,-85.602],[827.251,-85.602],[822.226,-85.602],[822.226,-79.823],[817.189,-79.823],[812.167,-79.823],[812.167,-74.044],[807.145,-74.044],[807.145,-68.255],[802.108,-68.255],[797.085,-68.255],[797.085,-62.476],[792.063,-62.476],[787.041,-62.476],[787.041,-56.682],[782.004,-56.682],[782.004,-50.907],[782.004,-45.128],[782.004,-39.335],[782.004,-33.555],[782.004,-27.762],[782.004,-21.987],[782.004,-16.208],[782.004,-10.415],[782.004,-4.635],[782.004,1.149],[782.004,6.933],[782.004,12.712],[782.004,18.506],[782.004,24.285],[782.004,30.069],[782.004,35.853],[782.004,41.632],[782.004,47.426],[782.004,53.2],[782.004,58.989],[782.004,64.773],[782.004,70.552],[782.004,76.341],[782.004,82.121],[782.004,87.909],[782.004,93.693],[782.004,99.468],[787.041,99.468],[792.063,99.468],[797.085,99.468],[802.108,99.468],[807.145,99.468],[812.167,99.468],[817.189,99.468],[822.226,99.468],[827.251,99.468],[832.271,99.468],[837.296,99.468],[842.333,99.468],[847.355,99.468],[852.377,99.468],[857.4,99.468],[862.437,99.468],[867.459,99.468],[872.482,99.468],[877.504,99.468],[882.541,99.468],[887.563,99.468],[892.585,99.468],[897.622,99.468],[902.645,99.468],[907.667,99.468],[912.689,99.468],[917.726,99.468],[922.75,99.468],[927.771,99.468],[932.796,99.468],[937.83,99.468],[942.855,99.468],[947.875,99.468],[952.899,99.468],[957.936,99.468],[962.959,99.468],[967.981,99.468],[973.018,99.468],[978.04,99.468],[983.062,99.468],[988.085,99.468],[993.122,99.468],[998.144,99.468],[1003.166,99.468],[1008.189,99.468],[1013.226,99.468],[1018.248,99.468],[1023.271,99.468],[1028.31,99.468],[1033.329,99.468],[1038.354,99.468],[1043.375,99.468],[1043.375,93.693],[1043.375,87.909],[1043.375,82.121],[1043.375,76.341],[1043.375,70.552],[1043.375,64.773],[1043.375,58.989],[1043.375,53.2],[1043.375,47.426],[1043.375,41.632],[1043.375,35.853],[1043.375,30.069],[1043.375,24.285],[1043.375,18.506],[1043.375,12.712],[1043.375,6.933],[1043.375,1.149],[1043.375,-4.635],[1043.375,-10.415],[1043.375,-16.208],[1038.354,-16.208],[1033.329,-16.208],[1028.31,-16.208],[1023.271,-16.208],[1018.248,-16.208],[1013.226,-16.208],[1008.189,-16.208],[1003.166,-16.208],[998.144,-16.208],[993.122,-16.208],[988.085,-16.208],[983.062,-16.208],[983.062,-21.987],[983.062,-27.762],[988.085,-27.762],[993.122,-27.762],[998.144,-27.762],[1003.166,-27.762],[1008.189,-27.762],[1013.226,-27.762],[1018.248,-27.762],[1023.271,-27.762],[1028.31,-27.762],[1033.329,-27.762],[1038.354,-27.762],[1043.375,-27.762],[1043.375,-33.555],[1043.375,-39.335],[1043.375,-45.128],[1043.375,-50.907],[1043.375,-56.682]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.349,0.22,0.125,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1003.166,-85.602],[1008.189,-85.602],[1008.189,-79.823],[1003.166,-79.823]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.729,0.537,0.173,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1043.375,-79.823],[1048.414,-79.823],[1048.414,-74.044],[1043.375,-74.044]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.969,0.796,0.349,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[802.108,-74.044],[807.145,-74.044],[807.145,-68.255],[802.108,-68.255]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.459,0.306,0.153,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1018.248,-74.044],[1023.271,-74.044],[1023.271,-68.255],[1018.248,-68.255]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.596,0.424,0.165,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[792.063,-68.255],[797.085,-68.255],[797.085,-62.476],[792.063,-62.476]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.553,0.388,0.165,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":55,"op":106,"st":-17},{"ind":18,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,960,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[413,413,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.229,0.285],[2.463,1.44],[0.135,0.077],[-1.978,-2.923],[0.81,0]],"o":[[-2.455,-1.459],[-0.124,-0.072],[2.066,-1.413],[-0.939,0],[-0.314,-0.042]],"v":[[-95.39,39.101],[-103.135,35.559],[-103.52,35.339],[-91.951,39.408],[-94.51,39.408]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.407,0.298,0.372,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.834,-0.011],[1.819,-0.017],[1.707,-0.895],[-0.171,-0.631],[-0.542,-0.049],[-2.033,0.551],[0.014,-1.82],[-0.211,-0.816],[-0.327,-0.065],[-0.11,0.262],[-0.606,-0.842],[-0.125,-0.153],[-1.014,1.864],[0.134,-0.504],[1.048,1.003],[0.305,0.24],[0.294,-1.479],[0.536,0.364],[0.537,-1.472],[1.222,-0.345],[1.292,1.267],[-1.325,1.454],[-0.525,0.521],[0.347,0.32],[0.149,-0.427],[1.096,-0.771],[-0.131,1.561],[-2.128,0.824]],"o":[[-1.67,0.903],[-1.881,0.018],[-0.511,0.268],[0.135,0.498],[2.19,0.198],[1.768,-0.479],[-0.007,0.849],[0.077,0.297],[0.377,0.075],[0.501,-1.189],[0.115,0.16],[1.349,1.654],[-0.026,0.532],[-0.377,1.42],[-0.281,-0.269],[-1.129,-0.888],[-0.758,0.645],[-1.279,-0.867],[-0.344,0.943],[-1.42,0.648],[-1.404,-1.377],[0.497,-0.545],[0.36,-0.358],[-0.473,-0.437],[-0.512,1.472],[-1.03,0.725],[0.159,-1.891],[3.738,-1.447]],"v":[[-115.564,31.671],[-120.876,32.555],[-126.324,33.633],[-127.427,34.82],[-125.959,35.246],[-119.766,34.009],[-117.365,35.77],[-117.056,38.254],[-116.58,38.932],[-115.984,38.395],[-114.315,38.304],[-113.945,38.766],[-110.83,38.49],[-110.925,40.082],[-113.191,40.712],[-114.037,39.907],[-115.574,40.551],[-117.387,40.182],[-119.253,40.801],[-120.92,43.218],[-124.995,42.884],[-125.174,38.774],[-123.568,37.243],[-123.471,36.052],[-124.474,36.472],[-127.506,39.17],[-129.787,37.037],[-126.935,32.924]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.227,0.257,0.287,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.395,-0.217],[1.089,0.325],[3.925,-0.112],[0.156,-0.188],[-1.46,-1.722],[0.406,-0.644],[0.565,0.119],[2.02,0.28],[1.104,-0.336],[0.208,-0.94],[0.924,-0.222],[0.548,0.643],[0.906,-0.886],[0.284,0.522],[0.054,0.743],[2.099,-0.588],[1.371,-0.203],[0.78,0.158],[0.117,0.473],[-0.415,0.284],[-1.057,0.279],[-2.197,0.303],[-0.605,0.221],[-0.49,0.012],[-1.162,1.134],[-2.343,-0.404],[-0.853,0.037],[-0.448,-0.512],[-0.984,-0.063]],"o":[[0.202,0.867],[-3.826,-1.141],[-0.059,0.002],[2.153,0.487],[0.373,0.44],[-0.378,0.599],[-1.974,-0.414],[-0.704,-0.52],[0.552,0.692],[-0.21,0.684],[-0.902,0.216],[-0.57,-0.669],[-0.503,0.491],[-0.362,-0.665],[-0.156,-2.126],[-1.331,0.373],[-0.792,0.117],[-0.446,-0.091],[-0.135,-0.547],[0.911,-0.623],[2.184,-0.576],[0.628,-0.086],[0.49,-0.012],[1.423,-0.387],[2.37,-1.035],[0.817,0.141],[0.622,0.308],[0.621,0.71],[0.395,0.217]],"v":[[-95.382,34.042],[-96.341,34.913],[-108.039,34.128],[-108.309,34.445],[-102.66,37.286],[-102.041,38.778],[-103.663,38.959],[-109.353,37.033],[-111.845,36.272],[-110.83,38.49],[-111.971,40.203],[-114.022,39.352],[-116.055,39.045],[-117.355,38.559],[-117.833,36.407],[-120.319,34.7],[-124.353,35.629],[-126.707,35.599],[-127.731,34.855],[-127.078,33.624],[-124.058,32.465],[-117.436,31.978],[-115.564,31.671],[-114.094,31.636],[-109.927,30.182],[-102.873,30.308],[-100.428,30.777],[-98.914,32.102],[-96.566,33.392]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.407,0.298,0.372,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.84,0.894],[-1.457,0.001],[0.009,0.981],[-1.543,0.023],[-0.891,0.665],[-0.307,-0.85],[-1.935,0.496],[-0.629,0.417],[-1.258,-0.262],[-0.231,-0.598],[0.361,-0.37],[0.336,-0.284],[2.014,-0.15],[-0.463,0.305],[-1.186,0.768],[0.721,-0.272],[1.921,2.144],[0.735,0.169],[0.267,-0.507],[-0.346,-0.305],[-0.442,-0.221],[-0.113,-0.692],[-1.023,0.008],[-0.412,-0.586],[4.864,0.579],[-0.77,1.446]],"o":[[1.419,-0.573],[0.943,-0.001],[-0.014,-1.508],[1.027,-0.015],[1.014,0.283],[0.676,1.871],[0.711,-0.182],[1.058,-0.701],[0.582,0.121],[0.252,0.651],[-0.306,0.314],[-1.88,0.575],[-0.09,-0.768],[0.981,-0.645],[-1.021,0.151],[-2.672,1.007],[-0.458,-0.512],[-0.519,-0.119],[-0.254,0.482],[0.375,0.331],[0.598,0.299],[0.181,1.109],[0.57,-0.004],[-4.704,1.427],[-1.634,-0.195],[0.433,-0.812]],"v":[[-128.02,26.358],[-123.656,26.048],[-122.375,24.783],[-119.994,22.5],[-117.037,21.887],[-115.301,23.88],[-111.58,25.927],[-109.582,25.018],[-106.062,24.318],[-104.685,25.326],[-105.376,26.663],[-106.378,27.521],[-112.003,29.293],[-110.98,28.018],[-107.773,26.053],[-110.218,26.809],[-116.449,25.273],[-118.015,23.975],[-119.307,24.428],[-118.886,25.577],[-117.616,26.332],[-116.385,27.72],[-114.492,29.147],[-112.87,29.629],[-127.244,30.867],[-128.16,28.897]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.219,0.225,0.277,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.686,0.071],[-1.082,-0.704],[-1.177,-0.067],[0.657,-0.688],[-0.055,-0.782],[0.489,-0.527],[0.481,0.716],[0.169,0.876],[0.739,-1.001],[0.491,0.585],[-0.955,0.912]],"o":[[1.327,-0.018],[1.017,0.661],[0.88,0.05],[-0.555,0.58],[0.052,0.735],[-0.633,0.683],[-0.461,-0.686],[-0.13,-0.673],[-0.435,0.589],[-0.813,-0.969],[0.678,-0.647]],"v":[[-236.324,-16.124],[-232.74,-15.223],[-229.347,-14.368],[-228.855,-13.358],[-229.552,-11.354],[-230.355,-9.513],[-232.054,-9.634],[-233.18,-11.851],[-234.409,-12.139],[-238.786,-12.482],[-238.491,-15.668]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.267,0.258,0.352,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.11,-0.685],[0.151,-0.187],[2.107,-2.145],[0.538,0.379],[-0.116,0.509],[-2.454,0.297]],"o":[[-0.123,0.158],[-1.897,2.345],[-0.36,0.366],[-0.324,-0.228],[0.564,-2.468],[0.385,-0.047]],"v":[[233.413,-48.063],[232.994,-47.526],[226.784,-40.983],[225.504,-40.655],[225.056,-41.63],[232.501,-48.51]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.611,0.266,0.353,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.101,-0.261],[-0.652,-0.657],[0.647,-0.331],[1.269,0.483],[0.663,-0.498],[0.51,0.531],[-0.689,1.043],[-0.965,-0.8]],"o":[[0.584,0.724],[0.629,0.633],[-1.311,0.67],[-0.496,-0.189],[-0.54,-0.503],[-0.648,-0.675],[0.612,-0.926],[0.913,0.757]],"v":[[228.763,-56.178],[230.53,-54.021],[230.304,-52.68],[226.471,-52.88],[224.893,-53.245],[223.28,-54.758],[222.557,-57.181],[225.758,-57.597]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.608,0.266,0.354,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.602,-2.144],[-0.227,-1.955],[0.871,-0.519],[0.609,0.586],[0.839,3.056],[0.712,0.736],[-0.509,-0.142],[-0.31,0.409],[0.139,0.393],[0.011,0.71]],"o":[[0.654,1.784],[0.118,1.016],[-0.878,0.523],[-2.367,-2.277],[-0.261,-0.952],[0.515,0.121],[0.412,0.115],[0.301,-0.397],[-0.21,-0.593],[2.062,1.771]],"v":[[232.628,-106.076],[234.577,-100.714],[233.714,-98.245],[231.531,-99.007],[227.286,-107.308],[226.095,-109.939],[227.637,-109.571],[228.844,-109.537],[228.518,-110.716],[227.575,-112.308]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.204,0.194,0.342,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.601,-1.142],[0.542,-0.284],[0.388,0.291],[0.896,0.69],[1.655,-0.766],[1.262,-0.559],[0.375,0.32],[-0.084,0.362],[-0.05,0.19],[0.468,0.478],[0.552,-0.125],[0.327,-0.104],[0.151,0.437],[-0.338,0.196],[-3.018,-0.641],[-0.944,0.152],[1.442,0.679],[-1.538,-1.566],[-0.363,-0.332],[-0.351,-0.182],[-0.36,-0.886]],"o":[[0.005,0.47],[-0.489,0.256],[-0.905,-0.678],[-1.491,-1.147],[-1.252,0.58],[-0.414,0.183],[-0.393,-0.335],[0.045,-0.191],[0.165,-0.624],[-0.487,-0.498],[-0.331,0.075],[-0.442,0.141],[-0.129,-0.375],[2.581,-1.495],[0.636,0.135],[-1.364,-1.583],[1.591,-1.528],[0.344,0.35],[0.02,0.402],[0.633,0.709],[0.885,0.966]],"v":[[175.584,-193.623],[175.349,-192.277],[174.024,-192.721],[171.341,-194.797],[166.609,-195.191],[162.838,-193.482],[161.577,-193.504],[161.629,-194.594],[161.805,-195.158],[161.727,-196.989],[160.072,-196.789],[159.116,-196.396],[158.171,-196.858],[158.557,-197.722],[166.871,-199.452],[169.069,-199.388],[164.351,-201.208],[170.359,-201.132],[171.445,-200.135],[172.02,-199.27],[173.549,-196.904]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.347,0.249,0.471,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.285,-0.75],[1.212,0.171],[1.824,1.105],[1.836,1.146],[1.694,0.262],[0.283,0.08],[0.014,0.541],[-0.626,0.22],[-6.04,-1.733],[-2.721,-1.968],[-0.217,-0.197],[0.084,-0.324],[0.279,-0.011],[0.598,0],[-0.602,-0.865],[-0.373,-0.692],[0.287,-0.386],[0.399,0.027],[0.628,0.092],[0.98,0.908],[1.426,0.797]],"o":[[-0.394,1.411],[-2.138,-0.301],[-1.851,-1.122],[-1.522,-0.95],[-0.28,-0.093],[-0.559,-0.159],[-0.019,-0.716],[6.024,-2.118],[3.175,0.911],[0.239,0.173],[0.211,0.191],[-0.095,0.364],[-0.488,0.019],[0.438,1.135],[0.45,0.632],[0.188,0.349],[-0.261,0.351],[-0.643,-0.043],[-1.249,-0.499],[-1.179,-1.092],[0.137,0.637]],"v":[[219.562,-112.608],[216.885,-111.185],[211.038,-113.535],[205.451,-116.848],[200.521,-118.2],[199.682,-118.478],[198.199,-119.209],[199.708,-120.352],[217.817,-120.436],[226.845,-116.527],[227.551,-115.996],[227.991,-115.288],[227.241,-114.994],[225.666,-114.988],[227.575,-112.308],[228.956,-110.433],[229.108,-109.362],[228.044,-109.029],[226.22,-109.53],[222.829,-111.614],[218.866,-114.287]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.339,0.256,0.407,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.69,0.373],[1.132,0.265],[-0.799,0.913],[-2.472,0.208],[-1.749,-0.322],[-0.628,-2.224],[0.377,-0.382],[0.385,0.125],[1.272,0.91],[0.717,0.484],[0.132,-0.672],[0.762,0.36],[0.395,-0.002]],"o":[[-1.122,-0.106],[-1.152,-0.27],[1.763,-2.015],[1.76,-0.148],[1.79,1.132],[0.117,0.414],[-0.399,0.404],[-1.525,-0.496],[-0.63,-0.451],[-0.276,0.854],[-0.626,0.539],[-0.395,0.002],[-0.69,0.374]],"v":[[169.994,-144.947],[166.615,-145.126],[166.133,-146.626],[172.721,-149.396],[178.005,-149.117],[182.212,-144.63],[182.272,-143.39],[181.044,-143.512],[177.089,-146.018],[175.089,-147.371],[175.324,-145.267],[173.249,-144.954],[172.064,-144.947]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.269,0.258,0.354,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.203,0.02],[0.516,-0.05],[2.175,-0.138],[2.056,-0.787],[1.305,-0.445],[0.23,0.439],[-0.413,0.256],[-1.427,0.878],[-1.163,0.733],[-1.528,0.229],[-0.276,0.83],[-1.967,-0.554],[-0.8,-0.884],[0.697,-0.411],[1.176,0.22]],"o":[[-0.291,-0.521],[-2.201,0.214],[-2.197,0.139],[-1.289,0.493],[-0.332,0.113],[-0.289,-0.552],[1.423,-0.884],[1.171,-0.721],[1.463,-1.052],[0.711,-0.107],[1.978,0.513],[1.171,0.33],[0.503,0.557],[-1.197,0.117],[-0.203,-0.02]],"v":[[211.549,-124.188],[210.224,-125.013],[203.658,-125.113],[197.34,-123.305],[193.46,-121.866],[192.394,-121.802],[193.066,-122.948],[197.361,-125.561],[200.852,-127.757],[205.442,-128.041],[207.103,-128.925],[213.035,-127.374],[215.859,-125.336],[215.715,-123.908],[212.159,-124.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.338,0.258,0.394,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.32,-0.674],[1.104,-1.241],[1.34,-0.404],[1.104,-0.047],[0.686,-0.014],[1.35,-0.476],[-1.821,-0.622],[-0.21,0.374],[0.285,0.206],[0.688,0.059],[-0.266,0.965],[-0.891,-0.34],[-1.238,-1.399],[-0.715,0.845],[-0.489,0.553],[-0.853,-0.567]],"o":[[-1.202,1.154],[-0.965,1.084],[-1.171,0.354],[-0.64,0.027],[-1.185,0.266],[1.544,-1.075],[0.414,0.141],[0.265,-0.472],[-0.509,-0.367],[-1.2,-0.103],[0.316,-1.144],[1.778,0.678],[0.725,0.82],[0.476,-0.563],[0.707,-0.799],[0.991,0.659]],"v":[[197.593,-128.337],[194.01,-124.855],[190.535,-122.84],[187.44,-123.416],[185.411,-123.569],[182.354,-124.44],[187.105,-125.764],[188.118,-126.514],[187.614,-127.443],[185.951,-128.339],[184.752,-130.213],[187.228,-131.69],[191.665,-128.442],[193.721,-128.432],[195.263,-130.027],[197.634,-130.37]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.338,0.258,0.394,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.566,0],[1.135,-0.339],[2.656,0.135],[1.498,0.786],[-0.21,0.505],[-0.46,-0.03],[-1.551,-1.23],[-0.33,0.574],[0.351,0.218],[-0.545,0.902],[-0.713,-0.122],[-0.888,-1.803],[-0.637,0.293],[0.006,-0.402],[-0.691,0.469],[-1.536,0.588],[-0.559,-0.961],[0.813,-0.734],[1.253,0.117]],"o":[[-1.066,-0.093],[-2.697,0.806],[-1.554,-0.079],[-0.403,-0.211],[0.172,-0.415],[1.665,0.108],[0.36,0.286],[0.306,-0.531],[-0.608,-0.377],[0.512,-0.846],[2.057,0.352],[0.229,0.465],[0.359,-0.165],[-0.023,1.526],[1.293,-0.877],[0.983,-0.377],[0.521,0.896],[-0.843,0.76],[-0.44,-0.041]],"v":[[189.728,-14.939],[186.336,-14.638],[178.316,-14.87],[173.756,-16.995],[173.401,-18.156],[174.292,-18.772],[179.264,-18.177],[180.559,-18.187],[179.984,-19.413],[179.269,-20.885],[181.238,-21.335],[185.488,-17.897],[186.623,-17.31],[187.197,-16.947],[188.44,-16.543],[192.249,-19.284],[194.734,-18.94],[194.215,-16.233],[191.182,-14.933]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.375,0.289,0.368,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.365,-2.217],[0.633,-0.418],[0.916,-0.365],[-0.289,1.592],[-1.083,0.85],[0.297,0.391],[0.267,-0.111],[1,-0.742],[1.765,-1.118],[0.868,0.386],[-0.401,0.429],[0.328,0.246],[0.205,-0.221],[0.857,-0.21],[0.234,0.487],[-0.265,0.306],[-0.363,0.465],[0.172,0.354],[-0.43,0.41],[-0.396,-0.193],[-0.409,0.236],[-1.359,-0.058],[-2.712,0.029]],"o":[[0.112,0.943],[-0.837,0.553],[-1.508,0.601],[0.215,-1.187],[0.238,-0.187],[-0.214,-0.281],[-1.182,0.494],[-1.705,1.266],[-0.624,0.396],[-0.554,-0.246],[0.283,-0.303],[-0.307,-0.23],[-0.648,0.699],[-0.443,0.109],[-0.207,-0.43],[0.386,-0.447],[0.171,-0.219],[-0.153,-0.313],[0.364,-0.347],[0.411,0.201],[1.292,-0.746],[2.721,0.116],[3.583,-0.038]],"v":[[194.294,-8.626],[193.54,-6.784],[190.887,-5.494],[188.454,-7.36],[189.897,-10.672],[190.251,-11.505],[189.433,-11.469],[185.926,-9.928],[180.295,-7.486],[177.61,-7.746],[177.479,-8.794],[177.375,-9.692],[176.605,-9.499],[174.21,-8.428],[173.057,-8.857],[173.397,-9.907],[174.535,-11.265],[174.777,-12.049],[174.421,-13.006],[175.659,-12.839],[176.932,-12.662],[180.99,-13.156],[189.118,-13.461]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.315,0.253,0.423,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.072,0.156],[-1.366,-0.86],[0.166,-0.452],[0.412,0.006],[1.244,0.265],[-1.017,-2.082],[0.275,-0.148],[0.657,-0.324],[2.699,-1.39],[1.658,-0.861],[0.285,0.617],[-0.535,0.505],[-1.414,0.86],[0.178,0.388],[0.297,0.014],[0.327,-0.289],[1.707,-0.858],[0.203,0.567],[-0.381,0.175],[-1.663,0.855],[-2.035,0.651],[-0.101,0.206],[-2.308,-0.082]],"o":[[1.589,0.461],[0.335,0.211],[-0.163,0.442],[-1.291,-0.02],[-0.621,-0.132],[0.227,0.464],[-0.645,0.346],[-3.015,0.52],[-1.661,0.856],[-0.454,0.236],[-0.249,-0.538],[1.228,-1.161],[0.235,-0.143],[-0.141,-0.307],[-0.471,-0.023],[-1.49,1.315],[-0.535,0.269],[-0.196,-0.55],[1.702,-0.782],[1.88,-0.967],[0.198,-0.063],[0.979,-1.995],[2.064,0.073]],"v":[[185.708,-122.717],[189.938,-120.365],[190.371,-119.361],[189.403,-118.846],[185.659,-119.558],[184.361,-118.468],[183.828,-117.748],[181.862,-116.769],[173.371,-113.681],[168.383,-111.125],[167.123,-111.192],[167.557,-112.745],[171.664,-115.532],[172.099,-116.161],[171.319,-116.465],[170.085,-116.032],[164.942,-113.492],[163.714,-113.796],[164.469,-114.708],[169.586,-117.026],[175.287,-119.791],[175.769,-120.308],[179.495,-122.298]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.338,0.258,0.394,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.281,0.104],[-1.471,1.059],[-1.729,1.488],[-2.798,0.65],[-0.346,-0.61],[0.2,-0.099],[0.098,-0.601],[0.78,-1.453],[0.897,0.191],[0.632,-0.684],[-0.207,-0.977],[0.627,-0.765],[0.547,-0.55],[1.298,1.029],[-0.28,0.855],[0.444,0.408],[0.514,-0.327],[0.645,-0.516],[0.32,0.622],[-0.655,1.064],[-0.302,0.442]],"o":[[0.998,1.648],[1.826,-1.315],[2.215,-1.906],[0.727,-0.169],[-0.2,0.099],[-0.563,0.329],[-0.279,1.714],[-0.425,0.791],[-0.56,-0.119],[-0.605,0.654],[0.246,1.16],[-0.428,0.654],[-1.201,1.207],[-0.539,-0.641],[0.232,-0.707],[-0.417,-0.383],[-0.693,0.441],[-0.747,0.426],[0.003,-1.346],[0.28,-0.455],[0.281,-0.104]],"v":[[172.024,-106.675],[175.219,-105.766],[180.808,-109.543],[188.618,-112.867],[190.185,-112.016],[189.583,-111.719],[188.712,-110.246],[186.433,-105.823],[183.818,-105.611],[182.195,-106.108],[181.021,-103.665],[180.079,-101.026],[178.633,-99.195],[174.747,-98.954],[174.295,-101.119],[173.901,-103.158],[172.231,-102.555],[170.285,-101.024],[168.811,-101.625],[170.28,-105.035],[171.183,-106.363]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.208,0.198,0.343,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.769,-1.056],[0.924,1.018],[1.203,-0.681],[1,-0.955],[0.397,-0.384],[1.013,-0.881],[1.293,-0.974],[0.177,-0.084],[0.725,0.657],[-0.122,0.641],[-0.013,0.221],[0.718,-0.191],[0.302,0.332],[-0.163,0.282],[-1.895,1.119],[-4.167,-1.111],[-1.939,-1.963]],"o":[[-1.419,-0.304],[-0.865,-0.952],[-1.158,0.655],[-0.591,-0.086],[-0.753,-0.072],[-1.293,0.975],[-0.185,0.067],[-0.767,0.365],[-0.635,-0.576],[0.027,-0.14],[-0.891,-0.096],[-0.306,0.082],[-0.293,-0.322],[1.117,-1.928],[3.581,-2.115],[2.56,0.682],[1.493,1.512]],"v":[[213.628,-34.218],[210.308,-36.498],[207.327,-37.045],[203.815,-35.136],[202.391,-34.55],[200.234,-35.138],[196.356,-32.215],[195.803,-32.01],[193.46,-31.847],[193.659,-33.757],[193.691,-34.263],[191.584,-33.391],[190.632,-33.286],[190.8,-34.227],[195.422,-38.713],[206.984,-41.043],[213.961,-37.333]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.397,0.293,0.374,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.947,0.481],[-4.792,-0.375],[-3.475,-2.314],[0.356,-1.334],[0.995,0.056],[1.433,0.899],[1.593,-2.027],[0.635,-0.543],[1.717,1.528],[0.579,0.534],[0.618,-0.134],[2.234,-1.868],[1.921,-1.102],[0.211,1.693],[-2.974,2.29]],"o":[[4.713,-0.754],[3.965,0.31],[1,0.666],[-0.38,1.423],[-1.702,-0.096],[-2.14,-1.343],[-0.515,0.656],[-1.261,1.08],[-0.588,-0.523],[-0.578,-0.387],[-2.78,0.603],[-1.707,1.427],[-1.617,0.928],[2.372,-2.87],[0.898,-0.692]],"v":[[182.741,-115.899],[196.967,-117.035],[208.416,-114.164],[210.238,-111.418],[207.419,-110.563],[202.769,-112.323],[198.329,-111.488],[196.577,-109.686],[191.924,-110.417],[190.185,-112.016],[188.322,-112.283],[180.689,-108.86],[175.115,-105.227],[172.024,-106.675],[179.82,-114.619]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.352,0.248,0.477,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.293,0.134],[0.527,0.72],[-0.008,-0.171],[0.867,-0.287],[0.43,0.77],[-0.11,2.356],[-0.039,-0.565],[1.764,-0.493],[0.302,0.187],[0.354,2.571],[0.698,0.398],[-0.33,0.035],[-0.643,-0.522],[-1.818,1.934],[-3.768,-1.944],[-1.59,0.101],[-0.193,0.589],[0.356,0.347],[1.677,0.493],[2.769,0.13],[3.62,-0.651],[0.872,0.687],[0.534,0.047],[-0.388,0.233],[0.011,0.61],[-0.988,-0.188],[-0.928,-0.132],[-0.206,0.46],[0.325,0.257],[0.79,1.081],[0.099,0.284],[-1.017,-0.295],[-1.326,1.304],[-0.936,0.879],[-0.715,-0.205],[-0.391,-0.361],[-0.403,0.111],[-0.763,-0.052],[0.539,-0.33],[2.029,-1.331],[-1.188,0.475],[-3.595,-0.803],[-0.836,-0.104],[-0.061,-1.292],[4.839,-2.346],[1.075,0.343],[-0.547,-1.73],[0.581,-0.054],[1.388,-0.459],[-0.932,-0.013],[-3.606,-0.027],[0.548,0.598],[-1.293,-0.557],[-2.093,-1.295],[-1.683,-0.47],[-1.099,1.127],[-0.254,-0.238],[-1.284,-2.093],[0.425,-0.684],[0.76,-0.02],[1.931,2.065],[1.866,1.002],[-0.414,-0.69],[-0.084,-0.857],[1.718,0.401]],"o":[[-0.884,0.224],[-0.102,0.397],[0.054,1.106],[-0.976,0.323],[-1.03,-1.846],[-0.875,0.292],[0.124,1.794],[-0.348,0.097],[-1.924,-1.187],[-0.09,-0.656],[-0.037,-0.477],[0.901,0.152],[2.071,1.683],[2.837,-3.018],[1.374,0.709],[0.481,-0.031],[0.174,-0.532],[-1.273,-1.241],[-2.676,-0.787],[-3.669,-0.172],[-0.873,0.157],[-0.031,-0.555],[-0.063,-0.68],[0.428,-0.257],[-0.027,-1.444],[0.916,0.174],[0.425,0.06],[0.228,-0.508],[-0.993,-0.785],[-0.099,-0.284],[1.063,-0.888],[1.905,0.554],[0.916,-0.901],[0.415,-0.389],[0.049,0.431],[0.372,0.344],[0.709,-0.195],[0.052,0.914],[-2.06,1.262],[1.261,-0.268],[3.222,-1.287],[0.828,0.185],[0.843,0.105],[-5.304,0.675],[-1.11,0.538],[-0.78,-0.249],[0.288,0.911],[-1.384,0.129],[0.93,0.15],[3.606,0.051],[0.904,0.007],[1.445,-0.629],[2.266,0.977],[1.467,0.908],[1.426,0.398],[0.372,-0.102],[1.761,1.654],[0.372,0.607],[-0.457,0.735],[-2.967,0.077],[-1.269,-1.356],[0.504,0.858],[0.433,0.722],[0.173,1.755],[-1.247,-0.291]],"v":[[208.282,-106.06],[206.49,-107.261],[206.305,-106.516],[204.75,-104.651],[202.697,-105.688],[200.302,-111.542],[199.405,-110.162],[195.682,-104.984],[194.678,-105.024],[190.434,-109.928],[189.583,-111.719],[190.22,-112.248],[192.252,-110.824],[197.356,-111.147],[203.957,-112.213],[208.348,-111.044],[209.602,-111.621],[209.096,-112.937],[204.574,-115.383],[196.37,-116.56],[185.442,-115.797],[182.741,-115.899],[181.862,-116.769],[182.796,-117.731],[183.676,-118.795],[185.599,-120.037],[188.333,-119.417],[189.545,-119.607],[188.827,-120.561],[185.708,-122.717],[185.411,-123.569],[188.645,-123.599],[193.351,-124.899],[196.087,-127.612],[197.593,-128.337],[197.478,-127.095],[198.707,-127.279],[200.852,-127.757],[199.55,-126.349],[193.419,-122.466],[197.056,-123.653],[207.11,-125.381],[209.618,-125.495],[211.549,-124.188],[196.283,-119.878],[192.995,-120.32],[191.768,-119.437],[190.675,-118.54],[186.52,-117.81],[189.309,-117.381],[200.128,-117.347],[200.521,-118.2],[204.598,-117.746],[211.018,-114.116],[215.676,-111.926],[219.491,-112.686],[220.448,-112.417],[225.348,-107.099],[225.609,-105.158],[223.628,-104.478],[216.604,-107.95],[212.212,-111.729],[213.673,-109.571],[214.598,-107.251],[211.957,-104.969]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.203,0.194,0.341,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.771],[0.21,2.766],[1.928,-1.669],[0.488,0.367],[-0.45,0.626],[-2.309,1.62],[-0.662,-0.007],[-1.384,-0.005]],"o":[[-3.049,-0.511],[-2.099,1.844],[-0.545,0.472],[-0.726,-0.545],[1.604,-2.233],[0.55,-0.386],[1.384,0.015],[0,2.771]],"v":[[242.418,-41.359],[238.506,-46.952],[232.568,-41.748],[230.785,-40.718],[231.001,-43.001],[236.446,-49.175],[238.265,-49.69],[242.418,-49.671]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.649,0.312,0.312,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.505,-1.971],[-0.414,0.286],[0.151,0.367],[0.267,0.791],[-0.546,0.243],[-0.253,-0.331],[-0.463,-1.209],[-1.496,0.792],[-0.83,0.108],[0,-0.891],[2.019,-0.454],[1.017,0.468],[1.502,-0.331],[0.885,-0.004],[0.328,0.671],[-0.444,-0.157],[-0.969,0.072],[-0.226,0.371],[0.194,0.319],[-0.171,0.87]],"o":[[0.23,0.352],[0.388,-0.268],[-0.318,-0.774],[-0.2,-0.592],[0.589,-0.263],[0.778,1.02],[0.599,1.564],[0.688,-0.364],[0,0.891],[-1.963,0.62],[-1.083,0.244],[-1.407,-0.647],[-0.845,0.186],[-0.575,-0.413],[0.329,-0.98],[0.887,0.315],[0.396,-0.029],[0.275,-0.45],[-0.368,-0.607],[1.762,-1.435]],"v":[[233.51,-55.581],[234.463,-55.174],[234.505,-56.255],[233.549,-58.574],[234.187,-59.917],[235.153,-59.257],[237.05,-55.947],[240.38,-54.769],[242.418,-55.905],[242.418,-53.234],[236.546,-51.322],[233.366,-51.472],[229.061,-51.837],[226.414,-51.792],[224.893,-53.245],[226.292,-53.44],[229.006,-52.816],[230.06,-53.248],[229.69,-54.269],[228.763,-56.178]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.408,0.299,0.372,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.198],[0.923,1.219],[1.706,-1.724],[1.52,-1.018],[0.623,0.484],[-0.104,0.568],[0.285,0.408],[1.053,-0.789],[0.443,-0.202],[0.449,0.431],[-0.235,0.541],[-1.085,1.65],[0.771,-0.143],[2.796,-1.259],[-0.346,0.381],[-2.276,-0.116],[-5.965,0.895],[-0.59,0.02],[0,-0.297],[0.995,0.051],[1.115,-1.091],[1.204,-1.624],[-0.072,-0.545],[-0.246,0.237],[-1.617,1.529],[-0.155,-1.544],[-1.571,-1.121]],"o":[[-1.882,0.278],[-1.464,-1.936],[-1.285,1.299],[-0.527,0.353],[-0.6,-0.466],[0.056,-0.306],[-1.055,0.813],[-0.392,0.294],[-0.509,0.232],[-0.458,-0.439],[0.788,-1.811],[0.299,-0.455],[-2.937,0.544],[-0.331,-0.487],[1.364,-1.5],[6.077,0.309],[0.58,-0.087],[0,0.297],[-0.907,0.76],[-1.601,-0.082],[-1.453,1.422],[-0.288,0.389],[0.479,0.279],[1.603,-1.544],[1.143,-1.081],[0.224,2.239],[0,0.198]],"v":[[242.418,-40.766],[238.791,-43.088],[235.614,-43.309],[231.466,-39.762],[229.693,-39.497],[229.607,-41.14],[229.571,-42.191],[226.428,-39.777],[225.185,-38.99],[223.584,-38.688],[223.783,-40.34],[226.589,-45.535],[226.278,-46.349],[217.484,-44.63],[217.606,-45.99],[222.663,-48.796],[240.649,-50.492],[242.418,-50.562],[242.418,-49.671],[239.424,-49.252],[235.402,-47.741],[231.577,-43.038],[231.161,-41.63],[232.137,-42.007],[237.177,-46.372],[239.07,-45.773],[242.418,-41.359]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.32,0.273,0.237,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.379,0.138],[0.015,-0.286],[0.519,-0.088],[0.012,0.306]],"o":[[0.306,-0.036],[-0.023,0.443],[-0.31,0.053],[-0.017,-0.452]],"v":[[35.963,110.273],[36.496,110.642],[35.839,111.664],[35.266,111.097]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.84,0.249],[1.937,-0.259]],"o":[[0.929,1.658],[-0.982,-1.383]],"v":[[8.398,11.838],[7.279,13.967]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.437,0.072],[-0.437,-0.074]],"o":[[0.388,-0.238],[-0.384,0.262]],"v":[[-22.08,121.99],[-20.835,121.794]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.25,0.149],[0.246,-0.366],[1.625,1.558],[1.058,0.201],[-0.652,0.558],[0.443,0.809]],"o":[[-0.275,0.346],[-0.837,1.241],[-0.773,-0.742],[0.516,-0.68],[-0.324,-0.689],[2.463,-0.567]],"v":[[6.115,111.409],[5.295,112.451],[2.083,113.215],[-1.042,112.516],[1.089,111.487],[-0.579,110.292]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.379,1.134],[-1.423,-0.576],[3.658,-0.818],[-0.824,0.399],[-0.708,0.199]],"o":[[1.435,0.481],[-2.874,2.008],[0.397,-1.154],[0.664,-0.321],[1.103,-0.31]],"v":[[70.104,25.104],[74.523,25.685],[64.91,30.052],[66.854,27.969],[68.914,27.155]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.024,0],[0.101,-0.573],[1.052,0.025],[0.054,0.838],[-0.062,0.833],[-1.325,0.023],[0.173,-1.205],[0,-0.394]],"o":[[0,0.59],[-0.195,1.104],[-1.011,-0.024],[-0.054,-0.832],[0.089,-1.195],[1.15,-0.02],[-0.056,0.386],[-0.024,0]],"v":[[-17.714,71.623],[-17.732,73.391],[-19.776,74.902],[-21.169,73.305],[-21.113,70.797],[-19.146,68.918],[-17.632,70.441],[-17.641,71.623]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.165,0.195],[2.224,-0.013],[2.468,-0.093],[0.028,0.76],[-0.096,0.528],[-1.702,-0.622],[-0.599,1.889],[-0.222,0.252],[-0.753,1.996],[-0.605,0.06],[-0.109,-0.536],[0.378,-1.78],[0.496,-1.208],[-0.55,-0.141],[-0.237,0.514],[-0.018,0.851],[-0.167,2.018],[-1.643,-0.579],[-0.18,-0.207],[-0.887,1.357],[-0.768,-0.264],[-1.545,-0.508],[0.039,-0.494],[-0.429,-1.611],[0.836,-0.194],[0.238,0.681],[0.116,0.77],[1.097,0.15],[0.9,-0.052],[0.133,-0.661],[-0.526,-0.216],[-0.91,-0.376],[-0.108,-1.164],[0.914,-0.168]],"o":[[-3.135,-0.348],[-2.474,0.015],[-0.792,0.03],[-0.02,-0.538],[0.32,-1.765],[1.978,0.723],[0.102,-0.321],[1.488,-1.683],[0.195,-0.517],[0.732,-0.073],[0.367,1.803],[-0.263,1.238],[-0.209,0.508],[0.535,0.137],[0.353,-0.764],[0.044,-2.02],[0.145,-1.745],[0.275,0.097],[0.956,1.102],[0.45,-0.687],[1.538,0.529],[0.572,0.188],[-0.135,1.732],[0.115,0.431],[-0.642,0.149],[-0.259,-0.741],[-0.181,-1.204],[-0.878,-0.12],[-0.569,0.033],[-0.135,0.67],[0.911,0.375],[1.704,0.704],[0.095,1.018],[-1.978,0.363]],"v":[[-7.111,81.79],[-14.652,82.045],[-22.029,81.678],[-23.262,80.524],[-23.165,78.907],[-21.069,77.735],[-18.173,76.416],[-17.671,75.52],[-15.125,69.643],[-14.226,68.695],[-13.132,69.656],[-13.113,75.083],[-13.72,78.816],[-12.993,79.916],[-11.754,79.362],[-11.116,76.944],[-10.864,70.888],[-8.676,69.373],[-7.902,69.786],[-5.243,69.665],[-3.227,69.207],[1.388,70.789],[2.173,71.91],[3.132,76.803],[2.959,78.144],[1.478,77.158],[0.825,74.896],[-1.181,73.116],[-3.818,72.807],[-5.093,73.572],[-4.194,74.745],[-1.458,75.86],[-0.469,79.221],[-2.05,80.837]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.87,0.015],[-0.129,-0.725],[0.448,-0.201],[0.693,-0.251],[0.288,0.666],[-0.432,0.29]],"o":[[0.628,0.035],[0.138,0.775],[-0.672,0.301],[-0.592,0.215],[-0.268,-0.621],[0.75,-0.504]],"v":[[-71.115,4.102],[-69.622,4.809],[-70.759,5.688],[-72.817,6.494],[-74.36,6.116],[-73.596,4.838]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.236,-1.361],[0.602,-0.249],[0.25,0.346],[0.502,0.779],[-0.342,0.344],[-0.363,-0.169]],"o":[[-0.018,0.644],[-0.546,0.226],[-0.544,-0.751],[-0.214,-0.332],[0.34,-0.341],[1.148,0.535]],"v":[[122.724,-155.531],[121.87,-154.101],[120.842,-154.711],[119.251,-156.995],[119.278,-158.077],[120.367,-158.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.578,-0.653],[-0.351,0.671]],"o":[[-0.028,-0.701],[1.375,0.807]],"v":[[-237.795,-26.718],[-237.631,-28.802]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.041,-0.686],[0.687,0.008],[0.079,0.523],[-0.6,0.021]],"o":[[-0.021,0.605],[-0.723,-0.008],[-0.083,-0.548],[0.691,-0.024]],"v":[[147.506,1.229],[146.578,2.271],[145.682,1.16],[146.42,0.132]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.949,0.114],[-0.009,3.07],[0.073,-1.113],[0.048,-2.204]],"o":[[0.009,-3.069],[1.111,-0.207],[-0.144,2.198],[-0.018,0.807]],"v":[[97.369,-62.609],[97.397,-71.817],[98.771,-70.461],[98.555,-63.852]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.229,-0.11],[-0.261,-0.219],[1.197,-1.275],[1.01,-0.196],[-1.021,0.196]],"o":[[0.078,0.376],[-1.458,0.165],[-1.055,0.565],[0.681,-1.042],[1.201,-0.23]],"v":[[104.457,-122.137],[105.115,-121.374],[100.86,-120.371],[97.943,-120.726],[100.801,-121.922]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.337,-0.977],[1.113,-0.905],[1.478,0.126],[-1.528,0.133]],"o":[[-1.183,0.612],[-0.389,-1.266],[1.456,-0.59],[1.644,-0.143]],"v":[[116.386,-120.09],[112.614,-119.195],[110.106,-121.591],[114.65,-122.459]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.845,-0.472],[0.257,0.832],[-0.813,-0.037],[0.016,-0.985]],"o":[[-1.09,-0.186],[-0.196,-0.636],[0.86,0.039],[-0.018,1.107]],"v":[[-11.621,-225.06],[-13.396,-226.875],[-11.523,-228.581],[-9.952,-227.21]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.043,-1.088],[1.306,0.072],[-0.083,0.955],[-1.189,-0.058]],"o":[[-0.044,1.12],[-1.188,-0.066],[0.094,-1.08],[1.098,0.053]],"v":[[-71.014,-224.878],[-73.52,-222.932],[-75.67,-224.918],[-73.011,-227.038]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.481,-0.005],[0.027,0.483],[-0.501,-0.003],[-0.023,-0.441]],"o":[[-0.375,-0.033],[-0.03,-0.537],[0.453,0.002],[0.026,0.49]],"v":[[-99.404,-219.436],[-100.212,-220.051],[-99.378,-220.826],[-98.622,-220.11]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-0.875],[0.902,0.089],[0.001,1.145],[-1.115,-0.045]],"o":[[-0.002,1.205],[-1.039,-0.103],[-0.001,-1.224],[0.869,0.035]],"v":[[-102.377,-220.816],[-104.527,-217.976],[-106.263,-219.8],[-103.831,-222.342]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[20.59,-164.275],[20.601,-164.286]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.813,1.32],[-0.397,-1.634]],"o":[[-0.933,-0.526],[1.556,0.445],[0,0]],"v":[[20.601,-164.286],[17.554,-167.507],[20.59,-164.275]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.47,0.619],[-0.448,-0.177],[-0.52,-0.753],[0.4,0.104]],"o":[[-0.068,-0.485],[1.082,0.427],[0.222,0.321],[-1.355,-0.351]],"v":[[-90.676,-93.113],[-90.217,-93.881],[-89.232,-91.47],[-89.781,-90.856]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.173,1.131],[-1.641,0.458],[-0.235,-0.789],[0.37,-0.533],[1.112,-0.337]],"o":[[1.631,-0.495],[0.394,-0.11],[-0.603,0.275],[-1.107,0.356],[-0.99,0.3]],"v":[[50.596,110.699],[55.493,109.229],[56.687,109.495],[55.276,110.759],[51.955,111.822]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.397,-0.58],[0.576,-0.15],[-1.045,0.776],[-1.27,1.206],[0.288,-1.27],[1.017,-0.864]],"o":[[-0.599,-0.175],[-1.007,-0.976],[1.396,-1.036],[1.331,-0.291],[-0.312,1.376],[-0.524,0.445]],"v":[[52.897,116.657],[51.145,116.779],[51.542,114.454],[55.382,110.876],[56.711,112.106],[54.401,115.258]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.276,0.115],[-0.123,0.983],[-0.362,-0.002],[0.533,-1.067]],"o":[[-0.148,-0.977],[0.362,0.002],[0.051,1.1],[-0.276,-0.116]],"v":[[97.447,-47.506],[97.371,-50.445],[98.457,-50.44],[98.275,-47.159]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-128.17,146.35],[-128.25,146.396],[-128.204,146.316]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.033,-0.508],[-0.025,0.56]],"o":[[-0.418,-0.161],[0.813,-0.194]],"v":[[-55.58,158.929],[-56.382,158.038]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.267,-0.116],[-0.033,0.293],[-0.76,0.178],[0.248,-1.44]],"o":[[0.032,-0.293],[0.74,-0.261],[1.391,-0.326],[-1.248,0.551]],"v":[[-165.844,28.661],[-165.746,27.782],[-163.521,27.014],[-162.036,28.502]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.032,-0.293],[0.072,2.228],[-0.937,-1.62]],"o":[[-2.149,1.047],[1.415,-0.01],[-0.033,0.293]],"v":[[-165.844,28.661],[-169.646,26.639],[-165.746,27.782]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[82.238,25.98],[82.252,25.993]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.163,-0.022],[-0.011,-0.046],[0.393,-0.712],[0.741,-0.009],[0.337,-0.548],[0.98,-0.005],[0.287,0.034],[0.16,0.916],[-0.584,0.37]],"o":[[0.021,0.043],[0.151,0.607],[-0.344,0.624],[-0.529,0.006],[-0.98,0.004],[-0.282,-0.079],[-0.749,-0.088],[-0.179,-1.022],[2.163,0.021]],"v":[[-185.405,42.019],[-185.342,42.149],[-184.359,43.502],[-186.356,44.12],[-187.779,44.64],[-190.718,44.653],[-191.564,44.424],[-193.308,43.378],[-191.894,41.954]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.021,0.043],[-0.638,-0.026],[0.357,-1.627],[-0.533,-0.008],[-2.072,0],[2.016,0.627],[2.549,0.9],[-0.529,0.006],[-0.344,0.624],[0.151,0.607]],"o":[[0.64,-0.016],[1.647,0.068],[-0.233,1.063],[2.011,0.028],[-0.783,1.841],[-2.579,-0.802],[0.337,-0.548],[0.741,-0.009],[0.393,-0.712],[-0.011,-0.046]],"v":[[-185.405,42.019],[-183.487,41.979],[-181.908,44.025],[-180.855,44.91],[-174.76,44.922],[-180.125,47.316],[-187.779,44.64],[-186.356,44.12],[-184.359,43.502],[-185.342,42.149]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.106,-0.088],[-0.106,0.088]],"o":[[0.106,-0.088],[-0.106,0.088]],"v":[[144.777,117.269],[145.096,117.005]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.428,0.019],[0.533,0.24],[-0.364,0.957],[-0.86,-0.231],[-0.388,-0.583],[0.189,-0.369]],"o":[[-0.532,-0.173],[-0.509,-0.229],[0.301,-0.793],[0.689,0.186],[0.179,0.269],[-0.215,0.42]],"v":[[-187.36,17.662],[-189.004,17.113],[-190.172,16.01],[-188.199,15.162],[-186.612,16.408],[-186.283,17.319]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.728,0.37],[-0.691,0]],"o":[[-0.675,0.391],[0.691,0],[0,0]],"v":[[82.26,153.164],[80.146,153.111],[82.219,153.111]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-169.385,1.398],[-169.433,1.34],[-169.377,1.39]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.025,0.18],[1.916,0.519],[0.336,0.746],[-0.114,0.127],[-1.672,0.458],[-2.968,0.711],[0.076,-0.759],[1.401,-0.568],[0.835,-0.082],[0.624,-0.055],[0.394,-0.11],[1.631,-0.495]],"o":[[1.138,-1.609],[-0.724,-0.196],[0.113,-0.126],[1.775,-0.193],[3.072,-0.841],[0.764,-0.183],[-0.154,1.541],[-0.783,0.317],[-0.626,0.055],[-0.235,-0.789],[-1.641,0.458],[-0.025,-0.18]],"v":[[50.521,110.16],[49.66,107.775],[47.932,106.611],[48.272,106.232],[53.417,104.903],[62.428,104.601],[63.367,105.666],[60.987,108.744],[58.564,109.33],[56.687,109.495],[55.493,109.229],[50.596,110.699]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.612,0.178],[0.271,0.138],[-0.02,0.598],[-0.465,0.107],[-1.205,-0.961],[0.536,-0.96]],"o":[[-0.113,-0.296],[-0.411,-0.209],[0.022,-0.653],[1.726,-0.399],[0.793,0.632],[-1.422,-0.57]],"v":[[-229.55,78.969],[-230.175,78.397],[-231.296,77.638],[-230.053,76.836],[-225.876,78.459],[-225.418,80.96]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.782,0.184],[0.02,-0.561],[0.856,-0.094],[-0.012,0.617]],"o":[[0.58,0.035],[-0.029,0.798],[-0.612,0.068],[0.017,-0.846]],"v":[[217.742,-69.302],[218.738,-68.418],[217.432,-66.884],[216.347,-67.831]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.07,-0.082],[0.077,0.155],[-0.04,0.076]],"o":[[-0.117,0.104],[-0.022,-0.044],[0.07,0.082]],"v":[[32.558,131.948],[32.238,131.922],[32.348,131.701]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.632,-0.053],[-1.847,0.223],[-1.664,0.01],[1.201,-0.143]],"o":[[1.13,-1.662],[1.642,-0.198],[-0.012,1.222],[-2.612,0.311]],"v":[[-12.547,129.384],[-7.833,126.838],[-2.844,126.768],[-4.687,128.762]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.437,0.027],[-2.243,-0.31],[-0.026,-0.386],[1.642,-0.198],[1.13,-1.662],[1.138,0.808],[1.321,0.592],[-2.606,0.832],[0.161,0.523]],"o":[[2.27,0.05],[0.275,0.207],[-1.664,0.01],[-1.847,0.223],[-0.901,0.744],[-0.839,-0.596],[2.982,-0.952],[0.077,-0.776],[0.461,-0.028]],"v":[[-10.17,125.255],[-3.419,125.967],[-2.844,126.768],[-7.833,126.838],[-12.547,129.384],[-15.457,129.691],[-18.799,129.066],[-10.574,126.44],[-11.506,125.337]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.012,0],[-0.013,-0.689],[-0.331,-0.106],[-0.185,0.298],[-0.224,1.199],[-0.703,0.573],[-0.263,-0.118],[0.044,-0.238],[2.293,-2.631],[0.571,0.247],[0.025,0.482],[-0.195,1.375],[0.231,1.173],[-0.596,0.063],[-0.023,-0.468],[0,-0.738]],"o":[[0,0.689],[0.006,0.295],[0.411,0.132],[0.678,-1.089],[0.156,-0.835],[0.191,-0.155],[0.292,0.131],[-0.607,3.316],[-0.297,0.341],[-0.489,-0.211],[-0.073,-1.377],[0.164,-1.16],[-0.093,-0.471],[0.577,-0.061],[0.036,0.736],[0.012,0]],"v":[[100.346,60.324],[100.35,62.391],[100.714,63.132],[101.521,62.647],[102.385,59.093],[103.407,56.87],[104.074,56.678],[104.266,57.315],[100.561,66.503],[99.397,67.204],[98.872,65.903],[99.062,61.785],[98.98,58.255],[99.518,57.247],[100.301,58.11],[100.311,60.324]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.488,0.481],[-0.334,-1.79],[0.093,-0.141],[3.383,-1.593],[0.488,0.551],[-0.29,0.484],[-0.938,1.197],[-0.237,2.457]],"o":[[1.21,1.482],[0.035,0.189],[-1.855,2.831],[-0.506,0.238],[-0.44,-0.497],[0.786,-1.31],[1.553,-1.982],[0.049,-0.512]],"v":[[105.652,60.067],[107.724,65.048],[107.694,65.63],[101.355,73.5],[99.753,73.763],[100.093,72.146],[102.574,68.294],[105.09,61.619]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.228,0.007],[0.017,1.339],[-1.161,0.012],[0.006,-1.312]],"o":[[-1.704,0.018],[-0.016,-1.261],[1.641,-0.017],[-0.006,1.193]],"v":[[-222.097,156.095],[-225.042,153.981],[-223.133,152.265],[-220.093,154.632]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.023,0.003],[0.442,0.172],[-0.923,0.858],[-0.9,-0.854],[1.363,-0.531]],"o":[[-0.105,-0.016],[-1.178,-0.457],[0.958,-0.891],[1.067,1.013],[-0.607,0.237]],"v":[[64.253,76.397],[63.194,76.219],[62.761,73.777],[66.984,73.694],[66.513,76.115]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.883,0.513],[0.034,1.106],[-0.666,0.706],[-0.597,-0.399],[0.218,-0.811],[0.496,-1.277]],"o":[[-0.349,-1.05],[0.442,-0.815],[0.374,-0.397],[0.559,0.373],[-0.356,1.323],[-0.297,0.764]],"v":[[76.656,67.448],[76.081,64.215],[77.273,61.707],[78.647,61.228],[79.695,62.839],[78.4,66.744]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.22,0.393],[3.429,1.285]],"o":[[-1.838,2.381],[3.432,-3.193]],"v":[[193.904,28.021],[182.094,30.104]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.102,0.038],[-0.102,-0.038]],"o":[[0.102,0.038],[-0.102,-0.038]],"v":[[-26.799,119.484],[-26.493,119.597]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.856,0.95],[-1.857,-0.927]],"o":[[1.907,-0.612],[-1.899,0.359]],"v":[[-48.782,119.164],[-43.126,119.349]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.025,-0.915],[1.297,-0.457],[0.388,-0.239],[0.387,0.029],[0.907,0.773],[-0.967,-0.091]],"o":[[-1.297,0.457],[-0.437,-0.074],[-0.387,-0.029],[-0.907,-0.772],[0.659,-1.006],[2.204,0.207]],"v":[[-16.944,120.423],[-20.835,121.794],[-22.08,121.99],[-23.242,121.904],[-25.964,119.586],[-23.303,118.76]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.954,-0.098],[-1.432,-0.552],[0.879,-0.941],[1.005,0.126],[1.784,0.566],[-0.03,0.755],[-0.625,0.139]],"o":[[1.631,-0.077],[1.194,0.461],[-0.727,0.778],[-1.85,-0.232],[-0.64,-0.203],[0.032,-0.811],[1.009,-0.224]],"v":[[-62.362,124.683],[-57.795,125.396],[-57.367,127.534],[-60.04,128.508],[-65.508,127.351],[-66.726,126.062],[-65.34,124.994]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-22.33,227.389],[-22.414,227.419],[-22.401,227.337]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.977,0.192],[-1.345,-1.274],[1.033,-0.507],[1.635,-0.01],[1.6,0.776],[-0.873,0.64]],"o":[[1.744,0.121],[0.791,0.749],[-1.553,0.761],[-1.686,0.01],[-1.054,-0.512],[1.652,-1.212]],"v":[[-23.133,221.593],[-18.401,223.325],[-18.597,225.074],[-23.495,225.971],[-28.539,225.067],[-28.694,223.341]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.084,0],[2.555,-0.132],[0.261,0.992],[-0.846,0.373],[-3.93,-1.862],[-0.119,-0.085],[0.232,-1.041],[0.883,-0.068]],"o":[[-2.564,-0.122],[-0.829,0.043],[-0.289,-1.096],[3.861,-1.703],[0.133,0.063],[0.868,0.622],[-0.209,0.938],[-1.078,0.083]],"v":[[7.722,207.961],[0.054,208.236],[-2.067,207.321],[-0.605,205.191],[11.099,205.014],[11.491,205.219],[13.494,207.506],[10.973,207.941]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.256,0.534],[0.141,-0.994],[0.715,-0.16]],"o":[[0.794,0.196],[-0.178,1.252],[-0.933,-1.056]],"v":[[-73.662,127.339],[-72.265,128.837],[-74.226,129.705]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.13,-0.741],[0.985,-0.155],[0.252,0.673],[-0.485,0.992],[-0.595,-0.024],[-0.147,-0.528]],"o":[[-0.082,0.971],[-0.957,0.151],[-0.376,-1.005],[0.217,-0.444],[0.609,0.024],[0.222,0.8]],"v":[[-93.791,-17.376],[-95.09,-15.377],[-96.481,-16.807],[-96.412,-19.819],[-95.392,-20.747],[-94.23,-19.755]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.512,1.925],[-0.042,0.933],[-1.321,-0.797],[0.097,-0.433],[0.503,0.054]],"o":[[0.801,0.013],[1.223,0.895],[0.58,0.35],[-0.141,0.63],[-1.549,-0.168]],"v":[[-98.503,68.936],[-97.06,67.778],[-93.713,70.821],[-93.614,72.156],[-94.806,72.695]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.895,-0.142],[1.599,-0.825],[0.206,0.653],[0.05,0.139],[-2.361,-0.189]],"o":[[-0.799,1.802],[-0.674,0.348],[-0.044,-0.14],[-0.805,-2.24],[0.727,0.058]],"v":[[-90.478,13.98],[-93.971,17.85],[-95.17,17.371],[-95.34,16.963],[-92.819,13.618]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.332],[0.76,-0.734],[0.578,0.335],[0.099,0.91],[-1.455,0.841],[-0.187,-1.571]],"o":[[0.26,1.171],[-0.425,0.411],[-0.574,-0.333],[-0.169,-1.559],[1.38,-0.798],[0.035,0.292]],"v":[[-97.636,0.209],[-98.888,2.841],[-100.336,3.173],[-101.648,1.765],[-100.093,-1.883],[-97.641,-0.715]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.899,0.073],[0.445,0.955],[-0.699,0.579],[-1.096,0.958],[-0.842,-0.49],[0.203,-0.691],[0.563,-1.418]],"o":[[-0.866,-0.09],[-0.46,-0.988],[1.138,-0.943],[0.539,-0.471],[0.769,0.448],[-0.43,1.463],[-0.323,0.814]],"v":[[-93.752,-9.848],[-96.077,-10.791],[-95.171,-13.078],[-92.667,-16.532],[-90.79,-17.287],[-90.315,-15.273],[-91.838,-10.953]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.278,0.54],[-1.138,-0.161],[-2.396,0.185],[-0.133,-0.253],[-1.482,-0.752],[-0.243,-0.665],[0.64,0.267],[0.487,0.905],[1.218,0.08],[-0.346,-1.438],[0.459,-0.205],[0.345,0.44],[0.57,0.529],[1.884,0.014]],"o":[[1.188,-0.241],[2.439,0.344],[0.297,-0.023],[0.968,1.838],[-0.005,0.689],[0.318,0.869],[-0.775,-0.324],[-0.607,-1.128],[-1.471,-0.097],[0.081,0.335],[-0.433,0.193],[-0.484,-0.616],[-1.261,-1.172],[-0.566,-0.004]],"v":[[-115.855,66.461],[-112.341,66.686],[-105.134,66.459],[-104.299,66.564],[-99.814,68.78],[-99.499,70.799],[-100.417,71.701],[-102.539,70.244],[-105.532,68.649],[-107.219,70.698],[-107.377,71.569],[-108.561,71.352],[-110.076,69.557],[-114.527,67.245]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.108,-0.085],[0.108,0.085]],"o":[[-0.108,-0.085],[0.108,0.085]],"v":[[-119.855,-69.483],[-120.179,-69.737]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.103,-0.094],[-0.174,0.017]],"o":[[0.006,-0.201],[-0.103,0.094]],"v":[[-217.119,-109.149],[-216.809,-109.432]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-155.456,4.658],[-155.408,4.696],[-155.447,4.65]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.028,0.244],[-0.175,0.018],[0.074,-0.016]],"o":[[0.175,-0.018],[-0.042,0.166],[-0.297,0.063]],"v":[[-191.304,-97.908],[-190.779,-97.962],[-190.908,-97.486]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-1.687],[-0.632,1.734]],"o":[[-0.505,-1.626],[0.83,1.592]],"v":[[-168.658,-72.98],[-169.012,-77.983]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.7,-0.126],[0.137,-0.611],[0.875,0.065],[-0.095,0.557]],"o":[[0.868,0.096],[-0.194,0.862],[-0.56,-0.042],[0.141,-0.831]],"v":[[-124.224,-62.098],[-122.951,-61.077],[-124.749,-59.959],[-125.398,-60.839]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.04,-0.674],[0.79,0.057],[-0.016,0.85],[-0.666,0.05]],"o":[[-0.029,0.664],[-0.733,-0.052],[0.014,-0.748],[0.826,-0.062]],"v":[[-224.489,-65.948],[-225.463,-64.751],[-226.823,-65.994],[-225.56,-67.199]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.113,0.569],[-0.305,1.158],[-0.421,-0.392],[0.004,-0.671],[0.522,-0.224]],"o":[[1.853,-0.56],[0.421,0.392],[-0.004,0.671],[-0.536,0.192],[-0.508,0.218]],"v":[[-124.93,-66.365],[-123.642,-69.696],[-122.378,-68.52],[-122.391,-66.508],[-123.996,-65.925]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.853,-0.56],[-0.068,0.908],[-0.64,0.321],[-0.443,-0.384]],"o":[[-0.477,-0.669],[0.048,-0.637],[0.618,-0.31],[-0.305,1.158]],"v":[[-124.93,-66.365],[-125.864,-68.582],[-125.177,-70.232],[-123.642,-69.696]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.337,5.547],[0.166,-2.144],[0.085,-3.344],[1.116,-0.284]],"o":[[1.484,-5.461],[0.463,0.734],[-0.259,3.346],[-0.025,0.986],[0,0]],"v":[[-153.37,0.215],[-152.426,-16.391],[-151.69,-11.969],[-151.934,-1.936],[-153.381,0.205]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.809,0.648],[-0.429,0.002],[0.499,-3.244],[-0.18,-1.525],[0.622,-3.159],[-0.28,1.604],[-0.342,2.603],[0.991,0.232]],"o":[[0.548,-0.339],[3.246,-0.014],[-0.234,1.521],[0.357,3.015],[-0.38,-1.127],[0.453,-2.591],[0.143,-1.089],[-0.8,-0.188]],"v":[[-157.499,-50.797],[-156.068,-51.022],[-152.649,-46.99],[-152.663,-42.423],[-153.316,-33.292],[-153.562,-40.421],[-153.217,-48.239],[-155.007,-50.068]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.069,0.419],[-3.211,1.218],[-0.167,-0.153],[-1.128,0.506],[-1.752,0.9],[1.574,-0.575],[2.255,-0.473],[2.083,-1.51],[0.469,0.244]],"o":[[2.649,-2.318],[0.303,-0.115],[1.235,1.134],[1.794,-0.804],[-0.755,1.763],[-2.164,0.791],[-2.589,0.542],[-0.346,0.251],[-0.461,-0.24]],"v":[[-236.072,-101.759],[-226.952,-106.424],[-225.974,-106.501],[-222.392,-106.558],[-217.126,-109.231],[-221.127,-106.263],[-227.782,-104.35],[-234.614,-101.016],[-235.763,-100.544]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.128,-1.052],[0.387,0.093],[-0.611,0.796]],"o":[[-0.387,-0.093],[0.046,-0.904],[0.361,0.942]],"v":[[-8.776,120.499],[-9.937,120.22],[-9.433,117.578]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.548,-0.244],[-0.003,0.469],[-0.521,-0.019],[0.092,-0.757]],"o":[[-0.494,0.043],[0.007,-0.927],[0.46,0.016],[-0.097,0.797]],"v":[[68.457,68.208],[67.566,67.632],[68.868,66.94],[70.122,67.428]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.688,-0.022],[-0.116,0.576],[-0.717,-0.034],[0.107,-0.565]],"o":[[-0.445,-0.132],[0.15,-0.746],[0.433,0.02],[-0.138,0.73]],"v":[[-32.212,100.031],[-33.281,99.301],[-31.633,98.401],[-30.722,99.106]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-0.521],[0.725,-0.016],[0.011,0.559],[-0.714,0.006]],"o":[[-0.016,0.573],[-0.671,0.015],[-0.013,-0.651],[0.689,-0.006]],"v":[[77.752,-0.143],[76.915,0.989],[75.917,-0.049],[77.011,-1.158]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.784,-0.103],[-0.099,0.85],[-0.729,0.04],[0.096,-0.615]],"o":[[-0.463,-0.153],[0.091,-0.786],[0.635,-0.035],[-0.138,0.889]],"v":[[-53.156,91.554],[-54.472,90.956],[-52.685,90.016],[-51.156,90.742]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.686,0.006],[3.145,0.29],[0.095,0.022],[0.034,0.872]],"o":[[1.179,2.763],[-0.096,-0.009],[0.334,-0.825],[0.686,-0.006]],"v":[[-2.515,113.745],[-4.616,116.388],[-4.901,116.325],[-4.573,113.763]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.787,-0.014],[0.695,0.339],[-0.046,0.369],[-0.273,0.059],[-1.502,-0.276],[-0.012,-0.137],[0.238,-0.077]],"o":[[-0.736,-0.016],[-0.252,-0.123],[0.042,-0.339],[1.53,-0.328],[0.15,0.028],[0.026,0.288],[-0.765,0.248]],"v":[[-6.172,97.976],[-8.353,97.714],[-8.94,97.166],[-8.257,96.691],[-3.717,96.924],[-3.34,97.29],[-3.827,97.751]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.058,0.886],[-1.015,-0.067],[0.115,-0.852],[0.934,-0.009]],"o":[[0.136,-0.892],[0.801,0.053],[-0.114,0.842],[-0.868,0.008]],"v":[[55.906,67.422],[57.447,65.83],[58.699,67.344],[57.224,69.101]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.325,0],[-0.424,0.156],[-0.286,-0.698],[0.463,-0.584],[0.539,0.107],[0.827,0.078],[0.011,0.762],[-0.622,0.154]],"o":[[0.406,0.128],[0.746,-0.275],[0.252,0.616],[-0.455,0.573],[-0.821,-0.163],[-0.691,-0.065],[-0.012,-0.869],[0.276,-0.069]],"v":[[-40.369,106.076],[-39.112,106.012],[-37.609,106.732],[-37.243,108.62],[-38.823,108.322],[-41.29,108.016],[-42.872,106.99],[-41.277,106.088]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.247,1.212],[-0.648,-0.208],[-0.608,0.529],[1.376,-0.535],[-1.199,-1.145],[1.441,-0.001]],"o":[[0.676,0.122],[0.778,0.25],[0.422,0.672],[-0.654,0.255],[-1.439,0],[0.064,-1.202]],"v":[[34.235,112.53],[36.258,112.913],[38.299,112.545],[38.083,114.404],[38.748,116.113],[34.428,116.115]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.054,-0.537],[0.437,0.018],[-0.424,2.877],[-0.808,-0.048],[-0.045,-0.617],[0.31,-2.189]],"o":[[-0.379,0.224],[0.213,-2.89],[0.083,-0.562],[0.874,0.052],[0.163,2.24],[-0.076,0.534]],"v":[[40.491,115.854],[39.263,116.146],[39.798,107.47],[40.614,106.137],[41.38,107.655],[40.656,114.243]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.564,0.198],[-2.463,-0.035],[0.429,-1.074],[2.643,-1.245],[-0.345,1.425]],"o":[[2.463,0.011],[0.526,0.007],[-2.978,-0.406],[-1.117,-0.219],[0.565,-0.198]],"v":[[86.983,21.261],[94.372,21.304],[95.312,22.196],[86.969,23.889],[85.289,21.854]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.721,-0.04],[-2.246,0.353],[-0.599,-0.175],[-0.305,-0.214],[1.089,0.591],[1.183,-0.367],[1.48,2.562]],"o":[[2.094,1.188],[0.576,-0.15],[0.305,0.214],[-0.208,1.065],[-1.163,-0.632],[-2.785,0.864],[0.751,-0.188]],"v":[[44.576,116.131],[51.145,116.779],[52.897,116.657],[53.811,117.3],[52.064,118.129],[48.486,118.251],[42.436,115.843]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.306,-0.036],[-0.017,-0.452],[-0.31,0.053],[-0.023,0.443]],"o":[[-0.379,0.138],[0.012,0.306],[0.519,-0.088],[0.015,-0.286]],"v":[[35.963,110.273],[35.266,111.097],[35.839,111.664],[36.496,110.642]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.676,0.122],[0.004,0.322],[-1.013,0.776],[-0.582,-0.489],[0.007,-0.524],[0.037,-0.632],[0.778,0.25]],"o":[[-0.115,-0.32],[-0.01,-0.804],[0.658,-0.504],[0.478,0.401],[-0.008,0.633],[-0.608,0.529],[-0.648,-0.208]],"v":[[34.235,112.53],[33.909,111.569],[33.915,109.161],[38.053,109.144],[38.402,110.648],[38.299,112.545],[36.258,112.913]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.138,-1.609],[0.894,0.199],[1.588,-0.74],[0.276,0.295],[-0.924,-0.094],[-0.768,0.423],[-0.588,-0.072],[-0.724,-0.196]],"o":[[-0.885,0.552],[-1.308,-0.814],[-0.334,0.156],[0.108,-0.758],[0.961,0.098],[0.475,-0.261],[0.336,0.746],[1.916,0.519]],"v":[[50.521,110.16],[47.847,110.193],[43.621,109.438],[42.685,109.301],[43.993,108.076],[46.432,107.138],[47.932,106.611],[49.66,107.775]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.739,0.936],[0.145,-0.906],[-0.167,-0.784],[-1.681,0.114],[-0.072,-0.654],[0.736,0.018],[0.018,2.347],[0.055,1.031]],"o":[[0.56,0.999],[-0.127,0.793],[0.358,1.678],[1.094,-0.074],[0.095,0.856],[-2.339,-0.057],[-0.008,-1.032],[-0.053,-0.985]],"v":[[12.079,-3.983],[12.397,-1.156],[12.457,1.189],[15.171,3.43],[16.358,4.69],[15.133,5.768],[11.449,1.975],[11.304,-1.119]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.119,-0.001],[2.069,0.023],[0.049,0.572],[-0.49,0.089],[-2.845,-0.146],[-0.879,-0.031],[-0.513,-0.135],[0.084,-0.482],[0.368,-0.003]],"o":[[-2.07,0.001],[-0.46,-0.005],[-0.057,-0.667],[2.831,-0.512],[0.902,0.046],[0.538,0.019],[0.419,0.11],[-0.085,0.49],[-2.119,0.015]],"v":[[-43.065,111.016],[-49.274,111.007],[-50.552,110.644],[-49.294,109.931],[-40.755,109.712],[-38.12,109.597],[-36.514,109.743],[-35.699,110.663],[-36.709,111.007]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.094,1.188],[-0.389,-0.021],[-0.46,2.685],[0.534,0.157],[-0.014,0.618],[-0.885,0.552],[-0.025,-0.18],[-0.99,0.3],[-1.107,0.356],[-0.035,-0.038],[1.396,-1.036],[-1.007,-0.977]],"o":[[0.391,-0.02],[2.746,0.15],[0.079,-0.46],[-0.606,-0.178],[0.894,0.199],[0.025,0.18],[-0.173,1.131],[1.112,-0.337],[0.036,0.039],[-1.27,1.206],[-1.045,0.776],[-2.246,0.353]],"v":[[44.576,116.131],[45.75,116.076],[49.28,112.447],[48.71,111.394],[47.847,110.193],[50.521,110.16],[50.596,110.699],[51.955,111.822],[55.276,110.759],[55.382,110.876],[51.542,114.454],[51.145,116.78]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.109,-0.711],[0.298,0.015],[1.435,0.481],[0,0],[-1.749,0.404],[-2.514,-0.023],[-0.385,-0.067],[0.003,-0.449],[0.313,-0.031],[1.617,-0.136]],"o":[[-0.298,-0.015],[-1.423,-0.576],[0,0],[1.434,-1.291],[2.514,0.019],[0.394,0.004],[0.413,0.072],[-0.003,0.459],[-1.615,0.161],[-1.26,-0.206]],"v":[[75.416,25.731],[74.523,25.685],[70.104,25.104],[70.099,25.095],[75.141,23.303],[82.683,23.362],[83.863,23.417],[84.619,24.201],[83.849,24.72],[78.997,25.139]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.717,0.082],[0.117,0.984],[0.635,1.447],[0.646,0.051],[0.288,0.237],[-0.178,0.692],[-0.559,0.066],[-0.64,-0.251],[-0.652,-0.964],[-0.349,-1.05],[0.014,-1.186],[0.851,0.039],[0.992,1.547]],"o":[[1.18,-0.307],[-0.188,-1.576],[-0.231,-0.526],[-0.371,-0.03],[-0.511,-0.421],[0.154,-0.598],[0.626,-0.074],[1.073,0.627],[0.034,1.106],[-0.202,1.192],[-0.011,0.922],[-1.266,-0.058],[0.717,-0.082]],"v":[[74.054,71.473],[75.264,69.27],[73.893,64.768],[72.697,63.831],[71.622,63.394],[70.415,61.887],[72.013,61.57],[73.906,61.5],[76.081,64.215],[76.656,67.448],[76.916,70.968],[75.648,72.423],[71.904,71.721]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.035,0.488],[-1.95,0.835],[1.174,0.357],[1.142,0.444],[-0.723,1.865],[-3.318,0.629],[-2.387,-1.418],[-0.063,-0.71],[1.327,-1.167],[0.762,0.156]],"o":[[1.925,-0.449],[-1.187,-0.314],[-1.172,-0.357],[-1.867,-0.726],[3.318,0.201],[-0.873,2.527],[0.568,0.338],[-1.553,0.358],[-0.567,0.499],[-1.096,-0.225]],"v":[[25.371,122.931],[31.271,121.876],[27.712,120.925],[24.236,119.726],[22.89,116.626],[32.843,116.613],[34.357,120.559],[35.443,122.022],[30.933,123.574],[28.643,123.708]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.659,-2.943],[0.01,1.331],[0.028,10.851],[-0.077,4.337],[-0.831,-0.24],[-0.199,-4.429],[-0.012,-2.462],[0.501,-6.938]],"o":[[-0.017,-1.331],[-0.081,-10.851],[-0.011,-4.337],[0.013,-0.74],[-0.378,4.432],[0.111,2.466],[0.033,6.95],[-0.215,2.981]],"v":[[59.184,-75.449],[59.133,-79.442],[58.911,-111.994],[59.163,-125.005],[60.206,-125.926],[60.131,-112.624],[60.278,-105.233],[59.99,-84.388]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.387,-0.093],[-1.285,-0.269],[0.48,-0.034],[2.702,0.002],[0.417,-0.604],[0.788,-0.054],[0.015,-0.166],[0.98,-0.104],[0.333,-0.091],[0.027,-0.575],[-0.437,-0.11],[-1.028,-0.568],[0.089,-0.454],[0.333,-0.061],[0.269,0.08],[3.468,0.119],[0.031,0.561],[-0.546,-0.023],[-1.069,0.177],[0.069,0.896],[0.849,0.001],[0.494,0.002],[-1.362,0.094],[-0.736,0.053],[-0.387,-0.029],[-0.384,0.262],[-1.297,0.457],[-0.693,0.455],[-1.585,0.001]],"o":[[1.146,0.24],[-0.482,0.62],[-2.708,0.19],[-0.566,-0.001],[-0.787,0.054],[-0.312,0.14],[-0.136,1.544],[-0.341,0.036],[-0.491,0.133],[-0.034,0.731],[1.095,0.275],[0.278,0.154],[-0.072,0.37],[-0.287,0.053],[-3.402,-1.008],[-0.411,-0.014],[-0.037,-0.681],[1.098,0.046],[0.739,-0.123],[-0.072,-0.927],[-0.494,-0.001],[1.204,-0.856],[0.736,-0.051],[0.387,0.029],[0.437,0.072],[1.297,-0.457],[0.751,-0.189],[1.549,0.593],[0.387,0.093]],"v":[[-8.776,120.499],[-5.198,121.249],[-6.721,121.716],[-14.817,121.434],[-16.441,121.864],[-18.804,122.025],[-19.701,122.449],[-21.976,123.846],[-22.987,124.074],[-24.028,124.977],[-22.94,125.69],[-19.634,126.422],[-18.943,127.045],[-19.784,127.54],[-20.665,127.56],[-31.035,126.748],[-32.157,126.366],[-30.945,125.597],[-27.711,125.266],[-26.128,124.031],[-27.94,122.898],[-29.422,122.893],[-25.449,122.063],[-23.242,121.904],[-22.08,121.99],[-20.835,121.794],[-16.944,120.423],[-14.674,119.931],[-9.937,120.22]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.279,1.119],[-0.455,-1.031],[-0.661,-0.324],[-1.948,-3.015],[2.565,-0.252],[0.147,-0.014],[0.001,-0.901],[-0.631,-0.167],[-0.39,-0.038],[0.019,-1.415],[0.044,-1.526],[0.626,-0.074],[0.154,-0.598],[-0.511,-0.421],[-0.371,-0.03],[-0.231,-0.526],[-0.188,-1.576],[1.18,-0.307],[-0.072,0.381],[1.449,1.355],[0.499,0.401],[-2.825,1.127],[-0.048,1.049],[0.679,0.454],[0.787,0.407],[-0.237,1.025],[-0.978,0.295],[-0.145,0.027],[-0.394,1.232],[0.706,0.782],[2.528,2.194]],"o":[[1.111,-0.042],[0.279,0.633],[3.301,1.617],[1.42,2.198],[-0.147,0.014],[-0.797,0.075],[-0.001,0.754],[0.379,0.101],[1.388,0.133],[-0.021,1.536],[-0.64,-0.251],[-0.559,0.066],[-0.178,0.692],[0.288,0.237],[0.646,0.051],[0.635,1.447],[0.117,0.984],[0.023,-0.39],[0.368,-1.954],[-0.467,-0.437],[-2.418,-1.943],[0.703,-0.28],[0.045,-0.977],[-0.73,-0.487],[-0.681,-0.352],[0.218,-0.945],[0.139,-0.042],[1.054,-0.2],[0.382,-1.196],[-2.255,-2.498],[-0.813,-0.705]],"v":[[62.419,38.401],[64.734,39.875],[66.107,41.37],[73.689,48.649],[71.77,52.635],[71.326,52.657],[69.474,53.719],[71.199,54.45],[72.357,54.669],[74.258,56.934],[73.906,61.5],[72.013,61.57],[70.415,61.887],[71.622,63.394],[72.697,63.831],[73.893,64.768],[75.264,69.27],[74.054,71.473],[74.131,70.305],[72.52,65.339],[71.066,64.087],[71.621,59.923],[73.304,58.528],[71.944,56.547],[69.565,55.367],[68.167,53.742],[70.032,51.815],[70.471,51.762],[73.195,50.355],[71.895,47.546],[64.346,40.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.475,0.017],[0.634,-0.787],[-0.299,-0.714],[-0.649,-0.007],[-0.592,0.017],[0.144,1.786],[-0.616,0.055],[-0.637,-0.686],[0.339,-0.412],[2.701,0.064],[4.388,0.116],[0.241,0.738],[-0.51,0.35],[1.418,1.449],[-0.345,0.734],[-0.698,-0.068],[-0.04,-0.71],[0.01,-1.135],[-1.261,0.014],[-0.061,1.328],[-0.009,1.135],[-0.703,0.027],[-0.013,-0.564],[0.205,-1.081],[-0.968,-0.439],[-0.609,0.849],[-0.369,0.641]],"o":[[-0.315,1.074],[-0.401,0.498],[0.303,0.724],[0.592,0.007],[1.75,-0.051],[-0.037,-0.464],[0.807,-0.073],[0.467,0.503],[-1.712,2.079],[-4.389,-0.104],[-0.633,-0.017],[-0.274,-0.839],[1.317,-0.905],[-0.376,-0.384],[0.31,-0.66],[0.879,0.085],[0.064,1.133],[-0.01,1.1],[1.979,-0.023],[0.052,-1.133],[0.004,-0.479],[0.725,-0.028],[0.025,1.084],[-0.187,0.984],[1.065,0.483],[0.428,-0.597],[0.712,-1.238]],"v":[[-33.033,80.414],[-34.896,82.857],[-35.508,84.561],[-33.859,85.275],[-32.081,85.271],[-30.183,83.114],[-29.726,82.072],[-27.336,82.343],[-27.8,83.73],[-34.405,86.778],[-47.571,86.462],[-49.212,85.738],[-48.162,84.369],[-48.414,79.835],[-49.394,78.579],[-47.549,77.924],[-46.432,79.436],[-46.375,82.841],[-44.783,84.649],[-41.937,82.828],[-41.939,79.422],[-41.321,78.288],[-40.467,79.434],[-40.616,82.681],[-39.662,85.103],[-37.136,84.087],[-36.051,82.153]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.179,2.763],[-0.725,0.129],[-0.773,-0.742],[-0.837,1.241],[-0.275,0.346],[-0.343,-0.504],[0.979,-1.175],[0.049,0.069],[0.759,-0.018],[0.257,-0.581],[0.883,0.968],[0.606,0.302],[0.474,-0.726],[-0.577,-0.401],[-0.307,-0.843],[0.71,0.176],[1.291,-0.122],[0.044,-0.566],[-0.352,-0.127],[-1.323,-0.111],[0.236,-1.184],[1.69,0.082],[3.844,0.154],[1.227,0.106],[-0.566,-0.001],[-2.708,0.19],[-0.482,0.62],[1.146,0.24],[0.361,0.942],[-1.648,-0.078],[-0.096,-0.009]],"o":[[0.398,-0.521],[1.058,0.201],[1.625,1.558],[0.246,-0.366],[0.433,-0.285],[0.344,1.133],[-0.134,-0.084],[-0.316,-0.449],[-0.64,0.015],[-0.606,1.369],[-0.456,-0.501],[-0.84,-0.419],[-0.462,0.706],[0.686,0.478],[-0.78,0.323],[-1.253,-0.31],[-0.438,0.041],[-0.039,0.501],[1.27,0.46],[0.73,0.061],[-0.181,0.906],[-3.842,-0.185],[-1.229,-0.049],[0.417,-0.604],[2.702,0.002],[0.48,-0.034],[-1.285,-0.269],[0.128,-1.052],[1.39,-0.854],[0.095,0.022],[3.145,0.29]],"v":[[-2.515,113.745],[-1.042,112.516],[2.083,113.215],[5.295,112.451],[6.115,111.409],[7.302,111.54],[7.369,114.981],[7.084,114.796],[6.233,113.437],[4.873,114.686],[2.733,114.933],[1.092,113.691],[-0.94,114.396],[-0.395,115.994],[1.205,117.861],[-0.995,117.759],[-4.806,117.383],[-5.792,118.081],[-5.005,118.831],[-1.068,119.393],[0.352,120.479],[-1.226,122.59],[-12.76,122.174],[-16.441,121.864],[-14.817,121.434],[-6.721,121.716],[-5.198,121.249],[-8.776,120.499],[-9.433,117.578],[-4.901,116.325],[-4.616,116.388]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.522,-0.14],[0.413,-0.452],[0.433,-0.285],[2.463,-0.567],[-0.324,-0.689],[0.516,-0.68],[0.398,-0.521],[0.686,-0.006],[1.499,-0.519],[0.335,0.044],[0.011,0.815],[-0.728,0.116],[-0.057,0.538],[0.394,0.074],[0.678,-0.019],[3.431,-0.589],[-0.009,0.609],[-0.531,0.012],[-1.229,0.062],[-2.029,0.934],[-0.161,-0.072],[-2.136,-0.106],[-1.452,0.434],[-2.679,-0.947]],"o":[[-0.415,0.451],[-0.343,-0.504],[-2.25,0.149],[0.443,0.809],[-0.652,0.558],[-0.725,0.129],[-0.686,0.006],[-1.514,-0.067],[-0.313,0.109],[-0.804,-0.105],[-0.012,-0.898],[0.359,-0.057],[0.047,-0.45],[-0.677,-0.126],[-3.438,0.096],[-0.374,0.064],[0.007,-0.494],[1.231,-0.029],[2.091,-0.106],[0.165,-0.076],[2.106,0.938],[1.476,0.073],[2.773,-0.829],[0.508,0.18]],"v":[[8.546,110.187],[7.302,111.54],[6.115,111.409],[-0.579,110.292],[1.089,111.487],[-1.042,112.516],[-2.515,113.745],[-4.573,113.764],[-9.103,113.933],[-10.128,113.996],[-12.242,113.142],[-10.269,112.483],[-9.3,112.089],[-10.12,111.385],[-12.162,111.096],[-22.48,111.267],[-23.339,110.79],[-22.517,109.922],[-18.823,109.88],[-12.558,109.387],[-11.977,109.365],[-5.564,109.619],[-1.231,109.009],[6.981,109.762]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.956,0.022],[-1.013,-0.316],[-1.02,-0.726],[-0.577,0.724],[-0.575,0.73],[0.347,-1.119],[-1.37,-1.597],[-0.62,-1.186],[1.493,-0.111],[1.025,1.99],[0.674,-0.002],[0.072,3.703],[0.086,1.57]],"o":[[0.232,-0.967],[1.167,0.364],[0.778,0.553],[0.58,-0.727],[0.65,1.001],[-0.641,2.066],[0.864,1.007],[0.716,1.37],[-1.547,0.115],[-0.313,-0.608],[-3.684,0.012],[-0.03,-1.571],[-0.052,-0.947]],"v":[[-70.382,90.609],[-68.659,89.725],[-65.293,91.075],[-63.238,90.722],[-61.513,88.531],[-61.442,91.558],[-59.853,97.095],[-57.399,100.217],[-58.453,102.265],[-62.712,100.988],[-64.67,100.694],[-68.631,96.786],[-68.893,92.076]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.102,0.038],[3.876,-0.126],[1.567,0.059],[1.907,-0.612],[1.157,-0.364],[-0.782,0.727],[-1.79,-0.094],[-6.062,-0.184],[-3.43,-0.443],[-0.027,-2.756],[0.751,-0.189],[2.204,0.207],[0.658,-1.005],[0.176,-0.004]],"o":[[-3.875,-0.136],[-1.564,0.051],[-1.857,-0.927],[-1.181,-0.152],[-0.657,-0.886],[1.247,-1.159],[6.066,0.318],[3.463,0.105],[2.156,0.278],[-0.693,0.455],[-2.025,-0.915],[-0.967,-0.091],[-0.176,0.004],[-0.102,-0.038]],"v":[[-26.799,119.484],[-38.424,119.509],[-43.126,119.349],[-48.782,119.164],[-52.296,119.325],[-51.943,117.029],[-47.586,115.248],[-29.415,114.812],[-19.044,115.507],[-14.674,119.931],[-16.944,120.423],[-23.303,118.76],[-25.964,119.586],[-26.493,119.597]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.298,-0.015],[0.109,-0.379],[-2.288,0.411],[-0.525,-0.691],[-1.497,-1.363],[0.182,-0.45],[0.33,-0.074],[0.234,0.043],[2.853,-0.223],[2.246,0.438],[0.933,-0.042],[0.913,-0.612],[0.955,0.513],[-0.61,0.967],[-2.626,1.184],[-0.889,0.826],[-1.143,-1.046],[0,0],[1.103,-0.31],[0.664,-0.321],[0.397,-1.154],[-2.874,2.008]],"o":[[-0.11,0.379],[-0.642,2.229],[0.838,-0.151],[1.229,1.616],[0.236,0.215],[-0.14,0.347],[-0.238,0.054],[-2.85,-0.523],[-2.267,0.177],[-0.903,-0.176],[-1.459,0.065],[-0.615,-0.925],[-1.045,-0.561],[1.366,-2.167],[0.993,-0.448],[0.936,-0.87],[0,0],[0.379,1.134],[-0.708,0.199],[-0.824,0.399],[3.658,-0.818],[0.298,0.015]],"v":[[75.416,25.731],[75.085,26.868],[77.616,29.722],[79.529,30.407],[83.763,34.743],[84.3,35.504],[83.418,35.959],[82.684,36.015],[74.139,36.015],[67.369,35.553],[64.568,35.512],[62.363,37.844],[59.93,35.755],[59.251,33.448],[64.317,27.752],[67.14,25.483],[70.099,25.095],[70.104,25.104],[68.914,27.155],[66.854,27.969],[64.91,30.052],[74.523,25.685]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.27,0.05],[2.151,0.912],[0.069,1.188],[-0.788,0.054],[-1.229,-0.049],[-3.842,-0.185],[-0.181,0.906],[0.73,0.061],[1.27,0.46],[-0.039,0.501],[-0.438,0.041],[-1.253,-0.31],[-0.78,0.323],[0.686,0.478],[-0.462,0.706],[-0.84,-0.419],[-0.456,-0.501],[-0.606,1.369],[-0.64,0.015],[-0.316,-0.449],[-0.134,-0.084],[0.346,1.134],[-0.415,0.451],[-1.065,0.262],[-1.123,-2.487],[-1.061,-0.037],[-0.786,0.014],[0.658,-1.742],[0.07,-0.183],[-1.867,-0.726],[-1.172,-0.357],[-1.187,-0.314],[1.925,-0.449],[0.622,0.08],[1.601,-0.228],[3.575,-0.39],[2.737,-0.272],[0.732,0.288],[1.365,-0.026]],"o":[[-2.255,-0.447],[-0.837,-0.355],[0.788,-0.054],[1.227,0.107],[3.844,0.154],[1.69,0.082],[0.236,-1.184],[-1.323,-0.111],[-0.352,-0.127],[0.044,-0.566],[1.291,-0.122],[0.71,0.176],[-0.307,-0.843],[-0.577,-0.401],[0.474,-0.726],[0.606,0.302],[0.883,0.968],[0.257,-0.581],[0.759,-0.018],[0.049,0.069],[0.979,-1.175],[0.415,-0.451],[1.083,0.188],[2.652,-0.654],[0.53,1.174],[0.785,0.027],[1.884,-0.033],[-0.069,0.183],[-0.723,1.865],[1.142,0.444],[1.174,0.357],[-1.95,0.835],[-0.576,-0.075],[0.965,1.345],[-3.579,0.509],[-2.748,0.3],[-0.904,0.09],[-1.358,-0.534],[-2.243,-0.31]],"v":[[-10.17,125.255],[-16.913,123.82],[-18.804,122.025],[-16.441,121.863],[-12.76,122.174],[-1.226,122.59],[0.352,120.479],[-1.068,119.393],[-5.005,118.831],[-5.792,118.081],[-4.806,117.383],[-0.995,117.759],[1.205,117.861],[-0.395,115.994],[-0.94,114.396],[1.092,113.691],[2.733,114.933],[4.873,114.686],[6.233,113.437],[7.084,114.796],[7.369,114.981],[7.3,111.539],[8.546,110.187],[11.753,110.01],[16.7,112.295],[19.077,113.773],[21.435,113.757],[23.101,116.077],[22.89,116.626],[24.236,119.726],[27.712,120.925],[31.271,121.876],[25.371,122.931],[23.597,122.701],[22.002,126.489],[11.231,126.812],[2.994,127.093],[0.637,126.376],[-3.419,125.967]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.59],[-0.024,0],[-0.056,0.386],[1.15,-0.02],[0.089,-1.195],[-0.054,-0.832],[-1.011,-0.024],[-0.195,1.104]],"o":[[0.024,0],[0,-0.394],[0.173,-1.205],[-1.325,0.023],[-0.062,0.833],[0.054,0.838],[1.052,0.025],[0.101,-0.573]],"v":[[-17.714,71.623],[-17.641,71.623],[-17.632,70.441],[-19.146,68.918],[-21.113,70.797],[-21.169,73.305],[-19.776,74.902],[-17.732,73.391]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.135,-0.348],[-1.978,0.363],[0.095,1.018],[1.704,0.704],[0.911,0.375],[-0.135,0.67],[-0.569,0.033],[-0.878,-0.12],[-0.181,-1.204],[-0.259,-0.741],[-0.642,0.149],[0.115,0.431],[-0.135,1.732],[0.572,0.188],[1.538,0.529],[0.45,-0.687],[0.956,1.102],[0.275,0.097],[0.145,-1.745],[0.044,-2.02],[0.353,-0.764],[0.535,0.137],[-0.209,0.508],[-0.263,1.238],[0.367,1.803],[0.732,-0.073],[0.195,-0.517],[1.488,-1.683],[0.102,-0.321],[1.978,0.723],[0.32,-1.765],[-0.02,-0.538],[-0.792,0.03],[-2.474,0.015]],"o":[[1.165,0.195],[0.914,-0.168],[-0.108,-1.164],[-0.91,-0.376],[-0.526,-0.216],[0.133,-0.661],[0.9,-0.052],[1.097,0.15],[0.116,0.77],[0.238,0.681],[0.836,-0.194],[-0.429,-1.611],[0.039,-0.494],[-1.545,-0.508],[-0.768,-0.264],[-0.887,1.357],[-0.18,-0.207],[-1.643,-0.579],[-0.167,2.018],[-0.018,0.851],[-0.237,0.514],[-0.55,-0.141],[0.496,-1.208],[0.378,-1.78],[-0.109,-0.536],[-0.605,0.06],[-0.753,1.996],[-0.222,0.252],[-0.599,1.889],[-1.702,-0.622],[-0.096,0.528],[0.028,0.76],[2.468,-0.093],[2.224,-0.013]],"v":[[-7.111,81.79],[-2.05,80.837],[-0.469,79.221],[-1.458,75.86],[-4.194,74.745],[-5.093,73.572],[-3.818,72.807],[-1.181,73.116],[0.825,74.896],[1.478,77.158],[2.959,78.144],[3.132,76.803],[2.173,71.91],[1.388,70.789],[-3.227,69.207],[-5.243,69.665],[-7.902,69.786],[-8.676,69.373],[-10.864,70.888],[-11.116,76.944],[-11.754,79.362],[-12.993,79.916],[-13.72,78.816],[-13.113,75.083],[-13.132,69.656],[-14.226,68.695],[-15.125,69.643],[-17.671,75.52],[-18.173,76.416],[-21.069,77.735],[-23.165,78.907],[-23.262,80.524],[-22.029,81.678],[-14.652,82.045]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.857,0],[0.703,-0.083],[1.92,0.059],[0.013,0.695],[-0.513,0.063],[-0.896,-0.135],[-1.686,0.05],[-0.308,-0.241],[-2.853,-0.41],[-0.174,0.392],[-1.552,-0.493],[-1.517,0.195],[0.004,0.589],[0.418,0.051],[2.005,0.66],[2.772,0.011],[0.395,0.009],[0.034,0.815],[-0.571,0.027],[-2.403,-0.326],[-1.995,0.287],[-0.618,2.601],[-0.083,0.436],[3.268,-0.028],[0.484,0.075],[-0.029,0.588],[-0.462,-0.016],[0.292,2.229],[-0.063,0.184],[-0.833,-0.115],[-0.024,-0.647],[-0.035,-0.342],[-0.693,-0.155],[-0.372,0.549],[1.125,1.304],[-0.638,0.311],[-1.217,-0.016],[-0.338,0.052],[-0.056,0.809],[0.749,0.196],[-0.853,1.009],[-0.089,0.326],[-1.493,0.132],[0.177,1.215],[-0.001,0.148],[2.075,0.308],[0.159,0.647],[0.204,0.762],[-0.099,0.08],[-2.327,1.001],[-0.097,0.155],[-1.35,-1.548],[0.486,-2.692],[0.655,-0.639],[0.177,-2.119],[-0.738,0.112],[0.138,-1.87],[-0.45,-0.091],[-0.627,-0.131],[0.401,-1.665],[-1.137,-0.387],[-2.093,-0.321],[-2.647,-1.249],[1.153,-1.063],[-1.32,-0.671],[-1.422,-0.184],[0.194,-1.218],[-0.36,-0.235],[0.088,-1.22],[-0.68,-0.244],[-1.226,-0.347],[-1.704,-2.681],[0.262,-0.291],[0.306,0.103],[0.933,-0.184],[-0.46,-0.324],[0.219,-0.534],[0.462,0.143],[1.152,0.689],[1.072,-0.689],[0.285,0.057],[3.607,1.358],[0.337,1.015],[1.08,0.125],[0.631,-0.08],[0.902,1.263],[3.654,-0.188],[0.027,-1.13],[-1.016,-0.223],[-2.172,-0.531],[-0.249,-1.36],[-1.221,-0.074],[-0.138,-0.052],[0.139,-0.83],[0.583,-0.018],[0.789,0.027],[-0.436,1.552],[0.567,0.332],[1.567,-0.183],[1.895,0.27],[1.561,-0.151],[0.42,-0.388],[1.74,0.104],[0.133,-1.281],[0.577,-0.153],[1.342,-0.598],[-1.623,-0.094],[0.03,-1.268],[0.694,-0.023],[4.139,-0.518],[1.027,0.124],[-0.32,-1.085],[-2.58,-0.425],[0.086,-0.486],[0.35,-0.006],[1.383,-0.005],[0.101,0.429],[-0.348,0.121],[0.473,0.75],[2.074,0.123],[0.015,0.682],[-0.624,0.029]],"o":[[-0.797,-0.936],[-1.943,0.229],[-0.514,-0.016],[-0.011,-0.625],[0.877,-0.107],[1.661,0.251],[0.43,-0.013],[2.7,2.12],[0.466,0.067],[0.64,-1.445],[1.496,0.476],[0.408,-0.052],[-0.004,-0.619],[-2.139,-0.258],[-2.614,-0.861],[-0.395,-0.002],[-0.524,-0.012],[-0.037,-0.904],[2.424,-0.113],[1.949,0.264],[2.662,-0.383],[0.103,-0.432],[0.625,-3.266],[-0.492,0.004],[-0.438,-0.068],[0.026,-0.52],[2.55,0.089],[-0.024,-0.187],[0.201,-0.583],[0.767,0.106],[0.013,0.345],[0.069,0.67],[0.623,0.139],[0.941,-1.388],[-0.519,-0.601],[1.077,-0.525],[0.346,0.004],[0.848,-0.13],[0.066,-0.955],[-1.073,-0.28],[0.213,-0.252],[0.389,-1.431],[1.371,-0.121],[-0.021,-0.145],[0.02,-2.089],[-0.581,-0.086],[-0.188,-0.766],[-0.063,-0.234],[1.736,-1.401],[0.166,-0.072],[1.022,-1.628],[1.455,1.669],[-0.142,0.785],[-1.615,1.577],[-0.075,0.9],[1.399,-0.212],[-0.042,0.571],[0.628,0.127],[1.707,0.356],[-0.303,1.257],[1.987,0.676],[2.896,0.444],[1.019,0.481],[-0.908,0.837],[1.291,0.656],[0.92,0.119],[-0.09,0.564],[0.981,0.64],[-0.05,0.694],[1.226,0.44],[3.591,1.015],[0.182,0.286],[-0.298,0.331],[-0.853,-0.288],[0.263,0.741],[0.453,0.318],[-0.247,0.602],[-1.277,-0.396],[-0.822,-0.492],[-0.195,0.126],[-3.775,-0.761],[-0.918,-0.346],[-0.372,-1.12],[-0.634,-0.074],[-1.573,0.199],[-2.628,-3.677],[-1.152,0.059],[-0.026,1.105],[2.173,0.476],[1.374,0.336],[0.217,1.184],[0.145,0.009],[0.587,0.222],[-0.12,0.715],[-0.789,0.025],[-1.59,-0.055],[0.225,-0.8],[-1.259,-0.737],[-1.885,0.219],[-1.602,-0.228],[-0.624,0.06],[-1.425,1.318],[-1.137,-0.068],[-0.071,0.683],[-1.338,0.355],[1.628,0],[0.721,0.042],[-0.027,1.111],[-4.14,0.135],[-1.006,0.126],[-1.153,-0.139],[0.56,1.9],[0.406,0.067],[-0.077,0.435],[-1.383,0.023],[-0.36,0.001],[-0.106,-0.451],[1.144,-0.399],[-1.098,-1.742],[-0.447,-0.027],[-0.016,-0.734],[0.562,-0.026]],"v":[[-45.887,97.112],[-48.144,96.247],[-53.899,95.93],[-54.945,95.179],[-53.995,94.236],[-51.345,94.076],[-46.332,94.446],[-45.052,94.701],[-36.444,95.556],[-35.665,94.824],[-32.709,93.586],[-28.166,93.728],[-27.217,92.978],[-28.194,92.301],[-34.234,90.402],[-42.423,89.392],[-43.608,89.401],[-44.84,88.731],[-43.569,87.909],[-36.339,88.331],[-30.451,88.674],[-25.552,84.224],[-25.235,82.93],[-28.148,79.369],[-29.623,79.291],[-30.517,78.5],[-29.639,77.656],[-26.719,74.11],[-26.625,73.529],[-25.553,72.178],[-24.781,73.753],[-24.763,74.789],[-24.129,76.598],[-22.699,75.287],[-23.115,69.053],[-22.87,67.818],[-19.463,66.935],[-18.427,66.917],[-16.108,66.164],[-18.177,65.368],[-18.838,63.665],[-18.407,62.739],[-15.638,60.282],[-14.087,58.177],[-14.091,57.733],[-16.145,55.327],[-17.338,54.421],[-17.977,52.141],[-18.06,51.436],[-14.552,46.123],[-14.126,45.749],[-10.664,45.395],[-7.855,51.394],[-8.712,53.451],[-10.77,59.324],[-9.299,60.315],[-6.939,62.048],[-6.051,62.858],[-4.161,63.202],[-2.423,65.768],[-1.125,67.948],[4.924,69.618],[13.209,72.3],[13.677,74.346],[14.47,77.052],[18.597,78.17],[20.091,79.667],[20.88,80.62],[22.351,83.332],[23.162,84.934],[26.538,86.739],[32.851,93.716],[32.842,94.692],[31.882,94.657],[29.248,94.5],[30.614,95.683],[31.13,96.933],[29.847,97.294],[26.22,95.635],[23.499,95.172],[22.638,95.117],[11.556,91.976],[9.566,90.169],[7.137,88.52],[5.214,88.494],[1.455,86.925],[-8.66,84.143],[-10.266,86.282],[-8.72,88.08],[-2.132,89.014],[0.323,91.429],[2.399,93.352],[2.828,93.461],[4.105,94.628],[2.628,95.298],[0.257,95.299],[-1.493,93.021],[-2.108,91.672],[-6.148,90.725],[-11.895,90.489],[-16.603,90.603],[-18.413,91.156],[-23.263,92.401],[-25.353,93.914],[-26.47,94.85],[-30.538,95.58],[-25.655,95.61],[-23.67,96.416],[-25.62,97.101],[-38.046,97.383],[-41.137,97.155],[-42.442,98.591],[-39.078,103.097],[-38.454,103.96],[-39.246,104.471],[-43.394,104.504],[-44.199,104.016],[-43.655,103.281],[-43.24,101.413],[-47.975,98.593],[-49.155,98.045],[-47.87,97.118]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.046,-0.111],[0.046,0.111]],"o":[[-0.046,-0.111],[0.046,0.111]],"v":[[-27.482,-17.523],[-27.621,-17.856]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.094,-0.009],[-0.09,0.024]],"o":[[0.09,-0.024],[-0.086,0.038]],"v":[[-22.915,-8.384],[-22.645,-8.456]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.84,-0.022],[0.068,-0.624],[0.695,-0.31],[-0.057,0.42]],"o":[[0.428,0.049],[-0.127,1.165],[-0.423,0.189],[0.123,-0.912]],"v":[[-61.689,0.511],[-60.716,1.12],[-62.682,2.263],[-63.261,1.696]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.659,-0.193],[0.016,0.451],[-0.588,0.175],[-0.006,-0.535]],"o":[[-0.63,0.087],[-0.029,-0.836],[0.514,-0.153],[0.01,0.879]],"v":[[-38.331,12.126],[-39.154,11.332],[-37.877,10.161],[-36.993,10.843]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.161,0.053],[-0.01,-0.757],[0.629,-0.246],[0,0.68]],"o":[[0.597,-0.053],[0.017,1.331],[-0.577,0.226],[0,-0.911]],"v":[[-52.99,11.788],[-51.865,12.994],[-53.662,13.895],[-54.61,13.198]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.936,-0.016],[0.051,0.565],[-0.53,-0.099],[-0.018,-0.601]],"o":[[-0.341,-0.027],[-0.051,-0.571],[0.579,0.109],[0.02,0.672]],"v":[[-38.882,33.654],[-39.71,33.119],[-37.733,30.97],[-36.767,32.094]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.09,-1.048],[0.83,0.066],[-0.091,0.738],[-1.047,-0.118]],"o":[[-0.158,0.592],[-0.546,-0.044],[0.091,-0.738],[0.667,0.075]],"v":[[-63.047,34.363],[-64.432,35.6],[-65.74,34.475],[-64.23,33.023]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.1,-0.048],[0.132,-0.941],[0.953,-0.101],[-0.054,0.683]],"o":[[0.431,0.087],[-0.142,1.009],[-0.674,0.071],[0.084,-1.071]],"v":[[-63.768,18.898],[-62.608,19.665],[-64.53,21.203],[-65.778,20.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.014,-0.567],[0.033,-0.971],[1.681,0.814],[-0.413,1.129]],"o":[[-0.453,0.933],[-0.062,1.836],[0.378,-1.141],[0.249,-0.68]],"v":[[9.938,-26.729],[9.679,-23.83],[7.267,-22.411],[8.411,-25.834]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.004,0.671],[-1.394,-0.789],[-0.108,-0.085],[0,0],[2.408,-0.032],[0.037,0.116]],"o":[[0.486,-0.852],[0.108,0.085],[0,0],[0.41,2.668],[-0.037,-0.116],[0.004,-0.671]],"v":[[-122.378,-68.52],[-120.179,-69.737],[-119.855,-69.483],[-119.814,-69.493],[-122.28,-66.16],[-122.391,-66.508]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.759,-0.217],[2.011,-0.142],[-0.736,1.027]],"o":[[-0.12,2.442],[-0.737,-1.376],[0.589,-0.821]],"v":[[-68.663,-146.461],[-71.592,-142.911],[-70.919,-146.514]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.131,-0.054],[0.352,-1.923],[0.698,0.658],[-0.273,0.423],[-0.597,1.145]],"o":[[0.073,1.975],[-1.032,-0.221],[-0.528,-0.498],[0.678,-1.054],[0.006,-0.011]],"v":[[-11.934,35.168],[-12.639,40.982],[-14.926,39.249],[-14.815,37.791],[-12.312,35.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.641,2.115],[0.014,-0.668],[-3.066,-1.422],[0.238,-0.053],[-0.073,3.021]],"o":[[0.486,0.602],[-0.064,3.111],[-0.232,0.081],[-2.986,0.665],[0.052,-2.14]],"v":[[-28.914,-17.857],[-28.612,-15.871],[-24.777,-8.727],[-25.473,-8.489],[-29.193,-11.436]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.628,0.035],[0.75,-0.504],[-0.268,-0.621],[-0.592,0.215],[-0.672,0.301],[0.138,0.775]],"o":[[-0.87,0.015],[-0.432,0.29],[0.288,0.666],[0.693,-0.251],[0.448,-0.201],[-0.129,-0.725]],"v":[[-71.115,4.102],[-73.596,4.838],[-74.36,6.116],[-72.817,6.494],[-70.759,5.688],[-69.622,4.809]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.116,0.125],[-0.944,-0.446],[0.672,-0.466],[0.693,-0.866],[0.218,0.037],[1.893,0.796],[0,0.523],[-0.371,0.195]],"o":[[1.082,-0.139],[0.85,0.402],[-0.873,0.606],[-0.122,0.152],[-1.977,-0.333],[-0.387,-0.163],[0,-0.526],[1.892,-0.995]],"v":[[-71.12,3.453],[-68.125,4.094],[-67.98,5.545],[-70.549,7.429],[-71.234,7.613],[-77.16,6.591],[-78.133,5.822],[-77.158,5.059]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.077,-0.639],[0.521,0.007],[0.045,1.269],[2.872,0.086],[-0.181,0.61],[-1.125,0.065],[-0.1,-1.226],[0.164,-1.9]],"o":[[-0.535,0.37],[0.087,-1.274],[-0.099,-2.798],[0.181,-0.61],[1.129,0.012],[1.446,-0.083],[0.157,1.924],[-0.055,0.636]],"v":[[-66.466,82.663],[-68.027,82.605],[-67.789,78.785],[-71.87,74.899],[-71.327,73.07],[-67.94,73.091],[-65.939,75.056],[-66.385,80.761]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.576,-0.77],[0.153,-0.732],[0.245,0.026],[0.298,3.304],[-0.165,3.393],[-0.601,0.042],[-0.06,-0.406],[0.133,-0.705],[0.061,-2.555],[-1.688,0.266]],"o":[[-0.73,0.411],[-0.247,-0.014],[-3.358,-0.351],[-0.308,-3.415],[0.02,-0.404],[0.527,-0.037],[0.108,0.727],[-0.483,2.567],[-0.042,1.76],[0.895,-0.141]],"v":[[-28.017,-22.357],[-29.057,-20.484],[-29.797,-20.529],[-33.417,-24.369],[-33.357,-34.554],[-32.945,-35.651],[-32.291,-34.627],[-32.179,-32.422],[-32.134,-24.755],[-30.263,-23.103]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.016,0],[-0.012,0.196],[-1.167,0.546],[-0.99,-0.616],[-0.422,-0.86],[1.69,-0.596],[0.665,-0.168],[0.08,1.731],[0,0.54]],"o":[[0,-0.196],[0.059,-1],[1.116,-0.523],[0.805,0.501],[0.789,1.61],[-0.648,0.229],[-1.678,0.423],[-0.025,-0.539],[-0.016,0]],"v":[[-87.933,-141.79],[-87.931,-142.379],[-87.042,-145.134],[-83.835,-144.594],[-81.946,-142.573],[-83.433,-138.95],[-85.39,-138.301],[-87.882,-140.169],[-87.886,-141.79]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.265,2.018],[-0.448,0.712],[0.26,-1.193],[-2.084,-2.873],[0.242,-1.147],[0.651,-0.152],[0.369,0.49],[0.28,0.337],[0.576,-1.103],[0.16,0.576],[-0.89,1.682]],"o":[[-0.008,-0.807],[1.036,-0.526],[-0.739,3.396],[0.701,0.966],[-0.128,0.608],[-0.671,0.157],[-0.265,-0.353],[-0.395,-0.476],[-0.383,0.734],[-0.465,-1.678],[0.893,-1.688]],"v":[[-84.059,39.589],[-83.573,37.274],[-82.266,38.207],[-80.504,47.623],[-79.994,50.895],[-81.107,52.154],[-82.615,51.441],[-83.32,50.316],[-84.695,50.224],[-85.71,50.074],[-85.489,45.066]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.009,-0.284],[-2.983,0.038],[-3.091,0.618],[-2.104,-1.229],[0.538,-0.381],[0.793,0.508],[0.218,-0.029],[1.58,-0.249],[2.006,-0.094],[0.439,-0.672],[0.17,-0.007],[0.09,-0.024],[0.626,0.083],[-0.064,3.111],[0.486,0.602],[0.047,0.876],[-0.73,0.411],[0.006,-0.988],[-0.032,-0.525],[-0.046,-0.111]],"o":[[-1.193,3.851],[3.18,-0.041],[2.486,-0.497],[0.626,0.365],[-0.674,0.477],[-0.248,-0.159],[-1.725,0.231],[-2.021,0.319],[-0.618,0.029],[-0.171,0.006],[-0.09,0.024],[-0.727,0.459],[-3.066,-1.422],[0.014,-0.668],[-0.048,-0.876],[0.153,-0.732],[0.679,0.915],[-0.003,0.526],[0.046,0.111],[-0.009,0.284]],"v":[[-27.509,-16.671],[-22.616,-10.39],[-13.24,-11.456],[-6.468,-10.025],[-6.376,-8.924],[-8.571,-8.689],[-9.3,-9.154],[-14.367,-9.38],[-20.381,-8.973],[-22.133,-8.475],[-22.645,-8.456],[-22.915,-8.384],[-24.777,-8.727],[-28.612,-15.871],[-28.914,-17.857],[-29.057,-20.484],[-28.017,-22.357],[-27.71,-19.433],[-27.621,-17.856],[-27.482,-17.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.073,-1.281],[0.052,-1.724],[0.574,-0.043],[0.046,0.401],[0.127,1.123],[0.547,-0.02],[0.07,-0.378],[-0.485,-2.688],[-1.059,0.268],[-0.443,0.008],[-0.932,-2.691],[0.842,-0.285],[0.157,0.897],[1.554,0.038],[0.035,2.943],[0.547,2.391],[1.664,-0.062],[3.141,0.78],[-2.468,0.126],[-0.13,0.147],[-1.499,-0.449],[-0.062,1.836],[-0.453,0.933],[0.708,-1.267]],"o":[[-0.031,1.724],[-0.013,0.416],[-0.593,0.044],[-0.13,-1.123],[-0.048,-0.421],[-0.459,0.016],[-0.5,2.699],[0.161,0.892],[0.42,-0.106],[2.781,-0.049],[0.258,0.746],[-0.778,0.264],[-0.313,-1.783],[-2.991,-0.074],[-0.028,-2.408],[-0.383,-1.672],[-3.205,0.119],[2.378,-1.101],[0.291,-0.005],[1.5,-1.694],[1.681,0.814],[0.033,-0.971],[1.562,0.203],[-0.701,1.253]],"v":[[10.839,-20.842],[10.738,-15.669],[10.242,-14.589],[9.618,-15.589],[9.326,-18.969],[8.635,-19.954],[8.104,-19.01],[8.196,-10.929],[9.809,-9.742],[11.135,-9.806],[15.86,-6.429],[15.277,-4.722],[13.515,-5.539],[10.53,-7.6],[6.692,-11.587],[6.407,-18.807],[4.106,-20.424],[-5.442,-21.322],[1.916,-22.329],[2.769,-22.361],[7.267,-22.411],[9.679,-23.83],[9.938,-26.729],[11.174,-24.681]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,-0.429],[1.127,0.186],[2.16,0.376],[-0.095,-0.545],[-0.447,-2.496],[-0.892,0.307],[-0.578,0.118],[-0.159,-0.563],[0.442,-0.084],[0.504,0.169],[0.162,-1.266],[0.287,-0.394],[0.033,0.263],[-0.347,2.502],[0.23,1.755],[0.746,0.03],[0.037,0.583],[-0.445,0.19],[-0.601,0.033],[-0.014,5.748],[1.314,-0.001],[-0.027,0.876],[-0.557,1.734],[-1.17,-0.176],[-0.051,-1.224],[0.186,-1.034],[-0.111,-3.606],[0.114,-3.353],[-0.79,-0.173],[-0.137,0.723],[0.181,1.109],[-0.023,1.873],[-0.915,0.297],[-0.005,-0.814],[0.337,-2.454],[-1.405,-0.201],[-1.07,-0.137]],"o":[[-0.756,1.457],[-2.163,-0.357],[-0.986,-0.172],[0.436,2.495],[0.166,0.924],[0.558,-0.192],[0.735,-0.149],[0.216,0.765],[-0.579,0.11],[-1.988,-0.667],[-0.055,0.432],[-0.471,0.047],[-0.309,-2.5],[0.248,-1.79],[-0.113,-0.863],[-0.423,-0.017],[-0.038,-0.6],[0.6,-0.256],[-0.348,-5.761],[0.003,-1.376],[-1.035,0.001],[0.055,-1.768],[0.399,-1.242],[1.189,0.179],[0.043,1.032],[-0.637,3.546],[0.104,3.352],[-0.039,1.152],[0.926,0.202],[0.2,-1.058],[-0.303,-1.859],[0.01,-0.822],[0.544,0.758],[0.017,2.466],[-0.176,1.28],[1.069,0.153],[0.649,0.083]],"v":[[-45.951,76.069],[-49.072,76.795],[-55.552,75.665],[-56.608,76.861],[-56.192,84.384],[-54.868,85.3],[-53.157,84.833],[-51.847,85.76],[-52.794,86.53],[-54.537,86.729],[-56.704,88.68],[-56.934,89.969],[-57.386,89.382],[-57.479,81.87],[-57.727,76.574],[-59.276,75.526],[-60.34,75.006],[-59.305,74.12],[-57.556,74.261],[-57.688,57],[-59.459,54.913],[-60.672,53.546],[-60.386,48.252],[-57.532,46.372],[-55.229,48.895],[-55.37,51.991],[-56.358,62.721],[-56.206,72.777],[-54.719,74.171],[-53.271,73.093],[-53.006,69.869],[-53.169,64.255],[-52.021,62.382],[-51.735,64.823],[-51.972,72.215],[-50.374,74.498],[-47.197,75.159]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.419,-0.464],[0.241,0.047],[0.189,-2.386],[1.311,0.599],[0.411,-0.953],[0.535,0.09],[0.037,0.379],[-0.045,2.611],[-0.124,0.036],[0.162,1.084],[0.566,2.316],[-0.802,0.225],[-0.479,-0.676],[-0.793,-0.06],[-0.546,0.473],[-0.441,0.182],[0.104,1.27],[-0.51,0.004],[-1.327,-0.084],[-0.812,1.015],[-0.535,0.37],[-0.16,0.315],[-0.725,-0.072],[-0.142,-0.457],[-0.125,-0.206],[-0.498,-0.045],[0.028,-1.141],[-0.011,-0.934],[0.58,-0.727],[0.778,0.553],[1.167,0.364],[0.232,-0.967],[-0.76,-2.256],[0.979,-0.733],[0.686,0.438],[0.427,-0.484]],"o":[[-0.244,-0.03],[-2.406,-0.465],[-0.082,1.034],[-1.181,-0.539],[-0.15,0.349],[-0.447,-0.075],[-0.255,-2.608],[0.003,-0.176],[1.69,-0.493],[-0.348,-2.329],[-0.191,-0.781],[0.881,-0.247],[0.417,0.59],[0.858,0.065],[0.368,-0.319],[0.892,-0.368],[-0.053,-0.655],[1.332,-0.01],[1.275,0.081],[0.521,0.007],[0.365,-0.103],[0.204,-0.402],[0.656,0.065],[0.07,0.224],[0.092,0.392],[1.39,0.125],[-0.023,0.933],[-0.575,0.73],[-0.577,0.724],[-1.02,-0.726],[-1.013,-0.316],[0.059,2.281],[0.348,1.034],[-0.85,0.637],[-0.515,-0.329],[-0.413,0.469]],"v":[[-75.71,101.568],[-76.443,101.475],[-79.28,103.57],[-80.907,104.782],[-83.045,105.918],[-83.795,106.668],[-84.479,105.789],[-84.524,97.956],[-84.279,97.451],[-83.538,94.839],[-84.478,87.827],[-83.205,86.031],[-81.31,87.138],[-80.312,88.951],[-79.093,87.286],[-77.894,86.449],[-76.245,84.538],[-75.166,83.828],[-71.171,83.839],[-68.027,82.605],[-66.466,82.663],[-65.752,81.964],[-64.912,80.953],[-64.158,82.069],[-63.79,82.69],[-63.1,83.523],[-61.538,85.729],[-61.513,88.531],[-63.238,90.722],[-65.293,91.075],[-68.659,89.725],[-70.382,90.609],[-69.947,97.442],[-70.898,100.116],[-73.006,99.967],[-74.454,100.176]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.042,-0.515],[0.654,0.034],[-0.037,0.564],[-0.675,-0.017]],"o":[[-0.092,0.599],[-0.558,-0.029],[0.044,-0.669],[0.617,0.015]],"v":[[14.02,-234.18],[12.989,-233.158],[12.115,-234.146],[13.257,-235.256]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.04,0.024],[-0.029,-0.078],[0.04,-0.024],[0.029,0.078]],"o":[[0.039,0.074],[0.003,0.008],[-0.038,-0.074],[-0.003,-0.008]],"v":[[239.532,205.751],[239.642,205.976],[239.528,206.045],[239.42,205.82]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.147,0.026],[-0.149,-0.343],[0.151,-0.19],[2.113,-2.271],[0.465,0.356],[-0.21,0.434],[-3.431,1.064]],"o":[[0.343,-0.004],[0.116,0.267],[-1.935,2.437],[-0.382,0.41],[-0.35,-0.268],[1.478,-3.061],[0.187,-0.058]],"v":[[232.968,-48.753],[233.776,-48.454],[233.577,-47.788],[227.218,-40.993],[225.887,-40.923],[225.578,-41.945],[232.434,-48.655]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.29,-0.444],[-0.233,0.451]],"o":[[-0.033,-0.483],[0.159,0.498]],"v":[[126.988,-119.249],[127.156,-120.665]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.71,0.042],[0.251,-0.315],[0.358,0.121],[0.36,0.428]],"o":[[0.46,0.18],[-0.233,0.292],[-0.506,-0.172],[0.661,-0.424]],"v":[[111.033,-123.974],[111.203,-123.177],[110.288,-122.909],[108.922,-123.7]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.022,0.294],[-0.279,0.497],[0.186,-1.511],[1.264,0.908]],"o":[[0.28,-0.497],[1.084,-0.053],[-0.823,0.476],[-0.022,-0.294]],"v":[[96.684,-139.669],[97.523,-141.159],[99.404,-139.631],[96.749,-138.786]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.558,-1.285],[-0.01,1.201],[0.304,0.371],[-0.417,1.261],[-0.159,-0.793]],"o":[[-0.812,0.776],[0.004,-0.437],[0.108,-1.286],[1.379,-0.068],[0.254,1.279]],"v":[[97.69,-182.068],[96.452,-182.589],[96.155,-183.847],[96.473,-187.706],[97.753,-185.893]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.008,-0.758],[1.21,0.334],[-0.398,1.396],[-1.209,-0.892]],"o":[[0.014,1.222],[-1.837,-0.507],[0.417,-1.464],[0.834,0.615]],"v":[[109.752,-149.485],[107.58,-147.874],[105.123,-151.124],[108.104,-152.172]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.812,0.776],[0.256,-2.076],[0.716,-1.171],[0.661,0.162],[-0.021,0.476],[0.453,0.919],[-0.55,1.351],[0.004,-0.437]],"o":[[1.973,-0.535],[-0.154,1.251],[-0.275,0.451],[-0.587,-0.144],[0.048,-1.101],[-0.64,-1.296],[0.304,0.371],[-0.01,1.201]],"v":[[97.69,-182.068],[99.529,-180.419],[99.001,-176.674],[97.847,-175.744],[97.334,-176.993],[96.344,-179.88],[96.155,-183.847],[96.452,-182.589]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.379,-0.067],[-1.465,2.065],[-0.512,-0.155],[-0.015,-0.459],[-0.027,-2.181],[0.561,-0.376]],"o":[[-0.568,-2.471],[0.281,-0.396],[0.617,0.187],[0.071,2.175],[0.008,0.638],[-0.159,-0.793]],"v":[[96.473,-187.706],[97.805,-194.526],[99.047,-195.176],[99.45,-193.89],[98.773,-187.448],[97.753,-185.893]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,1.46],[-0.835,-0.527],[0.21,-1.425],[1.098,-0.472],[0.577,0.916]],"o":[[1.178,-0.601],[1,0.631],[-0.198,1.346],[-0.934,0.401],[0.01,-1.46]],"v":[[111.071,-212.518],[113.871,-211.716],[116.335,-209.312],[113.345,-207.519],[111.042,-208.137]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.251,1.458],[-0.742,0.597],[-0.112,-1.139],[0.823,-2.243],[0.28,-0.497],[-0.663,2.046],[-0.578,-0.118]],"o":[[0.573,-0.614],[0.927,0.983],[-0.318,2.412],[-0.279,0.497],[-0.822,-1.919],[0.426,0.119],[0.253,-1.466]],"v":[[97.717,-149.105],[98.954,-151.301],[99.789,-147.958],[97.523,-141.159],[96.684,-139.669],[96.178,-145.594],[96.962,-144.723]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.006,0.453],[-1.92,-0.718],[0.158,-1.022],[0.811,-0.025],[1.104,1.046],[0.445,0.451]],"o":[[2.14,-0.367],[0.936,0.35],[-0.177,1.146],[-1.569,0.048],[-0.46,-0.435],[-0.005,-0.453]],"v":[[111.644,-157.403],[117.635,-156.249],[118.935,-154.004],[116.941,-153.007],[112.999,-154.694],[111.661,-156.044]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.009,-1.872],[0.068,0.126],[2.623,1.281],[1.912,0.998],[1.146,-1.828],[0.151,1.987],[-1.421,-1.263],[-3.272,-1.074],[-0.073,1.699],[-0.034,0.342],[0.005,-0.819]],"o":[[-0.184,-0.063],[-1.515,-2.789],[-1.938,-0.946],[-1.964,-1.025],[-0.482,-1.977],[1.574,1.091],[2.657,2.36],[1.675,0.55],[0.015,-0.343],[0.666,0.557],[-0.011,1.872]],"v":[[127.573,-126.916],[127.037,-127.114],[120.108,-132.224],[114.33,-135.138],[111.23,-134.355],[111.043,-140.324],[115.737,-137.021],[124.854,-132.371],[126.674,-133.632],[126.774,-134.657],[127.601,-132.533]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.183,0.612],[-1.894,0.314],[0.007,1.159],[-0.379,0.949],[-0.883,-0.136],[-0.039,-0.641],[-1.083,-1.311],[0.007,-0.204],[-0.033,-0.483],[0.433,-1.587],[1.513,0.822],[0.941,-1.475],[0.76,-1.084],[0.736,-0.149],[-0.537,2.131],[-0.7,0.114],[-0.336,1.546],[1.166,-0.241],[0.639,1.229]],"o":[[1.897,-0.295],[1.153,-0.191],[-0.006,-0.985],[0.271,-0.679],[0.88,0.136],[0.091,1.49],[-0.008,0.205],[-0.233,0.451],[-0.522,1.587],[-1.493,0.176],[-1.222,-0.663],[-0.712,1.117],[-0.391,0.557],[-2.317,-1.78],[0.185,-0.733],[1.379,-0.225],[0.17,-0.781],[-1.215,0.252],[1.113,-0.905]],"v":[[116.386,-120.09],[122.076,-120.981],[123.754,-123.058],[124.078,-125.982],[125.54,-127.151],[126.386,-125.657],[127.179,-121.28],[127.156,-120.665],[126.988,-119.249],[127.015,-114.495],[122.6,-114.877],[116.541,-111.949],[114.36,-108.629],[112.782,-107.381],[111.984,-113.535],[113.672,-114.488],[116.578,-116.779],[115.583,-117.886],[112.614,-119.195]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.573,-0.614],[0.231,3.053],[-0.553,1.968],[-0.677,0.123],[-0.211,-0.503],[0.452,-2.7],[-0.223,-0.327],[1.21,2.269],[0.836,1.511],[0.286,0.731],[1.432,-0.798],[-0.191,0.395],[-0.796,0.132],[-0.393,-1.303],[-1.369,-1.661],[-0.414,0.543],[-0.62,4.31],[-0.454,-0.028],[-0.045,-0.334],[1.107,-1.896],[1.039,-2.251],[0.029,-0.855],[-1.322,0.5],[-0.153,-0.17],[0.874,-0.651],[-0.023,-0.416],[1.165,-0.231],[0.451,-0.902],[0.686,-1.311],[0.927,0.983]],"o":[[-0.136,-3.053],[-0.147,-1.948],[0.139,-0.494],[0.766,-0.139],[1.053,2.515],[-0.056,0.335],[1.642,-0.797],[-0.815,-1.53],[-0.382,-0.69],[-0.369,-0.944],[-0.343,0.191],[0.314,-0.649],[0.846,-0.141],[0.66,2.185],[0.516,0.625],[2.469,-3.236],[0.047,-0.324],[0.426,0.026],[0.295,2.194],[-1.244,2.13],[-0.353,0.765],[-0.024,0.708],[0.19,-0.072],[0.719,0.799],[-0.312,0.232],[0.087,1.571],[-0.971,0.192],[-0.661,1.323],[-0.112,-1.139],[-0.742,0.597]],"v":[[97.717,-149.105],[97.365,-158.266],[97.319,-164.148],[97.865,-165.527],[98.951,-164.339],[99.883,-156.509],[99.906,-155.512],[101.774,-162.276],[99.15,-166.742],[98.066,-168.845],[96.083,-170.057],[95.428,-170.501],[96.716,-172.246],[99.042,-171.323],[102.913,-166.158],[104.383,-166.396],[110.448,-176.885],[111.015,-177.62],[111.547,-176.837],[110.194,-170.742],[106.451,-164.358],[105.694,-161.975],[106.782,-160.806],[107.307,-160.65],[106.919,-156.384],[106.088,-155.619],[103.951,-153.594],[101.84,-151.894],[99.789,-147.958],[98.954,-151.301]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.078,0.376],[-1.419,0.858],[0.77,0.249],[-0.981,0.031],[-0.506,-0.172],[-0.233,0.292],[0.46,0.18],[-0.367,3.454],[-1.964,-1.025],[-1.938,-0.946],[-1.515,-2.789],[-0.184,-0.063],[0.827,-1.83],[0.091,1.49],[0.88,0.136],[0.271,-0.679],[-0.006,-0.985],[1.153,-0.191],[1.897,-0.295],[1.644,-0.143],[1.456,-0.59],[1.664,-0.073]],"o":[[1.263,-0.231],[-0.995,-0.322],[0.981,-0.031],[0.36,0.428],[0.358,0.121],[0.251,-0.315],[-0.099,-3.463],[1.146,-1.828],[1.912,0.998],[2.623,1.281],[0.068,0.126],[-0.154,1.877],[-1.083,-1.311],[-0.039,-0.641],[-0.883,-0.136],[-0.379,0.949],[0.007,1.159],[-1.894,0.314],[-0.337,-0.977],[-1.528,0.133],[-1.664,0.072],[-0.261,-0.219]],"v":[[104.457,-122.137],[108.514,-122.786],[105.978,-123.608],[108.922,-123.7],[110.288,-122.909],[111.203,-123.177],[111.033,-123.974],[111.23,-134.355],[114.33,-135.138],[120.108,-132.224],[127.037,-127.114],[127.573,-126.916],[127.179,-121.28],[126.386,-125.657],[125.54,-127.151],[124.078,-125.982],[123.754,-123.058],[122.076,-120.981],[116.386,-120.09],[114.65,-122.459],[110.106,-121.591],[105.115,-121.374]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.104,0.526],[-1.623,-0.407],[-0.999,0.043],[-0.073,-1.133],[-0.618,0.021],[-0.078,0.411],[-0.573,0.004],[-0.119,-0.361],[-0.006,-1.229],[-0.014,-2.27],[-1.098,0.876],[-0.567,-0.423],[-0.038,-1.072],[0.015,-0.343],[1.675,0.55],[2.657,2.36],[1.574,1.091],[-0.099,3.41]],"o":[[1.64,0.339],[0.963,0.242],[0.958,-0.041],[0.029,0.451],[0.576,-0.019],[0.08,-0.417],[0.445,-0.003],[0.395,1.201],[0.011,2.27],[0.005,0.728],[0.726,-0.579],[0.039,1.072],[-0.034,0.342],[-0.073,1.699],[-3.272,-1.074],[-1.421,-1.263],[0.075,-3.411],[0.015,-0.528]],"v":[[111.58,-152.136],[116.496,-151.101],[119.404,-150.649],[121.106,-149.306],[121.815,-148.176],[122.296,-149.263],[122.878,-150.297],[123.428,-149.361],[123.712,-145.688],[123.707,-138.877],[124.809,-138.143],[126.658,-137.874],[126.774,-134.657],[126.674,-133.632],[124.854,-132.371],[115.737,-137.021],[111.043,-140.325],[111.28,-150.558]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.018,0.644],[1.148,0.535],[0.34,-0.341],[-0.214,-0.332],[-0.544,-0.751],[-0.546,0.226]],"o":[[-0.236,-1.361],[-0.363,-0.169],[-0.342,0.344],[0.502,0.779],[0.25,0.346],[0.602,-0.249]],"v":[[122.724,-155.531],[120.367,-158.128],[119.278,-158.077],[119.251,-156.995],[120.842,-154.711],[121.87,-154.101]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.178,-0.601],[0.194,0.555],[-0.831,0.618],[0.219,0.4],[-0.347,1.084],[0.273,1.877],[-3.926,1.28],[-0.915,0.194],[-0.429,-0.605],[0.357,-0.456],[-0.317,-1.293],[-0.182,-0.075],[-0.121,0.217],[-0.856,-0.231],[-0.04,-0.685],[-0.123,-5.881],[0.037,-3.441],[0.422,-4.317],[-0.646,-1.908],[0.721,-2.558],[0.615,-0.152],[-0.156,-0.68],[-0.51,0.198],[-0.062,-0.516],[-0.107,-1.519],[-0.012,-2.361],[0.144,-3.163],[0.115,-3.742],[0.726,-0.579],[0.005,0.728],[0.011,2.27],[0.395,1.201],[0.445,-0.003],[0.08,-0.417],[0.576,-0.019],[0.029,0.451],[0.958,-0.041],[0.963,0.242],[1.64,0.339],[0.16,1.306],[-0.46,-0.435],[-1.569,0.048],[-0.177,1.146],[0.936,0.35],[2.14,-0.367],[-2.754,1.024],[0.048,1.689],[-0.558,0.34],[0.693,2.231],[-1.904,1.785],[1.808,0.893],[2.376,0.837],[0.18,1.104],[-0.177,2.818],[1.425,3.964],[-0.225,0.231],[-0.934,0.401],[-0.198,1.346],[1,0.631]],"o":[[-0.15,-0.57],[-0.302,-0.866],[0.352,-0.262],[-0.704,-1.285],[0.617,-1.926],[-0.596,-4.098],[0.887,-0.289],[0.742,-0.158],[0.413,0.582],[-0.961,1.23],[0.053,0.215],[0.273,0.112],[0.35,-0.626],[0.768,0.207],[0.341,5.844],[0.072,3.448],[-0.046,4.324],[-0.194,1.99],[0.834,2.462],[-0.166,0.589],[-0.709,0.176],[0.161,0.7],[0.625,-0.242],[0.182,1.514],[0.166,2.356],[0.017,3.155],[-0.17,3.74],[-0.567,-0.423],[-1.098,0.876],[-0.014,-2.27],[-0.006,-1.229],[-0.119,-0.361],[-0.573,0.004],[-0.078,0.411],[-0.618,0.021],[-0.073,-1.133],[-0.999,0.043],[-1.623,-0.407],[0.207,-1.299],[0.445,0.451],[1.104,1.046],[0.811,-0.025],[0.158,-1.022],[-1.92,-0.718],[-0.461,-3.287],[1.348,-0.501],[-0.021,-0.734],[2.031,-1.239],[-0.698,-2.247],[1.504,-1.41],[-2.252,-1.112],[-1.187,-0.418],[-0.453,-2.778],[0.252,-3.994],[-0.111,-0.308],[0.577,0.916],[1.098,-0.472],[0.21,-1.425],[-0.835,-0.527]],"v":[[111.071,-212.518],[110.613,-214.226],[111.111,-216.472],[111.736,-217.553],[112.218,-220.91],[112.031,-226.62],[116.509,-234.04],[119.231,-234.723],[121.053,-234.008],[120.788,-232.373],[120.518,-228.559],[120.915,-227.994],[121.428,-228.396],[122.89,-229.783],[123.665,-227.842],[125.316,-210.364],[125.286,-200.047],[124.957,-187.086],[126.037,-181.36],[125.954,-173.649],[124.635,-172.565],[123.822,-171.23],[124.982,-170.818],[125.822,-170.175],[126.371,-165.634],[126.689,-158.554],[127.016,-149.101],[126.658,-137.874],[124.809,-138.143],[123.707,-138.877],[123.712,-145.688],[123.428,-149.361],[122.878,-150.297],[122.296,-149.263],[121.815,-148.176],[121.106,-149.306],[119.404,-150.649],[116.496,-151.101],[111.58,-152.136],[111.661,-156.044],[112.999,-154.694],[116.941,-153.007],[118.935,-154.004],[117.635,-156.249],[111.644,-157.403],[114.021,-163.016],[116.368,-166.054],[117.558,-167.435],[119.333,-172.164],[120.603,-178.253],[120.108,-181.338],[113.296,-184.558],[111.355,-186.947],[111.133,-195.329],[110.843,-207.327],[111.042,-208.137],[113.345,-207.519],[116.335,-209.312],[113.871,-211.716]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.487],[-0.054,-0.639],[0.613,-0.322]],"o":[[0.575,0.131],[0.063,0.738],[0,-0.487]],"v":[[-242.487,74.606],[-240.839,74.946],[-242.485,76.066]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.156],[-0.11,1.365],[-0.647,0.008],[-0.069,-0.505],[0.198,-1.158],[0.081,-0.482],[0.702,0.067],[0.054,0.45]],"o":[[0.106,-1.456],[0.034,-0.414],[0.61,-0.008],[0.162,1.184],[-0.082,0.482],[-0.078,0.463],[-0.68,-0.065],[-0.029,-0.241]],"v":[[-188.928,-215.931],[-188.618,-220.119],[-188.049,-221.116],[-187.183,-220.109],[-187.473,-216.611],[-187.727,-215.165],[-188.412,-214.096],[-188.923,-215.286]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.95,0.291],[1.148,-1.594],[1.303,-0.314],[0.016,1]],"o":[[1.848,0.597],[-0.75,1.042],[-0.015,-1],[0.795,-0.492]],"v":[[-240.291,-28.562],[-239.48,-26.064],[-242.449,-23.855],[-242.496,-26.854]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,3.229],[-0.376,0.242],[-0.68,0.257],[-0.583,-0.625],[0.479,-0.625],[1.196,-2.468],[0.342,-0.651]],"o":[[0.472,-0.005],[0.615,-0.397],[0.931,-0.352],[0.492,0.528],[-1.697,2.215],[-0.321,0.662],[-0.001,-3.23]],"v":[[-242.488,-10.452],[-241.304,-10.978],[-239.374,-12.03],[-236.579,-12.018],[-237.657,-10.013],[-241.462,-2.721],[-242.485,-0.765]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.028,-0.701],[0.739,-0.827],[-0.853,-0.27],[-1.114,-0.335],[-0.691,-0.959],[-1.021,-0.091],[-1.93,0.167],[-1.348,-1.427],[0.438,-0.043],[1.245,0.877],[0.965,0.123],[1.302,0.474],[2.342,-0.563],[0.241,0.884],[-0.676,0.109],[-0.228,0.085],[-0.023,0.561],[0.388,0.168],[1.274,-0.035],[-0.131,1.192],[-0.75,1.042],[1.848,0.597],[-0.817,0.102],[-0.079,-0.512]],"o":[[-0.67,0.889],[-0.696,0.779],[1.109,0.35],[0.67,0.975],[0.598,0.829],[1.914,0.17],[2.464,-0.213],[0.552,0.584],[-1.544,0.151],[-0.784,-0.552],[-1.363,-0.173],[-2.235,-0.813],[-0.621,0.149],[-0.221,-0.809],[0.243,-0.039],[0.399,-0.149],[0.022,-0.541],[-1.129,-0.489],[-0.128,-1.193],[1.303,-0.314],[1.148,-1.594],[0.01,-1.28],[0.766,-0.096],[-0.351,0.671]],"v":[[-237.795,-26.718],[-239.822,-24.066],[-239.427,-22.618],[-236.087,-21.612],[-234.072,-18.692],[-231.651,-17.13],[-225.958,-16.364],[-221.069,-13.277],[-221.654,-12.549],[-225.832,-13.73],[-228.4,-14.747],[-232.338,-15.882],[-239.318,-16.091],[-240.924,-16.403],[-239.728,-17.552],[-239.007,-17.708],[-238.028,-18.454],[-238.918,-19.322],[-242.454,-20.277],[-242.449,-23.855],[-239.48,-26.064],[-240.291,-28.562],[-238.432,-29.911],[-237.631,-28.802]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.004,8.264],[-0.934,-2.308],[-0.082,-3.18],[-0.658,-2.986],[0.123,-1.567],[0.692,-0.485],[1.109,0.35],[-0.696,0.779],[-0.67,0.889],[1.376,0.807],[0.766,-0.096],[0.01,-1.28],[0.795,-0.492]],"o":[[2.629,0.616],[1.221,3.017],[0.079,3.067],[0.342,1.555],[-0.063,0.801],[-1.114,-0.335],[-0.853,-0.27],[0.739,-0.827],[0.578,-0.653],[-0.078,-0.512],[-0.817,0.102],[-0.95,0.291],[0.004,-8.264]],"v":[[-242.484,-51.647],[-237.562,-46.791],[-236.105,-37.368],[-235.053,-28.308],[-234.951,-23.604],[-236.087,-21.612],[-239.427,-22.618],[-239.822,-24.066],[-237.795,-26.718],[-237.631,-28.802],[-238.432,-29.911],[-240.291,-28.562],[-242.496,-26.855]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-182.428,-109.742],[-182.418,-109.753]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-186.276,-104.714],[-186.268,-104.705]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.094,-0.244],[0.001,0.125],[-0.194,-0.091],[0.01,-0.081]],"o":[[-0.072,-0.264],[-0.001,-0.121],[0.056,0.026],[-0.014,0.116]],"v":[[-116.784,-182.051],[-116.916,-182.564],[-116.693,-182.769],[-116.611,-182.522]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,-0.304],[0.309,-0.001],[-0.035,0.269],[-0.279,0.004]],"o":[[-0.068,0.322],[-0.286,0.001],[0.035,-0.273],[0.273,-0.004]],"v":[[-180.189,-108.943],[-180.783,-108.421],[-181.139,-108.925],[-180.656,-109.348]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.354,-0.209],[0.074,0.294],[-0.512,0.031],[-0.032,-0.402]],"o":[[-0.504,0.01],[-0.082,-0.327],[0.351,-0.021],[0.032,0.404]],"v":[[-189.35,-182.627],[-189.881,-183.328],[-189.528,-184.075],[-188.794,-183.555]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.378,-0.153],[0.006,0.271],[-0.432,0.07],[0.012,-0.378]],"o":[[-0.439,-0.04],[-0.007,-0.328],[0.4,-0.065],[-0.011,0.353]],"v":[[-205.677,-115.373],[-206.058,-116.036],[-205.74,-116.909],[-205.17,-116.205]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.415,0.241],[0.012,-0.251],[0.577,-0.087],[-0.043,0.288]],"o":[[0.347,-0.033],[-0.024,0.517],[-0.27,0.041],[0.075,-0.502]],"v":[[-188.577,-186.56],[-188.14,-186.123],[-188.94,-185.099],[-189.411,-185.48]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1,0.278],[0.828,-0.166]],"o":[[-0.37,1.321],[0.541,-0.641]],"v":[[-162.015,-120.507],[-164.21,-119.134]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.06,0.665],[-0.91,0.149],[-0.116,-0.825]],"o":[[-0.642,-0.188],[0.064,-0.706],[-0.46,0.897],[0,0]],"v":[[-182.418,-109.752],[-183.376,-111.035],[-181.94,-112.257],[-182.428,-109.742]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.375,0.506],[1.404,-0.466]],"o":[[0.649,-1.508],[-1.062,0.941],[0,0]],"v":[[-186.268,-104.705],[-182.813,-107.15],[-186.276,-104.714]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.451,-0.019],[2.448,-0.077]],"o":[[-2.41,1.075],[2.414,-0.693]],"v":[[-135.648,-122.614],[-142.985,-122.331]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.51,1.363],[-0.338,0.188],[1.26,-1.604]],"o":[[0.062,-0.357],[1.183,1.833],[-0.554,-1.452]],"v":[[-147.958,-190.717],[-147.429,-191.578],[-147.504,-186.397]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.649,0.089],[0.016,-1.77],[0.228,1.833]],"o":[[-0.016,1.77],[-0.788,-1.622],[0.648,-0.089]],"v":[[-192.457,-106.149],[-192.506,-100.839],[-194.403,-105.882]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.439,-0.912],[-0.205,1.355],[-0.687,0.112],[-0.277,-0.468],[0.562,-0.597]],"o":[[0.221,-1.639],[0.093,-0.613],[0.628,-0.103],[0.317,0.536],[-0.933,0.99]],"v":[[-171.983,-206.202],[-171.389,-210.557],[-170.347,-211.839],[-169.053,-211.023],[-168.842,-209.27]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.165,-0.767],[0.478,-0.894],[1.779,-0.932],[-0.195,0.475],[-0.507,1.279],[-0.76,0.156],[0.05,0.481],[-0.777,0.292],[-0.283,-0.571]],"o":[[-1.068,-0.325],[-0.838,1.569],[-0.118,-0.492],[1.503,-0.662],[0.214,-0.538],[0.71,-0.146],[-0.048,-0.47],[0.679,-0.256],[0.022,0.833]],"v":[[-164.575,-150.868],[-166.633,-149.75],[-169.636,-145.347],[-169.555,-146.799],[-167.387,-150.26],[-166.414,-151.546],[-166.022,-152.733],[-165.808,-154.12],[-164.434,-153.358]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.175,-0.018],[0.401,0.977],[-0.016,1.77],[-0.478,0.107],[-0.082,-2.835]],"o":[[-0.401,-0.977],[0.016,-1.77],[0.478,-0.107],[0.082,2.835],[-0.175,0.018]],"v":[[-191.304,-97.908],[-192.506,-100.839],[-192.457,-106.149],[-191.024,-106.468],[-190.779,-97.962]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.245,0.013],[-0.052,1.044],[-1.096,-0.021],[-0.017,-1.011]],"o":[[-1.202,-0.012],[0.053,-1.083],[1.174,0.022],[0.019,1.113]],"v":[[-139.281,-153.829],[-141.521,-155.887],[-139.362,-157.881],[-137.026,-155.855]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.351,-2.563],[-0.016,2.153],[-1.64,0.608]],"o":[[0.016,-2.154],[1.268,-0.471],[-1.521,2.885]],"v":[[-189.239,-100.859],[-189.192,-107.319],[-185.015,-108.869]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.58],[-1.867,-0.176],[1.952,-1.726]],"o":[[1.858,-0.041],[-1.861,1.57],[0,-1.58]],"v":[[-169.666,-143.263],[-164.098,-143.503],[-169.666,-138.524]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.144,0.633],[0.449,-1.494],[0.794,-0.275],[0.062,0.426]],"o":[[2.187,1.165],[-0.264,0.877],[-0.439,0.152],[-0.076,-0.521]],"v":[[-119.386,-206.574],[-116.995,-199.798],[-118.921,-198.355],[-119.587,-198.858]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.007],[2.316,0.016],[0.06,0.641],[-0.356,0.102],[-2.66,-0.416],[-0.695,-0.386],[0.074,-0.425],[0.415,-0.006],[0.837,0]],"o":[[-2.316,0],[-0.41,-0.003],[-0.048,-0.518],[2.526,-0.721],[0.792,0.124],[0.283,0.157],[-0.083,0.474],[-0.837,0.011],[0,-0.007]],"v":[[-174.217,-104.742],[-181.165,-104.75],[-182.226,-105.238],[-181.38,-105.886],[-173.651,-106.764],[-171.412,-106.035],[-170.792,-105.305],[-171.706,-104.724],[-174.217,-104.721]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.019,-1.445],[1.436,-0.002],[-0.012,1.545],[-1.671,-0.035]],"o":[[-0.02,1.508],[-1.403,0.002],[0.011,-1.436],[1.4,0.029]],"v":[[-141.802,-211.382],[-144.702,-208.375],[-147.491,-211.468],[-144.34,-214.093]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.858,-0.041],[-0.01,0.695],[-0.838,1.569],[-1.068,-0.325],[-0.688,-1.606],[-0.215,-0.384],[0.764,-0.134]],"o":[[0.01,-0.695],[1.779,-0.932],[0.478,-0.894],[-2.123,1.861],[0.172,0.403],[0.398,0.71],[-1.867,-0.176]],"v":[[-169.666,-143.263],[-169.636,-145.347],[-166.633,-149.75],[-164.575,-150.868],[-164.127,-145.892],[-163.485,-144.737],[-164.098,-143.503]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.062,-0.357],[0.081,-1.228],[0.495,-3.292],[0.751,-0.003],[0.089,0.76],[-0.083,4.63],[0.081,2.272],[-0.875,0.014],[0.003,-0.781],[0.025,-1.479],[-0.507,-0.479]],"o":[[-0.546,1.138],[-0.217,3.291],[-0.12,0.799],[-1.006,0.004],[-0.538,-4.603],[0.041,-2.263],[-0.023,-0.635],[0.894,-0.015],[-0.006,1.479],[-0.012,0.672],[-0.338,0.188]],"v":[[-147.958,-190.717],[-148.616,-187.124],[-148.598,-177.255],[-149.196,-175.058],[-149.841,-177.138],[-150.433,-190.994],[-150.108,-197.777],[-149.148,-199.177],[-148.023,-197.767],[-148.032,-193.33],[-147.429,-191.578]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.054,1.75],[-0.093,1.273],[-0.688,0.151],[-2.558,-1.927],[0.065,-0.498],[0.305,-0.139],[1.758,-0.876],[-0.088,-1.911],[0.26,-0.127],[0.194,0.208]],"o":[[-0.106,-1.125],[0.056,-0.773],[3.054,-0.673],[0.295,0.222],[-0.049,0.376],[-1.789,0.815],[-1.525,0.76],[0.011,0.232],[-0.335,0.164],[-1.191,-1.278]],"v":[[-186.282,-201.744],[-185.972,-205.397],[-184.743,-206.647],[-176.273,-205.038],[-175.507,-204.268],[-176.298,-203.688],[-181.663,-201.238],[-184.249,-197.468],[-184.451,-196.811],[-185.195,-197.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.406,4.414],[-1.81,-0.348],[-0.854,-2.263],[3.327,0.47],[0.01,1.019]],"o":[[1.224,1.2],[0.116,2.437],[1.195,3.166],[-1.038,-0.147],[-0.045,-4.419]],"v":[[-207.648,-192.975],[-203.476,-190.102],[-201.808,-183.107],[-205.894,-177.962],[-207.791,-179.718]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.022,0],[-0.013,-0.886],[2.185,0.207],[0.431,2.567],[-1.485,0.801],[-2.124,-0.091],[0.015,-0.852],[0,-1.28]],"o":[[0,0.886],[0.033,2.171],[-2.597,-0.246],[-0.249,-1.484],[1.856,-1.001],[0.887,0.038],[-0.023,1.28],[0.022,0]],"v":[[-151.268,-188.581],[-151.266,-185.923],[-154.394,-183.062],[-160.428,-188.668],[-158.516,-192.336],[-152.542,-193.693],[-151.329,-192.421],[-151.335,-188.581]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.649,-2.318],[-0.839,1.316],[-2.277,1.018],[-0.026,-0.472],[-2.17,1.198],[-0.427,0.56],[-1.8,1.292],[-2.431,-1.968],[0.925,-0.587],[0.006,-0.201],[0,0],[1.794,-0.804],[1.235,1.134],[0.303,-0.115]],"o":[[-1.53,-1.026],[1.301,-2.042],[0.723,-0.323],[0.135,2.442],[0.607,-0.335],[2.228,0.311],[2.6,-1.867],[-0.925,0.587],[-0.174,0.017],[0,0],[-1.752,0.9],[-1.128,0.506],[-0.167,-0.153],[-3.211,1.218]],"v":[[-236.072,-101.759],[-237.529,-105.908],[-232.243,-110.66],[-231.488,-110.052],[-228.441,-108.403],[-226.845,-109.694],[-220.972,-111.455],[-214.034,-111.193],[-216.809,-109.432],[-217.119,-109.149],[-217.126,-109.231],[-222.392,-106.558],[-225.974,-106.501],[-226.952,-106.424]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.503,-0.662],[-0.009,0.539],[-0.064,5.02],[-1.134,0.164],[-1.314,0.189],[0.349,-0.72],[-1.233,-1.17],[1.216,-0.266],[0.073,-0.704],[0.787,-1.343],[0.679,-0.256],[-0.048,-0.47],[0.71,-0.146],[0.214,-0.538]],"o":[[-0.384,-0.457],[0.083,-5.02],[0.016,-1.21],[1.314,-0.19],[0.755,-0.109],[-0.719,1.483],[0.912,0.865],[-0.955,0.209],[-0.145,1.392],[-0.283,-0.571],[-0.777,0.292],[0.05,0.481],[-0.76,0.156],[-0.507,1.279]],"v":[[-169.554,-146.799],[-169.893,-148.35],[-169.643,-163.409],[-167.899,-165.391],[-163.953,-165.933],[-163.214,-165.043],[-162.467,-161.22],[-163.119,-159.057],[-164.129,-157.541],[-164.434,-153.358],[-165.808,-154.12],[-166.022,-152.733],[-166.414,-151.546],[-167.387,-150.26]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.317,-0.137],[0.031,10.156],[-0.392,0.63],[-3.342,4.075],[-0.578,0.604],[-1.027,-1.149],[-0.687,-1.077],[-1.339,-0.783],[-1.109,1.984],[-0.647,1.274],[-1.985,-1.626],[-0.457,-0.375],[-0.324,-5.613],[0.875,-2.562],[0.254,2.266],[0.595,2.252],[1.222,0.749],[0.61,-2.884],[0.254,-1.603],[3.893,-2.45],[0.238,-0.451],[1.78,-3.244],[-1.24,-0.295],[-2.079,-1.071],[2.166,-1.386],[4.049,1.568]],"o":[[-0.012,-10.156],[-0.002,-0.801],[2.8,-4.501],[0.531,-0.648],[1.058,-1.106],[0.848,0.949],[0.843,1.322],[1.963,1.148],[0.696,-1.245],[1.187,-2.338],[0.458,0.375],[-0.114,5.625],[0.133,2.295],[-1.567,-2.228],[-0.257,-2.299],[-0.345,-1.306],[-2.471,-1.513],[-0.335,1.583],[-0.704,4.451],[-0.433,0.272],[-1.727,3.273],[-0.647,1.178],[2.254,0.536],[2.312,1.19],[-3.346,2.141],[-1.175,-0.455]],"v":[[-242.476,-151.253],[-242.524,-181.722],[-241.793,-183.765],[-232.026,-196.196],[-230.398,-198.11],[-227.372,-198.113],[-225.112,-195.014],[-221.843,-191.87],[-217.406,-193.043],[-215.513,-196.888],[-211.98,-197.673],[-210.607,-196.548],[-210.102,-179.701],[-211.09,-172.538],[-213.194,-179.294],[-214.091,-186.174],[-216.167,-189.473],[-222.119,-186.896],[-222.745,-182.065],[-229.375,-171.528],[-230.373,-170.47],[-235.585,-160.669],[-234.682,-158.749],[-228.104,-156.534],[-227.807,-152.481],[-238.714,-150.585]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.045,-0.075],[0.068,-0.052],[-0.011,0.066],[-0.068,0.053]],"o":[[-0.068,0.053],[-0.045,-0.075],[0.01,-0.062],[0.045,0.075]],"v":[[204.52,-131.79],[204.316,-131.633],[204.193,-131.854],[204.385,-132.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.79,0.83],[-0.132,-0.64]],"o":[[0.132,0.639],[-1.424,-0.372]],"v":[[53.064,-169.714],[53.461,-167.796]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.015,-0.55],[0.587,0.088],[-0.027,0.546],[-0.462,-0.001]],"o":[[-0.088,0.419],[-0.546,-0.082],[0.021,-0.434],[0.62,0.002]],"v":[[69.834,-154.032],[69.09,-153.184],[68.335,-154.258],[69.028,-155.027]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.896,0.549],[-0.693,1.001],[0.223,-0.736]],"o":[[0.693,-1.001],[-0.14,0.761],[-0.243,0.799]],"v":[[56.456,-163.942],[58.536,-166.946],[58.097,-164.669]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.345,-2.081],[1.327,0.629]],"o":[[-0.661,-1.232],[1.83,-0.443]],"v":[[138.32,-163.384],[135.586,-166.401]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.003,-0.568],[0.651,0.015],[-0.129,0.617],[-0.653,-0.057]],"o":[[-0.188,0.641],[-0.568,-0.013],[0.141,-0.679],[0.49,0.043]],"v":[[12.802,-183.288],[11.501,-182.374],[10.654,-183.275],[11.982,-184.124]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.897,-0.885],[1.42,0.015],[-0.878,-0.122]],"o":[[-1.356,0.318],[-0.176,-0.89],[1.004,0.139]],"v":[[92.292,-157.925],[88.19,-157.145],[89.28,-158.346]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.202,-0.017],[-1.617,0.618],[0.748,-0.234]],"o":[[1.147,-1.303],[-0.009,0.778],[-1.061,0.333]],"v":[[117.166,-4.961],[121.328,-7.816],[120.2,-6.303]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.687,-0.004],[0.085,-0.722],[0.732,-0.014],[-0.041,0.62]],"o":[[0.609,-0.004],[-0.098,0.829],[-0.671,0.013],[0.055,-0.838]],"v":[[34.978,-191.848],[35.984,-190.946],[34.537,-189.816],[33.639,-190.873]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.44,0.294],[0.096,-0.534],[0.705,-0.108],[0.06,0.488]],"o":[[0.657,0.005],[-0.135,0.752],[-0.649,0.099],[-0.111,-0.904]],"v":[[182.669,-63.451],[183.713,-62.591],[182.241,-61.104],[181.453,-62.324]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.019,0.498],[-0.825,0.018],[0.008,-0.741],[0.671,-0.05]],"o":[[-0.017,-0.645],[0.747,-0.017],[-0.009,0.847],[-0.707,0.053]],"v":[[201.145,-144.958],[202.062,-146.14],[203.105,-145.095],[201.875,-143.958]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.042,-0.787],[0.668,0.117],[-0.049,0.892],[-0.642,-0.051]],"o":[[-0.054,0.679],[-0.717,-0.125],[0.036,-0.656],[0.803,0.064]],"v":[[133.23,-174.192],[132.176,-173.239],[130.884,-174.57],[131.954,-175.515]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.02,-0.881],[0.693,-0.109],[-0.016,0.609],[-0.525,-0.04]],"o":[[-0.059,0.468],[-0.42,0.066],[0.015,-0.559],[1.144,0.088]],"v":[[138.582,-175.187],[137.978,-174.017],[136.482,-176.221],[137.327,-177.001]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.012,0.198],[-0.397,0.795],[-0.229,-0.892],[0.042,-0.677],[0.21,0.649]],"o":[[0.188,-0.826],[1.397,0.434],[-0.042,0.677],[-1.729,0.581],[-0.012,-0.198]],"v":[[97.269,-54.933],[97.632,-57.439],[98.632,-54.886],[98.505,-52.855],[97.304,-54.339]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.526,0],[0.335,0.053],[0.128,0.283],[-0.296,0.204],[-0.873,-0.16],[0.108,-0.396],[0.43,-0.042]],"o":[[0.039,0.004],[-0.302,-0.048],[-0.147,-0.324],[0.896,-0.617],[0.298,0.055],[-0.147,0.542],[-0.145,0.014]],"v":[[42.48,-189.15],[41.842,-189.215],[41.162,-189.712],[41.233,-190.664],[43.879,-190.487],[44.378,-189.695],[43.298,-189.152]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.591,0.017],[0.061,0.357],[-1.002,-0.274],[-0.031,-0.291]],"o":[[-0.341,-0.006],[-0.18,-1.049],[0.253,0.069],[0.06,0.554]],"v":[[131.499,-81.64],[130.903,-82.154],[133.411,-84.535],[133.893,-84.066]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.752,0.447],[0.019,0.093],[-0.65,0.519],[-0.639,-0.331],[0.06,-0.641]],"o":[[-0.045,-0.087],[-0.133,-0.635],[0.54,-0.431],[0.881,0.457],[-0.632,0.692]],"v":[[51.73,-221.812],[51.599,-222.075],[51.513,-223.961],[53.467,-223.851],[53.821,-222.032]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.157,0.546],[-1,-0.01],[-0.034,-0.738],[0.783,-0.088]],"o":[[0.05,-0.744],[0.787,0.008],[0.04,0.885],[-1.022,0.115]],"v":[[169.07,-168.872],[170.03,-170.438],[171.345,-169.099],[169.975,-167.425]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,-0.887],[0.607,0.012],[-0.015,0.729],[-0.55,0.053]],"o":[[-0.02,0.483],[-0.761,-0.015],[0.01,-0.488],[0.766,-0.074]],"v":[[60.867,-173.961],[59.953,-173.156],[57.978,-175.118],[58.725,-176.047]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.065,0.751],[-0.969,-0.036],[-0.014,-0.953],[0.78,-0.089]],"o":[[0.008,-0.808],[0.795,0.03],[0.014,0.957],[-0.828,0.095]],"v":[[76.025,-173.709],[77.115,-175.181],[78.647,-173.929],[77.147,-172.624]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.003,1.553],[0.529,-1.493],[-0.39,-0.449],[0.188,-0.826],[0.002,0.59]],"o":[[1.622,0.428],[-0.141,0.397],[-0.397,0.795],[-0.827,-0.098],[-0.005,-1.553]],"v":[[96.475,-60.902],[97.752,-58.658],[97.632,-57.439],[97.269,-54.933],[96.485,-56.244]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.641,-0.132],[0.113,1.038],[-0.568,-0.081],[-0.058,-1.33]],"o":[[-1.278,0.224],[-0.097,-0.888],[0.993,0.142],[0.046,1.05]],"v":[[38.468,-181.093],[36.65,-182.662],[37.826,-183.523],[40.137,-181.986]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.407,-1.291],[0.352,0.08],[0.692,0.962],[-0.341,0.388],[-0.394,-0.167]],"o":[[0.068,0.442],[-1.119,-0.253],[-0.286,-0.398],[0.288,-0.327],[1.201,0.508]],"v":[[41.259,-165.952],[40.626,-165.478],[37.814,-167.185],[37.869,-168.391],[38.922,-168.69]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.013,0.001],[-0.19,0.855],[-1.022,0.19],[0.061,-0.78]],"o":[[-0.651,-0.029],[0.231,-1.037],[0.835,-0.155],[-0.089,1.134]],"v":[[179.308,-57.016],[178.115,-57.92],[180.052,-60.092],[181.204,-58.556]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.753,-0.866],[-0.022,-1.464],[0.257,-0.439],[-1.391,1.192]],"o":[[-1.174,-0.173],[0.013,0.883],[-0.569,-1.352],[1.053,0.475]],"v":[[64.805,-155.165],[62.857,-153.651],[61.81,-153.327],[62.128,-157.218]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.921,0.012],[0.042,1.002],[-0.921,-0.025],[0.014,-1.078]],"o":[[-0.588,-0.098],[-0.039,-0.934],[0.815,0.022],[-0.013,1.008]],"v":[[28.937,-189.527],[27.293,-190.388],[28.969,-191.838],[30.8,-190.602]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.127,0.951],[-1.081,-0.037],[-0.033,-1.035],[0.969,0.022]],"o":[[0.189,-0.721],[1.235,0.042],[0.027,0.858],[-1.215,-0.027]],"v":[[29.796,-175.615],[30.961,-177.341],[32.5,-175.241],[31.255,-173.591]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.915,-0.067],[-0.012,1.025],[-1.012,-0.014],[0.017,-0.927]],"o":[[-0.961,-0.119],[0.014,-1.149],[1.062,0.014],[-0.019,1.026]],"v":[[55.023,-171.952],[53.421,-173.54],[55.208,-175.012],[56.723,-173.397]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.143,-1.866],[0.224,-0.106],[0.394,0.981],[-0.53,1.177]],"o":[[-0.225,0.106],[-0.599,-0.903],[-0.451,-1.122],[1.184,1.976]],"v":[[95.697,-85.184],[95.023,-84.867],[93.819,-87.829],[95.044,-90.989]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.02,0.606],[0.691,-0.024],[-0.083,-0.548],[-0.723,-0.008]],"o":[[-0.04,-0.685],[-0.6,0.021],[0.079,0.523],[0.687,0.008]],"v":[[147.505,1.228],[146.42,0.132],[145.682,1.16],[146.578,2.271]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.337,-0.004],[0.029,1.17],[-1.222,0.01],[0.002,-1.207]],"o":[[-1.354,0.165],[-0.029,-1.195],[1.128,-0.009],[-0.002,1.167]],"v":[[146.249,3.138],[144.532,1.224],[146.455,-0.695],[148.314,1.283]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.381,-0.216],[0.9,0.988],[-1.725,-0.221],[-0.157,-0.871],[0.8,-0.221],[0.881,0.457],[0.54,-0.431],[-0.133,-0.635],[-0.045,-0.087]],"o":[[-0.501,-1.305],[1.718,0.27],[0.795,0.102],[0.135,0.752],[0.06,-0.641],[-0.639,-0.331],[-0.65,0.519],[0.019,0.093],[-0.381,0.216]],"v":[[50.588,-221.163],[48.105,-224.301],[53.158,-224.736],[54.832,-223.594],[53.821,-222.032],[53.467,-223.851],[51.513,-223.961],[51.599,-222.075],[51.73,-221.812]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.038,0.243],[-0.01,0.189],[-0.466,-1.695],[1.216,-0.782],[0.358,1.473]],"o":[[0.01,-0.189],[1.285,-1.181],[0.27,0.982],[-0.663,0.427],[-0.058,-0.238]],"v":[[131.997,-213.497],[132.027,-214.065],[134.596,-213.361],[134.311,-210.425],[132.113,-212.77]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.023,-0.531],[0.156,-0.769],[0.472,0.578],[0.038,1.344],[-0.802,-0.566]],"o":[[-0.108,0.926],[-0.184,0.908],[-0.87,-1.064],[-0.023,-0.811],[0.562,0.397]],"v":[[135.839,-37.703],[135.534,-35.215],[134.282,-34.926],[133.03,-38.647],[135.02,-39.219]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.225,0.106],[1.514,-4.037],[0.275,2.22]],"o":[[2.581,1.371],[-0.925,-2.27],[0.224,-0.106]],"v":[[95.697,-85.184],[97.093,-78.368],[95.023,-84.867]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.003,-1.975],[0.056,-0.339],[0.841,0.73],[0.652,0.73],[-1.111,0.106],[-0.292,0.046]],"o":[[-0.011,0.15],[-0.167,1.005],[-0.744,-0.646],[-0.688,-0.77],[0.294,-0.028],[1.728,-0.27]],"v":[[28.63,-176.889],[28.564,-176.051],[27.087,-175.478],[24.893,-177.456],[25.508,-178.907],[26.384,-179.044]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.009,-0.9],[1.052,0.021],[0,1.194],[-0.944,-0.028]],"o":[[0.011,1.156],[-1.044,-0.021],[0,-0.99],[0.839,0.025]],"v":[[144.723,-181.738],[142.797,-179.521],[140.986,-181.199],[143.193,-183.406]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.201,-0.218],[-0.064,-1.198],[0.009,-3.069],[0.603,-0.005],[0,4.991]],"o":[[0.064,1.198],[-0.009,3.07],[-0.22,0.381],[0,-4.759],[0.33,0.359]],"v":[[97.205,-75.412],[97.397,-71.817],[97.369,-62.609],[96.473,-61.698],[96.473,-76.207]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-0.249],[1.747,0.494],[-0.418,0.171],[-1.246,-0.034],[-0.193,-0.486],[-0.514,-0.249]],"o":[[-2.033,0.668],[-0.402,-0.114],[1.135,-0.466],[0.536,0.015],[0.176,0.444],[-0.001,0.249]],"v":[[73.198,-196.955],[67.912,-198.274],[67.925,-199.058],[71.478,-199.906],[72.478,-198.935],[73.202,-197.702]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.432,1.385],[0.288,-2.162],[0.179,1.084]],"o":[[0.087,2.179],[-1.43,0.035],[-0.421,-2.552]],"v":[[95.876,-201.028],[95.574,-194.516],[93.577,-196.609]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.111,-0.773],[0.761,-0.071],[0.226,0.858],[0.288,0.726],[-1.161,0.28],[-0.238,-1.145]],"o":[[-0.149,0.807],[-0.787,0.073],[-0.2,-0.759],[-0.273,-0.689],[0.876,-0.212],[0.189,0.912]],"v":[[81.418,-154.534],[80.864,-152.574],[79.309,-154.266],[78.659,-156.529],[78.956,-158.266],[81.03,-157.153]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.812,-0.108],[0.881,0.079],[0.085,0.387],[-0.279,0.154],[-0.686,-0.173],[-2.408,0.211],[-0.015,-0.641],[0.517,-0.04]],"o":[[-1.137,-0.05],[-0.32,-0.029],[-0.098,-0.448],[0.56,-0.309],[2.344,0.592],[0.543,-0.048],[0.017,0.739],[-2.057,0.161]],"v":[[178.503,-122.45],[175.598,-122.591],[174.746,-123.049],[175.404,-123.714],[177.221,-124.16],[184.346,-123.643],[185.878,-123.237],[184.433,-122.819]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.265,-0.075],[-0.206,3.578],[-0.087,0.88],[-0.018,-0.416],[0.464,-1.773],[0.038,-1.565],[0.032,-0.831]],"o":[[-0.565,-3.607],[0.051,-0.884],[0.58,-0.021],[0.077,1.737],[-0.385,1.472],[-0.02,0.831],[-0.266,0.075]],"v":[[98.843,-96.186],[99.252,-106.93],[99.507,-109.573],[100.099,-108.783],[99.899,-103.581],[99.733,-98.905],[99.64,-96.413]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.113,-1.656],[0.906,0.198],[-0.055,1.272],[-0.591,0.158],[-0.491,-0.472]],"o":[[-0.815,0.199],[0.055,-1.272],[0.021,-0.498],[0.578,-0.155],[1.127,1.083]],"v":[[49.19,-167.25],[46.737,-166.69],[46.901,-170.505],[47.506,-171.722],[49.146,-171.345]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.033,0.668],[0.628,0.092],[1.653,0.863],[-0.342,0.457],[-1.19,-0.761],[0.221,-0.53],[0.214,-0.702],[0.176,0.444],[0.536,0.015],[1.135,-0.466],[-0.402,-0.114]],"o":[[0.23,0.921],[-1.877,-0.275],[-0.599,-0.313],[0.686,-0.916],[0.367,0.235],[-0.281,0.674],[-0.514,-0.249],[-0.193,-0.486],[-1.246,-0.034],[-0.418,0.171],[1.747,0.494]],"v":[[73.198,-196.955],[72.185,-196.01],[67,-198.036],[66.913,-199.266],[73.44,-200.684],[73.859,-199.802],[73.202,-197.702],[72.478,-198.935],[71.478,-199.906],[67.925,-199.058],[67.912,-198.274]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.084,-0.807],[2.348,0.392],[0.005,0.193],[1.409,2.744],[0,0.711],[-0.795,-0.053],[-0.311,-0.748],[-0.415,-0.935],[-1.643,1.083],[-0.174,0.087]],"o":[[-2.348,-0.392],[-0.005,-0.193],[4.135,-0.09],[-0.319,-0.621],[0,-0.821],[-0.503,0.631],[0.394,0.945],[0.802,1.809],[0.161,-0.106],[0.19,0.834]],"v":[[138.238,-158.337],[131.194,-159.514],[131.177,-160.094],[133.153,-163.279],[132.643,-165.244],[133.811,-166.359],[133.552,-164.308],[134.674,-161.449],[137.957,-160.496],[138.477,-160.76]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.476,0.072],[0.487,0.284],[-0.059,0.657],[-0.508,0.237],[-0.318,-0.814],[0.38,-0.245]],"o":[[-0.679,0.029],[-0.571,-0.333],[0.055,-0.612],[0.779,-0.363],[0.214,0.549],[-0.512,0.331]],"v":[[75.686,-210.098],[73.989,-210.408],[73.24,-211.886],[74.172,-213.113],[77.756,-211.548],[77.25,-210.468]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.098,-0.632],[0.3,-0.529],[0.631,0.109],[-0.065,0.656],[-0.219,1.058],[-0.641,0.016],[-0.093,-0.415]],"o":[[-0.015,0.615],[-0.342,0.602],[-0.696,-0.12],[0.106,-1.075],[0.166,-0.802],[0.814,-0.021],[0.14,0.623]],"v":[[176.213,-142.361],[175.778,-140.645],[174.255,-140.009],[173.27,-141.271],[173.769,-144.477],[175.297,-145.354],[175.908,-144.254]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.725,-3.305],[0.005,0.649],[-0.007,2.559],[-0.735,0.032],[-0.067,-0.426]],"o":[[-0.736,-0.582],[-0.022,-2.559],[0.001,-0.443],[0.561,-0.024],[0.507,3.214]],"v":[[179.44,-195.885],[178.571,-197.727],[178.533,-205.405],[179.093,-206.55],[179.811,-205.585]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.979,-0.134],[0.178,2.235],[1.255,-0.132],[0.124,0.488],[0,0],[-1.055,0.565],[0.183,-0.763],[-0.019,-1.902]],"o":[[-0.639,-2.215],[-0.058,-0.73],[-0.351,-0.436],[0,0],[1.01,-0.196],[0.228,0.703],[-0.445,1.858],[0.007,0.68]],"v":[[99.729,-111.001],[99.419,-117.717],[98.253,-119.276],[97.92,-120.748],[97.943,-120.726],[100.86,-120.371],[100.933,-118.241],[100.609,-112.563]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.441,0],[-0.953,-0.702],[0.733,-0.311],[1.359,-0.01],[0.007,1.209],[-1.166,-0.107]],"o":[[0.993,-0.125],[0.599,0.442],[-1.229,0.522],[-1,0.007],[-0.007,-1.208],[0.245,0.022]],"v":[[23.283,-206.734],[26.286,-205.824],[26.209,-204.625],[22.354,-203.678],[20.581,-205.149],[22.348,-206.737]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.882,0.79],[-0.561,0.47],[-0.188,-0.852],[-1.46,-1.662],[0.549,-0.283],[0.337,0.535],[0.189,1.209]],"o":[[0.115,-0.704],[0.988,0.229],[0.415,1.879],[0.272,0.31],[-0.567,0.292],[-0.687,-1.089],[-0.169,-1.079]],"v":[[97.67,-88.117],[98.616,-89.913],[100.047,-88.051],[101.384,-82.419],[101.107,-81.119],[99.737,-81.612],[98.837,-85.165]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.571,-0.036],[-0.073,1.463],[-0.928,0.023],[-0.021,-1.926]],"o":[[-1.688,-0.043],[0.06,-1.206],[1.007,-0.025],[0.011,1.026]],"v":[[141.606,-39.236],[138.974,-41.842],[140.849,-44.176],[142.869,-40.45]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.006],[0.385,0.05],[-0.014,1.221],[-1.588,-0.062],[-1.052,-0.655],[0.242,-0.84],[0.567,-0.02],[0.539,0]],"o":[[-0.392,0],[-0.644,-0.084],[0.012,-0.993],[1.177,0.046],[0.582,0.362],[-0.225,0.782],[-0.538,0.019],[0,0.006]],"v":[[67.404,-172.803],[66.23,-172.813],[64.589,-173.659],[66.154,-175.664],[69.574,-175.13],[70.48,-173.467],[69.02,-172.825],[67.404,-172.821]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.672,-0.118],[0.16,-0.863],[-0.152,-1.132],[0.094,-0.377],[0.709,-0.033],[0.114,0.523],[-0.399,1.555]],"o":[[0.864,-0.044],[-0.21,1.13],[0.05,0.373],[-0.167,0.674],[-0.807,0.038],[-0.338,-1.553],[0.168,-0.656]],"v":[[43.337,-171.67],[44.509,-170.551],[44.506,-167.17],[44.352,-166.012],[43.062,-164.765],[42.101,-166.041],[42.161,-170.717]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.148,-0.977],[-0.186,-2.871],[0.067,-0.071],[0.865,0.19],[-0.073,0.643],[-0.205,2.692],[0.906,1.08],[-1.257,0.305],[-0.303,-0.995]],"o":[[-0.216,2.855],[-0.062,0.076],[-0.375,0.394],[-0.919,-0.202],[0.306,-2.685],[0.096,-1.257],[-0.912,-1.087],[0.303,0.995],[-0.123,0.983]],"v":[[97.447,-47.506],[97.104,-38.928],[96.916,-38.702],[96.168,-37.382],[95.807,-39.15],[96.701,-47.206],[95.689,-50.798],[96.461,-53.43],[97.371,-50.445]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.867,3.729],[-0.046,0.387],[-2.348,-0.392],[0.632,-0.316]],"o":[[0.046,-0.387],[2.348,0.392],[0.118,0.744],[-3.92,1.961]],"v":[[131.055,-158.355],[131.194,-159.514],[138.238,-158.337],[137.36,-156.814]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.132,0.639],[-0.062,0.018],[-0.516,-1.567],[0.693,-1.001],[0.705,0.79],[0.296,0.492]],"o":[[0.041,-0.086],[1.485,-0.444],[-0.693,1.001],[-1.347,-0.221],[-0.376,-0.421],[-0.132,-0.64]],"v":[[53.064,-169.714],[53.19,-169.964],[58.536,-166.946],[56.456,-163.942],[54.363,-166.332],[53.461,-167.796]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.114,-0.89],[1.217,-1.473],[0.46,0.029],[0.091,0.375],[-0.21,1.931],[-0.653,-0.114]],"o":[[-0.349,1.7],[-0.255,0.309],[-0.5,-0.032],[-0.475,-1.97],[0.086,-0.789],[0.893,0.156]],"v":[[136.76,-63.012],[135.363,-57.989],[134.425,-57.383],[133.694,-58.191],[134.036,-64.016],[135.627,-64.602]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.146,-1.499],[0.009,-0.047],[1.26,-0.084],[0.126,0.736],[0.104,1.319],[-0.107,0.515],[-0.973,-0.046],[-0.055,-0.782]],"o":[[0,0.26],[-0.158,0.866],[-1.453,0.097],[-0.222,-1.3],[-0.042,-0.536],[0.136,-0.655],[0.88,0.042],[0.12,1.711]],"v":[[175.796,-153.184],[175.795,-152.827],[174.679,-150.59],[173.71,-152.595],[173.322,-156.543],[173.319,-158.153],[174.327,-159.804],[175.331,-158.098]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.628,-0.901],[-0.178,0.965],[0.882,1.058],[-0.961,0.602],[-1.501,0.409],[2.12,2.879],[0.852,2.362],[-0.677,-0.875],[-0.89,-1.94],[1.501,-0.785],[1.355,-0.579],[0.663,-0.409],[-0.868,-0.96]],"o":[[0.259,-0.95],[0.225,-1.219],[-0.943,-1.13],[1.289,-0.807],[3.474,-0.947],[-1.452,-1.972],[1.124,0.507],[1.291,1.669],[0.704,1.533],[-1.301,0.68],[-0.721,0.308],[-0.695,0.429],[1.416,1.565]],"v":[[123.423,-18.787],[124.184,-21.641],[123.64,-25.167],[124.239,-27.725],[128.406,-29.552],[130.07,-34.499],[126.096,-40.675],[128.218,-38.109],[131.768,-32.872],[130.798,-29.848],[126.731,-28.123],[124.605,-27.118],[124.286,-25.33]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.047,-1.882],[0.167,-0.552],[0.978,0.08],[0.04,0.956],[-0.022,1.125],[-0.469,0.059]],"o":[[-0.058,0.584],[-0.299,0.987],[-0.973,-0.08],[-0.047,-1.123],[0.009,-0.458],[1.815,-0.229]],"v":[[133.851,-52.346],[133.657,-50.598],[131.583,-49.32],[130.012,-50.958],[130.043,-54.333],[130.757,-55.111]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.495,0.01],[0.265,0.1],[0.041,1.502],[-1.337,-0.211],[-0.134,-0.057],[0.205,-1.597]],"o":[[-0.135,-0.012],[-0.919,-0.349],[-0.038,-1.38],[0.144,0.023],[1.005,0.426],[-0.143,1.113]],"v":[[195.086,-148.87],[194.369,-148.943],[191.873,-150.384],[195.531,-153.212],[195.956,-153.092],[198.084,-150.938]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.503,0.631],[-0.592,0.014],[-0.661,-1.232],[0.206,-0.89],[0.161,-0.106],[0.802,1.809],[0.394,0.945]],"o":[[0.592,-0.014],[1.327,0.629],[0.071,0.874],[-0.174,0.087],[-1.643,1.083],[-0.415,-0.935],[-0.311,-0.748]],"v":[[133.811,-166.359],[135.586,-166.401],[138.32,-163.384],[138.477,-160.76],[137.957,-160.496],[134.674,-161.449],[133.552,-164.308]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.085,2.63],[-0.305,1.002],[-0.868,-0.451],[-0.213,-0.603],[0.493,-1.767],[0.657,0.129]],"o":[[0.008,-0.772],[0.312,-1.022],[0.584,0.303],[0.595,1.688],[-0.148,0.532],[-2.358,-0.463]],"v":[[129.925,-149.459],[130.321,-152.257],[132.13,-152.97],[133.458,-151.632],[133.791,-146.437],[132.713,-145.775]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.027,-0.966],[1.434,0.362],[0.07,-0.635],[0.849,-0.04],[0.37,0.625],[-0.574,0.328],[-0.344,1.364],[-0.916,-0.847]],"o":[[-0.026,1.896],[-0.614,-0.155],[-0.077,0.702],[-0.941,0.045],[-0.336,-0.567],[1.356,-0.774],[0.304,-1.205],[0.965,0.892]],"v":[[131.421,-21.1],[129.555,-19.196],[128.508,-18.578],[127.39,-17.309],[125.776,-18.592],[125.968,-20.183],[128.002,-23.582],[130.097,-24.116]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.013,-0.493],[0.007,0.799],[-0.514,6.457],[-0.032,1.479],[-0.521,0.567],[-0.003,-1.068],[-0.009,-6.657],[-0.351,-0.593]],"o":[[-0.845,0.139],[-0.056,-6.451],[0.117,-1.471],[0.011,-0.519],[0.716,1.003],[0.019,6.657],[0.001,0.632],[-0.013,0.493]],"v":[[141.473,-133.173],[140.295,-134.245],[140.189,-153.599],[140.245,-158.035],[140.606,-159.687],[141.265,-156.504],[141.283,-136.532],[141.512,-134.651]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.015,0.891],[-0.051,0.186],[-1.035,0.27],[-0.36,-0.835],[-1.395,-0.842],[-1.097,-1.154],[0.445,-0.551],[0.42,0.252],[1.112,0.813],[2.137,-0.038]],"o":[[0.003,-0.037],[0.23,-0.837],[1.127,-0.294],[0.703,1.631],[1.354,0.817],[0.312,0.328],[-0.372,0.46],[-1.182,-0.711],[-1.61,-1.176],[-0.957,0.017]],"v":[[147.782,-184.97],[147.817,-185.399],[149.082,-187.567],[151.245,-186.147],[154.709,-182.854],[158.484,-180.021],[158.955,-178.807],[157.593,-178.816],[154.105,-181.044],[148.777,-183.318]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.3,0.476],[-1.047,-1.155],[-1.025,-2.351],[-0.73,-0.557],[-0.867,-1.042],[-0.246,-0.304],[0.29,-0.277],[0.209,0.115],[0.941,1.227],[0.599,0.368],[2.263,3.278],[-0.063,0.768]],"o":[[0.924,1.307],[1.793,1.979],[0.355,0.814],[0.495,1.366],[0.25,0.301],[0.176,0.216],[-0.204,0.195],[-1.346,-0.74],[-0.418,-0.546],[-2.16,-3.329],[-0.407,-0.59],[0.69,0.052]],"v":[[77.605,-145.972],[79.443,-141.68],[83.081,-134.927],[84.613,-132.785],[87.287,-129.721],[88.091,-128.863],[88.227,-128.098],[87.548,-128.173],[84.066,-131.066],[82.646,-132.538],[76.92,-142.945],[76.341,-145.037]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.104,-0.631],[-0.039,0.956],[1.009,0.879],[1.032,1.529],[0.009,1.78],[-0.823,0.476],[-0.386,-4.605]],"o":[[-1.178,0.381],[0.048,-1.179],[-0.412,-1.75],[-0.009,-1.78],[1.264,0.908],[0.373,4.606],[0.053,0.635]],"v":[[100.835,-123.922],[99.525,-125.149],[98.576,-128.396],[96.777,-133.445],[96.749,-138.786],[99.404,-139.631],[100.529,-125.815]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.037,1.022],[-0.461,2.107],[-0.887,-0.469],[-0.07,-0.068],[0.342,-2.126],[1.44,-0.241]],"o":[[0.647,-1.801],[0.208,-0.949],[0.086,0.046],[1.154,1.112],[-0.212,1.319],[-1.2,0.201]],"v":[[136.485,-53.977],[137.726,-60.06],[139.573,-60.769],[139.812,-60.597],[142.523,-56.742],[137.615,-52.305]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.014,0],[0.016,-1.573],[0.578,-0.154],[0.364,0.411],[-0.199,1.574],[0.456,0.876],[-2.222,0.178],[0.008,-0.755],[0,-1.573]],"o":[[0,1.573],[-0.004,0.426],[-0.553,0.147],[-1.038,-1.17],[0.118,-0.935],[-1.031,-1.983],[0.825,-0.066],[-0.016,1.573],[0.014,0]],"v":[[138.608,-148.457],[138.601,-143.738],[138.085,-142.65],[136.864,-143.215],[135.543,-147.243],[134.956,-149.922],[137.491,-154.396],[138.571,-153.176],[138.566,-148.457]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.178,0.381],[-1.72,-0.007],[-0.995,-0.322],[1.263,-0.231],[1.201,-0.23],[0.681,-1.042],[0,0],[-0.153,-1.217],[0.638,-0.222],[0.216,0.552],[0.273,0.228],[-0.924,0.821],[0.218,2.409],[-0.41,0.53],[0.048,-1.179]],"o":[[1.73,-0.148],[0.77,0.249],[-1.419,0.858],[-1.229,-0.11],[-1.021,0.196],[0,0],[-1.324,0.67],[0.056,0.441],[-0.775,0.27],[-0.143,-0.366],[-1.281,-1.07],[1.626,-1.444],[-0.054,-0.59],[1.009,0.879],[-0.039,0.956]],"v":[[100.835,-123.922],[105.978,-123.608],[108.514,-122.786],[104.457,-122.137],[100.801,-121.922],[97.943,-120.726],[97.92,-120.748],[96.812,-117.701],[96.663,-116.404],[95.507,-117.421],[95.002,-118.478],[95.28,-121.163],[98.001,-126.599],[98.576,-128.396],[99.525,-125.149]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.101,-0.248],[2.079,0.867],[-1.655,2.499],[-0.957,-1.8],[-1.134,-0.471]],"o":[[-0.041,2.349],[-3.148,-1.312],[1.126,-1.701],[0.469,0.882],[0.44,0.183]],"v":[[89.083,-194.675],[85.5,-192.172],[82.852,-198.372],[87.153,-198.13],[88.83,-195.644]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.065,-0.733],[0.62,0.832],[0.924,-1.709],[0.065,-0.283],[1.173,0.69],[0.048,0.714],[-0.642,0.292],[-0.834,0.423],[0.671,0.361],[0.437,0.227],[-0.315,0.711],[-0.781,-0.053],[-0.478,-1.861],[-1.207,-1.618]],"o":[[-1.105,-0.408],[-1.158,-1.554],[-0.133,0.246],[-1.19,-0.448],[-0.545,-0.321],[-0.052,-0.779],[0.851,-0.386],[0.75,-0.38],[-0.434,-0.233],[-0.484,-0.252],[0.271,-0.611],[1.658,0.113],[0.516,2.006],[0.43,0.577]],"v":[[80.264,-148.064],[78.178,-150.398],[75.591,-150.25],[75.386,-149.406],[71.681,-150.219],[70.625,-151.448],[71.623,-152.896],[74.136,-154.142],[74.119,-155.264],[72.808,-155.945],[72.053,-157.136],[73.537,-158.114],[76.848,-155.28],[79.603,-149.962]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.639,-2.215],[0.074,-0.475],[0.051,-0.884],[-0.565,-3.608],[0.358,-2.081],[0.115,-0.704],[0.424,-0.179],[0.007,0.32],[-0.529,5.882],[0.138,4.531],[-0.058,-0.73]],"o":[[-0.074,0.476],[-0.087,0.88],[-0.206,3.578],[-0.104,2.09],[-0.561,0.47],[-0.24,0.296],[-0.424,-0.188],[-0.135,-5.913],[0.405,-4.503],[1.255,-0.132],[0.178,2.235]],"v":[[99.729,-111.001],[99.507,-109.573],[99.252,-106.93],[98.843,-96.186],[98.616,-89.913],[97.67,-88.117],[97.044,-87.162],[96.716,-88.058],[97.555,-105.739],[98.253,-119.276],[99.419,-117.717]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.064,1.198],[-0.415,0.62],[-0.438,-0.044],[-0.104,-0.327],[-0.436,-2.713],[0.093,-3.245],[1.755,-1.04],[1.397,0.434],[-0.141,0.397],[1.622,0.428],[0.001,0.266],[-0.22,0.381],[-0.018,0.807],[-0.144,2.198],[1.111,-0.206]],"o":[[0.636,-0.537],[0.184,-0.275],[0.429,0.043],[0.843,2.647],[0.518,3.224],[-0.051,1.797],[-0.229,-0.892],[-0.39,-0.449],[0.529,-1.493],[-0.001,-0.265],[0.603,-0.005],[0.949,0.114],[0.048,-2.204],[0.073,-1.113],[-0.064,-1.198]],"v":[[97.205,-75.412],[97.946,-77.451],[98.629,-78.118],[99.17,-77.339],[100.499,-69.202],[100.801,-59.474],[98.632,-54.886],[97.632,-57.439],[97.752,-58.658],[96.475,-60.902],[96.473,-61.698],[97.369,-62.609],[98.555,-63.852],[98.771,-70.461],[97.397,-71.818]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.027,-0.077],[0.848,1.789],[0.676,0.033],[1.32,-0.109],[1.347,1.135],[-0.369,0.279],[-3.028,-2.67],[-1.886,-1.335],[-0.27,-0.63]],"o":[[-1.392,-0.55],[-0.351,-0.741],[-1.328,-0.065],[-2.039,0.169],[-0.417,-0.351],[2.628,-1.99],[1.725,1.521],[0.528,0.374],[0.396,0.924]],"v":[[72.118,-190.921],[68.063,-193.266],[66.285,-194.104],[62.296,-194.137],[57.683,-196.42],[57.79,-197.395],[66.231,-197.701],[71.824,-193.614],[73.155,-192.28]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.05,0.645],[0.996,0.684],[-0.146,0.66],[-0.531,0.023],[-1.273,-0.867],[-1.773,-1.089],[0.251,-0.847],[0.836,0.06],[1.319,-1.131],[1.559,0.027],[0.23,0.139],[-0.095,0.716],[-0.699,-0.036]],"o":[[-1.071,-0.814],[-0.567,-0.389],[0.166,-0.747],[1.438,-0.064],[1.724,1.174],[0.731,0.449],[-0.198,0.669],[-1.703,-0.122],[-1.377,1.181],[-0.293,-0.005],[-0.588,-0.355],[0.108,-0.813],[0.915,0.048]],"v":[[49.269,-194.167],[46.263,-196.43],[45.623,-197.92],[46.91,-198.593],[50.996,-197.708],[56.682,-195.304],[58.437,-193.606],[56.023,-193.197],[51.204,-192.349],[46.8,-191.255],[45.932,-191.375],[44.733,-192.913],[46.385,-193.797]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.565,0.962],[-0.108,-1.234],[-0.801,-0.057],[-0.065,-0.771],[0.797,-1.898],[0.38,-0.087],[0.163,1.116],[1.309,0.234],[1.213,0.581],[-0.068,0.645],[-0.563,0.12]],"o":[[0.816,-0.125],[0.074,0.841],[0.819,0.059],[0.158,1.879],[-0.38,0.087],[-0.93,0.214],[-0.22,-1.504],[-1.297,-0.232],[-0.515,-0.247],[0.06,-0.564],[1.892,-0.404]],"v":[[91.743,-215.778],[93.326,-214.77],[95.124,-213.519],[96.241,-212.334],[96.355,-206.699],[95.216,-206.436],[93.337,-207.46],[90.782,-209.638],[86.94,-210.588],[86.087,-211.827],[86.92,-213.108]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.336,-0.517],[-1.001,-2.215],[0.948,-2.428],[0.355,0.814],[1.793,1.979],[0.924,1.307],[0.748,1.139],[-0.133,0.246],[-1.158,-1.554],[-1.105,-0.408]],"o":[[-0.131,0.737],[1.313,2.025],[1.121,2.482],[-0.73,-0.557],[-1.025,-2.351],[-1.047,-1.155],[0.282,-1.805],[0.065,-0.283],[0.924,-1.709],[0.62,0.832],[0,0]],"v":[[80.293,-148.046],[81.059,-146.357],[84.647,-140.084],[84.613,-132.785],[83.081,-134.927],[79.443,-141.68],[77.605,-145.972],[75.386,-149.406],[75.591,-150.25],[78.178,-150.398],[80.264,-148.064]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.845,0.139],[0.048,-5.316],[0.392,-3.587],[0.523,-0.094],[0.215,0.4],[0.001,0.641],[0.143,7.499],[0.307,7.382],[-0.43,7.475],[-0.641,0.082],[-0.142,-0.621],[-0.001,-0.441],[-0.012,-12.535],[0.478,-0.493],[0.001,0.632],[0.019,6.657],[0.716,1.003],[0.011,-0.519],[0.117,-1.471],[-0.056,-6.451]],"o":[[0.263,5.314],[-0.032,3.598],[-0.039,0.361],[-0.496,0.089],[-0.319,-0.592],[-0.008,-7.501],[-0.141,-7.394],[-0.313,-7.515],[0.03,-0.516],[0.792,-0.101],[0.098,0.428],[0.029,12.535],[0.001,0.571],[-0.351,-0.593],[-0.009,-6.657],[-0.003,-1.068],[-0.521,0.567],[-0.032,1.479],[-0.514,6.457],[0.007,0.799]],"v":[[141.473,-133.173],[141.592,-117.226],[141.286,-106.438],[140.925,-105.443],[139.95,-106.205],[139.663,-108.085],[139.61,-130.588],[139.324,-152.766],[139.991,-175.213],[140.524,-176.594],[141.625,-175.265],[141.758,-173.946],[141.824,-136.341],[141.512,-134.651],[141.283,-136.532],[141.265,-156.504],[140.606,-159.687],[140.245,-158.035],[140.189,-153.599],[140.295,-134.245]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.67,0.065],[-1.634,-0.366],[-0.408,0.918],[-0.956,-0.261],[-0.587,-0.036],[-0.291,-3.365],[-0.222,-1.905],[-1.628,-0.057],[-0.03,-0.555],[0.349,-0.159],[2.206,-0.522],[-0.117,0.898],[-0.151,1.123],[0.928,1.072],[0.689,-0.21],[0.059,-0.602],[0.115,-1.374],[0.423,-0.121],[0.12,0.263],[1.059,-0.037],[1.737,-0.489],[0.207,0.367],[0.846,1.494],[-0.867,0.417],[0.636,0.534],[-1.631,0.87]],"o":[[1.789,0.297],[1.069,0.24],[0.426,-0.957],[0.568,0.155],[3.314,0.204],[0.165,1.912],[0.175,1.498],[0.383,0.013],[0.02,0.376],[-2.06,0.937],[-0.989,0.234],[0.147,-1.123],[0.174,-1.297],[-0.387,-0.446],[-0.667,0.203],[-0.135,1.372],[-0.027,0.329],[-0.338,0.096],[-0.488,-1.067],[-1.717,0.06],[-0.436,0.123],[-0.845,-1.494],[-0.402,-0.711],[0.707,-0.34],[-1.418,-1.191],[0.686,-0.366]],"v":[[156.109,-133.89],[161.201,-133.021],[163.373,-134.033],[165.404,-134.955],[167.15,-134.651],[172.335,-129.535],[172.85,-123.802],[175.447,-121.293],[176.328,-120.732],[175.78,-119.931],[169.388,-117.738],[168.218,-118.786],[168.694,-122.151],[167.971,-125.802],[166.467,-126.524],[165.563,-125.121],[165.224,-120.998],[164.885,-120.11],[164.252,-120.616],[161.804,-121.896],[156.655,-122.022],[155.719,-122.599],[153.182,-127.081],[153.64,-128.759],[153.733,-130.132],[154.027,-133.121]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.185,0.002],[-0.948,-0.108],[-0.16,-0.393],[0.85,-3.192],[0.01,-0.245],[-0.822,-1.919],[-0.022,-0.294],[-0.009,-1.78],[0.215,-0.905],[1.108,0.682],[1.473,1.292],[0.177,0.861],[-0.014,2.576],[1.372,0.701],[0.38,2.304],[0.002,0.887],[-0.678,0.306],[-0.661,-0.348],[-0.069,-0.069],[-0.941,2.13],[-1.356,0.318]],"o":[[0.464,0.698],[0.48,0.054],[1.233,3.018],[-0.062,0.232],[-0.663,2.046],[0.022,0.294],[0.009,1.78],[-0.109,0.93],[-0.157,0.66],[-1.671,-1.029],[-0.661,-0.579],[-0.503,-2.446],[0.007,-1.332],[-2.662,-1.361],[-0.142,-0.863],[-0.001,-0.662],[0.738,-0.333],[0.079,0.041],[1.683,1.675],[1.42,0.015],[0.185,-0.002]],"v":[[92.846,-157.93],[94.701,-156.397],[95.42,-155.612],[96.215,-146.329],[96.178,-145.594],[96.684,-139.669],[96.749,-138.787],[96.777,-133.445],[96.424,-130.66],[95.056,-130.139],[90.293,-133.507],[89.059,-135.622],[87.962,-143.027],[85.533,-146.843],[82.581,-152.966],[82.562,-155.623],[83.283,-157.281],[85.385,-156.92],[85.565,-156.689],[88.19,-157.145],[92.292,-157.925]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.317,-1.78],[0.548,-3.823],[1.292,-2.986],[0.17,-3.674],[0.407,-1.376],[0.669,0.05],[0.131,0.505],[0.623,1.717],[0.547,2.6],[-0.908,1.9],[-1.868,2.882],[-0.289,0.329],[-0.743,-1.353],[-0.585,-2.745],[-0.596,-0.091],[-0.198,0.478],[1.265,2.795],[0.492,1.13],[-0.136,2.431],[0.352,1.302],[0.559,-0.076],[-0.001,-0.413],[1.708,-2.937],[1.748,-2.215],[0.317,-0.612],[0.799,-0.08],[-0.02,0.831],[-0.385,1.472],[0.077,1.737],[0.58,-0.022],[-0.074,0.476],[0.007,0.68],[-0.445,1.858],[0.228,0.703],[-1.458,0.166],[-1.664,0.072],[-0.389,-1.266],[-1.215,0.252],[0.17,-0.781],[1.379,-0.225],[0.185,-0.733]],"o":[[1.237,3.454],[-0.459,3.2],[-1.461,3.378],[-1.233,0.778],[-0.146,0.495],[-0.619,-0.047],[-0.459,-1.762],[-0.887,-2.444],[-0.409,-1.945],[1.461,-3.057],[0.24,-0.371],[1.031,-1.171],[1.38,2.512],[0.099,0.466],[0.674,0.103],[1.175,-2.842],[-0.508,-1.123],[-0.956,-2.193],[0.074,-1.331],[-0.113,-0.418],[-0.575,0.078],[0.006,3.355],[-1.411,2.426],[-0.421,0.534],[-0.328,0.633],[0.032,-0.831],[0.038,-1.565],[0.464,-1.773],[-0.018,-0.416],[0.074,-0.476],[0.979,-0.134],[-0.019,-1.902],[0.183,-0.763],[1.197,-1.275],[1.664,-0.072],[1.478,0.126],[0.639,1.229],[1.166,-0.241],[-0.336,1.546],[-0.7,0.114],[-0.537,2.131]],"v":[[112.782,-107.381],[115.421,-96.769],[112.544,-87.531],[110.233,-76.902],[107.883,-73.608],[106.988,-72.418],[106.178,-73.704],[104.551,-78.908],[101.656,-86.146],[102.091,-91.703],[106.3,-100.97],[107.036,-102.073],[109.496,-101.801],[111.866,-93.746],[112.481,-92.526],[113.528,-93.584],[113.348,-102.046],[111.828,-105.418],[110.384,-112.302],[110.071,-116.269],[109.357,-117.222],[108.937,-116.107],[106.724,-106.566],[102.139,-99.502],[101.129,-97.701],[99.64,-96.412],[99.733,-98.905],[99.899,-103.581],[100.099,-108.783],[99.507,-109.572],[99.729,-111.001],[100.609,-112.563],[100.933,-118.241],[100.86,-120.371],[105.115,-121.374],[110.106,-121.591],[112.614,-119.195],[115.583,-117.886],[116.578,-116.779],[113.672,-114.488],[111.984,-113.535]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.116,1.819],[0.316,2.937],[-0.209,1.737],[0.178,1.281],[-0.119,1.677],[-0.168,1.615],[0.013,0.883],[-1.174,-0.173],[-1.216,-2.101],[-1.011,0.194],[-0.341,0.039],[-0.877,-1.917],[-0.407,-0.59],[-2.162,-3.329],[-0.019,-0.043],[1.06,-1.638],[0.824,-3.292],[-0.451,-1.702],[1.537,-1.333],[0.356,-1.376],[2.078,-0.1],[0.173,-0.914],[2.137,-0.811],[0.013,1.018],[0.061,2.855],[-0.436,3.843],[0.887,1.01],[0.81,-8.452],[-0.049,1.276],[0.486,5.513],[-0.101,0.523],[0.232,1.87]],"o":[[-0.188,-2.888],[-0.175,-1.628],[0.151,-1.253],[-0.228,-1.64],[0.115,-1.619],[0.257,-0.439],[-0.022,-1.464],[1.729,1.759],[0.479,0.828],[0.334,-0.064],[2.33,-0.266],[-0.063,0.768],[2.263,3.278],[-0.059,0.077],[0.919,2.093],[-1.832,2.831],[-0.46,1.839],[0.499,1.885],[-1.141,0.989],[-0.482,1.865],[-0.982,0.047],[-0.425,2.248],[-1.194,0.453],[-0.037,-2.858],[-0.082,-3.838],[0.097,-0.858],[-0.222,8.773],[-0.795,-1.126],[0.213,-5.518],[-0.047,-0.538],[0.361,-1.868],[-0.224,-1.806]],"v":[[61.117,-125.772],[61.225,-134.451],[61.365,-139.647],[61.175,-143.448],[61.318,-148.48],[61.81,-153.327],[62.857,-153.651],[64.805,-155.165],[68.898,-149.141],[70.828,-147.986],[71.863,-148.006],[76.341,-145.037],[76.92,-142.945],[82.647,-132.537],[82.48,-132.31],[81.193,-127.037],[77.201,-117.856],[77.714,-112.631],[76.408,-107.832],[74.626,-103.996],[71.117,-100.8],[69.483,-99.165],[65.579,-94.757],[64.157,-95.696],[63.938,-104.268],[64.043,-115.801],[63.11,-118.571],[62.478,-92.874],[61.618,-96.565],[61.494,-113.111],[61.502,-114.736],[61.488,-120.318]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.493,0.176],[-0.081,-1.758],[-0.672,-0.086],[-0.073,0.484],[-0.002,0.689],[-0.011,6.206],[-1.191,-0.299],[-0.299,0.642],[0.471,0.285],[0.807,0.367],[-0.142,0.985],[-0.07,2.611],[-2.308,-1.205],[-1.373,-1.204],[0.006,-0.561],[0.181,-5.312],[0.31,-1.244],[-0.33,-1.325],[-0.116,-1.764],[0.001,-1.133],[-1.503,-0.719],[-0.343,-1.206],[1.342,-0.145],[0.781,-0.098],[0.215,-0.749],[-0.506,-0.505],[-0.52,0.32],[-1.013,-0.325],[0.121,-0.876],[0.647,0.042],[1.222,-0.372],[0.731,0.582],[1.238,0.158],[1.686,-1.616],[-1.108,-1.257],[1.518,-1.856],[0.758,-2.515],[2.046,-0.555],[1.182,-0.35],[0.018,1.205],[0.071,0.736],[0.725,0.115],[-1.461,3.378],[-0.459,3.2],[1.237,3.453],[-0.391,0.557],[-0.712,1.117],[-1.222,-0.663]],"o":[[0.524,1.707],[0.021,0.462],[0.792,0.101],[0.102,-0.677],[0.017,-6.206],[1.172,0.375],[0.54,0.136],[0.35,-0.752],[-0.759,-0.459],[-1.013,-0.46],[0.378,-2.611],[0.069,-2.573],[1.618,0.845],[0.481,0.422],[-0.056,5.315],[-0.043,1.257],[-0.327,1.316],[0.436,1.75],[0.072,1.092],[-0.001,1.552],[1.101,0.526],[0.368,1.291],[-0.783,0.084],[-0.631,0.079],[-0.184,0.642],[0.535,0.535],[0.953,-0.586],[0.746,0.239],[-0.12,0.868],[-1.318,-0.086],[-0.985,0.3],[-1.031,-0.822],[-2.687,-0.342],[-1.231,1.18],[1.622,1.841],[-1.687,2.063],[-0.61,2.026],[-1.19,0.323],[-1.139,0.337],[-0.011,-0.736],[-0.053,-0.552],[0.17,-3.674],[1.292,-2.986],[0.548,-3.823],[0.736,-0.149],[0.76,-1.084],[0.941,-1.475],[1.513,0.822]],"v":[[127.015,-114.495],[127.613,-109.265],[128.13,-108.055],[128.956,-109.197],[129.051,-111.26],[129.088,-129.878],[132.611,-128.777],[134.217,-129.14],[133.311,-130.421],[130.957,-131.667],[129.698,-133.952],[129.874,-141.788],[133.541,-143.986],[137.932,-140.741],[138.503,-139.103],[138.21,-123.16],[137.362,-119.415],[137.3,-115.461],[136.94,-110.294],[136.795,-106.909],[138.849,-103.454],[141.02,-100.771],[139.515,-98.493],[137.153,-98.362],[135.622,-97.401],[135.384,-95.465],[137.064,-95.963],[140.054,-96.306],[141.188,-94.612],[139.717,-93.739],[135.95,-93.07],[133.27,-93.473],[129.931,-94.464],[123.829,-91.855],[123.74,-88.863],[123.95,-84.028],[120.355,-77.121],[116.503,-73.219],[112.947,-72.204],[111.255,-73.465],[111.025,-75.67],[110.233,-76.902],[112.544,-87.531],[115.421,-96.769],[112.782,-107.381],[114.36,-108.629],[116.541,-111.949],[122.6,-114.877]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.099,-0.078],[0.099,0.078]],"o":[[-0.099,-0.079],[0.099,0.079]],"v":[[0.733,-80.105],[0.435,-80.34]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.062,-0.059],[0.028,0.046],[-0.085,0.019]],"o":[[-0.062,0.059],[-0.028,-0.046],[0.085,-0.019],[0,0]],"v":[[-71.57,-202.503],[-71.755,-202.325],[-71.838,-202.462],[-71.583,-202.518]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.074,0.056],[0.07,-0.06]],"o":[[0.074,-0.056],[0.104,0.26],[0,0]],"v":[[-71.583,-202.518],[-71.361,-202.685],[-71.57,-202.503]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.041,-0.019],[0.036,0.026],[-0.039,-0.003],[-0.036,-0.026]],"o":[[-0.036,-0.026],[0.041,-0.019],[0.038,0.003],[-0.041,0.019]],"v":[[-70.687,-192.221],[-70.795,-192.299],[-70.672,-192.351],[-70.563,-192.277]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.06,0.06],[-0.027,-0.044],[0.085,-0.019]],"o":[[0.06,-0.06],[0.027,0.044],[-0.085,0.019],[0,0]],"v":[[-76.024,-200.737],[-75.844,-200.916],[-75.764,-200.785],[-76.018,-200.73]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.056,0.106],[-0.036,0.024],[-0.033,-0.122]],"o":[[-0.062,-0.103],[-0.002,-0.004],[0.033,0.122],[0,0]],"v":[[39.555,-161.901],[39.373,-162.211],[39.477,-162.282],[39.575,-161.917]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.059,-0.055],[0.023,0.043],[-0.08,0.014]],"o":[[-0.059,0.055],[-0.023,-0.043],[0.08,-0.014],[0,0]],"v":[[-76.018,-200.73],[-76.196,-200.565],[-76.264,-200.694],[-76.024,-200.737]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-77.23,-200.245],[-77.229,-200.335],[-77.137,-200.289]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.202,-0.284],[-0.002,0.285]],"o":[[0.002,-0.285],[0.197,0.287]],"v":[[46.097,-137.92],[46.103,-138.775]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.05,-0.133],[0.167,-0.009],[-0.135,0.106],[-0.172,0.046]],"o":[[-0.166,0.061],[-0.156,0.008],[0.132,-0.104],[0.008,-0.002]],"v":[[-72.72,-201.861],[-73.215,-201.691],[-73.323,-201.956],[-72.822,-202.131]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.152,0.167],[-0.08,-0.074],[0.16,-0.069],[0.077,0.044]],"o":[[0.13,0.12],[-0.149,0.095],[-0.049,0.021],[0.118,-0.129]],"v":[[-74.492,-201.643],[-74.202,-201.373],[-74.653,-201.098],[-74.879,-201.218]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.678,-0.262],[-0.304,0.345]],"o":[[-0.051,-0.424],[0.364,0.494]],"v":[[-116.035,-188.287],[-115.772,-189.467]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.819,1.158],[-0.674,-0.167]],"o":[[0.617,-0.222],[-0.504,0.997]],"v":[[1.279,-65.531],[3.188,-65.81]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.218,-0.898],[1.212,0.33]],"o":[[-1.203,0.421],[1.203,-0.452]],"v":[[47.58,-217.898],[43.957,-217.857]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.808,0.849],[0.651,-2.307]],"o":[[2.045,0.055],[-0.46,-1.054]],"v":[[26.829,-170.492],[28.57,-167.543]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.002,-1.296],[0.121,1.159],[-0.007,0.485]],"o":[[-1.201,0.59],[-0.05,-0.479],[1.354,0.329]],"v":[[-37.105,-141.866],[-38.959,-142.989],[-38.947,-144.442]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.098,-0.705],[0.611,0.037],[0.016,0.872],[-0.702,-0.078]],"o":[[-0.007,0.587],[-0.764,-0.047],[-0.01,-0.567],[0.733,0.081]],"v":[[27.427,-226.492],[26.65,-225.426],[25.146,-226.707],[26.186,-227.867]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.232,-0.023],[0.231,-0.599],[0.704,0.114],[0.126,0.484],[0.033,0.433],[-1.504,-0.664]],"o":[[-0.663,0.031],[-0.191,0.496],[-0.686,-0.111],[-0.108,-0.414],[1.316,0.021],[-0.482,0.047]],"v":[[3.948,-79.514],[2.655,-78.517],[1.606,-77.53],[0.847,-78.803],[0.734,-80.099],[4.893,-79.607]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.909,-1.169],[0.568,0.422],[-1.363,1.233],[-0.119,0.086]],"o":[[-0.346,-0.593],[-1.436,-1.066],[0.108,-0.098],[1.553,1.544]],"v":[[-108.011,-198.048],[-109.283,-199.641],[-109.353,-201.947],[-108.998,-202.207]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.074,-0.172],[-1.581,1.431],[-1.102,-1.399],[0.753,-4.307]],"o":[[-1.181,-1.216],[1.492,-1.351],[-4.16,-0.234],[-0.031,0.179]],"v":[[10.187,-173.466],[10.892,-178.137],[15.315,-178.055],[10.404,-173.981]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.423,-0.661],[1.056,0.33],[-0.193,0.805],[-0.664,-0.137],[-0.29,-0.038]],"o":[[-0.905,1.057],[-0.761,-0.237],[0.234,-0.977],[0.285,0.059],[0.709,0.401]],"v":[[36.651,-215.591],[33.556,-215.175],[32.54,-216.908],[34.22,-217.423],[35.088,-217.307]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.19,-0.447],[2.513,0.285],[-1.132,0.101],[-1.613,0]],"o":[[-2.498,0.097],[0.738,-1.122],[1.546,-0.138],[0.218,0.433]],"v":[[-6.333,-83.403],[-13.826,-83.111],[-10.723,-84.461],[-5.996,-84.496]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.098,-0.757],[2.232,-0.103],[0.721,-1.052],[0.286,0.665],[-1.03,0.064],[-2.429,-0.431]],"o":[[-2.207,-0.109],[-1.18,0.055],[-0.671,0.98],[0.509,-1.047],[2.437,-0.152],[0.572,0.101]],"v":[[18.655,-51.284],[12.066,-51.944],[9.115,-50.591],[7.842,-50.907],[10.356,-52.445],[17.669,-52.258]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.12,2.442],[-0.196,0.023],[0.101,-1.996],[0.169,2.282]],"o":[[0.196,-0.023],[0.15,1.995],[-2.634,0.396],[2.011,-0.142]],"v":[[-68.663,-146.461],[-68.076,-146.53],[-68.073,-140.543],[-71.592,-142.911]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.025,-1.327],[2.077,-1.086],[0.397,0.377],[-2.367,0.762]],"o":[[-1.446,2.263],[-0.388,0.203],[1.778,-1.572],[0.87,-0.28]],"v":[[-38.95,-144.456],[-45.152,-141.143],[-46.392,-141.195],[-40.683,-145.4]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.439,-0.269],[-0.12,6.448],[-0.022,-0.946],[0.256,-5.147]],"o":[[-0.169,-6.449],[0.756,0.77],[0.12,5.153],[-0.023,0.454]],"v":[[41.984,-130.744],[42.002,-150.089],[42.78,-147.351],[42.48,-131.901]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.657,-0.861],[-0.219,2.192],[-0.822,1.083],[-0.01,-1.563],[0.098,-1.071]],"o":[[-0.181,-2.199],[0.132,-1.321],[1.493,1.267],[0.007,1.07],[-1.475,0.181]],"v":[[42.029,-152.969],[42.022,-159.565],[43.443,-163.221],[44.377,-158.678],[44.104,-155.465]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.06,-0.513],[1.105,0.031],[1.798,0.134],[0.23,1.655],[-1.494,0.053],[-1.613,-0.016]],"o":[[-0.17,1.13],[-1.806,-0.051],[-1.087,-0.081],[1.453,-0.692],[1.609,-0.057],[0.349,0.004]],"v":[[-26.226,-141.758],[-28.182,-140.264],[-33.602,-140.322],[-36.313,-141.942],[-31.832,-142.236],[-26.996,-142.164]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.09,-0.186],[-0.018,1.107],[0.86,0.039],[-0.196,-0.636]],"o":[[0.845,-0.472],[0.016,-0.985],[-0.813,-0.037],[0.257,0.832]],"v":[[-11.621,-225.06],[-9.952,-227.21],[-11.523,-228.581],[-13.396,-226.875]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.003,-1.996],[1.867,0.019],[-0.046,1.598],[-1.585,-0.008]],"o":[[0.003,2.002],[-1.737,-0.018],[0.044,-1.513],[1.938,0.01]],"v":[[-8.714,-227.054],[-11.673,-223.904],[-14.952,-227.038],[-11.65,-230.088]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.044,1.12],[1.098,0.053],[0.094,-1.08],[-1.188,-0.066]],"o":[[0.043,-1.088],[-1.189,-0.058],[-0.083,0.955],[1.306,0.072]],"v":[[-71.014,-224.878],[-73.011,-227.038],[-75.67,-224.918],[-73.52,-222.932]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.006,-2.057],[2.066,-0.001],[-0.006,1.976],[-1.964,0.003]],"o":[[0.006,2.176],[-1.985,0.001],[0.005,-1.917],[2.1,-0.003]],"v":[[-70.062,-225.052],[-73.464,-221.455],[-76.912,-224.895],[-73.406,-228.313]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.078,-0.33],[0.001,0.535],[0.015,6.842],[-0.358,0.519],[0.285,1.201],[-0.815,0.199],[-0.257,-0.228],[0.669,-0.475],[-0.043,-1.693],[-0.005,-3.78],[0.1,-2.993]],"o":[[-0.35,-0.473],[-0.019,-6.842],[-0.001,-0.653],[0.725,-1.05],[0.906,0.198],[0.257,0.228],[-0.335,0.816],[-1.423,1.011],[0.096,3.78],[0.004,2.993],[-0.011,0.332]],"v":[[46.086,-139.396],[45.778,-140.961],[45.736,-161.489],[46.146,-163.342],[46.737,-166.69],[49.19,-167.25],[49.96,-166.566],[48.263,-164.769],[46.333,-160.706],[46.558,-149.365],[46.313,-140.385]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.086,-0.635],[0.821,-0.529],[0.073,1.446],[0.006,0.197],[0.808,0.003],[0.11,-0.59],[1.001,-0.156],[0.279,0.7],[0.268,0.316],[0.032,3.235],[-0.053,0.686],[-0.864,0.039],[-0.104,-1.312],[-0.03,-0.638],[-4.087,-1.582],[-1.153,-0.424]],"o":[[-1.043,0.144],[-1.241,0.8],[-0.01,-0.197],[-0.022,-0.677],[-0.949,-0.003],[-0.142,0.765],[-0.579,0.09],[-0.164,-0.412],[-2.443,-2.886],[-0.007,-0.685],[0.061,-0.789],[-0.916,1.031],[0.05,0.635],[0.211,4.434],[1.146,0.444],[0.536,0.197]],"v":[[6.747,-51.727],[4.218,-50.261],[2.203,-51.258],[2.195,-51.85],[1.245,-53.274],[0.454,-51.808],[-0.088,-49.65],[-0.815,-51.664],[-1.276,-52.905],[-2.713,-62.423],[-2.528,-64.479],[-1.277,-65.833],[-2.236,-62.262],[-2.228,-60.344],[2.224,-54.117],[5.666,-52.797]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.005,-2.262],[0.334,-0.028],[-0.182,2.599],[0.38,0.537],[-0.448,1.216],[-1.952,-0.397],[-0.355,0.143],[2.41,-1.475],[-0.019,-1.007]],"o":[[-0.335,0.028],[-0.241,-2.601],[0.049,-0.701],[0.838,-0.96],[0.581,-1.575],[0.426,0.087],[-0.335,2.71],[-0.807,0.494],[0.042,2.261]],"v":[[-113.361,-181.47],[-114.366,-181.385],[-114.402,-189.193],[-114.847,-190.974],[-112.904,-194.199],[-109.405,-196.54],[-108.311,-196.876],[-112.153,-190.441],[-113.387,-188.254]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.275,0.508],[0.009,-1.822],[-0.766,-0.951],[-0.003,-2.703],[-0.327,-5.966],[0.094,-0.282],[0.012,0.824],[0.189,6.952],[-0.141,3.411]],"o":[[0.815,1.708],[-0.006,1.129],[0.349,2.702],[0.006,5.965],[0.006,0.117],[-0.61,-0.824],[-0.099,-6.955],[-0.092,-3.395],[0.022,-0.536]],"v":[[44.507,-145.352],[45.236,-139.996],[45.997,-136.779],[46.019,-128.668],[45.992,-110.772],[45.824,-110.251],[45.146,-112.706],[44.82,-133.569],[44.326,-143.754]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.077,0.585],[0,0.762],[-0.344,0.399],[0.302,-1.416],[0.12,-2.463],[-0.105,-2.913],[0.095,-0.277],[0.728,0.135],[0.002,0.417],[-0.228,5.567]],"o":[[0.702,0.051],[0,-0.477],[0.613,1.31],[-0.517,2.427],[-0.142,2.904],[0.01,0.281],[-0.152,0.445],[-0.624,-0.116],[-0.026,-5.567],[0.024,-0.588]],"v":[[28.633,-164.889],[29.73,-165.866],[30.073,-167.239],[30.302,-163.223],[30.317,-155.854],[30.048,-147.133],[29.834,-146.283],[28.935,-145.36],[28.416,-146.432],[28.408,-163.132]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.358,0.464],[-1.513,1.86],[-0.257,0.594],[0.903,0.037],[0.039,0.626],[0.762,-0.044],[-0.068,-0.702],[1.086,-0.096],[0.068,0.866],[-0.09,0.73],[0.991,0.004],[0.177,1.128],[-1.65,-0.823],[-0.672,-0.117],[-0.713,1.392],[0.126,-1.548],[3.001,-0.451]],"o":[[2.061,-1.041],[0.411,-0.505],[0.302,-0.698],[-0.636,-0.026],[-0.068,-1.103],[-0.949,0.054],[0.068,0.698],[-1.068,0.095],[-0.057,-0.721],[0.113,-0.918],[-0.675,-0.002],[1.803,-0.204],[0.609,0.304],[1.432,0.248],[1.099,1.513],[-0.247,3.021],[-0.41,0.062]],"v":[[9.356,-66.637],[15.028,-70.513],[16.033,-72.129],[15.403,-73.298],[14.362,-74.33],[12.766,-75.327],[11.952,-73.956],[11.182,-72.207],[9.686,-73.868],[9.892,-76.059],[8.687,-77.449],[6.937,-78.268],[12.117,-77.442],[14.079,-76.809],[16.559,-78.156],[17.283,-73.426],[10.591,-66.481]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.375,-0.033],[0.026,0.49],[0.453,0.002],[-0.03,-0.537]],"o":[[0.481,-0.005],[-0.023,-0.441],[-0.501,-0.003],[0.027,0.483]],"v":[[-99.404,-219.436],[-98.622,-220.11],[-99.378,-220.826],[-100.212,-220.051]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.002,1.205],[0.869,0.035],[-0.001,-1.224],[-1.039,-0.103]],"o":[[0.001,-0.875],[-1.115,-0.045],[0.001,1.145],[0.902,0.089]],"v":[[-102.377,-220.816],[-103.831,-222.342],[-106.263,-219.8],[-104.527,-217.976]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.492,0],[-1.305,-0.762],[0.22,-1.354],[1.047,-0.22],[0.901,-0.461],[0.946,1.138],[0.337,0.285],[-0.54,1.362],[-1.44,0.27]],"o":[[1.521,-0.095],[1.022,0.597],[-0.208,1.286],[-1.051,0.221],[-1.263,0.646],[-0.283,-0.34],[-1.008,-0.852],[0.552,-1.392],[0.476,-0.089]],"v":[[-103.274,-223.536],[-99.042,-222.474],[-97.368,-219.793],[-99.655,-217.528],[-102.484,-216.397],[-105.783,-216.955],[-106.714,-217.904],[-107.887,-221.109],[-104.748,-223.522]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.033,-0.676],[1.038,1.516],[0.417,0.667],[1.079,-1.357],[0.507,-0.724],[1.501,1.108],[-0.717,1.393],[-2.727,-2.045],[0.056,-0.772]],"o":[[-1.543,1.116],[-0.443,-0.647],[-0.928,-1.483],[-0.55,0.692],[-1.068,1.524],[0.608,-1.449],[1.565,-3.043],[0.646,0.485],[-0.149,2.067]],"v":[[-50.523,-140.053],[-54.408,-140.628],[-55.604,-142.663],[-58.597,-142.85],[-60.197,-140.734],[-62.962,-140.276],[-61.121,-144.614],[-53.993,-146.22],[-53.185,-144.257]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.933,-0.526],[0,0],[1.556,0.445]],"o":[[0,0],[-0.397,-1.634],[0.813,1.32]],"v":[[20.601,-164.286],[20.59,-164.275],[17.554,-167.507]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.49,0.229],[-0.597,-0.912],[-0.75,-0.456],[-0.541,-2.02],[-0.707,-0.419],[-0.101,0.223],[-1.479,-0.859],[-0.991,-0.644],[-0.61,-1.552],[-1.281,-1.987],[-0.405,-0.272],[0.255,-0.511],[0.45,0.178],[0.489,1.214],[4.556,2.881],[1.308,-0.03],[0.882,1.146],[1.58,0.555],[0.064,0.723],[-0.629,0.286]],"o":[[-0.008,0.94],[0.433,0.662],[1.728,1.051],[0.205,0.767],[0.847,0.502],[1.618,0.617],[1.021,0.593],[1.348,0.876],[0.868,2.208],[0.287,0.445],[0.338,0.227],[-0.294,0.589],[-1.306,-0.517],[-2.156,-5.346],[-0.969,-0.613],[0.679,-1.673],[-1.044,-1.357],[-0.816,-0.286],[-0.066,-0.746],[0.492,-0.224]],"v":[[4.001,-182.635],[3.13,-180.196],[5.325,-178.796],[8.929,-174.356],[10.112,-172.388],[10.551,-172.918],[15.005,-170.368],[18.01,-168.486],[21.042,-164.971],[24.496,-158.796],[25.648,-157.912],[26.325,-156.931],[25.021,-156.843],[22.184,-159.536],[10.971,-170.685],[7.886,-172.235],[6.809,-176.298],[2.672,-179.028],[1.497,-180.496],[2.531,-181.949]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.062,0.594],[-1.114,-0.778],[0.132,-1.321],[-0.181,-2.199],[0.009,-0.96],[-0.169,-6.449],[0.584,-4.273],[0.612,-0.01],[0.014,0.48],[-0.167,1.787],[0.094,2.608],[-0.165,4.287],[0.917,5.961],[0,0]],"o":[[1.21,0.028],[-0.822,1.083],[-0.219,2.192],[-0.009,0.96],[-0.12,6.448],[0.243,4.279],[-0.063,0.459],[-0.706,0.011],[-0.052,-1.765],[0.242,-2.595],[-0.153,-4.271],[0.23,-6],[0,0],[0.376,-0.544]],"v":[[39.861,-163.683],[43.443,-163.221],[42.022,-159.565],[42.029,-152.969],[42.002,-150.089],[41.984,-130.744],[41.895,-117.913],[41.359,-116.707],[40.684,-117.981],[40.599,-123.284],[40.498,-131.099],[40.357,-143.93],[39.555,-161.901],[39.575,-161.917]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.769,0.004],[0.012,-0.741],[2.045,-0.555],[0.178,0.804],[-0.14,1.562],[0.088,4.634],[-0.239,1.003],[-0.748,-0.123],[-0.078,0.917],[-0.16,5.948],[-0.335,5.499],[-0.304,-2.58],[-0.061,-5.955],[-0.012,-7.146],[0.036,-1.2]],"o":[[-0.009,0.741],[-0.036,2.173],[-1.101,0.299],[-0.353,-1.592],[0.416,-4.637],[-0.02,-1.054],[0.485,0.255],[0.46,-0.828],[0.506,-5.959],[0.148,-5.501],[0.217,2.578],[0.7,5.939],[0.073,7.145],[0.002,1.176],[-0.026,0.856]],"v":[[-14.631,-82.993],[-14.66,-80.771],[-18.43,-75.787],[-19.989,-77.094],[-19.626,-81.788],[-19.53,-95.696],[-19.223,-98.747],[-18.086,-97.581],[-17.589,-100.248],[-17.509,-118.118],[-17.177,-134.624],[-16.81,-126.878],[-16.553,-109.014],[-16.516,-87.578],[-16.1,-84.085]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.722,-0.119],[-0.008,-0.138],[1.684,-0.19],[1.015,-1.205],[-0.504,-0.527],[-0.444,0.371],[-0.752,-0.308],[-3.833,-0.996],[-0.102,-1.195],[-0.17,-0.409],[-1.058,0.566],[-0.975,-0.994],[1.922,-0.487],[2.549,1.009],[0.406,0.761],[1.219,1.116],[1.157,-0.087],[-0.017,-0.243],[0.427,0.269],[1.805,1.095],[-0.601,1.266],[1.132,0.215],[0.508,0.365],[-0.664,0.731],[-1.141,-1.124],[0.285,0.059],[0.234,-0.977],[-0.761,-0.237],[-0.905,1.057],[-0.536,2.03]],"o":[[-0.044,0.141],[0.106,1.915],[-1.697,0.192],[-0.41,0.487],[0.536,0.56],[0.681,-0.57],[3.683,1.506],[1.044,0.271],[0.036,0.421],[0.425,1.023],[1.622,-0.868],[1.213,1.236],[-2.476,0.628],[-0.771,-0.305],[-0.766,-1.435],[-0.825,-0.756],[-0.36,0.027],[-0.51,0.036],[-1.787,-1.125],[-1.267,-0.769],[0.498,-1.048],[-0.604,-0.115],[-1.012,-0.727],[0.652,-0.717],[-0.29,-0.038],[-0.664,-0.137],[-0.193,0.805],[1.056,0.33],[1.59,1.356],[0.244,-0.922]],"v":[[42.914,-217.843],[42.789,-217.42],[40.089,-214.729],[36.354,-212.033],[36.386,-210.427],[37.764,-210.592],[40.009,-210.824],[51.388,-207.428],[53.264,-205.472],[53.752,-204.242],[55.841,-203.514],[59.791,-203.233],[58.502,-199.659],[50.96,-199.525],[49.181,-200.932],[46.369,-204.893],[43.43,-206.028],[43.14,-205.483],[41.739,-205.857],[36.375,-209.227],[35.331,-212.363],[34.537,-214.03],[32.82,-214.836],[32.166,-217.972],[35.088,-217.307],[34.22,-217.423],[32.54,-216.908],[33.556,-215.175],[36.651,-215.591],[41.343,-217.036]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.335,0.028],[-2.105,-0.542],[-1.008,2.27],[-1.128,-0.507],[-2.276,-0.797],[-0.086,-0.24],[0.277,-0.233],[2.588,-1.615],[0.926,-1.362],[1.073,-0.879],[1.48,-1.457],[0.31,-1.395],[0.077,0.231],[-0.003,0.192],[-0.25,5.283]],"o":[[2.114,0.046],[2.352,0.606],[0.383,-0.862],[2.219,0.997],[0.314,0.11],[0.172,0.48],[-2.352,1.98],[-1.346,0.84],[-0.785,1.155],[-1.61,1.32],[-0.798,0.786],[-0.021,0.092],[-0.061,-0.183],[0.079,-5.281],[0.334,-0.028]],"v":[[-113.361,-181.47],[-107.045,-180.946],[-102.68,-183.286],[-98.627,-184.553],[-91.76,-182.268],[-90.912,-181.766],[-91.594,-180.948],[-99.296,-176.009],[-102.844,-172.946],[-106.175,-170.579],[-111.043,-166.648],[-113.661,-164.786],[-114.119,-164.97],[-114.216,-165.546],[-114.366,-181.385]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.188,-2.888],[0.303,0.051],[0.013,-0.74],[-0.011,-4.337],[-0.081,-10.851],[-0.017,-1.331],[0.124,-4.175],[-0.201,-5.471],[-0.176,-2.356],[-0.677,-0.008],[-0.007,0.526],[-0.008,2.369],[-0.033,0.494],[-0.486,-1.262],[-1.408,0.015],[-1.515,-3.088],[-0.053,-0.239],[0.481,-0.404],[0.631,0.147],[-0.112,0.571],[0.349,0.61],[0.526,0.002],[0.201,-0.536],[0.102,-0.33],[2.467,0.435],[0.388,3.367],[-0.259,4.392],[-0.004,4.293],[0.015,2.615],[-0.03,3.732],[0.013,12.218],[-0.002,2.32],[-0.848,1.038],[0,0.529],[0.038,3.801],[0.613,0.016],[-0.013,-0.397],[0.161,-2.313],[0.672,-0.034],[0.14,0.496],[-0.04,0.435],[-0.173,5.572],[0.208,1.38],[1.069,1.713],[0.119,0.372],[-0.708,-0.634],[-0.041,0.124],[-0.568,-0.237],[0.271,-0.387],[-0.323,-0.719],[-1.575,-0.067],[-0.245,-0.153],[-0.569,-1.352],[0.115,-1.619],[-0.228,-1.64],[0.151,-1.253],[-0.175,-1.628]],"o":[[-0.304,-0.051],[-0.831,-0.24],[-0.077,4.337],[0.028,10.851],[0.01,1.331],[0.503,4.187],[-0.163,5.475],[0.087,2.36],[0.033,0.448],[0.678,0.008],[0.03,-2.368],[0.001,-0.194],[0.52,1.541],[0.526,1.367],[4.132,-0.045],[0.108,0.22],[0.123,0.558],[-0.544,0.458],[-0.759,-0.177],[0.125,-0.633],[-0.274,-0.478],[-0.545,-0.002],[-0.121,0.323],[-0.739,2.384],[-2.7,-0.475],[-0.503,-4.367],[0.252,-4.279],[0.003,-2.615],[-0.095,-3.742],[0.097,-12.218],[-0.003,-2.32],[0.001,-1.172],[0.304,-0.372],[0.003,-3.801],[-0.004,-0.418],[-0.66,-0.017],[0.077,2.328],[-0.037,0.532],[-0.618,0.031],[-0.118,-0.418],[0.514,-5.573],[0.043,-1.378],[-0.297,-1.974],[-0.201,-0.322],[0.681,0.61],[0.127,-0.159],[0.117,-0.355],[0.514,0.214],[-0.6,0.857],[0.874,1.948],[0.251,0.011],[-1.391,1.192],[-0.168,1.615],[-0.119,1.677],[0.178,1.281],[-0.209,1.737],[0.316,2.937]],"v":[[61.117,-125.772],[60.206,-125.926],[59.163,-125.005],[58.911,-111.994],[59.133,-79.442],[59.184,-75.449],[58.943,-62.917],[58.935,-46.501],[59.41,-39.429],[59.894,-38.233],[60.604,-39.5],[60.632,-46.606],[60.69,-47.487],[61.717,-43.328],[64.517,-41.091],[71.79,-35.145],[72.031,-34.446],[72.252,-32.798],[70.338,-33.102],[69.909,-34.611],[69.865,-36.482],[68.608,-37.111],[67.443,-36.384],[67.106,-35.404],[61.824,-32.189],[58.283,-36.511],[58.155,-49.639],[58.252,-62.514],[58.211,-70.359],[58.101,-81.586],[58.259,-118.239],[58.252,-125.2],[58.967,-128.582],[59.317,-130.145],[59.247,-141.548],[58.721,-142.593],[58.206,-141.575],[57.816,-134.631],[57.22,-133.302],[56.414,-134.564],[56.304,-135.882],[56.28,-152.598],[56.104,-156.734],[54.248,-162.306],[53.879,-163.417],[55.948,-161.563],[56.242,-161.942],[56.926,-162.615],[57.12,-161.484],[57.499,-159.569],[61.393,-157.657],[62.128,-157.218],[61.81,-153.327],[61.318,-148.48],[61.175,-143.448],[61.365,-139.647],[61.225,-134.451]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.068,-0.485],[-1.355,-0.351],[0.222,0.321],[1.082,0.427]],"o":[[0.47,0.619],[0.4,0.104],[-0.52,-0.753],[-0.448,-0.177]],"v":[[-90.676,-93.113],[-89.781,-90.856],[-89.232,-91.47],[-90.217,-93.881]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.646,1.866],[0.144,0.035],[0.787,1.038],[4.896,-1.957],[0.28,-0.09],[0.423,0.747],[0.256,1.241],[-1.998,1.655],[0.068,4.179],[0.258,0.757],[0.496,1.655],[-1.802,0.324],[0.327,1.368],[-1.071,2.002],[-0.826,2.891],[-1.337,0.516],[-0.045,1.245],[0.378,6.796],[-0.05,2.469],[0.137,2.375],[-0.488,0.229],[-0.018,-5.969],[-0.048,-3.941],[-0.179,-1.862],[-1.176,-1.653],[-0.545,-0.819],[-0.458,-0.034],[-0.058,-1.464],[-1.551,0.449],[0.438,-2.945],[-0.106,-2.64],[-2.598,1.285],[-0.741,0.39],[-1.802,-1.975],[-0.301,-0.252],[-0.802,2.084],[-0.105,0.104],[-0.127,-6.45],[1.001,0.012],[1.076,0.207],[0.246,-0.45],[-0.321,-0.38],[-0.334,-0.48],[0.284,-1.53],[-0.217,-0.091],[-0.752,-0.368],[0.884,-1.297],[-0.211,-1.148],[0.193,-2.595],[1.161,0.779],[-0.004,-0.485],[1.119,-1.713],[-0.878,-1.895],[0.327,-1.071],[-0.715,-1.083],[-0.139,-0.417],[0.978,-1.102],[1.211,0.732],[0.423,2.082],[1.12,1.292],[-1.037,0.727],[0.25,1.352],[1.4,0.407],[2.558,-0.933],[0.065,0.905],[-0.325,1.486],[2.251,0.452],[0.974,0.154],[0.929,-2.006],[0.464,0.096],[0.094,0.264]],"o":[[-0.085,-0.278],[-1.554,-0.379],[-3.2,-4.218],[-0.272,0.109],[0.328,-0.8],[-0.603,-1.065],[-0.529,-2.562],[3.135,-2.598],[-0.013,-0.801],[-0.557,-1.636],[-0.539,-1.801],[1.24,-0.223],[-0.558,-2.335],[1.43,-2.674],[0.42,-1.469],[1.17,-0.451],[0.243,-6.741],[-0.137,-2.463],[0.048,-2.367],[-0.026,-0.454],[0.027,5.969],[0.012,3.942],[0.023,1.869],[0.202,2.1],[0.571,0.802],[0.258,0.388],[1.833,0.134],[0.056,1.412],[2.744,-0.795],[-0.384,2.579],[0.116,2.892],[0.75,-0.371],[2.36,-1.243],[0.264,0.289],[1.846,1.547],[0.048,-0.125],[-0.107,6.447],[0.018,0.904],[-1.086,-0.013],[-0.414,-0.08],[-0.257,0.471],[0.382,0.451],[0.649,0.932],[-0.015,0.083],[0.773,0.325],[0.868,0.425],[-0.651,0.954],[0.484,2.63],[-0.062,0.839],[-0.498,-0.334],[0.02,2.243],[-1.117,1.71],[0.497,1.074],[-0.368,1.203],[0.243,0.368],[0.414,1.241],[-0.689,0.777],[-1.886,-1.14],[-0.347,-1.709],[-0.813,-0.937],[1.083,-0.76],[-0.264,-1.428],[-2.565,-0.746],[-0.958,0.349],[-0.114,-1.582],[0.496,-2.267],[-0.967,-0.194],[-2.201,-0.348],[-0.133,0.288],[-0.198,-0.041],[-0.662,-1.86]],"v":[[-118.851,-84.922],[-119.113,-85.724],[-121.78,-88.637],[-132.973,-91.805],[-133.811,-91.533],[-134.101,-93.765],[-135.608,-97.125],[-133.436,-103.482],[-128.492,-113.444],[-128.872,-115.767],[-130.494,-120.692],[-129.197,-122.827],[-127.397,-125.601],[-126.259,-132.001],[-123.13,-140.446],[-120.437,-143.381],[-118.652,-145.796],[-116.695,-165.899],[-116.956,-173.287],[-116.652,-180.379],[-116.126,-181.507],[-116.046,-163.601],[-116.033,-151.775],[-115.701,-146.171],[-113.103,-140.768],[-111.397,-138.357],[-110.392,-137.553],[-108.15,-134.678],[-106.154,-133.316],[-102.777,-129.985],[-103.625,-122.215],[-99.026,-119.424],[-96.836,-120.656],[-88.774,-119.213],[-87.91,-118.413],[-85.264,-118.953],[-84.957,-119.267],[-85.188,-99.925],[-86.668,-98.478],[-89.912,-98.699],[-91.137,-98.488],[-90.76,-97.147],[-89.547,-95.853],[-87.743,-92.935],[-87.16,-92.575],[-84.832,-91.62],[-84.087,-89.549],[-84.228,-86.074],[-84.447,-78.268],[-85.91,-77.388],[-86.655,-76.904],[-89.152,-71.327],[-89.721,-66.029],[-89.706,-62.742],[-89.393,-59.351],[-88.793,-58.164],[-89.072,-54.538],[-92.969,-54.57],[-96.445,-59.519],[-98.566,-63.973],[-98.249,-66.464],[-96.308,-69.558],[-99.292,-72.125],[-106.989,-72.171],[-108.314,-73.05],[-107.392,-77.522],[-109.384,-80.669],[-112.289,-81.236],[-115.849,-79.331],[-116.436,-78.633],[-116.904,-79.328]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.126,0.062],[0.126,-0.061]],"o":[[-0.126,0.062],[0.126,-0.062]],"v":[[231.988,31.116],[231.609,31.301]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.003,-0.139],[0.003,0.139]],"o":[[-0.003,-0.139],[0.003,0.139]],"v":[[-41.429,142.232],[-41.437,141.816]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.034,0.097],[-0.042,-0.088]],"o":[[0.085,0.051],[-0.094,-0.042]],"v":[[225.133,-53.678],[225.325,-53.47]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.121,-0.072],[0.122,0.072]],"o":[[-0.121,-0.073],[0.121,0.073]],"v":[[58.239,152.537],[57.876,152.32]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.091,0.059],[0.091,-0.059]],"o":[[-0.092,0.059],[0.092,-0.059]],"v":[[186.841,36.137],[186.567,36.315]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.095,0.083],[0.03,-0.048],[0.12,0.105]],"o":[[0.025,0.083],[-0.097,0.153],[0.095,-0.082]],"v":[[160.362,205.77],[160.429,206.013],[160.078,206.018]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-127.886,168.845],[-127.888,168.847]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.021,-0.134],[-0.021,0.134]],"o":[[0.021,-0.134],[-0.021,0.134]],"v":[[96.187,28.087],[96.25,27.685]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[162.574,-100.54],[162.501,-100.497],[162.544,-100.57]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.231,-0.01],[-0.237,-0.133]],"o":[[0.224,-0.177],[-0.231,0.009]],"v":[[34.777,138.242],[35.47,138.213]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.006,0.215],[0.152,-0.211]],"o":[[0.136,0.219],[0.006,-0.215]],"v":[[-134.017,137.099],[-134.034,137.745]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.202,-0.056],[-0.202,0.056]],"o":[[0.202,-0.056],[-0.202,0.056]],"v":[[-8.178,140.036],[-7.572,139.868]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.173,-0.04],[0.173,0.04]],"o":[[-0.173,-0.04],[0.173,0.04]],"v":[[92.004,74.228],[91.485,74.109]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.198,-0.227],[0.181,0.276]],"o":[[-0.34,0.181],[0.291,-0.041]],"v":[[-239.311,28.139],[-240.051,27.88]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.102,-0.081],[0.126,0.002],[0.063,0.05],[-0.127,0.01]],"o":[[-0.158,0.034],[-0.064,-0.001],[0.124,-0.04],[0.059,-0.004]],"v":[[186.141,-188.691],[185.729,-188.611],[185.54,-188.753],[185.914,-188.863]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.124,0.054],[-0.089,-0.07],[0.071,0.015],[0.098,0.058]],"o":[[0.074,0.058],[-0.082,0.034],[-0.106,-0.022],[0.081,-0.035]],"v":[[184.068,-188.6],[184.322,-188.402],[184.079,-188.31],[183.782,-188.475]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.349,0.421],[0.067,-0.345]],"o":[[0.289,0.248],[-0.483,-0.196]],"v":[[-239.026,14.434],[-238.78,15.347]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.227,-0.118],[0.323,0.188],[-0.228,-0.445]],"o":[[-0.13,-0.36],[0.381,-0.052],[0.133,0.259]],"v":[[23.921,136.852],[23.213,136.056],[24.256,136.299]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.04,-0.014],[0,-0.561],[0.04,-0.001],[0,0.575]],"o":[[0,0.561],[-0.04,0.001],[0,-0.575],[0.04,0.014]],"v":[[86.612,101.639],[86.612,103.321],[86.491,103.324],[86.491,101.598]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.388,-0.427],[0.462,-0.06],[0.006,0.184]],"o":[[-0.462,0.06],[-0.006,-0.184],[0.506,-0.02]],"v":[[-241.088,27.85],[-242.474,28.03],[-242.492,27.479]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.71,-0.635],[-0.492,0.693]],"o":[[0.119,-0.793],[0.481,0.953]],"v":[[-132.894,140.656],[-132.279,138.346]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.495,-0.001],[-1.495,-0.419]],"o":[[1.494,-0.441],[-1.495,0.001]],"v":[[-75.155,158.732],[-70.671,158.73]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.833,-0.218],[0.631,-0.164],[0.199,0.048],[0.013,0.159]],"o":[[-0.512,0.596],[-0.198,-0.047],[-0.014,-0.159],[0.843,-0.051]],"v":[[34.628,136.111],[32.743,136.633],[32.148,136.491],[32.108,136.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.705,-0.189],[0.79,-0.4],[-0.317,0.245]],"o":[[-0.438,1.064],[-0.032,-0.375],[0.646,-0.217]],"v":[[-168.439,21.212],[-170.786,22.457],[-170.429,21.502]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.047,0.34],[-0.876,0.137],[0.732,0.103]],"o":[[0.7,0.329],[-0.699,0.863],[-0.434,-0.061]],"v":[[72.051,150.58],[74.215,151.396],[71.918,151.537]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.579,-1.009],[0.705,0.575]],"o":[[-0.855,-0.058],[1.097,-0.773]],"v":[[104.204,-34.222],[101.791,-34.923]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.011,0.558],[-0.788,-0.116],[0.764,0.18]],"o":[[0.695,0.681],[-0.397,0.604],[-0.621,-0.146]],"v":[[-111.851,175.089],[-109.494,175.477],[-111.165,176.412]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.09],[1.856,0.005],[0.221,0.23],[-0.381,0],[-1.7,0]],"o":[[-1.856,0],[-0.227,-0.001],[0.381,0],[1.7,0],[0,0.09]],"v":[[43.686,231.965],[38.118,231.962],[37.443,231.695],[38.585,231.695],[43.686,231.695]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.391,-0.638],[1.255,0.265],[-0.71,0.175]],"o":[[-1.261,0.216],[0.708,-0.186],[0.678,-0.167]],"v":[[90.843,74.139],[87.069,74.091],[89.192,73.537]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.932,1.536],[-1.028,-0.576]],"o":[[1.07,0.151],[-1.121,0.364]],"v":[[46.393,131.606],[49.616,131.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.705,-1.638],[1.096,0.833]],"o":[[-1.224,-0.57],[1.555,-0.112]],"v":[[-235.204,29.928],[-238.847,28.16]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.455,-0.807],[1.452,0.854]],"o":[[-1.521,0.158],[1.515,-0.072]],"v":[[-90.265,174.03],[-94.774,173.725]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.068,-0.548],[0.488,0.046],[-0.155,0.613],[-0.489,-0.058]],"o":[[-0.248,0.543],[-0.502,-0.047],[0.136,-0.538],[0.449,0.054]],"v":[[-50.468,202.023],[-51.697,202.571],[-52.623,201.717],[-51.378,201.226]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.016,-0.317],[0.769,0.101],[-0.062,0.522],[-0.538,0.045]],"o":[[-0.077,0.582],[-0.555,-0.073],[0.085,-0.717],[0.593,-0.05]],"v":[[95.957,103.405],[95.056,104.471],[94.219,103.466],[95.542,102.579]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.058,-1.046],[1.268,-0.184]],"o":[[-1.245,0.53],[0.917,-1.178]],"v":[[56.154,152.327],[52.329,152.581]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.014,0.076],[-0.608,-1.682],[0.1,-0.113],[0.7,0.329]],"o":[[1.336,-1.136],[-0.1,0.113],[-0.876,0.137],[0.05,-0.057]],"v":[[72.104,150.38],[74.514,151.056],[74.215,151.396],[72.051,150.58]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.57,0.039],[-0.157,0.285],[-1.033,0.1],[0.015,-0.307]],"o":[[-0.29,-0.02],[0.418,-0.756],[0.267,-0.026],[-0.029,0.573]],"v":[[159.911,-94.448],[159.555,-94.902],[161.361,-96.621],[161.764,-96.144]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.066,-0.652],[1.858,0.11],[-1.607,-0.426]],"o":[[-1.82,-1.016],[1.344,-1.134],[0.501,0.133]],"v":[[-226.931,6.482],[-232.509,6.245],[-228.013,5.453]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.265,0.07],[-0.545,-0.994],[0.326,1.5]],"o":[[0.829,0.323],[-2.077,0.859],[0.265,-0.069]],"v":[[-231.105,30.247],[-228.652,31.327],[-231.9,30.456]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.558,-0.375],[0.575,-0.262],[0.293,0.59],[-0.391,0.332]],"o":[[-0.239,0.542],[-0.666,0.304],[-0.408,-0.822],[0.59,0.115]],"v":[[67.507,106.25],[66.443,107.599],[64.763,107.166],[65.724,106.038]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.183,-0.068],[-0.474,-1.035],[-0.152,1.414],[-1.067,-0.138]],"o":[[-1.336,0.245],[-0.773,-0.146],[0.125,-1.161],[0.189,0.024]],"v":[[129.402,103.329],[128.491,105.417],[126.554,104.372],[128.852,103.132]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.529,-0.009],[0.823,-0.367],[-0.132,0.491],[-0.485,0.053]],"o":[[0.336,1.933],[-0.448,-0.311],[0.17,-0.632],[0.522,-0.057]],"v":[[-194.558,12.647],[-196.68,14.216],[-197.533,12.978],[-196.143,12.636]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.863,-0.023],[-0.743,-0.11],[-0.904,-0.143],[0.904,0.239]],"o":[[0.474,-0.725],[0.906,0.135],[-0.433,1.113],[-0.807,-0.213]],"v":[[90.335,82.582],[92.263,81.952],[94.977,82.378],[92.767,83.166]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.328,0.207],[0.027,0.596],[-0.579,-0.518],[0.352,-0.497],[0.38,0.226]],"o":[[-0.354,-0.596],[0.823,0.096],[0.458,0.41],[-0.456,0.643],[-0.333,-0.198]],"v":[[68.317,103.335],[68.318,101.548],[70.313,102.678],[70.512,104.122],[69.302,103.955]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.072,-0.449],[0.936,1.267],[-0.611,0.1]],"o":[[-2.064,1.673],[-0.465,-0.63],[0.994,-0.163]],"v":[[69.284,115.84],[65.913,116.258],[66.296,115.259]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.295,0.694],[-0.823,-0.014],[0.031,-0.719],[0.913,0.013]],"o":[[0.192,-0.692],[0.957,0.016],[-0.03,0.708],[-1.113,-0.016]],"v":[[-134.715,119.639],[-134.161,117.732],[-133.551,119.701],[-134.035,121.698]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.754,0.205],[-0.54,-0.043],[1.012,-0.157],[0.292,0.943]],"o":[[0.427,0.347],[0.267,0.714],[-0.817,0.126],[-0.24,-0.774]],"v":[[-174.707,115.548],[-173.242,116.092],[-173.879,117.637],[-176.027,116.984]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.26,-0.698],[0.731,-0.009],[0.017,0.76],[-0.72,0.031]],"o":[[-0.258,0.758],[-0.72,0.009],[-0.019,-0.876],[0.794,-0.035]],"v":[[78.614,90.976],[77.053,92.061],[75.774,90.948],[77.154,89.758]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.778,-1.181],[1.614,0.114],[-1.113,-0.263]],"o":[[-1.61,0.217],[0.059,-1.062],[1.12,0.265]],"v":[[115.785,123.658],[110.949,123.713],[112.59,122.48]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.529,-0.072],[0.015,0.79],[-0.4,-0.158],[-0.264,-1.141]],"o":[[-0.783,0.053],[-0.008,-0.411],[0.89,0.351],[0.13,0.561]],"v":[[160.592,-6.682],[158.488,-8.786],[159.069,-9.416],[161.291,-7.701]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,0.38],[-0.446,0.982],[-0.583,0.359],[0.516,-0.963],[0.597,0.129],[0.095,0.477]],"o":[[0.37,0.507],[0.255,-0.561],[0.355,1.124],[-0.22,0.412],[-0.539,-0.117],[-0.085,-0.427]],"v":[[180.343,45.26],[181.499,45.292],[182.505,43.732],[181.963,46.826],[180.912,47.681],[180.142,46.522]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.362,-0.722],[0.908,-0.376],[-0.038,0.805],[-0.482,0.185]],"o":[[0.139,1.099],[-0.719,-0.254],[0.028,-0.586],[0.674,-0.259]],"v":[[-156.445,-4.422],[-157.852,-2.385],[-158.96,-3.909],[-158.053,-4.926]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.64,0.228],[-0.004,-0.763],[0.717,-0.005],[0.005,0.802]],"o":[[0.78,0.066],[0.004,0.865],[-0.766,0.006],[-0.007,-0.969]],"v":[[156.118,65.701],[157.456,66.837],[156.066,68.004],[154.438,66.866]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.104,-0.394],[0.984,0.022],[0.004,0.85],[-0.707,0.097]],"o":[[0.022,0.825],[-0.779,-0.017],[-0.005,-1.049],[0.93,-0.128]],"v":[[-130.302,194.199],[-131.283,195.734],[-132.551,194.461],[-130.992,193.04]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.546,-0.089],[0.001,0.835],[-0.856,0.016],[-0.005,-0.804]],"o":[[-0.826,0.013],[-0.001,-0.903],[0.914,-0.017],[0.007,0.956]],"v":[[-199.026,18.273],[-200.444,17.254],[-199.028,15.939],[-197.633,17.298]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.146,-0.094],[-0.375,0.224],[0.217,1.061],[-0.297,0.003],[-0.15,-0.124],[0.044,-0.661],[0.561,-0.166]],"o":[[0.147,-0.476],[0.891,-0.532],[0.297,-0.003],[0.14,0.137],[0.388,0.32],[-0.044,0.66],[-1.079,0.319]],"v":[[187.754,38.43],[188.706,37.563],[189.826,35.227],[190.717,35.22],[191.137,35.629],[192.333,36.484],[190.991,37.468]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.548,-0.034],[0.594,1.05],[-0.229,0.032],[-1.012,-0.487],[0.239,-0.69]],"o":[[-1.225,-0.03],[-0.113,-0.2],[1.121,-0.155],[0.494,0.237],[-0.207,0.599]],"v":[[226.288,203.612],[223.598,201.903],[223.579,201.261],[226.824,201.782],[227.726,203.109]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.019,0.842],[-0.93,-0.014],[0.007,-0.834],[0.918,0.04]],"o":[[0.047,-0.649],[0.966,0.014],[-0.007,0.742],[-0.931,-0.041]],"v":[[107.734,-17.238],[108.604,-18.796],[109.759,-17.055],[108.79,-15.378]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.159,-0.24],[0.613,0.157],[-0.735,0.651],[-0.315,-0.249],[0.258,-0.961]],"o":[[-0.669,-0.051],[-0.294,-0.74],[0.313,-0.277],[0.734,0.581],[-0.071,0.263]],"v":[[-150.149,115.754],[-151.787,114.897],[-151.653,112.747],[-150.558,112.718],[-149.686,115.031]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.029,-1.061],[0.669,0.171],[-0.063,1.123],[-1.055,-0.021]],"o":[[0.015,0.684],[-0.829,-0.212],[0.024,-0.424],[1.108,0.022]],"v":[[174.39,53.159],[173.397,54.071],[171.65,52.499],[172.388,51.217]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.862,-0.055],[-0.01,0.966],[-0.821,-0.023],[-0.017,-0.857]],"o":[[-0.627,-0.129],[0.01,-0.913],[0.784,0.022],[0.023,1.13]],"v":[[214.033,58.002],[212.378,57.095],[214.151,55.968],[216.008,56.996]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.581,0.014],[0.097,0.522],[-0.512,0.596],[-0.422,-0.026],[0.451,-0.662],[0.147,-0.017],[0.224,-0.177]],"o":[[-0.097,-0.522],[0.631,-0.164],[0.423,0.024],[1.306,0.651],[-0.147,0.016],[-0.237,-0.133],[-0.581,-0.014]],"v":[[33.034,138.199],[32.743,136.633],[34.628,136.111],[35.896,136.185],[35.91,138.163],[35.47,138.213],[34.777,138.242]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.102,-0.275],[0.846,-0.042],[0.269,0.455],[-0.263,0.241],[-0.576,0.463],[-0.327,-0.209]],"o":[[-0.059,1.019],[-0.538,0.027],[-0.293,-0.495],[0.544,-0.498],[0.303,-0.243],[0.211,0.135]],"v":[[178.956,56.314],[176.767,58.846],[175.548,58.184],[175.972,57.22],[177.677,55.807],[178.636,55.765]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.85,0.107],[-0.397,-0.161],[0.255,-0.453],[0.967,0.035],[-0.127,0.719]],"o":[[0.288,0.052],[0.429,0.174],[-0.597,1.059],[-0.72,-0.026],[0.185,-1.051]],"v":[[124.833,98.867],[125.976,99.091],[126.531,100.147],[123.883,100.946],[122.909,99.769]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.463,-0.054],[1.393,0.387],[0.319,0.455],[-1.809,-1.075],[0.157,-0.667]],"o":[[-1.258,-0.786],[-0.458,-0.127],[1.932,-0.12],[0.386,0.229],[-0.143,0.604]],"v":[[82.216,139.792],[78.112,138.406],[76.813,137.865],[82.513,138.442],[83.47,139.325]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.071,-0.099],[0.185,0.061],[0.029,0.514],[-0.367,0.214],[-0.337,0.189],[-0.443,0.031],[-0.13,-0.36]],"o":[[-0.19,-0.046],[-0.412,-0.137],[-0.03,-0.532],[0.334,-0.195],[0.443,-0.029],[0.323,0.188],[-0.117,1.586]],"v":[[21.509,138.4],[20.939,138.26],[19.947,137.531],[20.872,136.714],[21.882,136.145],[23.213,136.056],[23.921,136.852]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.203,0.137],[-0.779,-0.043],[-0.662,-0.401],[1.21,-0.394],[0.379,0.681],[-0.584,0.498]],"o":[[0.455,0.778],[0.708,0.039],[-1.2,0.426],[-0.537,0.175],[-0.377,-0.677],[0.185,-0.158]],"v":[[54.725,158.492],[56.725,159.363],[58.832,159.634],[55.23,160.902],[53.637,160.743],[54.119,158.906]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.022,-0.145],[0.388,-0.288],[0.244,-0.003],[0.062,1.063],[-0.793,0.17],[-0.223,-1.283]],"o":[[-0.388,0.288],[-0.245,-0.012],[-0.814,0.01],[-0.04,-0.683],[0.832,-0.178],[0.025,0.145]],"v":[[-168.25,39.326],[-169.416,40.189],[-170.149,40.156],[-172.18,39.352],[-170.373,37.908],[-168.316,38.889]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.403,-0.659],[-0.365,0.375],[0.26,0.797],[0.593,0.074],[-0.115,0.38],[-0.095,0.013],[-0.69,-1.355]],"o":[[0.233,-0.519],[0.409,-0.42],[-0.25,-0.766],[0.115,-0.38],[0.095,-0.015],[1.341,0.589],[-1.347,0.825]],"v":[[145.103,117.013],[146.253,115.943],[147.282,114.557],[145.644,113.987],[145.988,112.847],[146.273,112.804],[149.48,115.532]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.03,-0.516],[0.336,-0.055],[-0.67,-0.661],[1.274,1.078]],"o":[[-0.204,0.299],[-1.25,0.205],[-1.5,0.613],[1.631,-1.082]],"v":[[-122.831,63.173],[-123.678,63.655],[-124.02,65.075],[-128.199,64.516]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.076,0.427],[-0.155,0.913],[-0.34,0.049],[-0.103,-0.273],[0.49,-1.359],[0.279,0.005],[0.06,0.24]],"o":[[0.139,-0.934],[0.048,-0.284],[0.383,-0.055],[0.536,1.418],[-0.085,0.237],[-0.271,-0.005],[-0.105,-0.422]],"v":[[134.379,118.006],[134.799,115.241],[135.294,114.589],[135.849,115.141],[135.618,119.289],[135.12,119.753],[134.616,119.289]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.667,-0.729],[0.272,-0.81],[0.389,-0.034],[0.126,0.048],[-0.251,0.804],[-0.886,-0.143]],"o":[[-0.849,0.246],[-0.389,0.035],[-0.108,-0.098],[-0.676,-0.258],[0.224,-0.719],[0.842,0.136]],"v":[[-169.561,19.343],[-171.173,20.995],[-172.34,21.099],[-172.665,20.814],[-174.107,19.504],[-172.001,18.61]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.889,0.036],[0.041,-1.019],[0.77,0.406],[0.02,1.935]],"o":[[1.1,-0.075],[-0.02,0.506],[-0.814,-0.429],[-0.012,-1.148]],"v":[[90.523,87.924],[92.016,89.446],[91.286,90.444],[88.813,89.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.123,-0.58],[0.178,-0.498],[0.877,0.305],[-0.179,0.766],[-0.555,0.37],[-0.496,-0.232]],"o":[[-0.084,0.413],[-0.266,0.744],[-0.863,-0.3],[0.149,-0.639],[0.393,-0.262],[0.522,0.244]],"v":[[138.408,211.667],[138.096,213.122],[136.452,214.181],[135.764,212.326],[136.781,210.764],[138.054,210.214]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.803,-0.034],[-0.025,0.773],[-0.809,0.057],[0.039,-0.63]],"o":[[-0.687,-0.037],[0.029,-0.887],[0.732,-0.051],[-0.05,0.817]],"v":[[-161.82,173.077],[-163.311,172.197],[-161.614,170.899],[-160.07,171.929]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.84,0.149],[0.038,-1.282],[0.847,0.055],[0.14,1.049]],"o":[[0.787,0.363],[-0.022,0.75],[-0.995,-0.065],[-0.112,-0.836]],"v":[[71.984,96.534],[73.889,98.179],[72.574,99.47],[70.511,97.919]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.841,-0.063],[0.052,1.096],[-0.892,0.024],[-0.036,-1.082]],"o":[[-0.78,-0.107],[-0.053,-1.115],[0.922,-0.025],[0.036,1.079]],"v":[[-178.961,138.033],[-180.842,136.878],[-179.048,135.659],[-177.224,136.866]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.935,-0.127],[-0.034,0.956],[-1.105,-0.084],[0.015,-1.124]],"o":[[-0.766,-0.122],[0.034,-0.968],[0.821,0.063],[-0.016,1.193]],"v":[[-160.293,42.348],[-162.149,41.342],[-160.116,39.856],[-158.197,40.954]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.063,0.873],[-0.837,-1.598],[0.528,0.074],[-0.609,1.268]],"o":[[1.511,1.241],[-0.537,-0.015],[-1.412,-0.199],[0.408,-0.849]],"v":[[-115.086,169.129],[-112.551,173.91],[-114.16,173.856],[-115.375,171.698]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.264,-0.28],[-0.314,2.409],[-1.424,-0.23],[-0.094,-0.352],[0.269,-0.252]],"o":[[-1.305,-1.097],[1.149,0.811],[0.325,0.052],[0.128,0.48],[-0.28,0.263]],"v":[[-160.503,23.054],[-163.664,19.155],[-159.899,20.904],[-159.046,21.379],[-159.706,22.218]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.643,-0.197],[0.012,1.134],[-0.756,0.044],[-0.014,-1.019]],"o":[[-0.939,-0.203],[-0.011,-1.043],[1.052,-0.061],[0.012,0.908]],"v":[[-174.019,-17.6],[-176.062,-19.159],[-174.234,-20.185],[-172.449,-18.635]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.886,0.165],[0.044,-0.939],[1.041,-0.047],[0.039,0.792]],"o":[[0.789,0.132],[-0.049,1.025],[-0.919,0.041],[-0.053,-1.067]],"v":[[87.24,53.02],[88.937,54.285],[86.986,55.906],[85.576,54.533]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.874,-0.147],[-0.13,0.989],[-0.933,-0.039],[0.175,-0.922]],"o":[[-0.882,-0.035],[0.139,-1.057],[0.918,0.038],[-0.181,0.957]],"v":[[59.362,166.781],[57.753,165.772],[59.746,164.441],[61.931,165.611]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.693,1.87],[-0.061,-0.737],[0.455,-0.274],[0.417,-0.068],[-0.571,-1.052],[0.324,0.204],[-0.189,0.68],[-0.77,0.038]],"o":[[0.582,0.089],[0.05,0.599],[-0.374,0.226],[-1.417,0.23],[-0.366,-0.139],[-0.608,-0.383],[0.247,-0.888],[0.964,-0.048]],"v":[[114.518,-36.519],[115.848,-35.644],[114.867,-34.475],[113.677,-33.926],[112.797,-31.884],[111.707,-32.312],[111.093,-33.981],[112.85,-34.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.993,0.896],[-1.637,-0.167],[1.242,-0.084],[-0.397,0.912]],"o":[[0.463,0.843],[-0.581,0.928],[-0.795,0.054],[0.509,-1.169]],"v":[[-123.086,153.144],[-121.644,155.644],[-124.059,157.587],[-124.964,156.459]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.505,-1.103],[-0.742,-1.368],[1.136,0.735],[-0.135,0.348],[-0.209,0.028]],"o":[[-0.798,0.258],[-1.384,0.089],[-0.232,-0.15],[0.07,-0.179],[1.643,-0.219]],"v":[[-205.188,82.385],[-206.374,84.03],[-210.114,82.916],[-210.57,82.261],[-210.004,81.876]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.017,-0.98],[1.268,0.015],[0.033,1.09],[-1.06,0.025]],"o":[[-0.112,0.593],[-1.113,-0.013],[-0.03,-0.975],[1.227,-0.028]],"v":[[-152.789,77.644],[-153.747,79.276],[-155.431,77.468],[-154.014,75.823]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.249,0.323],[-1.026,0.614],[-0.481,0.34],[-0.021,-0.438],[1.221,0.13],[0.387,-0.352],[0.799,0.383]],"o":[[1.386,0.243],[0.504,-0.301],[-0.02,0.44],[0.05,1.06],[-0.498,-0.053],[-0.736,0.669],[-0.012,-0.444]],"v":[[111.306,-1.85],[114.589,-3.222],[116.035,-4.235],[115.983,-2.916],[114.49,-1.325],[113.123,-0.912],[110.807,-0.765]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.216,-0.028],[-0.042,-0.952],[0.815,0.198],[0.335,-0.304],[0.549,0.511],[-0.342,0.551]],"o":[[0.494,0.024],[0.042,0.949],[-0.512,-0.124],[-0.335,0.303],[-0.486,-0.451],[0.536,-0.863]],"v":[[-216.957,128.24],[-215.661,129.229],[-217.027,130.198],[-218.181,130.67],[-219.381,131.065],[-219.53,129.446]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.11,-1.236],[0.078,-0.056],[0.739,0.045],[-0.156,0.857],[-1.04,-0.302]],"o":[[-0.078,0.056],[-0.74,-0.016],[-0.902,-0.055],[0.167,-0.92],[1.257,0.364]],"v":[[132.35,35.913],[132.116,36.081],[129.896,36.028],[128.631,34.565],[130.462,33.359]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.225,-1.828],[0.39,-0.193],[1.052,1.51]],"o":[[-0.412,0.149],[-1.633,0.81],[2.17,-1.377]],"v":[[86.098,74.093],[84.866,74.546],[80.837,73.553]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.401,-0.442],[0.055,1.259],[-0.745,0.055],[-0.108,-1.09]],"o":[[-1.084,-0.311],[-0.05,-1.142],[1.195,-0.089],[0.11,1.111]],"v":[[177.7,4.106],[175.514,2.361],[177.172,1.187],[179.131,2.92]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.007,0],[-0.013,0.591],[-0.516,0.112],[-0.216,-0.374],[0.534,-0.456],[0.051,0.568],[0,0.739]],"o":[[0,-0.592],[0.01,-0.479],[0.575,-0.125],[0.36,0.624],[-0.511,0.436],[-0.066,-0.733],[-0.007,0]],"v":[[177.681,-232.13],[177.684,-233.904],[178.373,-234.915],[179.335,-234.175],[178.622,-229.542],[177.717,-229.914],[177.701,-232.13]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.554,0.03],[0.57,0.289],[-0.06,0.624],[-0.636,0.156],[-0.92,-0.792],[0.323,-0.24]],"o":[[-0.654,0.043],[-0.5,-0.254],[0.068,-0.713],[1.262,-0.31],[0.365,0.314],[-0.45,0.335]],"v":[[-180.796,177.774],[-182.645,177.376],[-184.009,176.475],[-182.395,175.425],[-179.203,176.523],[-179.264,177.366]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.406,-0.899],[0.675,-0.501],[0.38,0.513],[-0.447,0.647],[-0.648,-0.275]],"o":[[-0.377,1.008],[-0.515,0.383],[-0.447,-0.603],[0.444,-0.643],[0.746,0.316]],"v":[[-18.272,144.946],[-20.402,146.386],[-21.942,145.902],[-22.02,143.974],[-20.31,143.618]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.061,-0.971],[0.117,-0.29],[0.706,0.053],[0.099,0.575],[0.483,0.915],[-0.549,0.398]],"o":[[0,0.337],[-0.26,0.648],[-0.664,-0.05],[-0.163,-0.947],[-0.08,-0.834],[0.252,1.312]],"v":[[53.449,86.707],[53.429,87.71],[51.959,88.911],[51.126,87.535],[50.833,84.672],[51.926,83.093]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.013,-0.159],[1.248,-0.217],[0.082,-0.537],[-0.344,-0.232],[-0.323,-0.212],[0.193,-0.105],[0.856,0.784],[-2.105,0.141],[-1.02,-0.011]],"o":[[-1.253,0.188],[-0.41,0.071],[-0.086,0.566],[0.321,0.216],[-0.193,0.105],[-1.121,0.114],[0.27,-1.606],[1.015,-0.068],[0.013,0.159]],"v":[[32.148,136.491],[28.39,137.067],[27.333,137.68],[28.189,138.535],[29.157,139.174],[28.579,139.489],[25.578,138.601],[29.048,135.995],[32.108,136.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.928,-0.002],[-0.913,-0.969],[0.388,-0.596],[0.57,0.234],[0.603,1.155]],"o":[[1.197,0.189],[0.435,0.461],[-0.418,0.642],[-1.23,-0.506],[-0.363,-0.695]],"v":[[154.381,205.195],[157.673,206.792],[157.877,208.398],[156.316,208.702],[153.6,206.131]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.013,-1.087],[0.115,-0.425],[0.323,0.384],[0.377,1.05],[-0.654,0.383],[-0.269,-0.34]],"o":[[-0.088,0.398],[-0.145,0.535],[-0.689,-0.819],[-0.238,-0.664],[0.639,-0.374],[0.527,0.665]],"v":[[-130.309,32.518],[-130.591,33.776],[-131.449,34.021],[-133.356,31.434],[-132.899,29.752],[-131.773,30.38]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.607,0.27],[-0.752,-0.171],[-1.197,1.04],[-0.501,-0.307],[-0.269,-0.649]],"o":[[-0.524,-1.288],[1.425,0.324],[0.5,-0.229],[-0.109,0.942],[-2.604,0.222]],"v":[[-176.82,15.487],[-175.731,14.476],[-171.752,13.849],[-170.251,13.848],[-169.004,15.452]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.355,-0.052],[0,0.883],[-1.13,-0.408],[-0.11,-0.601],[0.346,-0.287]],"o":[[0,-0.883],[0.965,-0.279],[0.394,0.142],[0.092,0.505],[-0.997,0.826]],"v":[[-242.497,59.766],[-242.499,57.118],[-239.555,56.479],[-238.511,57.075],[-239.082,58.197]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.479,0.629],[-0.648,-1.057],[-0.795,-0.499],[0.452,0.12],[1.094,-0.358],[-0.002,0.838]],"o":[[0.971,0.351],[0.508,0.829],[-0.276,0.389],[-1.137,-0.302],[-0.776,0.254],[0.002,-0.737]],"v":[[66.117,80.896],[68.728,82.476],[71.279,83.207],[70.154,83.746],[66.857,83.966],[65.652,82.997]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.428,0.061],[-0.203,-0.689],[0.434,-0.321],[1.452,0.048],[0.13,0.499],[-0.314,0.214]],"o":[[0.473,0.084],[0.169,0.573],[-1.187,0.877],[-0.455,-0.015],[-0.119,-0.454],[1.153,-0.786]],"v":[[226.418,195.659],[227.793,196.106],[227.044,197.43],[223.037,198.563],[222.002,197.902],[222.565,196.964]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.32,0.159],[-0.13,-0.443],[0.257,-0.141],[1.308,-0.472],[0.263,0.745],[-1.004,0.363]],"o":[[0.338,-0.009],[0.101,0.344],[-1.203,0.663],[-0.626,0.226],[-0.28,-0.791],[1.249,-0.451]],"v":[[207.279,202.316],[208.137,202.663],[207.72,203.358],[204.201,205.486],[202.376,205.317],[203.4,203.156]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.041,0.9],[-0.61,0.029],[-0.767,-1.062],[0.436,-0.46],[0.042,-0.025]],"o":[[-0.065,-0.78],[1.293,-0.061],[0.333,0.461],[-0.033,0.035],[-0.912,0.542]],"v":[[-105.469,117.089],[-104.593,115.839],[-101.424,117.331],[-101.546,118.81],[-101.665,118.894]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.151,1.364],[-0.63,0.113],[0.818,-1.255],[0.142,-0.252],[0.567,0.154],[-0.039,0.521]],"o":[[0.631,-0.113],[-0.548,1.28],[-0.156,0.239],[-0.318,0.567],[-0.768,-0.208],[0.101,-1.367]],"v":[[97.462,32.303],[99.354,31.964],[98.86,35.952],[98.541,36.767],[97.16,37.92],[97.025,36.396]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.541,0.077],[-0.927,-0.123],[-0.027,-0.385],[0.237,-0.072],[1.574,0.122],[0.086,0.708],[-0.548,0.126]],"o":[[0.986,0.128],[0.289,0.038],[0.021,0.297],[-1.462,0.445],[-0.562,-0.044],[-0.084,-0.699],[0.572,-0.131]],"v":[[-179.333,6.974],[-176.493,7.345],[-175.824,7.773],[-176.327,8.225],[-180.804,9.097],[-182.033,8.302],[-181.037,7.228]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.028,-0.65],[0.107,-0.474],[0.645,0.05],[0.177,0.535],[-0.524,1.032],[-0.502,-0.008],[-0.188,-0.345]],"o":[[-0.072,0.481],[-0.136,0.604],[-0.566,-0.044],[-0.386,-1.167],[0.174,-0.342],[0.469,0.007],[0.318,0.582]],"v":[[163.499,-11.61],[163.276,-10.168],[162.106,-9.305],[161.094,-10.191],[161.517,-13.439],[162.289,-14.206],[163.12,-13.474]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.158,1.276],[-1.455,0.02],[0.722,-0.95],[0.687,-0.094],[0,0],[-0.11,0.582]],"o":[[1.005,0.523],[-0.401,1.174],[-0.687,0.094],[0,0],[0.11,-0.582],[1.016,-0.975]],"v":[[-126.626,141.012],[-124.068,143.133],[-126.111,146.068],[-128.17,146.35],[-128.204,146.316],[-127.874,144.57]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.928,0.089],[0.345,0.016],[0.08,0.602],[-0.576,0.188],[-1.254,-0.58],[0.599,-0.439]],"o":[[-0.38,0],[-0.547,-0.025],[-0.083,-0.626],[1.318,-0.429],[0.682,0.316],[-0.795,0.582]],"v":[[115.516,165.27],[114.446,165.267],[113.408,164.425],[114.176,163.146],[118.065,163.388],[118.155,164.626]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.297,0.104],[-0.901,-0.005],[1.556,-1.633],[0.627,-0.035],[-0.721,1.796]],"o":[[0.901,0.005],[1.305,0.885],[-0.626,0.043],[-1.781,0.1],[0.299,-0.104]],"v":[[-56.537,153.429],[-53.834,153.445],[-54.085,155.963],[-55.964,156.091],[-57.431,153.741]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.431,-0.336],[0.994,-0.176],[1.052,0.843],[-0.24,0.561],[-0.792,0.058],[-0.484,-0.042]],"o":[[-0.067,0.699],[-1.123,0.199],[-0.465,-0.372],[0.322,-0.753],[0.478,-0.035],[0.431,0.336]],"v":[[146.685,59.454],[145.901,61.277],[142.511,61.049],[142.26,59.57],[143.942,58.336],[145.393,58.446]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.097,-0.522],[1.292,-0.325],[0.321,0.216],[-0.086,0.566],[-0.41,0.071],[-1.254,0.188],[-0.198,-0.047]],"o":[[-1.293,0.325],[-0.323,-0.212],[-0.344,-0.232],[0.082,-0.537],[1.248,-0.217],[0.199,0.048],[0.097,0.522]],"v":[[33.034,138.199],[29.157,139.174],[28.189,138.535],[27.333,137.68],[28.39,137.067],[32.148,136.491],[32.744,136.634]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,-0.014],[0.466,0.124],[-0.064,0.732],[-0.747,0.177],[-0.886,-0.937],[0.196,-0.535],[0.486,-0.034],[0.295,0]],"o":[[-0.488,-0.04],[-0.478,-0.128],[0.058,-0.663],[1.124,-0.266],[0.336,0.355],[-0.201,0.547],[-0.293,0.02],[-0.001,0.014]],"v":[[66.808,167.4],[65.348,167.261],[64.156,166.44],[65.242,164.823],[68.389,165.533],[68.957,166.802],[67.694,167.355],[66.811,167.359]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.798,0.258],[-0.883,-0.017],[-0.268,-0.737],[0.337,-0.415],[0.413,0.187],[1.223,-0.121]],"o":[[0.865,0.248],[0.678,0.013],[0.234,0.645],[-0.534,0.658],[-1.094,-0.494],[-0.742,-1.368]],"v":[[-205.188,82.385],[-202.551,82.589],[-201.034,83.511],[-201.542,84.943],[-202.965,84.8],[-206.374,84.03]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.391,-1.084],[0.169,0.643],[-2.111,-0.012],[-0.403,-0.223]],"o":[[-0.603,-0.206],[0.757,-1.675],[0.403,0.223],[-1.507,0.962]],"v":[[161.117,75.56],[159.898,74.349],[163.73,71.27],[164.94,71.939]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.214,-1.083],[0.012,-0.59],[0.408,-0.105],[0.185,0.361],[-0.053,0.75],[-0.105,1.271],[-0.547,-0.032],[-0.013,-0.35]],"o":[[0,0.851],[-0.007,0.342],[-0.455,0.117],[-0.345,-0.671],[0.089,-1.272],[0.033,-0.4],[0.441,0.026],[0.05,1.325]],"v":[[233.079,-217.741],[233.076,-215.71],[232.676,-214.846],[231.764,-215.437],[231.34,-217.582],[231.641,-221.395],[232.261,-222.212],[232.774,-221.44]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.968,-0.443],[0,1.359],[-0.779,-0.269],[1.118,-1.027]],"o":[[0,-1.36],[0.848,-0.07],[1.455,0.502],[-0.83,0.762]],"v":[[-242.505,165.831],[-242.505,161.753],[-240.072,162.179],[-239.601,164.501]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.502,-2.297],[2.232,1.706]],"o":[[-2.389,-0.483],[2.179,-1.378]],"v":[[-150.974,185.153],[-158.231,183.821]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.7,0.105],[0.879,1.032],[-0.876,0.204],[-0.627,-1.277],[0.266,-0.401]],"o":[[-1.055,-0.222],[-0.47,-0.551],[1.409,-0.328],[0.172,0.35],[-0.257,0.387]],"v":[[129.569,57.998],[126.511,56.074],[126.916,54.796],[130.788,56.581],[130.897,57.681]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.348,-0.335],[1.002,-0.975],[0.657,0.268],[0.036,0.603],[-0.005,0.294]],"o":[[0.92,1.203],[-0.467,0.454],[-0.615,-0.251],[-0.018,-0.293],[0.594,-1.171]],"v":[[-110.768,122.435],[-111.122,125.708],[-112.858,126.227],[-113.609,124.734],[-113.6,123.851]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.796,-1.082],[1.341,-0.287],[0.383,1.152],[-0.328,0.755]],"o":[[0.088,1.556],[-1.104,-0.029],[0.263,-0.809],[1.063,0.122]],"v":[[145.469,15.289],[143.267,17.768],[140.882,16.236],[142.414,14.441]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.002],[0.344,0.021],[-0.109,1.128],[-0.994,-0.035],[-0.883,-0.764],[0.13,-0.373],[0.341,-0.006],[0.591,0]],"o":[[-0.345,0],[-0.701,-0.044],[0.09,-0.936],[1.145,0.041],[0.262,0.227],[-0.138,0.397],[-0.591,0.011],[0,-0.002]],"v":[[189.64,182.151],[188.605,182.147],[186.999,181.203],[188.825,179.593],[191.901,180.889],[192.299,181.78],[191.413,182.153],[189.64,182.156]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.295,-0.112],[0.451,-0.279],[-0.071,0.931],[-0.902,0.593],[-0.092,0.059],[-1.177,-0.294],[0.891,-0.532],[0.147,-0.476]],"o":[[-0.639,-0.343],[-0.936,0.579],[0.727,-0.786],[0.091,-0.059],[0.868,-0.72],[0.217,1.061],[-0.375,0.224],[-0.295,0.112]],"v":[[186.867,38.767],[185.308,39.168],[184.198,38.466],[186.567,36.315],[186.841,36.137],[189.826,35.227],[188.706,37.563],[187.754,38.43]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.647,0.752],[-0.92,-0.107],[-0.693,-0.56],[1.477,-1.3],[0.2,0.923]],"o":[[0.033,1.22],[0.766,0.089],[-2.107,-0.005],[-0.671,0.591],[-0.317,-1.46]],"v":[[9.933,140.708],[11.776,142.173],[14.06,142.527],[8.944,145.002],[7.69,144.55]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.914,-0.45],[0.585,0.793],[-0.572,0.117],[-1.561,-0.768],[-0.018,-0.357],[0.213,-0.105]],"o":[[-1.127,-0.208],[-0.302,-0.409],[1.602,-0.329],[0.262,0.129],[0.016,0.311],[-0.964,0.477]],"v":[[93.485,175.087],[91.014,173.468],[91.446,172.456],[96.214,172.659],[96.818,173.215],[96.327,173.687]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.663,-0.058],[0.184,1.037],[-1.111,0.032],[-0.142,-1.093]],"o":[[-1.058,0.228],[-0.151,-0.852],[1.076,-0.031],[0.143,1.103]],"v":[[228.009,60.778],[226.084,59.533],[228.387,57.474],[230.328,59.051]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.388,0.288],[-1.363,-0.087],[0.61,-1.05],[1.462,1.122],[0.73,0.149]],"o":[[1.363,0.502],[1.211,0.078],[-0.852,1.469],[-0.538,-0.413],[0.388,-0.288]],"v":[[-168.25,39.326],[-164.167,39.306],[-163.393,40.727],[-167.771,41.386],[-169.416,40.189]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.121,0.115],[1.764,-0.942],[0.31,0.188],[-0.065,0.272],[-0.911,1.423]],"o":[[-1.061,1.467],[-0.253,0.135],[-0.318,-0.192],[0.375,-1.558],[0.856,0.784]],"v":[[28.579,139.489],[25.317,143.833],[24.531,144.063],[24.406,143.264],[25.578,138.601]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.37,0.324],[1.15,-0.331],[1.326,-0.153],[-0.596,0.001],[-1.525,0.052],[-0.476,-1.183],[0.402,-0.289],[0.303,0.256]],"o":[[-0.574,-0.907],[-1.318,0.38],[0.361,-0.615],[1.527,-0.003],[1.559,-0.053],[0.183,0.454],[-0.413,0.297],[-0.375,-0.318]],"v":[[-65.903,167.692],[-68.337,166.684],[-72.169,166.168],[-70.607,165.565],[-66.026,165.552],[-63.421,167.734],[-63.751,168.923],[-64.792,168.662]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.631,-0.113],[-0.013,2.153],[-0.38,0.137],[-0.163,-0.318],[0.497,-2.205]],"o":[[0.235,-2.146],[0.002,-0.322],[0.465,-0.167],[1.05,2.049],[-0.63,0.113]],"v":[[97.462,32.303],[97.647,25.85],[97.876,24.927],[98.737,25.554],[99.354,31.964]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.343,1.475],[-0.838,0.267],[-0.648,-0.387],[0.317,-0.484],[-0.371,-0.651],[0.437,-0.235],[0.228,0.366]],"o":[[0.101,-0.57],[0.905,-0.288],[0.647,0.386],[-0.43,0.657],[0.22,0.386],[-0.396,0.214],[-0.66,-1.06]],"v":[[-131.411,160.552],[-130.881,158.898],[-128.84,159.863],[-128.77,161.26],[-128.733,163.203],[-128.977,164.212],[-130.033,164]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.088,1.556],[0.25,-1.32],[0.575,0.122],[0.604,1.553]],"o":[[1.302,0.634],[-0.123,0.651],[-1.501,-0.319],[1.341,-0.287]],"v":[[145.469,15.289],[147.734,19.576],[146.669,20.233],[143.267,17.768]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.152,-0.978],[0.677,-0.163],[0.344,0.691],[0.025,1.135],[-0.85,0.077],[0.084,-0.737]],"o":[[-0.012,0.631],[-0.666,0.16],[-0.507,-1.018],[-0.018,-0.812],[0.94,-0.086],[-0.122,1.07]],"v":[[-119.902,53.309],[-120.621,54.666],[-122.264,54.064],[-123.098,50.819],[-121.85,49.258],[-120.792,50.649]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.426,0],[-0.631,-1.179],[1.018,0.026],[1.411,0.119],[-0.094,0.458],[-0.814,0.089]],"o":[[1.301,-0.171],[0.409,0.765],[-1.414,-0.035],[-0.475,-0.04],[0.127,-0.621],[0.531,-0.058]],"v":[[20.583,183.454],[23.61,184.608],[22.88,185.991],[18.642,185.695],[18.038,184.872],[19.083,183.465]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.15,-0.272],[0.746,0.474],[0.658,0.797],[0.592,0.583],[-0.572,0.645],[-0.238,-0.522],[-0.988,-1.506]],"o":[[-0.339,0.882],[-0.876,-0.558],[-0.529,-0.641],[-0.427,-0.42],[0.57,-0.643],[0.801,1.756],[0.183,0.28]],"v":[[156.044,210.063],[154.418,210.706],[152.205,208.576],[150.522,206.733],[150.074,205.297],[151.881,205.324],[155.566,209.206]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.834,-0.005],[0.018,-0.834],[0.848,-0.376],[0.753,0.537],[-0.086,0.693],[-0.107,0.326]],"o":[[0.495,0.533],[-0.018,0.86],[-0.764,0.338],[-0.804,-0.573],[0.041,-0.334],[0.583,-0.779]],"v":[[170.263,-184.443],[171.386,-182.623],[170.363,-180.489],[167.978,-180.712],[167.688,-182.738],[167.997,-183.718]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.534,1.258],[-0.419,0.608],[-1.151,-1.741],[0.711,-1.1],[1.005,0.523],[0.032,0.11]],"o":[[0.075,-0.655],[0.945,1.857],[0.578,0.874],[-1.455,0.02],[-0.032,-0.11],[-0.266,-1.34]],"v":[[-127.907,136.781],[-127.641,134.822],[-124.522,140.23],[-124.068,143.133],[-126.626,141.012],[-126.724,140.683]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.933,-0.004],[-0.026,-1.018],[0.782,-0.017],[0.004,0.776]],"o":[[1.073,0.005],[0.022,0.865],[-0.857,0.018],[-0.005,-0.912]],"v":[[225.517,207.703],[227.771,209.8],[226.007,211.847],[223.519,209.656]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.246,-0.006],[-0.21,1.633],[-0.291,0.109],[-0.126,0.062],[-0.381,0.083],[-0.383,-0.052],[-0.136,-0.824],[0.699,-0.206],[0.212,-0.373]],"o":[[-1.248,-0.54],[0.292,-0.109],[0.126,-0.061],[0.381,-0.083],[0.381,0.066],[0.831,0.113],[0.151,0.913],[-0.371,0.109],[-0.246,0.005]],"v":[[232.86,34.465],[230.735,31.629],[231.609,31.301],[231.988,31.116],[233.13,30.867],[234.274,31.06],[235.722,32.464],[234.558,33.839],[233.597,34.448]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.861,0.719],[-0.28,0.062],[-2.79,-0.282],[-0.042,-0.495],[0.355,-0.156],[0.222,0.026]],"o":[[0.166,-0.591],[2.772,-0.616],[0.36,0.036],[0.04,0.472],[-0.223,0.098],[-2.804,-0.335]],"v":[[-17.14,174.077],[-16.399,173.33],[-8.044,173.155],[-7.121,173.725],[-7.906,174.487],[-8.604,174.699]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.438,1.064],[-1.253,-0.514],[1.712,-0.357],[0.906,-0.067],[-0.216,0.858],[-0.111,0.053]],"o":[[1.634,-0.06],[-1.609,0.859],[-0.753,0.157],[0.29,-0.952],[0.112,-0.052],[0.79,-0.4]],"v":[[-168.439,21.212],[-165.119,23.415],[-170.262,24.449],[-172.711,24.646],[-171.121,22.616],[-170.786,22.457]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.1,-0.004],[0.383,0.341],[0.743,1.476],[-0.454,0.347],[-0.354,-0.334],[-0.573,-0.676],[-1.329,0.623],[-0.329,-0.474],[0.318,-0.299]],"o":[[-0.508,-0.001],[-1.222,-1.088],[-0.215,-0.426],[0.599,-0.459],[0.645,0.608],[0.979,1.154],[0.369,-0.173],[0.399,0.575],[-0.713,0.668]],"v":[[151.852,218.185],[150.475,217.735],[147.416,213.97],[147.27,212.616],[148.562,213.226],[150.387,215.163],[153.833,215.852],[155.003,215.639],[154.354,216.76]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.759,0.046],[0.452,0.232],[-0.008,0.574],[-0.404,0.191],[-0.781,0.298],[-0.426,-0.872],[0.74,-0.46]],"o":[[-0.496,0.012],[-0.449,-0.23],[0.007,-0.506],[0.756,-0.357],[0.922,-0.352],[0.431,0.882],[-0.646,0.402]],"v":[[120.553,174.446],[119.116,174.186],[118.232,173.114],[119.044,172.148],[121.345,171.15],[123.447,171.963],[122.672,173.933]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.569,1.897],[0.211,-1.206],[0.679,-1.273],[0.496,-0.318],[0.422,0.452],[-0.309,0.343]],"o":[[1.028,-0.425],[-0.262,1.498],[-0.476,0.349],[-0.597,0.383],[-0.461,-0.494],[1.242,-1.38]],"v":[[98.602,5.007],[99.777,5.995],[97.951,9.92],[96.519,10.963],[94.915,10.688],[95.221,9.404]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.698,-0.347],[-0.141,-1.085],[0.158,0.548],[-0.62,2.785],[-0.534,0.193],[-0.005,-0.779],[-0.001,-1.324]],"o":[[-0.811,0.848],[-0.571,-0.323],[-0.783,-2.719],[0.08,-0.36],[0.556,0.603],[0.009,1.324],[0.001,0.651]],"v":[[90.939,107.548],[90.202,110.514],[89.308,109.042],[88.934,100.781],[89.581,99.79],[90.218,101.934],[90.224,105.906]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.639,-0.343],[0.747,-1.569],[0.072,-0.626],[0.255,-0.561],[0.37,0.507],[-2.064,1.822],[-0.936,0.579]],"o":[[-1.326,1.009],[-0.205,0.539],[-0.583,0.359],[-0.446,0.982],[0.035,-2.974],[-0.071,0.931],[0.451,-0.279]],"v":[[186.867,38.767],[183.429,42.316],[182.505,43.732],[181.499,45.292],[180.343,45.26],[184.198,38.466],[185.308,39.168]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.016,-0.517],[-0.118,-1.023],[-0.415,-0.783],[0.416,-0.756],[0.606,1.192],[-0.67,1.026],[-0.323,0.432],[-0.611,-0.178]],"o":[[-1.115,-0.545],[0.103,0.885],[0.351,0.664],[-1.395,0.25],[-0.59,-1.161],[0.296,-0.453],[0.324,-0.432],[0.703,0.205]],"v":[[-122.914,147.223],[-124.281,148.242],[-123.324,150.702],[-123.07,152.788],[-126.153,151.281],[-125.583,147.968],[-124.711,146.598],[-123.391,145.835]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.495,-0.391],[0.322,1.505],[0.526,0.007],[2.463,0.011],[-1.323,-0.147],[-1.743,0.507],[-0.232,-1.849]],"o":[[-0.322,-1.505],[0.429,-1.074],[-2.463,-0.035],[0.597,-1.667],[1.762,0.195],[0.706,1.749],[0.067,0.534]],"v":[[96.278,26.712],[95.312,22.196],[94.372,21.304],[86.983,21.261],[90.296,19.87],[95.55,19.774],[96.723,25.225]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.871,-0.143],[-0.083,1.179],[-1.072,0.041],[0.169,-0.982]],"o":[[-2.316,0.011],[0.141,-2.007],[1.785,-0.068],[-0.281,1.627]],"v":[[-107.688,219.195],[-110.651,217.669],[-107.819,216.332],[-105.14,217.928]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.397,-0.124],[2.8,0.771],[-0.426,0.629],[-0.396,0.26]],"o":[[-0.132,2.396],[-0.36,-0.82],[0.396,-0.26],[1.349,-0.412]],"v":[[197.507,31.645],[191.687,34.871],[192.193,32.797],[193.382,32.016]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.426,-0.224],[0.522,-0.733],[-0.09,-0.78],[-1.503,0.377],[-0.97,0.147],[-0.168,-0.803],[0.682,-0.063],[0.193,0.403],[2.666,-0.723],[0.099,0.754],[-0.959,0.608]],"o":[[-0.447,0.821],[-0.311,0.436],[1.531,-0.406],[0.953,-0.239],[0.582,-0.088],[0.147,0.706],[0.092,-0.303],[-2.592,1.053],[-0.627,0.17],[-0.093,-0.707],[1.128,-0.714]],"v":[[124.154,107.538],[122.181,109.282],[121.602,110.92],[126.131,109.725],[129.014,109.107],[130.662,109.468],[129.326,110.505],[129.635,109.602],[121.582,111.569],[120.231,110.838],[120.463,108.709]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.44,0],[-0.186,-1.273],[0.986,-0.313],[0.529,-0.001],[0.306,0.943],[-0.861,0.112]],"o":[[0.945,0.037],[0.183,1.257],[-0.503,0.16],[-0.856,0.001],[-0.214,-0.659],[0.433,-0.056]],"v":[[109.956,106.928],[112.37,107.968],[110.363,109.92],[108.78,110.154],[106.746,109.054],[108.638,106.938]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.174,0.777],[-1.083,0.271],[-1.351,0.143],[1.757,-0.325]],"o":[[-0.376,-1.175],[1.333,-0.333],[0.747,1.673],[-1.322,0.244]],"v":[[-162.12,122.244],[-160.849,120.258],[-156.799,119.773],[-158.32,122.861]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.867,0.128],[0.52,1.145],[-3.43,-0.165],[4.405,-0.327]],"o":[[-0.509,-0.834],[3.509,-0.576],[-0.872,0.928],[-0.867,-0.128]],"v":[[-185.928,21.195],[-188.194,19.327],[-178.05,20.324],[-183.327,21.579]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.056,-0.986],[0.583,-0.065],[0.352,-0.887],[0.321,0.433],[1.002,-0.228],[1.18,0.038],[-1.315,0.973],[-0.373,-0.197],[-0.459,-0.168],[-0.615,2.613],[-0.138,0.313]],"o":[[-0.587,0.028],[-0.713,0.08],[-0.232,0.583],[-0.79,-1.068],[-1.093,0.249],[0.775,-1.63],[0.327,-0.242],[0.432,0.229],[2.498,0.915],[0.077,-0.328],[0.197,1.197]],"v":[[-40.57,146.534],[-42.331,146.625],[-44.153,147.56],[-45.181,147.619],[-47.983,147.114],[-51.203,148.069],[-47.409,144.96],[-46.291,145.062],[-44.948,145.657],[-41.839,143.952],[-41.434,143.01]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.022,-2.367],[1.821,0.233],[0.733,0.095],[0.192,0.452],[-0.316,0.296],[-0.709,0.346]],"o":[[0.016,1.812],[-0.733,-0.094],[-0.466,-0.06],[-0.235,-0.554],[0.588,-0.551],[2.134,-1.041]],"v":[[-152.773,37.616],[-154.683,39.287],[-156.885,39.014],[-157.943,38.31],[-157.397,37.228],[-155.372,36.013]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.963,-0.053],[-0.139,-0.168],[-0.848,-1.699],[0.455,-0.419],[0.409,0.281],[0.89,1.751]],"o":[[0.143,0.065],[1.181,1.428],[0.206,0.412],[-0.431,0.397],[-1.593,-1.094],[-0.439,-0.863]],"v":[[-122.654,160.103],[-122.08,160.378],[-118.503,164.631],[-118.419,165.988],[-119.772,165.856],[-123.654,161.72]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.67,0.594],[-0.561,-1.684],[-0.45,0.209],[-0.461,0.88],[0.807,-0.508],[2.88,0.421],[0.038,0.433],[-0.305,0.127]],"o":[[1.141,0.04],[0.146,0.438],[0.939,-0.435],[0.96,0.8],[-2.532,1.595],[-0.31,-0.045],[-0.037,-0.427],[0.821,-0.342]],"v":[[16.701,142.801],[19.711,144.018],[21.048,143.995],[22.998,141.877],[22.743,143.882],[14.537,145.258],[13.722,144.773],[14.433,144.151]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.276,-0.115],[0.238,-3.372],[0.006,-0.239],[0.039,-0.068],[0.388,0.892],[-0.216,2.855]],"o":[[0.81,3.355],[-0.017,0.238],[-0.078,-0.001],[-1.163,-0.563],[-0.186,-2.871],[0.276,0.115]],"v":[[98.275,-47.159],[98.439,-37.058],[98.42,-36.342],[98.244,-36.242],[97.104,-38.928],[97.447,-47.506]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.055,0.449],[-2.367,0.046],[0.62,0.038],[0.164,-1.466],[0.035,-0.935],[0.365,-0.058],[0.128,0.265],[0.058,1.109]],"o":[[2.303,-0.818],[-0.205,0.58],[-1.749,-0.108],[-0.104,0.927],[-0.011,0.287],[-0.338,0.054],[-0.503,-1.044],[-0.063,-1.201]],"v":[[-6.664,139.787],[0.401,139.196],[-0.829,140.054],[-3.343,142.507],[-3.44,145.312],[-3.78,146.038],[-4.385,145.484],[-5.082,142.177]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.39,0.118],[-0.55,-0.52],[0.076,-0.8],[0.697,0.026],[0.65,-0.29],[0.901,0.005],[-0.479,0.224],[-0.129,0.983]],"o":[[-0.004,0.686],[0.628,0.593],[-0.27,0.731],[-0.693,-0.026],[-0.901,-0.005],[0.44,-0.307],[0.877,-0.41],[0.171,-1.296]],"v":[[-51.447,148.263],[-50.885,150.15],[-50.253,152.296],[-51.801,153.153],[-53.834,153.445],[-56.537,153.429],[-55.21,152.524],[-53.733,150.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.288,-0.143],[0.425,-0.47],[0.362,0.002],[0.303,0.995],[-0.281,0.303],[-1.729,0.581],[-0.42,0.574],[-0.505,0.728],[-0.545,-0.263],[0.035,-0.414],[0.317,-0.555],[0.061,-0.954]],"o":[[-0.589,0.195],[-0.362,-0.002],[-0.303,-0.995],[0.281,-0.303],[0.21,0.649],[0.943,0.134],[0.523,-0.714],[0.199,-0.286],[0.385,0.186],[-0.057,0.67],[-0.434,0.759],[-0.289,0.142]],"v":[[100.018,-51.369],[98.457,-50.44],[97.371,-50.445],[96.461,-53.43],[97.304,-54.339],[98.505,-52.855],[100.192,-54.062],[101.662,-56.277],[102.483,-56.88],[102.903,-55.845],[102.105,-54.121],[100.884,-51.798]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.03,-1.039],[0.061,-0.555],[0.166,-1.552],[0.511,-0.374],[-0.141,2.375],[-0.806,1.07],[-0.576,-0.266],[0.166,-0.451]],"o":[[-0.713,-0.254],[-0.17,1.551],[-0.057,0.532],[-0.23,-2.356],[0.077,-1.295],[0.349,-0.463],[0.594,0.275],[-0.364,0.991]],"v":[[-132.093,129.454],[-132.977,130.191],[-133.519,134.842],[-134.005,136.309],[-134.381,129.226],[-133.285,125.598],[-131.867,125.104],[-131.595,126.403]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.135,2.009],[-0.719,0.133],[0.827,-2.772],[1.124,0.733],[-0.503,0.75]],"o":[[0.72,-0.132],[-1.657,2.267],[-0.543,0.682],[-1.101,-0.719],[1.279,-1.908]],"v":[[136.33,122.963],[138.489,122.566],[134.127,129.738],[132.072,130.995],[132.384,128.611]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.603,-0.206],[2.204,-1.321],[0.059,0.387],[-0.318,0.365],[-1.406,1.564]],"o":[[-0.722,2.733],[-0.549,0.329],[-0.078,-0.512],[1.381,-1.586],[0.169,0.643]],"v":[[161.117,75.56],[155.993,80.953],[155.231,80.417],[155.69,79.05],[159.898,74.349]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.167,-0.8],[0.385,-0.695],[1.169,0.575],[-0.513,0.928],[-0.299,0.506],[-1.01,-0.291]],"o":[[-0.11,0.793],[-0.599,1.082],[-1.187,-0.584],[0.284,-0.514],[0.393,-0.666],[0.972,0.28]],"v":[[154.211,83.892],[153.608,86.164],[151.03,86.919],[150.461,84.643],[151.35,83.122],[153.06,81.857]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.261,0.01],[0.889,-1.02],[1.492,-0.412],[0.28,0.343],[-0.193,0.385],[-0.689,0.565],[-0.897,0.767]],"o":[[0.773,1.234],[-1.042,1.196],[-0.371,0.103],[-0.337,-0.413],[0.409,-0.814],[0.912,-0.748],[0.262,-0.01]],"v":[[64.709,96.529],[64.301,99.903],[60.378,102.131],[59.263,102.018],[59.44,100.79],[61.231,98.856],[63.926,96.56]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.719,0.163],[-2.187,-0.01],[-0.388,-1.577],[-0.086,-0.436],[0.921,-0.131],[0.051,0.676],[0.007,1.034],[1.149,0.022]],"o":[[2.088,-0.952],[-1.493,1.153],[0.106,0.431],[0.16,0.815],[-1.003,0.142],[-0.078,-1.031],[-0.008,-1.072],[-0.722,-0.014]],"v":[[1.056,152.019],[7.545,151.353],[6.593,155.602],[6.855,156.907],[5.966,158.636],[4.923,157.209],[4.785,154.108],[3.214,152.479]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.711,0.031],[0.647,-0.131],[1.772,-0.338],[0.569,0.653],[-0.04,0.651]],"o":[[0.14,0.789],[-1.768,0.358],[-0.762,0.145],[-0.572,-0.657],[2.709,-0.658]],"v":[[47.491,135.959],[46.501,137.103],[41.202,138.207],[38.986,137.866],[39.357,135.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.703,0.291],[-0.604,0.059],[-4.632,-1.091],[4.411,0.034]],"o":[[-0.013,-0.983],[4.717,-0.457],[-4.397,0.456],[-0.728,-0.006]],"v":[[-85.959,179.902],[-84.6,178.96],[-70.563,179.725],[-83.783,180.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.158,0.518],[-1.741,0.472],[-0.591,-0.599],[0.336,-0.551],[0.365,-0.461],[0.91,0.283]],"o":[[-0.028,-1.519],[1.036,-0.281],[0.704,0.714],[-0.304,0.499],[-0.541,0.684],[-1.01,-0.313]],"v":[[233.477,-23.607],[235.276,-26.814],[237.412,-26.064],[237.169,-24.244],[236.103,-22.841],[233.986,-21.817]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.554,0.173],[0.993,0.776],[-1.438,0.532],[-0.55,0.19],[0.643,-2.275]],"o":[[-1.066,-0.682],[-1.227,-0.959],[0.545,-0.202],[2.373,0.444],[-0.148,0.524]],"v":[[-43.462,137.828],[-46.645,135.764],[-46.288,133.629],[-44.639,133.058],[-42.574,136.179]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.993,-0.361],[-0.289,-0.31],[0.444,-0.796],[1.065,-0.018],[0.708,0.039],[0.455,0.778],[-1.098,-0.026]],"o":[[0.288,0.309],[-0.552,0.65],[-1.065,0.018],[-0.662,-0.401],[-0.779,-0.043],[0.55,-0.954],[2.015,0.048]],"v":[[63.202,157.681],[64.066,158.608],[62.027,159.58],[58.832,159.634],[56.725,159.363],[54.725,158.492],[57.181,157.295]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.501,0.03],[-0.806,-0.206],[0.026,-0.855],[0.745,-0.108],[0.94,-0.001],[0.383,1.07],[-0.688,0.516]],"o":[[0.823,0.139],[0.687,0.176],[-0.028,0.902],[-0.928,0.134],[-0.976,0.001],[-0.406,-1.135],[0.501,-0.029]],"v":[[214.142,33.123],[216.607,33.556],[217.902,34.945],[216.475,36.097],[213.686,36.35],[211.339,35.236],[212.639,33.212]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.696,-0.032],[0.191,1.125],[-1.033,0.267],[-1.118,-0.563],[0.988,-0.902]],"o":[[-0.718,0.033],[-0.181,-1.066],[1.097,-0.283],[1.223,0.616],[-0.851,0.777]],"v":[[-208.114,167.999],[-209.882,166.304],[-208.286,164.361],[-204.991,164.249],[-204.614,166.612]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.769,0.841],[-1.304,-0.82],[1.256,-0.705],[1.395,0.429],[0.281,0.084]],"o":[[-1.149,-1.665],[1.709,-0.813],[1.196,0.752],[-1.357,0.762],[-0.28,-0.086],[0,0]],"v":[[-51.439,158.777],[-50.56,155.969],[-46.352,156.648],[-46.458,158.877],[-50.585,159.041],[-51.427,158.79]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.592,0],[-1.036,-0.45],[0.736,-0.581],[0.589,-0.183],[1.36,0.339],[-0.107,0.668],[-0.693,0.005]],"o":[[1.083,-0.008],[0.94,0.408],[-0.502,0.396],[-1.395,0.433],[-0.698,-0.174],[0.11,-0.685],[0.592,-0.005]],"v":[[154.063,149.002],[157.273,149.357],[157.467,150.881],[155.859,151.921],[151.675,151.693],[151.059,150.039],[152.286,149.003]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.067,0.699],[-0.084,-1.164],[1.228,-0.021],[-0.173,1.353],[0.345,0.077],[0.192,1.411],[-1.105,0.336],[-0.348,-0.654],[0.478,-0.035],[0.322,-0.753],[-0.465,-0.372],[-1.123,0.199]],"o":[[1.174,0.664],[0.077,1.073],[-1.073,0.018],[0.09,-0.707],[-1.056,-0.236],[-0.133,-0.977],[0.94,-0.285],[-0.484,-0.042],[-0.792,0.058],[-0.24,0.561],[1.052,0.843],[0.994,-0.176]],"v":[[146.685,59.454],[148.244,62.469],[146.54,64.47],[144.698,62.757],[143.979,62.143],[141.555,60.403],[143.777,57.316],[145.393,58.446],[143.942,58.336],[142.26,59.57],[142.511,61.049],[145.901,61.277]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.237,-0.303],[0.113,0.793],[-0.576,0.14],[-2.359,-0.203],[-0.031,-0.5],[0.357,-0.158]],"o":[[-0.684,-0.004],[-0.098,-0.688],[2.308,-0.559],[0.4,0.034],[0.031,0.498],[-2.12,0.937]],"v":[[199.746,133.857],[198.282,132.93],[199.289,131.641],[206.308,131.228],[207.17,131.869],[206.398,132.637]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.113,-2.441],[1.06,0.469],[0.719,0.412],[-0.126,0.76],[-0.522,-0.004]],"o":[[-1.101,0.526],[-0.698,-0.448],[-0.906,-0.519],[0.126,-0.76],[2.91,0.024]],"v":[[132.288,63.269],[129.055,63.136],[126.958,61.798],[126.194,59.607],[127.685,59.17]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.059,-0.364],[0.671,-0.777],[1.167,-1.203],[0.601,0.403],[-0.347,0.516],[-0.712,0.575],[-1.255,1.111],[-0.435,-0.152]],"o":[[-0.39,0.931],[-1.094,1.268],[-0.468,0.483],[-0.704,-0.473],[0.49,-0.729],[1.302,-1.052],[0.304,-0.27],[0.351,0.122]],"v":[[154.449,88.842],[152.699,91.339],[149.264,95.012],[147.537,95.453],[147.575,93.748],[149.29,91.731],[153.069,88.418],[154.13,88.064]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.071,-0.094],[0.269,0.746],[-0.519,0.438],[-1.126,0.101],[-0.617,0.449],[-0.379,-0.47],[0.362,-0.411]],"o":[[-0.7,-0.113],[-0.273,-0.757],[0.845,-0.714],[0.717,-0.064],[0.498,-0.363],[0.397,0.493],[-1.44,1.633]],"v":[[206.696,125.309],[204.893,124.787],[205.841,123.114],[208.78,121.914],[210.858,121.236],[212.112,121.448],[212.022,122.754]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.191,-0.045],[0.022,-0.618],[1.398,0.281],[0.767,-0.087],[0.304,0.628],[-0.486,0.447],[-0.254,0.145],[-1.245,0.53],[-0.574,0.003],[-0.121,-0.072]],"o":[[-0.021,0.619],[-1.296,0.402],[-0.746,-0.15],[-0.536,0.061],[-0.32,-0.663],[0.209,-0.193],[1.268,-0.184],[0.574,-0.003],[0.122,0.072],[0.191,0.045]],"v":[[58.812,152.672],[58.747,154.527],[54.771,154.984],[52.449,154.981],[51.032,154.697],[51.575,153.024],[52.329,152.581],[56.154,152.327],[57.876,152.32],[58.239,152.537]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.018,0.696],[0.951,-0.315],[0.245,0.016],[-0.057,0.817],[-0.651,-0.091],[-0.319,-0.209],[-0.76,0.371],[-0.535,-1.062],[0.831,-0.836],[0.907,0.528]],"o":[[0.367,-1.07],[-0.225,0.075],[-0.687,-0.044],[0.061,-0.877],[0.382,0.054],[0.685,0.45],[0.927,-0.453],[0.616,1.222],[-0.746,0.75],[-0.671,-0.39]],"v":[[141.762,206.499],[140.679,205.595],[139.944,205.632],[138.617,204.574],[140.099,203.811],[141.206,204.197],[143.275,204.329],[145.687,204.955],[144.845,207.991],[142.27,208.312]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.721,0],[-1.376,-0.734],[0.09,-0.567],[0.481,-0.017],[1.986,-0.044],[-0.152,0.808],[-0.619,-0.013]],"o":[[1.353,-0.238],[0.522,0.279],[-0.091,0.571],[-1.97,0.071],[-0.456,0.01],[0.132,-0.703],[0.491,0.011]],"v":[[-161.757,196.557],[-157.618,197.534],[-156.705,198.72],[-157.908,199.276],[-163.718,198.543],[-164.887,197.294],[-163.461,196.555]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.386,-1.023],[0.402,-0.103],[1.778,-0.724],[0.298,0.527],[-0.451,0.282],[0.044,1.156],[-0.557,0.048]],"o":[[-0.228,0.528],[-1.855,0.474],[-0.533,0.217],[-0.353,-0.624],[0.819,-0.511],[-0.027,-0.725],[1.87,-0.161]],"v":[[73.591,200.045],[72.494,200.766],[67.027,202.489],[65.395,202.382],[66.263,201.068],[67.772,198.955],[68.96,198.182]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.029,0.59],[-0.425,0.58],[-1.176,-0.108],[-0.471,-0.822],[0.442,-0.116],[0.399,0.105],[1.152,-0.718],[0.198,0.914]],"o":[[0.629,-0.313],[1.047,0.414],[0.98,0.09],[0.256,0.446],[-0.422,0.111],[-1.145,-0.3],[-0.752,0.468],[-0.123,-0.57]],"v":[[-80.48,167.109],[-78.837,165.85],[-75.615,166.851],[-73.608,168.67],[-74.032,169.578],[-75.338,169.709],[-78.645,169.949],[-80.376,168.876]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.749,-1.33],[-0.822,0.29],[-0.365,-0.809],[0.62,-0.401],[1.321,1.62],[0.095,1.643]],"o":[[1.288,0.622],[0.552,0.98],[0.794,-0.28],[0.385,0.852],[-1.511,0.975],[-1.004,-1.231],[0,0]],"v":[[-127.888,168.847],[-124.627,171.468],[-122.26,171.968],[-120.362,172.386],[-121.352,174.125],[-126.041,173.099],[-127.886,168.845]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.447,-1.549],[2.451,0.469],[0.341,0.193],[-0.068,0.528],[-0.481,0.041],[-1.767,-0.763]],"o":[[-2.588,-0.47],[-0.377,-0.072],[-0.443,-0.25],[0.08,-0.624],[1.89,-0.159],[1.261,0.544]],"v":[[189.81,217.909],[182.314,216.536],[181.233,216.065],[180.428,214.918],[181.604,214.269],[187.125,214.979]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.287,-3.17],[-0.939,0.72],[-1.944,0.457],[0.411,1.261],[-0.684,-0.353],[-0.317,0.627],[-0.775,-0.33],[0.11,-0.664],[1.069,0.112]],"o":[[-0.539,-1.333],[1.581,-1.212],[1.255,-0.295],[0.677,0.155],[0.237,-0.7],[0.285,-0.564],[0.705,0.3],[-0.178,1.078],[-4.213,-0.441]],"v":[[-234.704,14.137],[-233.548,11.243],[-228.285,8.612],[-226.93,6.474],[-225.346,7.713],[-224.635,5.678],[-223.13,4.849],[-222.475,6.493],[-225.406,9.309]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.073,-2.173],[0.487,-1.296],[0.442,-0.006],[0.02,0.333],[-0.059,2.635],[0.28,0.545],[-0.593,0.27],[-0.157,-0.425]],"o":[[-0.071,1.329],[-0.118,0.314],[-0.434,0.006],[-0.154,-2.602],[0.013,-0.596],[-0.223,-0.434],[0.545,-0.248],[0.722,1.959]],"v":[[136.129,93.941],[135.914,97.896],[135.354,98.649],[134.772,97.917],[133.537,90.239],[133.156,88.532],[133.291,87.249],[134.44,87.927]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.059,0.706],[-1.161,0.347],[-0.57,-0.836],[-0.204,-0.55],[1.051,-0.387],[0.563,1.267]],"o":[[0.026,-0.929],[1.157,-0.346],[0.33,0.484],[0.502,1.357],[-1.345,0.496],[-0.284,-0.639]],"v":[[84.002,64.535],[85.074,62.203],[87.49,63.487],[88.29,65.064],[87.402,67.78],[84.343,66.56]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.383,-0.012],[1.213,0.714],[0.402,0.274],[-0.163,0.495],[-0.381,0.038],[-1.423,-0.606],[-0.338,-1.557],[0.629,-0.313]],"o":[[-1.026,-1.074],[-0.421,-0.248],[-0.374,-0.255],[0.153,-0.463],[1.534,-0.152],[0.857,0.896],[-0.425,0.58],[-0.383,0.012]],"v":[[-81.63,167.145],[-85.372,165.202],[-86.649,164.485],[-87.168,163.372],[-86.173,162.925],[-81.733,163.575],[-78.837,165.85],[-80.48,167.109]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.039,-1.23],[-0.799,-0.873],[1.086,-0.537],[0.463,0.843],[-0.005,0.119],[0.351,0.664],[0.103,0.885],[-1.115,-0.545]],"o":[[0.799,0.873],[-1.087,0.537],[-1.637,-0.167],[0.005,-0.119],[0.416,-0.756],[-0.415,-0.783],[-0.118,-1.023],[0.159,1.678]],"v":[[-120.781,151.414],[-118.385,154.032],[-121.644,155.644],[-123.086,153.144],[-123.07,152.788],[-123.324,150.702],[-124.281,148.242],[-122.914,147.223]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.11,-1.073],[1.205,0.34],[-0.871,2.77],[-0.032,0.093],[-1.231,0.095],[-0.384,-0.85]],"o":[[0.008,1.371],[-2.859,-0.808],[0.029,-0.094],[0.286,-0.833],[1.258,-0.097],[0.484,1.072]],"v":[[146.923,216.2],[145.166,217.661],[142.784,213.375],[142.874,213.094],[144.189,210.904],[146.005,212.917]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.273,0.002],[0.33,1.097],[-0.742,0.592],[-1.235,-1.012],[0.659,-0.509]],"o":[[-0.773,-0.06],[-0.33,-1.097],[1.206,-0.962],[0.846,0.693],[-0.788,0.61]],"v":[[236.177,111.053],[233.881,110.176],[235.359,107.839],[240.522,108.048],[240.316,109.844]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.574,-0.907],[2.371,0.096],[0.784,1.8],[-0.543,0.846],[-1.318,0.38]],"o":[[-0.134,2.302],[-1.331,-0.054],[-0.372,-0.854],[1.326,-0.153],[1.15,-0.331]],"v":[[-65.903,167.692],[-68.413,169.949],[-72.115,168.667],[-72.169,166.168],[-68.337,166.684]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.716,-1.176],[0.005,0.649],[1.217,0.245],[0.301,-0.791],[-1.207,-1.252],[2.167,1.697],[-1.058,-0.06],[-0.038,1.463],[-0.171,0.454],[-1.176,-0.499],[-0.313,0.739],[-0.409,-0.075],[-0.098,-0.375]],"o":[[-0.159,-0.676],[-0.009,-1.136],[-1.221,-0.245],[-0.521,1.367],[-2.728,-0.329],[1.038,-0.432],[1.412,0.08],[0.012,-0.478],[0.467,-1.24],[0.914,0.388],[0.126,-0.297],[0.439,0.081],[0.42,1.61]],"v":[[142.953,103.09],[143.347,101.244],[141.787,98.878],[140.08,100.531],[141.435,104.242],[134.089,103.309],[137.289,103.068],[139.459,101.218],[139.797,99.795],[142.465,98.444],[144.005,97.791],[144.688,97.134],[145.305,98.059]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.28,-0.59],[-0.469,-0.499],[0.348,-0.542],[0.45,0.111],[1.043,0.517],[1.652,-0.522],[0.235,0.755],[-0.458,0.236],[-0.263,0.133],[-0.064,0.044]],"o":[[0.517,0.454],[0.31,0.33],[-0.298,0.465],[-1.144,-0.283],[-1.651,-0.818],[-0.456,0.144],[-0.206,-0.662],[0.262,-0.135],[0.096,0.002],[2.235,-1.551]],"v":[[-90.556,177.184],[-89.019,178.558],[-88.469,179.784],[-89.846,180.011],[-93.224,178.969],[-98.104,178.825],[-99.499,178.72],[-98.433,177.733],[-97.642,177.336],[-97.357,177.336]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.509,0.52],[1.488,0.487],[1.988,0.519],[-0.581,0.002],[-2.41,-1.948],[-0.649,-1.889],[0.231,0.183]],"o":[[-0.741,-1.534],[-1.949,-0.638],[0.052,-0.493],[2.876,-0.011],[1.599,1.292],[-0.434,0.78],[-0.565,-0.448]],"v":[[-109.483,155.094],[-113.108,152.312],[-119.062,150.725],[-118.245,149.896],[-110.147,151.948],[-106.928,156.767],[-107.938,156.629]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.095,-0.079],[-0.156,-1.095],[0.798,0.189],[0.429,0.644],[1.874,-0.123],[0.493,0.007],[-0.001,0.807],[-0.462,0.06],[-0.346,-0.01],[-0.34,0.181],[-0.155,-0.007],[-1.224,-0.57]],"o":[[0.433,0.926],[0.126,0.889],[-0.829,-0.196],[-1.134,-1.703],[-0.49,0.032],[0.001,-0.807],[0.462,-0.06],[0.345,0.01],[0.181,0.276],[0.154,0.007],[1.096,0.833],[0.095,0.079]],"v":[[-234.92,30.165],[-233.535,32.907],[-234.484,33.767],[-236.367,32.415],[-241,30.465],[-242.478,30.45],[-242.474,28.03],[-241.088,27.85],[-240.051,27.88],[-239.311,28.139],[-238.847,28.16],[-235.204,29.928]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.413,-0.142],[0.401,-0.859],[0.814,0.078],[2.684,-0.096],[0.243,0.373],[-0.123,0.447],[-2.725,-0.835]],"o":[[0.473,0.624],[-0.325,0.696],[-2.636,-0.253],[-0.428,0.015],[-0.348,-0.534],[2.749,-0.487],[0.417,0.128]],"v":[[-12.897,157.316],[-11.453,159.041],[-13.781,159.194],[-21.651,158.147],[-22.906,157.968],[-22.357,156.745],[-14.137,156.893]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.106,-0.088],[2.096,-1.766],[0.72,-0.132],[-1.421,1.403],[-1.718,1.551],[-0.25,-0.766],[0.409,-0.42],[0.233,-0.519],[0,0]],"o":[[-2.096,1.765],[-0.719,0.133],[0.83,-1.976],[1.646,-1.624],[0.593,0.074],[0.26,0.797],[-0.365,0.375],[0,0],[-0.106,0.088]],"v":[[144.777,117.269],[138.489,122.566],[136.33,122.963],[140.507,118.659],[145.644,113.987],[147.282,114.557],[146.253,115.943],[145.103,117.013],[145.096,117.005]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.101,0.526],[-0.613,-3.294],[0.067,-0.277],[0.595,-0.02],[0.133,0.34],[1.51,2.651],[0.121,0.987]],"o":[[0.929,3.214],[0.053,0.283],[-0.096,0.398],[-0.471,0.016],[-1.089,-2.796],[-0.456,-0.801],[1.06,0.469]],"v":[[132.288,63.269],[134.778,72.987],[134.767,73.861],[134.182,74.904],[133.549,74.007],[130.396,65.57],[129.055,63.136]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.092,-1.018],[2.671,0.291],[1.255,0.494],[0.006,0.492],[-0.355,0.117],[-1.117,-0.27],[-2.017,-0.567]],"o":[[-3.048,-0.03],[-1.311,-0.143],[-0.361,-0.142],[-0.006,-0.521],[1.039,-0.344],[1.988,0.481],[1.078,0.303]],"v":[[178.813,141.573],[170.418,141.442],[166.509,140.764],[165.686,140.046],[166.525,139.371],[169.7,139.194],[175.794,139.742]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.187,-0.721],[0.231,-0.026],[3.47,-0.367],[0.605,0.613],[-0.175,0.48],[-0.398,0.038],[-0.345,0.001],[-2.662,0.026]],"o":[[-0.175,0.38],[-3.467,0.392],[-0.803,0.085],[-0.314,-0.318],[0.152,-0.416],[0.343,-0.033],[2.662,-0.006],[1.296,-0.013]],"v":[[102.717,167.3],[102.046,167.709],[91.643,168.864],[89.452,168.196],[88.984,167.031],[89.972,166.509],[91.005,166.459],[98.992,166.443]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.075,-0.655],[0.777,1.244],[0.738,-0.226],[0.006,-0.562],[-0.029,-0.88],[0.012,-0.696],[0.119,-0.793],[0.084,0.459],[0.005,0.726],[0.136,0.219],[-0.004,0.263],[-0.057,0.532],[-0.17,1.551],[-0.713,-0.254],[-0.484,-0.262],[-0.559,-1.84]],"o":[[-0.968,-1.122],[-0.37,-0.593],[-0.667,0.204],[-0.01,0.879],[-0.011,0.697],[-0.492,0.693],[-0.929,0.608],[-0.128,-0.704],[0.152,-0.211],[0.004,-0.263],[0.511,-0.374],[0.166,-1.552],[0.061,-0.555],[0.295,0.462],[1.733,0.939],[-0.419,0.608]],"v":[[-127.907,136.781],[-130.281,133.077],[-131.878,132.046],[-132.32,133.616],[-132.245,136.256],[-132.279,138.346],[-132.894,140.656],[-133.987,139.919],[-134.034,137.745],[-134.017,137.099],[-134.005,136.309],[-133.519,134.842],[-132.977,130.191],[-132.093,129.454],[-130.926,130.532],[-127.641,134.822]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.705,-0.059],[-2.855,-0.55],[-0.211,-0.317],[0.197,-0.381],[0.295,-0.009],[2.088,-0.952],[1.189,-0.094],[0.433,1.065]],"o":[[2.862,0.409],[0.274,0.053],[-0.053,0.519],[-0.295,0.009],[-2.187,-0.01],[-1.189,0.094],[-0.881,-0.206],[1.302,-1.405]],"v":[[-0.131,149.787],[8.491,150.182],[9.302,150.45],[8.43,151.325],[7.545,151.353],[1.056,152.019],[-2.509,152.3],[-4.841,151.083]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.101,0.019],[0.652,0.174],[-0.031,0.87],[-0.836,0.043],[-1.507,-0.109],[-0.217,-1.11],[0.869,-0.315]],"o":[[-0.68,-0.07],[-0.86,-0.23],[0.032,-0.918],[1.468,-0.076],[1.041,0.075],[0.224,1.145],[-1.023,0.371]],"v":[[-215.849,81.762],[-217.882,81.531],[-219.112,79.739],[-217.626,78.457],[-213.27,77.845],[-211.217,79.338],[-212.665,81.22]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.418,-0.161],[-0.268,-0.105],[0.003,-0.758],[0.717,-0.219],[1.32,-0.106],[1.149,0.183],[-2.937,-1.028]],"o":[[0.255,0.138],[0.474,0.186],[-0.003,0.782],[-1.288,0.393],[-0.951,-1.307],[-0.044,-2.707],[-0.025,0.56]],"v":[[-55.58,158.929],[-54.812,159.339],[-53.615,160.176],[-54.86,161.641],[-58.81,162.048],[-62.247,161.444],[-56.382,158.038]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.293,-0.263],[1.475,-1.172],[0.723,-0.487],[0.343,0.786],[-2.605,1.972],[-0.209,0.13],[-0.531,-0.567],[0.518,-0.583]],"o":[[-1.778,0.767],[-0.683,0.543],[-0.524,0.353],[1.851,-2.678],[0.196,-0.149],[0.691,-0.429],[0.591,0.631],[-0.26,0.293]],"v":[[173.547,63.384],[169.026,66.771],[166.936,68.348],[165.501,68.07],[172.108,61.022],[172.721,60.608],[174.779,60.615],[174.421,62.589]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.626,0.055],[-0.592,-0.675],[-0.032,-0.09],[3.663,-0.413],[0.944,-1.066],[0,0],[0.305,0.214],[-0.524,0.445],[-0.312,1.376],[1.33,-0.292],[0.036,0.039],[-0.601,0.275]],"o":[[0.205,0.872],[0.014,0.097],[1.216,3.407],[-1.355,0.153],[0,0],[-0.305,-0.214],[0.397,-0.58],[1.017,-0.864],[0.288,-1.27],[-0.036,-0.04],[0.37,-0.533],[0.626,-0.055]],"v":[[58.564,109.33],[59.753,111.653],[59.797,111.944],[57.351,115.775],[53.801,117.332],[53.811,117.3],[52.897,116.657],[54.401,115.258],[56.711,112.106],[55.383,110.878],[55.276,110.759],[56.686,109.494]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.46,-0.263],[0.286,-0.157],[0.083,0.975],[-0.041,0.286],[-1.604,-0.051],[-2.063,-0.023],[0.039,-1.45],[0,0],[2.303,-0.818],[0.302,-0.027],[0.202,-0.056]],"o":[[-0.335,0.068],[-0.957,0.524],[0.041,-0.286],[1.128,-1.198],[2.062,0.066],[1.124,0.013],[0,0],[-2.367,0.046],[-0.303,0.027],[-0.202,0.056],[-0.515,0.021]],"v":[[-9.661,140.374],[-10.658,140.591],[-12.098,139.78],[-11.975,138.922],[-7.833,137.414],[-1.644,137.471],[0.417,139.154],[0.401,139.196],[-6.664,139.787],[-7.572,139.868],[-8.178,140.036]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.524,-1.288],[2.612,0.975],[-0.344,0.749],[-3.947,0.008],[-0.425,-0.352],[1.425,0.324]],"o":[[-2.587,1.575],[-1.006,-0.375],[3.947,-0.015],[0.484,-0.001],[-1.197,1.04],[-0.752,-0.171]],"v":[[-176.82,15.487],[-184.671,15.632],[-185.015,13.635],[-173.173,13.594],[-171.752,13.849],[-175.731,14.476]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.467,-0.107],[2.571,-0.127],[0.304,0.138],[-0.044,0.441],[-0.386,0.056],[-0.341,-0.032],[-3.863,-0.649],[-0.101,-0.59],[0.472,-0.176]],"o":[[-2.574,0.197],[-0.331,0.016],[-0.355,-0.162],[0.049,-0.486],[0.34,-0.049],[3.871,0.367],[0.412,0.069],[0.102,0.595],[-1.438,0.536]],"v":[[6.801,233.739],[-0.881,233.42],[-1.88,233.209],[-2.569,232.336],[-1.663,231.737],[-0.63,231.701],[11.003,232.002],[12.113,232.452],[11.206,233.451]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.566,1.168],[-4.433,-0.877],[-0.138,-0.542],[0.356,-0.169],[2.176,1.692],[0.982,-0.052]],"o":[[4.628,-0.103],[0.42,0.083],[0.149,0.582],[-1.967,0.932],[-0.783,-0.609],[-1.623,0.086]],"v":[[5.194,214.578],[18.621,214.21],[19.747,214.711],[18.942,215.616],[12.871,215.917],[9.978,215.768]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.141,0.04],[0.882,0.076],[0.766,0.089],[0.033,1.22],[-3.675,-0.52],[-0.566,-0.524],[0.939,-0.435],[0.146,0.438]],"o":[[-0.836,-0.515],[-0.693,-0.56],[-0.92,-0.107],[3.702,-0.459],[0.743,0.105],[-0.461,0.88],[-0.45,0.209],[-0.561,-1.684]],"v":[[16.701,142.801],[14.06,142.527],[11.776,142.173],[9.933,140.708],[20.994,141],[22.998,141.877],[21.048,143.995],[19.711,144.018]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.589,0.195],[-0.063,-3.249],[-0.079,-1.177],[-0.442,-0.362],[0.15,-0.317],[0.26,0.102],[0.922,0.151],[-0.017,0.238],[0.81,3.354],[0.051,1.1]],"o":[[0.576,3.234],[0.023,1.191],[0.05,0.746],[0.234,0.192],[-0.172,0.364],[-0.894,-0.35],[0.006,-0.239],[0.238,-3.372],[0.533,-1.067],[0.425,-0.47]],"v":[[100.018,-51.369],[100.294,-41.624],[100.6,-38.095],[101.67,-36.798],[101.962,-36.032],[101.189,-35.902],[98.42,-36.342],[98.439,-37.058],[98.275,-47.159],[98.457,-50.44]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.054,3.185],[0.004,0.295],[-0.746,-0.442],[-0.851,-0.484],[-0.397,1.083],[-0.882,-0.19],[-0.244,-0.787],[0.677,-0.372],[0.424,-0.119],[1.181,-0.445]],"o":[[0,0.115],[-0.011,-0.751],[0.842,0.499],[0.903,0.513],[0.211,-0.574],[0.949,0.204],[0.227,0.73],[-0.377,0.207],[-1.173,0.328],[-1.873,0.706]],"v":[[-132.027,117.679],[-132.028,117.204],[-131.069,116.635],[-128.472,118.01],[-126.51,117.39],[-125.302,116.192],[-123.852,118.082],[-124.584,119.837],[-125.843,120.224],[-129.416,120.999]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.741,-1.534],[0.792,-0.022],[1.215,2.84],[0.605,0.359],[-0.479,0.07],[-1.949,-0.638]],"o":[[-0.453,0.788],[-2.699,0.076],[-0.274,-0.641],[-0.088,-0.262],[1.988,0.519],[1.488,0.487]],"v":[[-109.483,155.094],[-111.514,156.076],[-117.831,152.795],[-119.274,151.35],[-119.062,150.725],[-113.108,152.312]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.305,-0.632],[6.798,0.005],[-0.698,0.046],[-1.575,0.07],[-2.51,0.403],[-1.767,-0.151]],"o":[[-6.799,-0.005],[0.162,-0.762],[1.574,-0.103],[2.508,-0.111],[1.76,-0.282],[0.81,0.069]],"v":[[19.963,236.33],[-0.432,236.316],[0.977,235.256],[5.699,234.958],[13.23,234.681],[18.534,234.98]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.296,-0.069],[-0.565,-0.683],[0.976,-0.294],[0.82,0.257],[0.803,0.23],[-0.001,-0.001],[0.085,0.051],[0.491,0.395],[-0.601,0.846],[-1.1,-0.617]],"o":[[0.581,0.67],[0.814,0.985],[-0.824,0.248],[-0.796,-0.25],[0,0],[-0.042,-0.088],[-0.281,-0.601],[-0.745,-0.6],[0.654,-0.92],[1.06,0.595]],"v":[[229.21,-56.42],[230.95,-54.408],[230.266,-52.593],[227.791,-52.701],[225.385,-53.394],[225.325,-53.47],[225.133,-53.678],[223.854,-55.088],[222.999,-57.307],[225.919,-57.922]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.071,0.813],[2.745,-1.827],[-0.043,-2.5],[-0.261,-2.168],[0.324,-2.298],[-0.015,0.475],[-0.368,4.459],[-1.696,1.383],[1.47,3.044]],"o":[[2.848,1.819],[-1.982,1.319],[0.037,2.164],[0.277,2.299],[-0.223,-0.379],[0.14,-4.433],[0.204,-2.471],[2.661,-2.169],[-0.339,-0.703]],"v":[[114.358,-30.055],[114.509,-21.8],[111.322,-16.151],[111.544,-9.661],[111.271,-2.743],[110.752,-3.945],[110.339,-17.227],[113.667,-22.541],[114.873,-27.779]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.721,0.086],[-0.674,-0.455],[-0.566,0.534],[-2.053,-0.96],[-0.517,-0.229],[1.639,0.562],[0.884,-1.027],[0.982,-1.033],[0.732,0.303],[0.014,0.541],[0.576,0.378],[-0.053,0.519],[0.274,0.053],[2.862,0.409],[-0.352,-0.023],[-2.822,-0.597]],"o":[[-0.007,0.651],[0.763,0.515],[1.525,-1.438],[0.616,0.288],[-0.467,1.659],[-1.255,-0.431],[-0.93,1.08],[-0.477,0.502],[-0.775,-0.321],[-0.016,-0.611],[0.197,-0.381],[-0.211,-0.317],[-2.855,-0.55],[0.229,-0.281],[2.82,0.183],[0.753,0.159]],"v":[[11.364,148.975],[11.178,150.852],[13.157,150.037],[18.441,148.815],[19.733,148.462],[17.197,149.799],[14.007,150.609],[11.156,153.797],[9.325,154.473],[9.045,152.893],[8.43,151.325],[9.302,150.45],[8.491,150.182],[-0.131,149.787],[0.754,149.344],[9.205,149.258]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.181,1.75],[-1.813,-0.218],[-0.228,-1.029],[1.341,-1.814],[0.4,0.645]],"o":[[1.005,-1.572],[1.008,0.121],[-1.136,1.957],[-0.48,0.65],[-0.982,-1.583]],"v":[[-99.073,165.936],[-94.82,164.109],[-92.902,165.592],[-96.784,171.131],[-97.935,171.055]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.263,-0.809],[0.041,-0.676],[1.04,0.536],[1.414,1.629],[-0.654,0.102],[-2.967,-1.42]],"o":[[-0.66,0.498],[-0.074,1.233],[-1.886,-0.972],[-0.278,-0.32],[2.914,-0.453],[-0.328,0.755]],"v":[[140.882,16.236],[140.338,18.139],[138.649,19.291],[133.564,15.546],[133.627,14.682],[142.414,14.441]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[6.257,1.084],[-5.679,-1.833]],"o":[[1.996,-2.396],[-2.274,1.634]],"v":[[-73.073,175.771],[-57.703,174.752]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.766,-0.192],[2.496,0.955],[-0.769,0.419],[-1.445,-0.195],[-1.993,-1.053],[0.071,-0.783],[0.438,-0.121]],"o":[[-2.643,-0.645],[-0.813,-0.311],[1.243,-0.677],[2.185,0.295],[0.525,0.278],[-0.065,0.712],[-0.803,0.223]],"v":[[234.126,202.479],[226.346,200.514],[226.174,199.333],[230.196,198.219],[236.553,199.961],[237.627,201.161],[236.506,201.876]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.933,0.072],[1.079,0.171],[0.18,0.54],[-0.359,0.22],[-3.129,-1.284],[0.983,-0.738]],"o":[[-1.076,-0.013],[-0.674,-0.107],[-0.197,-0.59],[2.866,-1.756],[1.115,0.458],[-1.641,1.232]],"v":[[157.733,148.377],[154.507,148.206],[153.412,147.228],[154.03,146.207],[163.034,145.41],[163.234,147.207]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.207,-0.361],[-0.758,-0.761],[-1.21,-0.214],[-0.327,-0.43],[0.306,-0.364],[0.376,0.152],[1.65,-0.607],[0.959,0.91],[0.81,0.112],[0.047,0.356],[-0.376,0.109]],"o":[[1.056,-0.177],[0.877,0.881],[0.6,0.106],[0.288,0.378],[-0.302,0.36],[-1.45,-0.586],[-1.02,0.375],[-0.559,-0.531],[-0.44,-0.061],[-0.057,-0.432],[1.167,-0.337]],"v":[[-157.064,175.312],[-154.476,176.098],[-151.112,177.468],[-149.796,178.31],[-149.753,179.54],[-150.826,179.508],[-155.333,179.039],[-158.5,178.49],[-160.52,177.371],[-161.121,176.655],[-160.538,175.955]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.879,2.012],[-6.287,0.346],[1.093,1.039],[-1.87,-0.073],[-1.267,-0.831],[1.7,0.14],[3.051,-0.113],[1.761,-0.699]],"o":[[5.899,-0.741],[-1.512,-1.106],[1.855,-0.266],[1.734,0.067],[-1.821,0.543],[-3.037,-0.249],[-1.867,0.069],[-2.037,0.808]],"v":[[70.062,132.478],[88.198,131.966],[83.927,130.448],[89.509,130.304],[92.936,132.8],[87.719,133.198],[78.595,132.71],[73.105,133.726]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.625,-1.955],[0.84,1.337],[0.551,-0.218],[0.183,0.867],[-0.519,1.413],[-0.558,0.094],[-0.275,-0.478],[-0.555,-1.851]],"o":[[-1.077,-1.469],[-0.286,-0.455],[-1.039,0.411],[-0.312,-1.475],[0.188,-0.512],[0.685,-0.115],[0.955,1.661],[0.449,1.496]],"v":[[223.351,-20.639],[220.436,-24.683],[219.488,-25.175],[217.836,-26.258],[218.179,-30.606],[219.202,-31.78],[220.51,-30.766],[222.822,-25.522]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.811,0.848],[-2.323,0.063],[0.06,-0.462],[0.622,-0.906],[1.3,1.201],[0.711,-0.194],[0.536,0.899]],"o":[[1.839,-2.27],[0.626,-0.017],[-0.143,1.098],[-0.759,1.107],[-0.635,-0.586],[-0.605,0.165],[-0.141,-1.085]],"v":[[90.939,107.548],[97.644,106.069],[98.163,107.058],[96.928,110.013],[94.115,110.645],[92.02,110.657],[90.202,110.514]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.778,0.767],[-0.184,-0.534],[1.401,-0.75],[2.456,-0.976],[0.403,0.223],[-0.806,0.947],[-0.524,0.353],[-0.683,0.543]],"o":[[0.031,0.586],[0.58,1.681],[-2.33,1.247],[-0.403,-0.223],[0.213,-1.276],[0.343,0.786],[0.723,-0.487],[1.475,-1.172]],"v":[[173.547,63.384],[173.665,65.134],[172.128,68.618],[164.94,71.939],[163.73,71.27],[165.501,68.07],[166.936,68.348],[169.026,66.771]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.584,0.03],[-1.192,-1.109],[0.873,-0.159],[2.576,-4.11],[0.607,0.244],[-0.144,0.646],[-1.862,1.866],[-0.226,0.188],[-1.279,0.524]],"o":[[1.203,0.768],[-0.886,0.082],[-4.7,0.854],[-0.325,0.518],[-0.72,-0.29],[0.629,-2.814],[0.207,-0.207],[1.279,-0.524],[0.584,-0.03]],"v":[[99.712,-34.603],[103.683,-33.075],[101.025,-32.818],[89.967,-25.577],[88.778,-24.314],[88.656,-26.163],[93.448,-32.373],[94.123,-32.94],[97.96,-34.513]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.811,-0.205],[0.348,-0.649],[0.495,-0.041],[2.641,-0.946],[1.044,0.025],[-0.247,0.749],[-3.735,0.467]],"o":[[0.264,0.433],[-0.266,0.495],[-2.837,0.234],[-0.997,0.357],[-0.672,-0.016],[2.826,-2.801],[0.85,-0.106]],"v":[[237.065,2.804],[237.677,4.17],[236.352,4.644],[228.251,6.864],[225.207,7.337],[224.401,6.336],[234.606,2.349]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.687,0.094],[1.224,-2.186],[1.292,-0.124],[-0.087,0.8],[-1.73,0.196],[-0.284,0.635],[-1.725,0.938],[0.11,-0.582],[0,0],[0,0]],"o":[[-1.035,2.288],[-0.561,1.002],[-0.726,0.07],[0.121,-1.114],[0.771,-0.088],[0.809,-1.806],[-0.11,0.582],[0,0],[0,0],[0.687,-0.094]],"v":[[-126.111,146.069],[-130.08,152.411],[-133.477,153.916],[-134.666,152.762],[-133.022,150.119],[-131.748,148.625],[-127.874,144.57],[-128.204,146.316],[-128.25,146.396],[-128.17,146.35]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.732,0.061],[1.232,0.691],[-0.731,0.383],[-2.403,-0.207],[-0.296,-0.83],[0.502,-0.475],[0.921,-0.81]],"o":[[-1.021,-0.451],[-0.755,-0.424],[2.058,-1.078],[0.722,0.062],[0.265,0.744],[-0.891,0.842],[-0.308,0.271]],"v":[[182.713,140.611],[179.115,138.981],[179.154,136.871],[185.743,135.104],[187.607,136.015],[186.862,137.819],[184.112,140.262]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.058,-0.413],[1.194,-2.274],[0.54,0.883],[-0.136,2.202],[-1.224,0.059],[-0.455,0.515],[-0.644,-0.186],[-0.12,-0.469]],"o":[[-0.413,2.513],[-0.46,0.876],[-1.128,-1.846],[0.058,-0.938],[0.751,-0.036],[0.305,-0.345],[0.539,0.156],[0.109,0.425]],"v":[[94.148,-19.542],[92.218,-12.261],[90.764,-12.168],[89.059,-18.184],[90.534,-19.997],[92.145,-21.201],[93.212,-22.024],[93.957,-20.826]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.266,-1.34],[1.579,0.263],[-0.139,1.489],[-0.118,1.221],[0.394,0.482],[0.605,-0.241],[-0.01,0.879],[-0.667,0.204],[-0.37,-0.593],[-0.968,-1.122]],"o":[[-0.745,0.924],[-1.464,-0.244],[0.114,-1.222],[0.053,-0.544],[-0.407,0.379],[-0.029,-0.88],[0.006,-0.562],[0.738,-0.226],[0.777,1.244],[0.534,1.258]],"v":[[-126.724,140.683],[-129.585,142.476],[-131.55,140.123],[-131.188,136.46],[-131.541,134.901],[-132.245,136.256],[-132.32,133.616],[-131.878,132.046],[-130.281,133.077],[-127.907,136.781]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.028,-0.085],[0.155,2.004],[0.39,0.07],[0.91,-0.526],[0.59,0.027],[0.062,1.957],[-2.978,-0.406],[-0.322,-1.505],[0.009,-0.325],[0.021,-0.134]],"o":[[-2.004,0.379],[-0.033,-0.425],[-0.911,-0.164],[-0.541,0.313],[-1.585,-0.074],[2.643,-1.245],[0.322,1.505],[-0.009,0.324],[-0.021,0.134],[-0.005,0.09]],"v":[[96.139,28.35],[93.967,26.726],[93.372,26.025],[90.639,26.028],[88.912,26.294],[86.969,23.889],[95.312,22.197],[96.278,26.712],[96.25,27.685],[96.187,28.087]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.654,0.009],[0.919,0.718],[-0.734,-0.14],[-1.59,1.231],[-1.261,-0.381],[0.37,-0.456],[0.553,0.44],[0.783,-0.588]],"o":[[-1.231,0.251],[-0.93,-0.727],[2.313,0.442],[1.186,-0.919],[0.554,0.167],[-0.537,0.661],[-0.9,-0.715],[-1.297,0.974]],"v":[[-161.115,84.958],[-164.093,83.555],[-163.735,82.261],[-158.419,80.132],[-154.597,80.158],[-153.644,83.656],[-155.492,83.763],[-157.859,83.925]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.707],[-0.472,1.313],[-1.143,-0.278],[0.168,-1.49],[-0.002,-0.632],[1.524,-0.851],[0.094,1.532]],"o":[[-0.096,-1.221],[0.474,-1.319],[1.319,0.321],[-0.071,0.632],[0.007,1.921],[-1.339,0.747],[-0.033,-0.538]],"v":[[236.951,-107.851],[237.472,-111.746],[240.165,-113.462],[241.928,-110.684],[241.732,-108.787],[239.08,-104.888],[236.957,-106.064]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.854,0.357],[2.915,2.491],[0.376,0.883],[-1.403,-0.783],[-2.225,-0.016],[-1.508,-0.133],[-1.521,0.158],[-0.41,-0.012],[-0.562,-1.119]],"o":[[-3.666,-0.394],[-0.722,-0.617],[1.639,0.285],[1.917,1.07],[1.509,0.011],[1.452,0.854],[0.41,0.011],[0.698,0.775],[-3.839,0.214]],"v":[[-97.958,175.391],[-108.067,171.745],[-109.802,169.583],[-105.442,171.628],[-99.298,173.348],[-94.774,173.725],[-90.265,174.03],[-89.035,174.063],[-86.433,175.081]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.145,-0.026],[1.301,-1.72],[1.321,-0.616],[0.594,0.542],[-0.34,0.606],[-0.022,0.044],[-1.215,0.482],[-1.636,-0.248]],"o":[[1.273,1.743],[-1.338,0.256],[-0.794,0.37],[-0.604,-0.551],[0.024,-0.043],[0.414,-0.841],[1.519,-0.603],[0.146,0.022]],"v":[[-188.065,-2.446],[-188.112,2.748],[-192.155,3.403],[-194.44,2.661],[-194.241,0.782],[-194.186,0.645],[-193.26,-1.971],[-188.502,-2.524]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.604],[-0.466,1.443],[-0.732,0.042],[-0.321,-0.498],[-0.017,-0.547],[-1.409,-1.435],[1.615,-0.363],[0.022,4.005]],"o":[[0.048,-1.264],[0.18,-0.557],[0.672,-0.038],[0.307,0.476],[0.06,1.935],[1.145,1.166],[-3.899,0.877],[-0.002,-0.395]],"v":[[-131.447,45.53],[-131.133,41.331],[-130.125,40.033],[-128.81,41.091],[-128.47,42.66],[-126.453,47.746],[-127.291,50.238],[-131.446,46.923]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.225,-0.269],[1.187,0.067],[2.543,-0.284],[1.965,0.539],[0,0],[-1.336,0.245],[-1.562,0.007],[-2.728,-0.329],[-0.521,1.367],[-1.221,-0.245],[-0.009,-1.136],[-0.159,-0.676]],"o":[[0.134,1.132],[-2.565,-0.145],[-2.028,0.227],[0,0],[-0.474,-1.035],[1.562,-0.007],[2.167,1.697],[-1.207,-1.252],[0.301,-0.791],[1.217,0.245],[0.005,0.649],[0.225,0.269]],"v":[[143.627,103.896],[142.126,105.447],[134.478,105.953],[128.485,105.41],[128.491,105.417],[129.402,103.329],[134.089,103.309],[141.435,104.242],[140.08,100.531],[141.787,98.878],[143.347,101.244],[142.953,103.09]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.822,-0.004],[-0.769,-1.497],[1.8,0.185],[2.289,-0.176],[0.734,-0.042],[0.095,0.398],[-0.233,0.158],[-1.709,0.145],[-0.12,0.984]],"o":[[1.697,0.278],[0.796,1.548],[-2.246,-0.231],[-0.734,0.056],[-0.343,0.02],[-0.087,-0.367],[1.406,-0.952],[0.883,-0.075],[0.122,-1]],"v":[[129.808,14.989],[133.609,17.68],[131.111,20.811],[124.377,20.078],[122.179,20.295],[121.352,19.826],[121.87,19.2],[126.499,17.401],[128.165,16.092]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.288,0.309],[-1.922,-0.118],[-1.227,0.329],[-1.499,-0.124],[-1.295,0.061],[-0.028,-0.721],[0.564,-0.013],[2.463,-0.564],[3.747,0.21],[-0.552,0.65]],"o":[[1.916,-0.072],[1.212,0.074],[1.479,-0.397],[1.274,0.105],[0.533,-0.025],[0.034,0.872],[-2.51,0.059],[-3.809,0.873],[0.444,-0.796],[-0.289,-0.31]],"v":[[63.202,157.681],[68.951,157.573],[72.575,157.313],[77.033,157.807],[80.854,158.162],[82.113,158.864],[80.803,159.644],[73.284,159.97],[62.027,159.58],[64.066,158.608]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.028,-1.232],[0.169,-0.804],[0.683,1.189],[4.406,-0.537],[0.824,2.013],[0.228,0.086],[-0.498,0.339],[-3.161,-0.277],[-1.855,-2.195]],"o":[[-0.119,0.567],[-0.67,-1.472],[-2.408,-4.192],[-1.494,0.182],[-0.065,-0.16],[-1.151,-0.435],[3.194,0.082],[3.434,0.301],[0.844,0.998]],"v":[[-221.793,81.655],[-222.201,83.592],[-223.998,79.648],[-234.613,75.039],[-238.441,73.931],[-239.095,73.641],[-239.033,72.541],[-229.523,73.438],[-222.584,78.122]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.823,0.57],[-1.661,0.743],[-0.668,-1.621],[-0.987,0.017],[-0.203,0.755],[-0.974,-0.585],[-0.842,0.804],[0.388,0.945],[0.293,0.388],[1.266,-0.502],[0.086,-0.857],[0.142,0.155],[1.772,-0.008],[2.659,-0.493],[0.231,0.075],[-0.095,0.756],[-2.028,0.227],[-2.565,-0.145],[0.134,1.132],[-0.806,-1.491],[1.43,-1.636],[0.095,-0.015],[0.445,0.204],[0.857,-1.691],[0.619,1.682],[1.954,-1.139]],"o":[[1.653,-0.759],[1.629,-0.728],[0.309,0.75],[0.945,-0.016],[0.343,-1.274],[0.741,0.445],[0.858,-0.82],[-0.186,-0.452],[-0.842,-1.114],[-1.361,0.539],[-0.262,0.277],[-1.305,-1.422],[-2.65,0.012],[-0.209,0.039],[0.466,-0.45],[1.965,0.539],[2.543,-0.284],[1.187,0.067],[1.131,1.139],[1.068,1.977],[-0.095,0.013],[-0.44,-0.215],[-1.128,-0.517],[-0.779,1.538],[-0.73,-1.983],[-1.398,0.815]],"v":[[130.808,112.819],[135.77,110.544],[138.595,111.654],[140.218,113.12],[141.897,111.683],[143.786,111.014],[146.219,111.204],[146.452,108.456],[145.743,107.166],[142.01,106.126],[141.328,108.648],[140.655,108.627],[135.904,107.158],[127.947,107.114],[127.258,106.903],[128.485,105.41],[134.478,105.953],[142.126,105.447],[143.627,103.896],[146.739,107.562],[146.273,112.804],[145.988,112.847],[144.668,112.203],[141.769,112.873],[138.218,112.371],[135.432,111.508]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.42,0.11],[-0.736,0.237],[0.099,1.191],[-0.548,-0.007],[-3.646,-0.026],[-0.234,-0.06],[-0.082,-0.673],[0.445,-0.187],[5.435,0.121]],"o":[[0.868,-0.676],[0.892,-0.287],[-0.047,-0.568],[3.646,0.045],[0.246,0.002],[0.551,0.142],[0.094,0.774],[-5.137,2.159],[-0.177,-0.004]],"v":[[167.738,131.917],[170.139,130.886],[171.735,129.134],[172.598,128.428],[183.537,128.511],[184.272,128.561],[185.732,129.317],[184.5,130.043],[168.509,132.113]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.09,-0.769],[1.757,0.128],[2.929,0.3],[-0.039,0.744],[-0.514,0.033],[-1.828,0.344],[-0.14,1.046],[-1.09,-0.108],[-0.108,-1.007]],"o":[[0.013,2.146],[-2.936,-0.215],[-0.437,-0.045],[0.032,-0.611],[1.893,-0.12],[0.936,-0.176],[0.129,-0.963],[1.044,0.103],[0.094,0.878]],"v":[[-168.788,10.156],[-170.873,12.631],[-179.666,11.802],[-180.766,11.157],[-179.633,10.147],[-174.182,8.917],[-172.546,7.392],[-170.709,5.876],[-169.076,7.651]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,0.196],[0.869,0.888],[0.843,1.521],[-0.614,-0.108],[-0.722,-0.617],[-3.666,-0.394],[0.423,0.039],[0.21,-0.44],[1.533,-0.835],[1.272,0.869],[-0.272,1.18]],"o":[[1.333,-0.581],[-1.195,-1.221],[0.614,0.109],[0.376,0.883],[2.915,2.491],[-0.154,0.455],[-0.429,-0.04],[-0.824,1.726],[-1.421,0.773],[-1.252,-0.855],[0.043,-0.188]],"v":[[-108.629,175.39],[-108.326,173.149],[-111.645,169.257],[-109.802,169.583],[-108.067,171.745],[-97.958,175.391],[-98.893,175.919],[-99.842,176.406],[-103.898,179.626],[-107.877,179.118],[-108.656,175.976]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.172,-0.386],[-3.505,-2.269],[0.11,-0.453],[0.355,0.086],[1.294,-0.432],[0.827,-0.115],[0.101,0.489],[-0.454,0.106],[-0.291,0.165],[0.092,0.744],[0.573,0.049],[3.838,-1.224],[0.585,-0.062],[0.159,0.787],[-0.484,0.206]],"o":[[4.243,-1.002],[0.27,0.175],[-0.097,0.397],[-1.454,-0.354],[-0.811,0.271],[-0.574,0.08],[-0.1,-0.483],[0.335,-0.078],[0.476,-0.27],[-0.077,-0.619],[-3.853,-0.327],[-0.559,0.178],[-0.574,0.061],[-0.141,-0.698],[2.682,-1.143]],"v":[[52.947,195.916],[64.193,199.482],[64.784,200.22],[63.973,200.688],[59.969,201.436],[57.499,201.844],[56.574,201.132],[57.18,200.293],[58.166,200.002],[59.461,199.054],[58.019,198.242],[46.468,198.392],[44.73,198.727],[43.269,198.137],[44.298,197.091]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.045,-0.837],[1.481,-1.121],[-0.498,-0.319],[-0.026,-0.601],[-0.066,-2.018],[1.176,-0.093],[0.216,1.157],[0.017,0.837],[1.165,1.472],[-0.557,0.464],[0,1.599],[-0.999,-0.059]],"o":[[-0.471,1.348],[-0.545,0.412],[0.486,0.312],[0.087,2.018],[0.029,0.879],[-1.156,0.092],[-0.152,-0.815],[-0.035,-1.731],[-0.442,-0.558],[1.238,-1.031],[0,-0.925],[0.846,0.05]],"v":[[95.873,52.384],[94.573,56.57],[94.793,57.75],[95.593,59.086],[95.868,65.138],[94.598,66.93],[92.408,65.441],[92.281,62.936],[91.075,58.015],[91.249,56.266],[92.958,52.367],[94.669,50.912]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.048,4.311],[-0.819,0.368],[-0.616,-0.664],[-1.757,-1.656],[0.454,-1.066],[0.985,0.075]],"o":[[0.017,-0.928],[0.841,-0.378],[1.654,1.782],[0.692,0.652],[-0.471,1.105],[-3.904,-0.298]],"v":[[187.168,-220.334],[187.801,-222.907],[190.095,-221.612],[195.515,-216.807],[196.442,-214.361],[193.927,-213.215]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.805,-0.017],[0.726,0.122],[1.493,1.6],[0.578,-0.266],[0.825,0.129],[-0.252,1.247],[-3.003,0.36],[-2.929,-2.147],[0.343,-0.811]],"o":[[-0.54,-0.102],[-1.637,-0.276],[-0.328,-0.352],[-0.72,0.331],[-1.185,-0.186],[0.576,-2.847],[3.803,-0.456],[0.541,0.397],[-0.325,0.77]],"v":[[-64.85,164.576],[-66.838,164.204],[-71.789,163.36],[-73.544,163.902],[-75.807,164.437],[-77.271,162.379],[-73.684,159.241],[-63.823,162.403],[-62.963,164.1]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.372,2.252],[-0.441,1.162],[0.221,1.075],[-0.404,0.997],[-0.367,-0.038],[-0.006,-0.297],[0.058,-0.734],[-1.465,-0.358],[0.013,-1.051],[0.036,-2.563],[1.325,0.646]],"o":[[0.028,-1.584],[0.377,-0.992],[-0.212,-1.032],[0.112,-0.277],[0.361,0.038],[0.014,0.736],[-0.103,1.308],[1.01,0.247],[-0.032,2.563],[-0.02,1.452],[-2.478,-1.208]],"v":[[198.416,-193.966],[198.881,-197.854],[198.864,-201.069],[199.032,-204.123],[199.648,-204.65],[200.145,-204.015],[200.099,-201.805],[201.728,-199.083],[203.164,-197.153],[203.145,-189.463],[201.458,-188.577]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.652,0.371],[0,-1.175],[0.078,-4.192],[-0.035,-2.413],[0.001,-0.296],[0.666,-0.024],[0.039,0.802],[-1.451,7.519]],"o":[[0.534,1.105],[0.001,4.193],[-0.045,2.423],[0.004,0.296],[-0.003,0.766],[-0.753,0.028],[-0.371,-7.579],[0.095,-0.492]],"v":[[220.29,-150.308],[220.952,-146.877],[220.925,-134.298],[221.248,-127.068],[221.249,-126.18],[220.208,-124.6],[218.9,-126.147],[219.617,-148.826]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.664,-0.543],[1.022,-0.14],[0.166,0.632],[-0.359,0.242],[-2.205,0.118],[-0.431,0.375],[-0.398,-0.094],[-4.597,0.079],[-0.807,-0.318],[1.369,-0.073],[4.317,0.21]],"o":[[-1.018,0.169],[-0.486,0.067],[-0.149,-0.568],[1.925,-1.298],[0.583,-0.031],[0.321,-0.279],[4.532,1.076],[0.742,-0.013],[-0.858,1.213],[-4.31,0.046],[-1.68,-0.082]],"v":[[-1.021,130.89],[-4.078,131.388],[-5.301,130.871],[-4.559,129.915],[1.792,128.348],[3.264,127.859],[4.387,127.649],[18.124,128.435],[20.4,128.688],[17.002,130.416],[4.072,130.497]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.511,1.241],[1.627,2.578],[0.25,1.064],[-0.671,0.3],[-0.232,-0.522],[-0.594,-1.296],[-2.706,-2.024],[-1.195,-1.221],[1.333,-0.581],[0.288,-0.029],[0.695,0.681],[0.233,0.393]],"o":[[-1.084,-2.894],[-0.583,-0.924],[-0.186,-0.793],[0.724,-0.323],[0.579,1.303],[1.355,2.957],[0.843,1.521],[0.869,0.888],[-0.289,0.029],[-0.788,-0.116],[-0.233,-0.393],[-0.837,-1.598]],"v":[[-115.086,169.129],[-119.687,161.232],[-120.966,158.255],[-120.089,156.565],[-118.74,157.387],[-117.135,161.356],[-111.645,169.257],[-108.326,173.149],[-108.629,175.39],[-109.494,175.477],[-111.851,175.089],[-112.551,173.91]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0.004],[0.659,-1.482],[2.053,-1.019],[2.176,0.827],[0.08,0.686],[-0.522,0.373],[-1.866,0.868]],"o":[[2.108,-0.054],[-0.824,1.853],[-2.417,1.2],[-0.56,-0.213],[-0.085,-0.731],[1.703,-1.215],[1.269,-0.59]],"v":[[166.19,213.326],[168.02,215.133],[163.986,219.447],[157.424,219.348],[156.106,218.334],[157.185,216.89],[162.755,214.227]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.743,-0.013],[-1.45,-0.61],[-0.417,0.457],[-0.938,-1.178],[-1.268,0.315],[-0.257,-0.96],[0.934,-0.197],[1.31,-1.366],[0.229,0.493],[-0.347,0.148],[-0.29,0.176],[0.398,0.759],[0.442,-0.38],[1.553,-0.175],[0.093,1.47],[0.442,0.347],[-0.252,0.789]],"o":[[1.308,-0.318],[0.572,0.241],[1.025,-1.126],[0.828,1.039],[1.004,-0.25],[0.303,1.131],[-1.685,0.355],[-0.286,0.298],[-0.248,-0.533],[0.317,-0.135],[0.474,-0.287],[-0.355,-0.677],[-1.294,1.114],[-1.019,0.114],[-0.047,-0.749],[-0.499,-0.391],[0.241,-0.755]],"v":[[-174.693,181.592],[-170.451,182.062],[-169.034,181.591],[-166.249,181.59],[-163.295,182.588],[-160.775,183.608],[-162.632,185.52],[-167.354,187.329],[-168.501,187.094],[-167.872,186.314],[-166.909,185.941],[-166.038,184.674],[-167.59,184.568],[-172.016,185.938],[-174.135,184.6],[-175.437,183.544],[-176.31,182.007]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.001,0.197],[-0.016,0.096],[-0.795,0.348],[-0.555,-0.358],[-0.303,-0.003],[-0.716,-1.334],[-2.206,-0.747],[0.023,-0.37],[0.364,-0.072],[1.635,0.311],[-0.215,2.021],[0.082,0.006],[0.529,1.402]],"o":[[-0.001,-0.099],[0.115,-0.695],[0.725,-0.317],[0.284,0.183],[1.766,0.018],[0.978,1.823],[0.325,0.11],[-0.032,0.515],[-1.692,0.334],[-1.337,-0.255],[0.012,-0.114],[-2.826,-0.196],[-0.065,-0.173]],"v":[[205.819,-51.494],[205.82,-51.789],[206.241,-53.812],[207.869,-52.77],[208.77,-52.319],[212.102,-49.774],[216.085,-45.254],[216.597,-44.415],[215.732,-43.763],[210.777,-44.226],[208.131,-46.597],[207.92,-46.949],[205.829,-50.906]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.046,1.008],[0.35,1.261],[-0.247,0.338],[0.601,0.546],[-0.538,0.784],[0.541,1.621],[-0.043,1.291],[-0.094,1.592],[-0.61,0.164],[-0.765,-0.328],[0.201,-0.361],[-0.486,-1.257],[-0.111,-1.674],[-0.236,-2.989],[0.452,-2.627],[0.602,0.034],[0.152,0.503]],"o":[[-0.025,-1.547],[-0.105,-0.38],[0.516,-0.705],[-0.628,-0.571],[1.024,-1.492],[-0.409,-1.226],[0.052,-1.558],[0.027,-0.457],[0.811,-0.218],[0.435,0.187],[-0.65,1.169],[0.589,1.521],[0.198,3.001],[0.211,2.677],[-0.069,0.401],[-0.546,-0.031],[-0.383,-1.262]],"v":[[135.621,84.729],[135.358,80.635],[135.501,79.49],[135.235,77.683],[135.052,75.749],[135.511,70.915],[134.857,67.209],[133.687,62.852],[133.889,61.554],[136.3,62.059],[136.565,63.089],[136.607,66.508],[136.832,71.478],[137.855,80.41],[137.386,88.347],[136.734,89.338],[135.844,88.288]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.382,-0.044],[-2.857,-2.076],[0.056,-0.665],[0.506,-0.195],[2.64,0.03],[0.587,0.485],[0.216,1.452]],"o":[[3.283,0.526],[0.428,0.311],[-0.049,0.588],[-2.387,0.92],[-0.94,-0.011],[-1.172,-0.969],[-0.202,-1.356]],"v":[[150.308,15.469],[159.863,18.114],[160.895,19.233],[159.835,20.376],[152.45,22.309],[150.579,20.995],[148.683,17.25]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.919,0.057],[-1.875,-0.411],[-0.038,-0.357],[-0.848,-0.728],[0.389,-0.515],[0.409,0.28],[1.983,-0.413],[2.604,0.215],[0.251,0.148],[-0.053,0.777],[-0.598,0.184],[-0.782,0.849],[-0.353,0.26],[-0.664,-0.418],[0.25,-0.59]],"o":[[1.756,-0.37],[0.267,0.058],[0.158,1.471],[0.344,0.295],[-0.296,0.392],[-1.94,-1.327],[-2.566,0.534],[-0.284,-0.023],[-0.585,-0.346],[0.05,-0.74],[1.123,-0.345],[0.3,-0.326],[0.545,-0.402],[0.833,0.524],[-0.633,1.493]],"v":[[177.278,210.507],[182.572,209.621],[183.347,209.802],[185.727,212.161],[186.22,213.375],[184.856,213.611],[179.043,213.496],[171.243,213.595],[170.415,213.287],[169.097,211.85],[170.556,210.801],[173.355,208.947],[174.306,208.019],[176.151,207.427],[176.047,209.247]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.856,0.228],[1.11,0.152],[-0.083,0.816],[-0.791,-0.14],[-0.645,0.361],[-7.379,-0.68],[-0.458,-0.127],[-1.258,-0.786],[1.939,0.147],[4.875,-0.019],[1.124,0.563]],"o":[[-1.092,-0.39],[-0.573,-0.079],[0.074,-0.733],[0.664,0.118],[7.38,0.089],[0.319,0.455],[1.393,0.387],[-1.941,0.484],[-4.879,-0.37],[-1.16,0.004],[-0.877,-0.439]],"v":[[55.849,140.004],[52.504,139.744],[51.267,138.835],[52.662,137.947],[54.671,137.799],[76.813,137.865],[78.112,138.406],[82.216,139.792],[76.347,139.985],[61.721,139.899],[58.257,139.644]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.601,0.884],[0.502,-1.26],[0.785,0.217],[-1.255,3.082],[-0.157,0.241],[-1.742,0.019],[-1.353,-2.036],[-0.558,-0.525],[0.776,-0.757],[0.54,0.702]],"o":[[-1.078,1.167],[-0.339,0.851],[-2.387,-0.659],[0.111,-0.273],[0.85,-1.305],[2.256,-0.025],[0.406,0.611],[0.614,0.577],[-0.796,0.777],[-0.566,-0.736]],"v":[[217.695,202.901],[216.077,206.787],[214.5,207.598],[211.57,202.354],[211.893,201.532],[215.197,198.466],[220.899,201.297],[222.081,203.156],[222.372,205.163],[219.352,205.315]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.177,-1.12],[0.585,0.319],[1.835,0.761],[-0.108,0.447],[1.199,0.475],[1.187,0.296],[4.501,-0.083],[-0.703,2.398],[-3.289,-0.784],[-3.026,-0.686],[-0.245,-0.529],[-1.815,-1.647]],"o":[[-0.47,0.943],[-1.722,-0.939],[-0.436,-0.181],[0.349,-1.451],[-1.14,-0.452],[-4.278,-1.067],[-1.609,0.03],[3.295,0.756],[3.018,0.72],[0.729,0.165],[1.03,2.224],[0.628,0.57]],"v":[[-201.979,158.491],[-203.723,158.707],[-208.743,155.641],[-209.145,154.669],[-210.818,151.961],[-214.302,150.767],[-227.295,148.379],[-228.355,145.488],[-218.471,147.763],[-209.43,149.98],[-208.241,151.138],[-203.954,156.917]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.507,-0.135],[0.318,-0.396],[2.157,0.33],[2.137,-0.512],[0.385,-0.719],[0.697,0.278],[-0.215,0.615],[1.968,0.294],[0.645,-0.115],[0.616,0.288],[1.525,-1.438],[0.763,0.515],[-0.007,0.651],[-1.781,-0.261],[-2.479,-0.159],[-0.225,-0.057],[-3.194,-0.157],[-0.982,0.264]],"o":[[-0.318,0.396],[-2.159,-0.003],[-2.257,-0.345],[-0.969,0.232],[-0.276,0.515],[-0.793,-0.316],[0.639,-1.823],[-0.631,-0.094],[-0.517,-0.229],[-2.053,-0.96],[-0.566,0.534],[-0.674,-0.455],[0.604,-1.68],[2.485,0.364],[0.243,0.016],[3.135,0.795],[0.987,0.048],[1.558,-0.42]],"v":[[39.922,147.491],[38.968,148.68],[32.497,148.451],[26.012,149.543],[24.537,151.437],[23.248,152.372],[22.963,150.713],[21.633,148.601],[19.733,148.462],[18.441,148.815],[13.157,150.037],[11.178,150.852],[11.364,148.975],[14.908,146.907],[22.227,146.211],[22.96,146.163],[32.496,147.043],[35.416,146.981]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.428,-0.337],[0.781,-0.415],[-0.182,-0.585],[-0.433,0.043],[-0.923,0.148],[-1.002,0.003],[-0.712,-0.788],[-1.101,0.67],[-2.536,0.221],[-1.461,1.524],[0.226,0.491],[0.441,-0.063],[1.213,0.198],[-2.419,-0.773],[1,-0.827],[0.77,-0.214],[0.257,-0.4],[2.223,0.431],[1.655,-0.055],[-0.507,-1.653],[0.241,-0.062],[0.319,0.056],[1.87,-0.783],[0.201,0.339],[-0.221,0.298],[0.33,0.621],[0.565,-0.214],[1.882,0.073],[0.259,-0.382],[0.649,-0.123],[0.226,0.307],[-0.283,0.323],[-1.876,0.921]],"o":[[-0.793,0.393],[-0.369,0.196],[0.154,0.493],[0.929,-0.092],[0.972,-0.155],[1.063,-0.003],[0.849,0.94],[2.328,-1.416],[1.922,-0.168],[0.333,-0.347],[-0.281,-0.612],[-1.162,0.166],[1.998,-1.865],[1.232,0.394],[-0.613,0.507],[-0.459,0.127],[-1.186,1.843],[-1.594,-0.309],[-0.639,0.021],[0.072,0.234],[-0.331,0.085],[-1.916,-0.334],[-0.285,0.119],[-0.274,-0.463],[0.361,-0.487],[-0.333,-0.626],[-1.79,0.678],[-0.511,-0.02],[-0.383,0.565],[-0.358,0.068],[-0.263,-0.357],[1.379,-1.575],[0.442,-0.217]],"v":[[107.731,124.677],[105.355,125.863],[104.598,126.781],[105.716,127.313],[108.49,126.899],[111.414,126.486],[114.031,127.62],[117.097,128.286],[124.548,126.797],[129.878,125.005],[130.545,123.785],[129.243,123.735],[125.757,124.217],[132.509,123.07],[132.855,125.303],[130.785,126.419],[129.772,127.203],[125.275,129.018],[120.524,127.991],[119.1,129.09],[118.616,129.571],[117.605,129.73],[111.927,129.989],[110.979,129.789],[111.416,128.814],[112.41,127.366],[110.499,127.156],[105.005,127.965],[103.956,128.667],[102.348,129.626],[101.413,129.326],[101.441,128.229],[106.33,124.472]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.282,-0.079],[-0.098,-0.527],[0.983,0.096],[4.133,0.011],[0.446,0.615],[-0.505,0.169],[-2.961,0.565],[-0.96,0.768],[-0.469,0.036],[-3.021,-0.436],[1.899,-0.11],[0.942,-0.374],[-0.048,-0.583],[-0.361,-0.143],[-0.322,-0.115],[-0.179,-1.022],[-0.749,-0.088]],"o":[[-1.346,1.109],[-1.013,0.598],[-4.132,-0.404],[-0.638,-0.002],[0.101,-0.529],[2.831,-0.95],[1.16,-0.222],[0.362,-0.29],[3.027,-0.232],[-1.878,0.575],[-0.976,0.056],[-0.387,0.153],[0.035,0.434],[0.317,0.126],[-0.584,0.37],[0.16,0.916],[0.287,0.034]],"v":[[-190.718,44.653],[-190.129,46.117],[-193.153,46.058],[-205.552,45.821],[-207.299,45.267],[-206.384,44.207],[-197.877,41.396],[-194.646,40.066],[-193.284,39.559],[-184.205,39.664],[-189.904,39.911],[-192.819,40.189],[-193.752,40.939],[-192.858,41.607],[-191.894,41.954],[-193.308,43.378],[-191.564,44.424]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.333,0.646],[-2.725,1.365],[-1.781,0.1],[-0.626,0.043],[-2.101,-0.084],[-1.024,0.083],[0,0],[0.252,-1.58],[0.548,-0.144],[0.212,0.371],[0.564,-0.072],[-0.094,-0.448],[0.051,-0.79],[0.527,0.012],[0.038,0.435],[0.01,0.492],[0.822,0.214],[0.437,-0.399],[-0.173,-0.484],[-0.154,-0.41],[1.44,-0.074],[0.294,-0.147],[0.037,0.38],[-0.907,2.031],[-1.288,0.393],[-0.003,0.782],[0.474,0.186],[0.255,0.138],[0.813,-0.194],[-0.043,-2.707]],"o":[[1.775,-2.333],[-0.721,1.796],[0.627,-0.035],[-0.286,0.645],[0.779,0.031],[0,0],[0.154,1.415],[-0.073,0.456],[-0.733,0.193],[-0.202,-0.353],[-0.654,0.083],[0.164,0.779],[-0.027,0.416],[-0.469,-0.01],[-0.043,-0.489],[-0.017,-0.861],[-0.609,-0.158],[-0.487,0.445],[0.147,0.412],[0.512,1.365],[-0.405,0.021],[-0.33,0.165],[-0.19,-1.972],[1.32,-0.106],[0.717,-0.219],[0.003,-0.758],[-0.268,-0.105],[-0.033,-0.508],[-2.937,-1.027],[-1.33,0.219]],"v":[[-63.635,159.844],[-57.431,153.741],[-55.964,156.091],[-54.085,155.963],[-53.626,157.556],[-51.439,158.777],[-51.427,158.79],[-50.054,162.731],[-50.322,164.04],[-51.012,163.009],[-51.576,161.971],[-51.927,163.201],[-51.744,165.546],[-52.393,166.353],[-53.133,165.583],[-53.186,164.109],[-54.469,162.541],[-56.149,162.797],[-56.027,164.299],[-55.42,165.474],[-56.931,167.863],[-57.835,168.272],[-58.486,167.978],[-58.81,162.048],[-54.86,161.641],[-53.615,160.176],[-54.812,159.339],[-55.58,158.929],[-56.382,158.038],[-62.247,161.444]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.471,0.872],[-0.025,0.289],[-10.033,-0.6],[-1.512,-1.106],[5.899,-0.741],[1.761,-0.22],[2.084,0.018]],"o":[[0.025,-0.289],[10.035,-0.045],[1.093,1.039],[-6.287,0.346],[-1.781,-0.251],[-2.06,-0.582],[-1.613,-0.313]],"v":[[53.747,131.222],[53.823,130.355],[83.927,130.448],[88.198,131.966],[70.062,132.478],[64.761,132.701],[58.518,132.435]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.254,0.623],[-1.196,-0.173],[-0.633,-0.079],[0.045,1.041],[0.341,-2.13],[1.012,0.385],[2.271,-0.699],[0.894,0.052],[0.263,0.667],[-0.355,0.49],[-1.163,0.464],[-0.754,0.216]],"o":[[1.075,-0.629],[0.631,0.091],[1.104,0.138],[0.567,2.13],[-0.167,1.047],[-2.386,-0.907],[-0.861,0.265],[-0.596,-0.034],[-0.241,-0.613],[0.745,-1.028],[0.73,-0.291],[0.703,-0.201]],"v":[[88.764,43.451],[92.19,42.954],[94.095,43.137],[95.587,41.7],[95.653,48.108],[93.683,49.292],[86.756,49.663],[84.14,50.008],[82.649,49.289],[83.032,47.637],[85.959,45.472],[88.173,44.662]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.61,0.217],[-3.365,0.543],[-1.162,0.166],[-0.281,-0.612],[0.333,-0.347],[1.922,-0.168],[2.328,-1.416],[0.849,0.94],[1.063,-0.003],[0.972,-0.155],[0.929,-0.092],[0.154,0.493],[-0.369,0.196],[-0.793,0.393],[-1.237,-0.226]],"o":[[3.248,1.536],[1.213,0.198],[0.441,-0.063],[0.226,0.491],[-1.461,1.524],[-2.536,0.221],[-1.101,0.67],[-0.712,-0.788],[-1.002,0.003],[-0.923,0.148],[-0.433,0.043],[-0.182,-0.585],[0.781,-0.415],[1.172,0.01],[1.614,0.114]],"v":[[115.785,123.658],[125.757,124.217],[129.243,123.735],[130.545,123.785],[129.878,125.005],[124.548,126.797],[117.097,128.286],[114.031,127.62],[111.414,126.486],[108.49,126.899],[105.716,127.313],[104.598,126.781],[105.355,125.863],[107.731,124.677],[110.949,123.713]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.409,0.701],[1.123,0.41],[-0.078,0.519],[-0.503,0.074],[0.123,1.369],[-2.004,-2.049],[0.707,-0.477],[0.933,-0.671],[-0.78,-0.032],[0.539,-1.716],[-2.743,0.014],[-0.765,-0.239],[-0.019,-0.477],[0.38,-0.11],[0.632,-0.047],[3.749,1.096],[0.913,0.33]],"o":[[0.565,-1.044],[-0.383,-0.14],[0.095,-0.636],[0.769,-0.114],[1.914,-2.184],[0.63,0.644],[-0.824,0.556],[0.802,0.607],[1.657,0.068],[2.786,-0.415],[0.79,-0.004],[0.306,0.096],[0.017,0.422],[-0.607,0.176],[-3.765,0.278],[-0.883,-0.258],[-0.704,-0.255]],"v":[[58.173,122.018],[57.339,119.868],[56.388,119.134],[57.691,118.452],[59.36,117.286],[64.772,117.116],[64.553,118.609],[61.701,119.542],[64.05,120.22],[65.168,122.012],[73.443,121.703],[75.785,121.942],[76.588,122.402],[75.918,123.296],[74.039,123.619],[62.758,123.418],[59.995,123.171]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.427,-0.257],[1.127,-0.914],[-0.487,-1.653],[0.016,-0.39],[0.342,1.189],[0.481,2.295],[-0.665,0.212],[-3.254,0.373],[-0.357,-0.997],[0.721,-0.469],[1.468,-0.899],[-0.064,-0.571]],"o":[[-0.901,1.186],[-1.225,0.994],[0.104,0.355],[-1.117,-0.961],[-0.652,-2.266],[-0.155,-0.74],[3.092,-0.986],[0.859,-0.099],[0.294,0.821],[-1.442,0.938],[-0.469,0.287],[0.086,0.767]],"v":[[-234.195,6.241],[-237.505,9.116],[-239.05,12.7],[-239.081,13.866],[-240.117,10.301],[-241.227,3.359],[-240.472,2.015],[-231.106,-0.609],[-228.597,-0.18],[-230.189,1.713],[-234.603,4.393],[-235.523,5.641]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.38,0],[3.326,-0.498],[1.334,-0.677],[0.404,0.75],[-0.939,0.588],[-1.691,-0.427],[-1.033,-0.014],[-0.144,-0.011],[-1.827,0.489],[-1.826,-0.142],[-2.117,-0.032],[-0.14,-1.129],[0.742,-0.126],[1.663,0.321]],"o":[[-3.288,0.316],[-1.552,0.232],[-0.86,0.437],[-0.399,-0.741],[1.29,-0.808],[0.975,0.246],[0.146,0.002],[1.656,0.13],[1.567,-0.42],[2.077,0.161],[0.858,0.013],[0.149,1.206],[-1.583,0.269],[-1.33,-0.257]],"v":[[37.046,157.015],[27.168,156.906],[22.876,158.25],[20.845,157.965],[21.207,155.573],[25.503,154.478],[28.591,154.575],[29.031,154.526],[34.032,154.584],[39.417,154.482],[45.747,154.336],[47.698,155.422],[45.996,156.851],[41.176,157.067]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.335,0.068],[-0.466,-2.996],[1.404,-0.035],[0.238,-0.487],[0.594,-0.525],[0.344,0.239],[-0.143,0.332],[-0.154,0.664],[1.079,-0.455],[1.065,-1.247],[0.88,-0.264],[-1.066,1.786],[-1.222,2.649],[-0.488,0.237],[-0.957,0.524]],"o":[[0.062,3.002],[0.149,0.96],[-0.649,0.016],[-0.355,0.726],[-0.272,0.24],[-0.373,-0.26],[0.272,-0.633],[0.263,-1.136],[-1.521,0.642],[-0.305,0.357],[1.043,-2.157],[1.49,-2.498],[0.204,-0.443],[0.083,0.975],[0.286,-0.157]],"v":[[-9.661,140.374],[-9.406,149.381],[-10.709,151.353],[-11.826,152.41],[-13.318,154.228],[-14.252,154.404],[-14.313,153.485],[-13.568,151.56],[-14.966,150.36],[-18.762,153.346],[-20.15,154.425],[-17.258,148.527],[-12.97,140.936],[-12.098,139.78],[-10.658,140.591]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.131,0.504],[0.143,-2.638],[0.231,-0.953],[1.453,0.705],[0.315,-1.63],[0.886,-0.052],[0.392,1.017],[-0.634,0.88],[-2.146,2.825]],"o":[[0.334,2.756],[-0.053,0.978],[-0.39,1.612],[-1.525,-0.74],[-0.165,0.856],[-0.957,0.056],[-0.408,-1.057],[2.075,-2.878],[0.681,-0.896]],"v":[[155.344,90.995],[155.016,99.016],[154.579,101.933],[151.71,103.294],[149.515,104.326],[148.066,105.703],[145.89,104.579],[146.282,101.619],[152.603,93.056]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.004,0.686],[-0.082,0.065],[-1.093,0.249],[-0.79,-1.068],[-0.232,0.583],[-0.713,0.08],[-0.587,0.028],[-0.955,-0.202],[0.907,-0.549],[-0.408,-0.765],[0.594,-0.569],[0.665,0.467],[0.778,-0.945],[0.44,0.462],[2.066,-0.133],[0.628,0.593]],"o":[[0.081,-0.065],[1.18,0.038],[1.002,-0.228],[0.321,0.433],[0.352,-0.887],[0.583,-0.065],[0.969,0.133],[1.045,0.222],[-0.939,0.568],[0.497,0.93],[-0.612,0.586],[-0.917,-0.643],[-0.435,0.528],[-1.7,-1.783],[0.076,-0.8],[-0.55,-0.52]],"v":[[-51.447,148.263],[-51.203,148.069],[-47.983,147.114],[-45.181,147.619],[-44.153,147.56],[-42.331,146.625],[-40.57,146.534],[-37.665,146.949],[-37.177,148.971],[-37.735,150.89],[-38.235,153.142],[-40.231,152.97],[-42.827,153.261],[-44.389,153.538],[-50.253,152.296],[-50.885,150.15]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.493,-0.89],[3.888,-0.444],[3.235,2.537],[0.51,0.026],[1.634,-0.06],[0.646,-0.217],[0.248,0.169],[-0.849,0.246],[-0.469,-0.121],[-0.316,1.184],[1.327,0.648],[0.695,0.199],[-0.109,0.942],[-0.952,-5.054],[-1.305,-1.097],[-2.506,0.001],[-3.843,-0.163]],"o":[[-3.928,-0.165],[-3.993,0.456],[-0.396,-0.311],[-1.253,-0.514],[-0.705,-0.189],[-0.248,-0.169],[0.272,-0.81],[0.482,0.069],[0.867,0.223],[0.283,-1.062],[-0.671,-0.328],[-0.269,-0.649],[5.031,-0.233],[-0.314,2.409],[2.097,1.713],[3.843,0.155],[0.537,0.023]],"v":[[-141.143,26.104],[-152.904,26.414],[-163.768,23.947],[-165.119,23.415],[-168.439,21.212],[-170.429,21.501],[-171.173,20.995],[-169.561,19.343],[-168.118,19.561],[-165.921,18.972],[-166.93,16.09],[-169.004,15.452],[-170.251,13.848],[-163.664,19.155],[-160.503,23.054],[-153.391,24.753],[-141.862,25.222]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.098,-0.977],[0.899,0.012],[1.32,-0.117],[0.004,-0.079],[0.761,-0.017],[3.127,0.362],[1.777,-0.479],[0.763,0.582],[-2.139,0.381],[-5.435,-0.435],[-0.923,-0.135]],"o":[[-0.678,0.534],[-1.32,-0.018],[-0.232,0.021],[-0.089,1.635],[-3.174,0.07],[-1.834,-0.212],[-0.942,0.254],[1.761,-1.337],[5.405,-0.964],[0.927,0.074],[0.91,0.133]],"v":[[133.952,79.491],[131.642,80.232],[127.679,80.518],[127.024,80.715],[124.914,81.717],[115.572,80.42],[110.148,80.62],[107.65,80.229],[113.589,77.867],[129.862,77.511],[132.63,77.914]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.14,0.137],[-0.355,0.028],[-0.132,2.396],[0.048,-1.128],[0.594,-2.18],[1.414,0.139],[1.237,0.764],[0.716,-0.389],[2.199,-0.35],[-1.326,1.009],[-0.295,0.112],[-1.079,0.319],[-0.044,0.66],[0.388,0.32]],"o":[[0.264,-0.282],[2.8,0.771],[1.145,0.145],[-0.094,2.208],[-0.321,1.179],[-1.308,-0.128],[-0.706,-0.436],[-2.101,1.142],[0.747,-1.569],[0.295,-0.112],[1.146,-0.094],[0.561,-0.166],[0.044,-0.661],[-0.15,-0.124]],"v":[[190.717,35.22],[191.687,34.871],[197.507,31.645],[199.034,33.583],[198.58,40.195],[196.334,41.973],[192.477,41.288],[190.035,41.242],[183.429,42.316],[186.867,38.767],[187.754,38.43],[190.991,37.468],[192.333,36.484],[191.137,35.629]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.226,0.918],[-3.922,-0.906],[-7.301,0.547],[-1.91,0.171],[-0.796,-0.508],[0.083,-0.335],[0.276,-0.048],[2.708,-0.078],[7.212,0.963],[0.703,-0.429]],"o":[[3.788,-1.713],[7.152,1.651],[1.915,-0.144],[0.975,-0.087],[0.244,0.156],[-0.091,0.369],[-2.67,0.462],[-7.301,0.21],[-0.781,-0.104],[-2.727,1.666]],"v":[[-192.581,125.339],[-181.555,123.363],[-159.81,124.456],[-154.079,123.94],[-151.47,124.838],[-151.017,125.526],[-151.763,125.855],[-159.829,126.732],[-181.558,125.037],[-183.878,125.192]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.801,0.013],[0.437,0.051],[0.968,1.838],[0.297,-0.023],[2.439,0.344],[1.188,-0.241],[2.793,0.044],[-1.25,0.205],[-0.204,0.299],[-3.118,-0.248],[-2.717,-0.51],[-0.761,0.375],[-1.775,-1.6]],"o":[[-0.438,-0.052],[-1.482,-0.752],[-0.133,-0.253],[-2.396,0.185],[-1.138,-0.161],[-2.66,-0.824],[-0.67,-0.661],[0.336,-0.055],[3.1,-0.025],[2.757,0.219],[0.784,0.147],[2.08,1.131],[-0.042,0.933]],"v":[[-98.503,68.936],[-99.814,68.78],[-104.299,66.564],[-105.134,66.459],[-112.341,66.686],[-115.855,66.461],[-124.02,65.075],[-123.678,63.655],[-122.831,63.173],[-113.529,63.009],[-105.311,63.992],[-102.997,63.919],[-97.06,67.778]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.003],[0.091,-0.027],[0.546,-0.342],[0.314,-0.809],[1.046,1.016],[1.134,0.567],[-0.464,1.719],[0.566,0.297],[1.519,1.186],[-0.213,0.598],[-0.513,0.018],[-0.77,-1.77],[-0.771,0.453],[-1.204,-0.433],[0.736,-0.517],[0.187,-0.158],[-0.302,-0.792],[-0.63,0],[-2.064,-0.503],[-0.438,-0.223],[0.148,-0.708],[0.609,-0.013],[0.247,0]],"o":[[-0.099,0],[-0.896,0.266],[-0.58,0.362],[-0.509,1.314],[-0.949,-0.921],[-1.377,-0.688],[0.208,-0.77],[-1.701,-0.892],[-0.374,-0.292],[0.191,-0.534],[1.497,-0.053],[0.368,0.846],[0.992,-0.582],[0.843,0.303],[-0.202,0.142],[-0.46,0.389],[0.252,0.661],[2.135,-0.002],[0.493,0.12],[0.686,0.349],[-0.16,0.767],[-0.246,0.005],[0,0.003]],"v":[[-40.888,211.797],[-41.183,211.801],[-43.444,211.286],[-43.454,213.469],[-45.653,213.931],[-49.083,212.309],[-50.984,209.147],[-51.853,207.847],[-56.735,204.802],[-57.408,203.618],[-56.193,202.944],[-52.441,204.55],[-50.573,204.937],[-47.351,204.335],[-47.167,205.521],[-47.778,205.937],[-48.829,207.322],[-47.132,207.951],[-40.856,208.814],[-39.515,209.4],[-38.765,210.985],[-40.149,211.788],[-40.888,211.789]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.248,0.551],[-0.151,0.533],[-0.628,-0.557],[0.067,-1.337],[0.827,-0.535],[0.457,-0.552],[-1.339,-0.288],[0.642,0.09],[2.59,-0.424],[0.99,1.458],[0.342,0.651],[1.918,-0.089],[-2.617,-1.515],[-2.149,1.047]],"o":[[0.762,0.078],[0.245,-0.866],[0.856,0.759],[-0.062,1.248],[-0.528,0.342],[1.338,1.082],[-0.176,0.736],[-2.688,-0.377],[-2.146,0.352],[-0.413,-0.608],[-0.892,-1.697],[1.159,-2.171],[0.072,2.228],[1.267,-0.116]],"v":[[-162.036,28.501],[-161.037,27.479],[-159.615,27.052],[-157.327,29.543],[-159.745,31.145],[-161.33,32.275],[-157.21,32.548],[-158.606,33.629],[-166.474,34.355],[-170.634,32.064],[-171.749,30.158],[-175.944,27.732],[-169.646,26.639],[-165.844,28.661]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.109,-1.96],[-1.338,1.489],[1.475,2.797],[0.921,-0.987],[1.445,1.751],[1.25,0.103],[0.216,0.113],[1.826,-1.924],[-0.553,-2.024],[0.71,-0.37],[-0.018,2.433],[-0.139,1.418],[-0.725,-0.126],[-1.169,1.447],[-0.646,-0.151],[-1.013,-0.196],[-0.753,-1.178],[-1.204,-2.341],[1.761,-1.608]],"o":[[-0.942,-1.458],[2.326,-2.589],[-0.424,-0.804],[-1.497,1.603],[-0.731,-0.886],[-0.233,-0.019],[-2.424,-1.267],[-1.496,1.576],[0.203,0.744],[-0.067,-2.433],[0.01,-1.419],[0.731,0.093],[1.45,0.251],[0.4,-0.495],[1.006,0.236],[1.254,0.243],[1.467,2.294],[1.1,2.138],[-1.482,1.354]],"v":[[125.519,-41.874],[125.874,-45.703],[126.438,-53.748],[124.761,-54.065],[121.097,-54.345],[118.322,-56.133],[117.642,-56.4],[113.538,-55.605],[112.122,-50.422],[111.322,-48.697],[111.145,-55.998],[111.538,-60.253],[113.73,-59.97],[117.775,-60.759],[119.601,-61.048],[122.613,-60.314],[125.224,-58.264],[128.316,-51.004],[127.552,-46.775]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.539,-1.333],[-0.831,-0.38],[1.2,-0.971],[1.631,-1.095],[0.251,0.887],[0.052,1.716],[0.289,0.248],[0.018,0.189],[0.104,0.355],[-1.225,0.994],[-0.901,1.186],[-0.562,-0.001],[-1.82,-1.016],[-0.001,0],[1.255,-0.295],[1.581,-1.212]],"o":[[0.577,0.854],[1.369,0.626],[-1.527,1.235],[-0.963,0.647],[-0.476,-1.679],[0.067,-0.345],[-0.018,-0.189],[0.016,-0.39],[-0.487,-1.653],[1.127,-0.914],[0.562,0.002],[1.858,0.11],[0,0],[0.411,1.261],[-1.944,0.457],[-0.939,0.72]],"v":[[-234.704,14.137],[-232.289,15.436],[-232.025,17.642],[-236.8,21.082],[-238.259,20.459],[-238.78,15.347],[-239.026,14.434],[-239.081,13.866],[-239.05,12.7],[-237.505,9.116],[-234.195,6.241],[-232.509,6.245],[-226.931,6.482],[-226.93,6.474],[-228.285,8.612],[-233.548,11.243]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.676,0.04],[0.364,0.033],[-0.15,0.008],[-2.457,0.336],[-0.078,-0.573],[0.745,-0.085],[0.197,0.004],[6.719,0.348],[3.995,-0.581],[2.518,0.589],[0.966,0.191],[-0.07,0.636],[-0.502,0.084],[-0.098,0],[-3.646,-0.269],[-0.392,-0.008],[-5.374,-0.093]],"o":[[-0.381,-0.035],[-0.1,-0.131],[2.462,-0.133],[0.74,-0.101],[0.079,0.58],[-0.196,0.022],[-6.707,-0.142],[-3.974,-0.206],[-2.43,0.353],[-0.957,-0.224],[-0.433,-0.086],[0.055,-0.501],[0.097,-0.016],[3.649,-0.007],[0.393,0.029],[5.373,0.111],[2.661,0.046]],"v":[[104.167,162.669],[103.04,162.567],[103.122,162.362],[110.513,162.185],[111.537,163.163],[110.791,164.358],[110.201,164.393],[90.108,165.007],[78.193,165.418],[70.57,164.902],[67.669,164.353],[66.811,163.569],[67.66,162.684],[67.954,162.648],[78.9,162.757],[80.074,162.889],[96.194,163.201]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.447,0.821],[-1.007,0.349],[-0.209,0.039],[-2.65,0.012],[-1.305,-1.422],[-0.262,0.277],[-1.361,0.539],[-0.842,-1.114],[-0.186,-0.452],[0.858,-0.82],[0.741,0.445],[0.343,-1.274],[0.945,-0.016],[0.309,0.75],[1.629,-0.728],[1.653,-0.759],[-0.646,1.502],[0.147,0.706],[0.582,-0.088],[0.953,-0.239],[1.531,-0.406],[-0.311,0.436]],"o":[[1.081,0.017],[0.231,0.075],[2.659,-0.493],[1.772,-0.008],[0.142,0.155],[0.086,-0.857],[1.266,-0.502],[0.293,0.388],[0.388,0.945],[-0.842,0.804],[-0.974,-0.585],[-0.203,0.755],[-0.987,0.017],[-0.668,-1.621],[-1.661,0.743],[-1.355,-0.219],[0.682,-0.063],[-0.168,-0.803],[-0.97,0.147],[-1.503,0.377],[-0.09,-0.78],[0.522,-0.733]],"v":[[124.154,107.538],[127.258,106.903],[127.947,107.114],[135.904,107.158],[140.655,108.627],[141.328,108.648],[142.01,106.126],[145.743,107.166],[146.452,108.456],[146.219,111.204],[143.786,111.014],[141.897,111.683],[140.218,113.12],[138.595,111.654],[135.77,110.544],[130.808,112.819],[129.326,110.505],[130.662,109.468],[129.014,109.107],[126.131,109.725],[121.602,110.92],[122.181,109.282]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.105,-1.247],[1.271,-2.076],[1.177,0.077],[0.458,1.063],[1.496,3.083],[-1.322,0.449],[-0.85,0.247],[0.172,-1.052],[0.467,-1.204],[-0.633,-0.31],[-0.341,0.347],[-0.628,1.109],[-0.394,-0.005],[-0.135,-0.37]],"o":[[0.09,2.571],[-0.517,0.844],[-1.272,-0.083],[-1.34,-3.113],[-0.587,-1.211],[0.839,-0.285],[1.063,-0.308],[-0.206,1.262],[-0.2,0.516],[0.552,0.27],[0.922,-0.938],[0.166,-0.294],[0.466,0.006],[0.481,1.314]],"v":[[-114.269,140.403],[-115.953,147.332],[-118.224,148.958],[-120.811,147.008],[-124.123,137.402],[-122.651,134.728],[-120.142,133.849],[-118.802,135.079],[-119.703,138.803],[-119.393,140.228],[-118.132,139.696],[-116.23,136.379],[-115.566,135.66],[-114.835,136.485]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.547,0.786],[0.869,1.024],[1.07,0.359],[0.523,0.506],[-0.989,0.017],[0.714,1.346],[0.136,0.26],[-0.557,0.032],[-3.18,-0.331],[-3.254,0.046],[-3.158,0.19],[-1.67,0.076],[-0.472,-0.114],[0.029,-0.699],[0.437,-0.101],[2.372,0.409],[0.674,-0.096],[6.985,0.196],[1.226,-0.087],[-0.259,-0.487],[-1.238,-0.382],[0.025,-0.289],[0.566,-0.492]],"o":[[1.311,-0.441],[-0.771,-0.908],[-0.549,-0.184],[0.989,0],[1.484,-0.026],[-0.137,-0.259],[0.459,-0.321],[3.119,-0.181],[3.22,0.335],[3.156,-0.044],[1.669,-0.101],[0.487,-0.022],[0.5,0.121],[-0.028,0.672],[-2.325,0.538],[-0.671,-0.116],[-6.97,0.989],[-1.223,-0.034],[-0.481,0.034],[0.492,0.924],[-0.025,0.289],[-0.809,-0.085],[-0.487,0.423]],"v":[[50.223,132.116],[50.792,130.234],[47.862,128.654],[46.261,127.72],[49.228,127.717],[50.067,126.212],[49.659,125.434],[51.188,124.958],[60.56,124.598],[70.318,124.665],[79.766,124.961],[84.773,124.67],[86.239,124.794],[87.427,125.672],[86.246,126.288],[79.208,126.569],[77.145,126.542],[56.205,126.837],[52.527,127.072],[51.976,127.832],[53.823,130.355],[53.747,131.222],[51.821,132.082]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.279,-0.169],[1.542,1.348],[-4.411,-0.191],[-1.673,0.073],[-0.221,0.592],[-1.022,0.883],[-0.628,-2.221],[0.873,-0.094],[0.462,-0.113],[-0.293,0.029],[-2.973,-0.409],[-0.985,0.005],[-0.537,-0.056],[0.334,-0.195],[-0.03,-0.532],[-0.412,-0.137],[-0.19,-0.046],[0.891,0.154],[5.168,0.114],[0.912,-0.37],[1.124,0.013],[2.062,0.066],[1.128,-1.198],[0.569,-0.271]],"o":[[0.426,-1.346],[4.332,1.39],[1.688,0.073],[0.73,-0.032],[0.48,-1.283],[1.758,-1.519],[0.175,0.619],[-0.473,0.051],[0.123,0.63],[3.013,-0.301],[1.022,0.14],[0.537,-0.003],[-0.337,0.189],[-0.367,0.214],[0.029,0.514],[0.185,0.061],[-0.8,0.916],[-5.151,-0.892],[-1.015,-0.022],[0.039,-1.45],[-2.063,-0.023],[-1.604,-0.051],[-0.567,-0.386],[-1.163,0.553]],"v":[[-17.32,140.031],[-17.314,135.992],[-4.103,136.866],[0.912,136.567],[2.177,135.531],[4.521,132.343],[9.689,133.847],[8.956,135.126],[7.56,135.454],[8.401,135.946],[17.362,136.416],[20.27,135.985],[21.882,136.145],[20.872,136.714],[19.947,137.531],[20.939,138.26],[21.509,138.4],[18.738,138.823],[3.235,138.321],[0.417,139.154],[-1.644,137.471],[-7.833,137.414],[-11.975,138.922],[-13.648,138.96]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.92,1.203],[-0.903,0.897],[-0.746,-0.331],[-1.384,-1.959],[0.735,-0.42],[0.466,0.82],[1.017,-0.301],[0.435,-1.002],[-0.608,-0.602],[-0.343,-1.197],[0.431,-0.322],[0.364,0.198],[0.859,0.124],[0.923,-0.504],[0.721,0.455],[0.824,1.168],[0.692,-0.154],[0.089,-0.581],[0.871,0.146],[0.11,0.993],[-1.733,0.623],[-0.018,-0.293],[-0.615,-0.251],[-0.467,0.454]],"o":[[0.917,-0.93],[0.823,-0.817],[2.108,0.936],[0.61,0.863],[-0.916,0.523],[-0.423,-0.744],[-1.075,0.318],[-0.291,0.67],[0.839,0.831],[0.136,0.474],[-0.458,0.342],[-0.653,-0.355],[-0.239,0.797],[-0.84,0.458],[-1.252,-0.79],[-0.347,-0.492],[-0.609,0.135],[-0.114,0.741],[-0.945,-0.158],[-0.182,-1.649],[-0.005,0.294],[0.036,0.603],[0.657,0.268],[1.002,-0.975]],"v":[[-110.768,122.435],[-107.803,119.92],[-105.291,119.259],[-99.777,123.321],[-99.299,126.067],[-101.216,124.331],[-103.057,122.978],[-105.701,124.924],[-104.594,127.032],[-102.502,129.846],[-102.612,131.231],[-103.724,130.753],[-105.653,129.506],[-105.781,131.623],[-108.09,131.054],[-110.932,127.889],[-112.409,127.123],[-113.383,128.287],[-114.642,129.604],[-116.282,127.757],[-113.6,123.851],[-113.609,124.734],[-112.858,126.227],[-111.122,125.708]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.06,-0.582],[1.448,-0.527],[1.505,-0.227],[0.391,-1.245],[0.664,0.118],[0.074,-0.733],[-0.573,-0.079],[-1.092,-0.39],[0.847,0.126],[0.797,-0.987],[1.163,0.12],[0.2,0.585],[-0.438,0.346],[-0.073,0.123],[0.309,0.592],[0.579,-0.105],[0.316,1.281],[0.46,-0.23],[1.344,-1.363],[0.838,0.787],[-0.647,0.734],[0.666,0.149],[1.307,0.65],[-1.155,0.041],[-0.572,-0.657],[-0.762,0.145],[-1.768,0.358],[0.14,0.789],[-3.376,0.307],[0.393,0.519],[-0.388,0.604]],"o":[[-0.421,1.684],[-1.427,0.519],[-0.897,0.135],[-0.645,0.361],[-0.791,-0.14],[-0.083,0.816],[1.11,0.152],[-0.533,0.648],[-1.339,-0.199],[-0.673,0.833],[-0.587,-0.06],[-0.179,-0.523],[0.116,-0.091],[0.314,-0.53],[-0.395,-0.756],[-0.904,0.163],[-0.15,-0.61],[-1.674,0.836],[-0.702,0.712],[-0.757,-0.711],[0.823,-0.935],[0.451,-0.662],[1.138,-0.342],[-0.04,0.651],[0.569,0.653],[1.772,-0.338],[0.647,-0.131],[3.376,-0.302],[0.394,-0.036],[-0.641,-0.846],[2.084,0.018]],"v":[[64.76,132.701],[61.556,135.649],[57.113,136.594],[54.671,137.799],[52.662,137.947],[51.267,138.835],[52.504,139.744],[55.849,140.004],[53.793,140.953],[50.753,142.33],[48.072,143.619],[46.814,142.755],[47.229,141.442],[47.544,141.133],[48.419,139.563],[46.706,139.622],[44.593,138.766],[43.554,138.403],[38.789,141.332],[36.485,141.701],[36.439,139.303],[35.91,138.163],[35.896,136.186],[39.357,135.992],[38.986,137.866],[41.202,138.207],[46.501,137.103],[47.491,135.959],[57.619,135.05],[58.208,134.394],[58.518,132.435]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.184],[-1.406,2.422],[-0.028,0.095],[-1.192,0.295],[-0.695,-1.106],[-1.108,-1.598],[0.926,-1.437],[-1.956,0.025],[-0.042,-0.388],[0.624,-0.572],[0.973,-0.324],[-0.005,3.473]],"o":[[0.05,-2.585],[0.048,-0.082],[0.198,-0.676],[1.25,-0.309],[0.974,1.55],[0.831,1.198],[-0.428,0.664],[0.415,-0.005],[0.082,0.755],[-0.803,0.735],[-3.353,1.115],[0.002,-1.184]],"v":[[-115.421,51.747],[-114.5,44.082],[-114.421,43.798],[-113.777,41.799],[-110.627,42.888],[-108.206,47.859],[-109.45,52.48],[-109.029,53.944],[-108.374,54.605],[-108.941,56.651],[-111.76,57.889],[-115.421,55.298]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.151,0.661],[-1.467,-0.437],[0.207,-0.207],[0.629,-2.814],[-0.72,-0.29],[-0.325,0.518],[-4.7,0.854],[-0.886,0.082],[1.203,0.768],[-0.67,0.253],[-0.855,-0.058],[-2.271,-1.206],[0.133,-0.491],[0.499,0.116],[1.334,0.681],[1.865,0.391],[-0.042,-0.065],[3.32,-1.414],[3.173,-1.743],[0.148,0.995],[-1.805,1.777],[1.451,0.491]],"o":[[1.566,-0.032],[-0.226,0.188],[-1.862,1.866],[-0.144,0.646],[0.607,0.244],[2.576,-4.11],[0.873,-0.159],[-1.192,-1.109],[0.651,-0.377],[0.705,0.575],[2.41,0.873],[0.37,0.197],[-0.152,0.562],[-1.484,-0.345],[-1.789,-0.914],[-0.012,0.269],[1.959,3.022],[-3.309,1.409],[-0.846,0.465],[-0.391,-2.623],[0.959,-0.944],[-1.329,-0.449]],"v":[[89.645,-33.887],[94.123,-32.94],[93.448,-32.373],[88.656,-26.163],[88.778,-24.314],[89.967,-25.577],[101.025,-32.818],[103.683,-33.075],[99.712,-34.603],[101.791,-34.923],[104.204,-34.222],[111.299,-31.277],[112.223,-30.487],[110.836,-29.892],[106.458,-31.184],[100.927,-32.44],[100.911,-31.986],[99.28,-26.725],[89.327,-22.554],[87.803,-23.449],[90.177,-30],[89.876,-31.993]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.941,0.165],[-0.009,2.066],[-0.49,0.032],[-1.134,-1.703],[-0.829,-0.196],[0.126,0.889],[0.433,0.926],[-1.02,0.047],[-2.077,0.859],[0.829,0.323],[-1.061,-0.023],[-0.233,-0.655],[0.402,-0.298],[0.191,-0.175],[-0.163,-0.053],[-1.995,-1.859],[0.412,-0.483],[0.369,0.23],[3.012,0.237]],"o":[[0.009,-2.067],[0.493,0.007],[1.874,-0.123],[0.429,0.644],[0.798,0.189],[-0.156,-1.095],[0.993,0.234],[0.326,1.5],[-0.545,-0.994],[1.012,-0.198],[0.53,0.011],[0.209,0.588],[-0.148,0.11],[0.202,0.175],[2.786,0.908],[0.304,0.283],[-0.372,0.436],[-2.705,-1.682],[-3.934,-0.31]],"v":[[-242.504,36.65],[-242.478,30.45],[-241,30.465],[-236.367,32.415],[-234.484,33.767],[-233.535,32.907],[-234.92,30.165],[-231.9,30.456],[-228.652,31.327],[-231.105,30.247],[-228.097,29.538],[-226.709,30.101],[-227.369,31.282],[-227.836,31.705],[-227.349,32.116],[-221.051,37.324],[-220.695,38.436],[-221.901,38.369],[-230.703,36.384]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.659,-0.353],[-0.153,0.867],[-1.408,3.817],[-3.089,2.73],[-0.802,-0.138],[-0.925,0.979],[-0.535,0.058],[0.206,1.37],[-1.176,0.128],[-0.134,-0.612],[0.541,-0.292],[0.986,-0.281],[2.685,-2.264],[0.003,-0.084],[0.848,-3.25],[0.821,-2.587]],"o":[[-0.555,-0.889],[0.691,-3.919],[1.44,-3.903],[0.598,-0.528],[1.565,0.27],[0.345,-0.364],[1.11,-0.12],[0.168,1.044],[0.498,-0.054],[0.141,0.648],[-0.907,0.489],[-3.603,1.025],[-0.073,0.061],[-0.129,3.57],[-0.685,2.624],[-0.171,0.539]],"v":[[212.7,-163.748],[212.399,-166.494],[214.549,-178.247],[221.304,-188.158],[223.419,-189.079],[226.865,-190.66],[228.03,-191.498],[229.616,-193.462],[231.231,-191.809],[232.398,-191.14],[231.727,-189.613],[228.889,-188.373],[220.383,-182.194],[220.221,-181.952],[215.999,-173.048],[213.605,-165.265]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.434,0.78],[-0.936,-1.073],[-0.288,-2.798],[0.511,-0.165],[0.186,0.317],[1.285,2.219],[0.853,0.389],[-0.763,-1.238],[-0.151,-0.36],[0.38,-0.338],[0.404,0.274],[1.816,0.226],[1.69,4.318],[0.133,1.123],[0.726,0.029],[0.799,0.873],[-0.503,0.021],[-0.274,-0.641],[-2.699,0.076],[-0.453,0.788],[-0.565,-0.448]],"o":[[1.651,0.33],[1.812,2.078],[0.039,0.376],[-0.474,0.153],[-1.294,-2.213],[-0.306,-0.529],[0.329,1.57],[0.207,0.335],[0.213,0.506],[-0.521,0.465],[-1.491,-1.014],[-4.92,-0.611],[-0.403,-1.029],[-0.071,-0.595],[-0.799,-0.873],[0.503,-0.021],[0.605,0.359],[1.215,2.84],[0.792,-0.022],[0.509,0.52],[0.231,0.183]],"v":[[-106.928,156.767],[-103.769,159.713],[-100.493,167.025],[-100.721,168.05],[-101.571,167.382],[-105.417,160.721],[-106.781,159.175],[-105.564,163.385],[-104.971,164.406],[-104.92,165.948],[-106.248,165.412],[-111.145,163.483],[-116.94,158.486],[-117.492,155.144],[-118.385,154.032],[-120.781,151.414],[-119.274,151.35],[-117.831,152.795],[-111.514,156.076],[-109.483,155.094],[-107.938,156.629]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.798,-0.044],[0.269,-1.401],[1.458,1.278],[0.624,0.988],[0.863,-0.841],[0.631,-0.472],[0.937,0.69],[0.323,-0.737],[0.219,-0.496],[0.735,0.469],[-0.611,0.782],[-2.292,1.274],[-1.553,0.367],[-1.11,0.42],[-1.954,-0.87],[-0.164,-0.235],[0.751,-0.938],[0.827,0.342]],"o":[[0.406,1.442],[-0.365,1.903],[-0.877,-0.769],[-0.713,-1.129],[-0.562,0.548],[-0.856,0.64],[-0.852,-0.628],[-0.217,0.497],[-0.526,1.19],[-0.738,-0.471],[1.618,-2.07],[1.363,-0.758],[1.154,-0.273],[2.168,-0.82],[0.258,0.115],[0.512,0.732],[-0.632,0.789],[-0.525,-0.217]],"v":[[167.311,48.318],[167.289,52.559],[163.951,53.816],[161.676,51.116],[159.485,50.879],[157.653,52.372],[154.925,52.576],[153.372,53.134],[152.7,54.615],[150.488,55.058],[150.251,53.001],[155.933,47.69],[160.506,46.299],[163.91,45.324],[170.02,46.112],[170.68,46.694],[171.505,49.105],[169.046,48.989]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.544,0.022],[-0.487,-0.573],[-0.809,0.083],[-1.071,0.491],[-0.509,-0.828],[0,-0.522],[-0.279,-3.103],[0.018,-0.288],[0.245,-5.626],[-0.656,-2.149],[-0.022,-0.393],[0.761,-0.114],[0.407,0.833],[0.836,1.917],[0.441,0.034],[0.113,-0.306],[1.059,-1.289],[0.458,0.218],[-0.158,0.45],[-0.481,1.188],[-0.655,2.49],[-0.066,2.206],[0.032,0.532],[0.025,3.983],[2.023,-0.477],[0.615,0.905]],"o":[[0.33,-0.584],[0.429,0.505],[1.109,-0.113],[0.544,-0.25],[-0.233,0.431],[-0.001,3.107],[0.026,0.294],[-0.359,5.629],[-0.097,2.228],[0.113,0.371],[0.04,0.716],[-0.926,0.139],[-0.936,-1.915],[-0.13,-0.299],[-0.379,-0.029],[-0.598,1.616],[-0.246,0.3],[-0.463,-0.22],[0.426,-1.21],[0.964,-2.38],[0.531,-2.018],[0.016,-0.539],[-0.242,-3.985],[-0.013,-2.134],[-1.33,0.314],[-0.253,-0.372]],"v":[[78.493,82.019],[79.765,81.779],[81.11,83.181],[84.446,82.737],[86.11,82.825],[85.519,84.163],[85.634,93.482],[85.765,94.357],[86.376,111.183],[87.143,117.761],[87.289,118.933],[86.824,120.874],[85.179,119.116],[83.519,113.116],[83.055,112.287],[82.368,112.974],[79.524,117.076],[78.594,117.609],[78.238,116.443],[79.576,112.836],[82.018,105.548],[84.133,99.643],[84.297,98.031],[84.326,86.081],[82.05,84.206],[79.391,82.85]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.9,0.001],[-2.356,-3.193],[-0.63,-0.941],[0.92,-0.605],[0.812,1.268],[0.226,0.322],[0.618,-1.359],[0.963,0.466],[0.511,1.749],[0.485,-0.489],[1.882,-0.793],[0.484,-0.026],[0.136,0.661],[-0.699,0.201],[-1.301,0.589],[-0.853,2.031]],"o":[[3.837,0.489],[0.672,0.91],[0.665,0.995],[-1.261,0.828],[-0.212,-0.331],[-0.882,-1.256],[-0.483,1.062],[-1.468,-0.71],[-0.291,-0.997],[-1.543,1.555],[-0.444,0.187],[-0.559,0.03],[-0.14,-0.68],[1.382,-0.397],[1.959,-0.887],[0.397,-0.945]],"v":[[172.661,214.274],[182.134,219.476],[184.041,222.287],[183.47,224.668],[179.133,223.717],[178.451,222.752],[176.591,222.839],[174.458,223.63],[171.022,220.436],[169.575,220.137],[164.029,222.752],[162.594,223.059],[161.05,222.636],[162.218,221.12],[166.178,219.516],[170.571,215.357]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.07,0.082],[0.89,1.397],[0.333,0.182],[-1.542,0.942],[-1.373,0.649],[-0.962,-0.566],[-0.892,0.562],[-0.909,-0.17],[-1.099,-0.241],[-0.585,-0.171],[-0.137,-0.259],[1.484,-0.026],[0.989,0],[-0.549,-0.184],[-0.771,-0.908],[1.311,-0.441],[0.202,0.064],[1.07,0.151],[0.187,-0.534],[0.696,-0.045],[0.572,0.367],[0.317,-0.417],[0.604,-0.15],[-0.231,1.052],[0.663,-0.112],[1.647,-0.246]],"o":[[0.496,-0.875],[-0.237,-0.372],[-1.546,-0.846],[1.296,-0.792],[0.973,-0.46],[0.815,0.48],[0.841,-0.53],[1.105,0.206],[0.514,0.41],[0.136,0.26],[0.714,1.346],[-0.989,0.017],[0.523,0.506],[1.07,0.359],[0.869,1.024],[-0.202,-0.064],[-1.028,-0.576],[-0.504,-0.29],[-0.187,0.532],[-0.583,-0.349],[-0.446,-0.286],[-0.441,0.581],[-0.816,0.203],[0.22,-0.999],[-1.642,0.278],[-0.07,-0.082]],"v":[[32.348,131.7],[33.275,128.863],[32.454,128.134],[32.42,126.199],[36.439,124.045],[39.403,124.204],[41.879,124.248],[44.608,124.198],[47.906,124.912],[49.659,125.434],[50.067,126.212],[49.228,127.717],[46.261,127.72],[47.862,128.654],[50.792,130.234],[50.223,132.116],[49.616,131.926],[46.393,131.606],[45.464,132.023],[44.301,133.134],[42.555,132.082],[41.387,132.229],[39.672,132.958],[38.492,131.96],[37.498,131.2],[32.558,131.948]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.881,-0.206],[0.583,-1.529],[0.818,-1.968],[1.536,0.555],[0.317,-0.272],[1.419,0.634],[0.257,-0.6],[0.85,-0.217],[0.405,0.561],[-0.3,0.632],[1.106,0.565],[0.286,-0.803],[0.399,-0.312],[-0.038,-0.462],[-0.431,-0.2],[-0.147,-0.119],[0.292,-0.968],[1.142,-0.101],[1.257,-0.582],[-0.537,-0.14],[0.813,-0.106],[1.074,-1.688],[0.803,0.26],[-0.044,0.569],[-3.061,1.016],[0.034,0.279],[-0.771,0.878],[0.245,0.46],[-0.731,0.627],[-1.565,-0.281],[-0.348,-0.534],[-0.428,0.015],[-2.636,-0.253],[-0.325,0.696],[0.473,0.624],[-0.788,-0.114],[-1.476,2.075],[-0.59,0.123]],"o":[[-0.843,1.387],[-1.553,-0.891],[-0.523,1.258],[-0.395,-0.143],[-1.008,0.865],[-0.507,-0.226],[-0.416,0.969],[-0.709,0.181],[-0.431,-0.597],[0.242,-0.508],[-0.984,-0.502],[-0.172,0.483],[-0.298,0.234],[0.048,0.585],[0.179,0.083],[0.608,0.493],[-0.265,0.877],[-1.082,0.096],[0.627,0.164],[-0.433,0.929],[-2.378,0.309],[-0.266,0.419],[-0.744,-0.241],[0.22,-2.858],[0.247,-0.082],[-0.186,-1.546],[0.285,-0.325],[-0.728,-1.366],[0.879,-0.754],[-0.123,0.447],[0.243,0.373],[2.684,-0.096],[0.814,0.078],[0.401,-0.859],[0.053,-0.75],[3.197,0.463],[0.276,-0.387],[0.433,1.065]],"v":[[-2.509,152.3],[-4.769,156.608],[-9.136,158.48],[-11.727,160.044],[-12.821,160.352],[-16.278,161.198],[-17.613,161.839],[-19.808,163.138],[-21.468,162.426],[-21.45,160.622],[-21.26,158.961],[-22.96,160.046],[-23.844,161.205],[-24.727,161.876],[-23.592,162.667],[-23.049,162.897],[-21.195,164.108],[-23.765,165.838],[-27.18,166.549],[-25.597,166.962],[-27.643,168.668],[-31.995,172.478],[-33.027,173.432],[-33.586,171.911],[-29.46,165.57],[-28.991,165.075],[-27.017,162.184],[-26.361,161.152],[-25.258,158.655],[-22.357,156.745],[-22.906,157.968],[-21.651,158.147],[-13.781,159.194],[-11.453,159.041],[-12.897,157.316],[-11.695,156.142],[-5.744,152.169],[-4.841,151.083]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.948,0.003],[0.835,-1.348],[0.865,0.247],[0.94,-0.111],[1.173,0.265],[2.936,0.009],[0.568,0.338],[-0.873,2.527],[-0.529,0.166],[-1.44,0],[-0.171,-0.011],[-0.379,0.224],[-0.649,0.004],[-2.785,0.864],[-1.163,-0.632],[-0.208,1.065],[0,0],[-1.852,0.209],[0.769,-0.114],[0.095,-0.636],[-0.383,-0.14],[0.565,-1.044]],"o":[[-1.274,-1.166],[-0.687,1.108],[-0.933,-0.267],[-1.166,0.138],[-2.903,-0.655],[-0.063,-0.71],[-2.387,-1.418],[0.528,-0.166],[1.441,-0.001],[0.171,0.011],[0.437,0.018],[0.648,-0.004],[1.48,2.562],[1.183,-0.367],[1.089,0.591],[0,0],[1.853,0.017],[0.123,1.369],[-0.503,0.074],[-0.078,0.519],[1.123,0.41],[-0.948,-0.003]],"v":[[55.329,122.009],[53.113,122.201],[50.475,122.716],[47.742,122.52],[44.236,122.358],[35.443,122.022],[34.357,120.559],[32.844,116.612],[34.428,116.115],[38.749,116.113],[39.263,116.146],[40.491,115.854],[42.436,115.843],[48.486,118.251],[52.064,118.129],[53.811,117.3],[53.801,117.332],[59.36,117.286],[57.691,118.452],[56.388,119.134],[57.339,119.868],[58.173,122.018]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.678,0],[-1.964,-2.411],[-0.971,-0.338],[-2.268,-1.901],[0.302,-0.231],[1.862,0.024],[2.416,0.455],[-0.194,0.932],[-0.799,-0.225],[-0.322,0.433],[0.12,0.317],[0.503,-0.076],[0.374,-0.122],[0.647,0.145],[-0.596,1.273],[0.401,0.632],[0.692,0.356],[-0.14,0.987],[-1.097,0.177]],"o":[[2.36,0.039],[0.65,0.798],[3.02,1.051],[0.508,0.426],[-1.596,1.22],[-2.478,-0.033],[-0.741,-0.139],[0.172,-0.827],[0.352,0.099],[0.221,-0.297],[-0.177,-0.47],[-0.387,0.059],[-0.626,0.205],[-1.115,-0.25],[0.317,-0.678],[-0.339,-0.534],[-0.96,-0.493],[0.111,-0.783],[0.24,-0.039]],"v":[[-201.96,161.718],[-194.949,164.422],[-192.321,166.011],[-185.606,171.824],[-185.949,172.69],[-191.303,173.97],[-198.533,172.549],[-199.787,171.013],[-198.188,170.189],[-197.122,170.246],[-197.262,169.264],[-198.295,168.618],[-199.434,168.924],[-201.325,169.004],[-202.369,167.065],[-201.524,165.039],[-203.62,164.113],[-206.209,162.451],[-203.13,161.724]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.678,0.534],[1.191,-0.277],[0.438,-0.972],[1.653,-0.53],[0.948,0.896],[3.099,-2.044],[0.741,-0.173],[0.251,0.403],[-0.219,0.26],[-0.86,0.456],[0.173,0.363],[0.296,-0.118],[4.227,0.685],[-0.668,1.201],[-1.924,0.615],[-0.942,0.254],[-1.834,-0.212],[-3.174,0.07],[-0.089,1.635],[-0.232,0.021],[-1.32,-0.018]],"o":[[0.418,1.206],[-1.037,0.241],[-0.74,1.643],[-1.206,0.387],[-2.432,-2.299],[-0.613,0.404],[-0.375,0.088],[-0.23,-0.368],[0.6,-0.713],[0.242,-0.128],[-0.154,-0.324],[-3.922,1.564],[-1.081,-0.175],[1.093,-1.966],[0.763,0.582],[1.777,-0.479],[3.127,0.362],[0.761,-0.017],[0.004,-0.079],[1.32,-0.117],[0.899,0.012]],"v":[[133.952,79.491],[132.698,81.655],[130.547,83.504],[126.765,86.574],[123.446,85.955],[116.817,86.152],[114.947,87.293],[113.874,87.039],[114.158,86.129],[116.147,84.177],[116.575,83.517],[115.804,83.383],[103.631,84.978],[102.765,83.438],[107.65,80.229],[110.148,80.62],[115.572,80.42],[124.914,81.717],[127.024,80.715],[127.679,80.518],[131.642,80.232]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.025,1.175],[-0.052,-4.978],[0.469,1.839],[-0.524,1.899],[-0.29,-0.038],[-0.037,-0.237],[-0.157,-1.036],[0.137,0.942],[-1.104,4.137],[-0.443,2.64],[0.021,0.731],[-0.912,0.005],[-0.028,-0.709],[0.266,-0.322],[-1.388,-0.544],[0.418,-0.178],[1.018,-1.622],[0.601,-2.396],[0.672,-1.28],[-0.604,-0.345],[-0.313,0.439],[-0.655,-0.329],[0.233,-0.639],[1.2,-2.683],[2.005,-2.12],[0.525,0.193],[-0.143,0.382],[-0.32,2.718],[0.027,2.271]],"o":[[0.663,4.926],[1.029,-1.685],[-0.472,-1.85],[0.066,-0.239],[0.313,0.041],[0.134,0.868],[1.147,-0.699],[-0.639,-4.387],[0.686,-2.573],[0.122,-0.726],[-0.027,-0.95],[1.009,-0.006],[0.016,0.402],[-0.627,0.759],[0.759,0.297],[-2.222,0.945],[-1.422,2.266],[-0.35,1.396],[-0.261,0.497],[0.754,0.43],[0.276,-0.387],[0.663,0.333],[-1.022,2.8],[-1.217,2.723],[-0.366,0.387],[-0.532,-0.196],[1.006,-2.689],[0.264,-2.241],[-0.013,-1.093]],"v":[[140.545,77.757],[141.571,92.188],[142.875,87.612],[143.926,81.862],[144.423,81.412],[144.757,81.996],[145.178,84.769],[146.252,82.127],[148.015,69.507],[150.203,61.828],[150.416,59.628],[151.707,58.243],[152.755,59.685],[152.436,60.8],[152.712,62.774],[152.634,63.894],[149.676,68.844],[148.512,76.109],[147.148,80.142],[147.145,81.762],[148.349,80.838],[149.441,80.162],[149.822,81.684],[145.681,89.493],[140.667,96.565],[139.349,97.004],[138.912,95.87],[139.115,87.737],[139.165,80.928]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.928,-0.165],[-0.388,-0.261],[1.19,-0.499],[3.02,-0.424],[2.543,-0.223],[1.338,1.082],[-0.528,0.342],[-0.062,1.248],[0.856,0.759],[0.245,-0.866],[0.762,0.077],[1.391,-0.326],[0.74,-0.261],[1.415,-0.01],[1.159,-2.171],[-0.245,0.349],[-2.307,0.605],[0.29,-0.952],[-0.753,0.157],[-1.609,0.861],[-0.396,-0.311],[-3.993,0.456]],"o":[[0.388,0.261],[0.861,1.216],[-2.82,1.183],[-2.525,0.355],[-1.339,-0.288],[0.457,-0.552],[0.827,-0.535],[0.067,-1.337],[-0.628,-0.557],[-0.151,0.533],[0.248,-1.44],[-0.76,0.178],[-0.937,-1.62],[-2.617,-1.516],[-0.705,-0.173],[1.299,-1.853],[-0.216,0.858],[0.906,-0.067],[1.712,-0.357],[0.509,0.027],[3.235,2.537],[3.888,-0.444]],"v":[[-141.143,26.104],[-139.979,26.888],[-140.801,29.437],[-149.585,31.85],[-157.21,32.548],[-161.33,32.275],[-159.745,31.145],[-157.327,29.543],[-159.615,27.052],[-161.037,27.479],[-162.036,28.502],[-163.521,27.014],[-165.746,27.782],[-169.646,26.639],[-175.944,27.732],[-176.225,26.704],[-171.121,22.616],[-172.711,24.646],[-170.262,24.449],[-165.118,23.414],[-163.768,23.947],[-152.904,26.414]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.376,-1.175],[4.322,-0.072],[-0.037,0.587],[-0.326,0.008],[-3.158,0.023],[-0.275,0.175],[-0.084,0.692],[0.479,0.416],[0.925,0.537],[2.092,0.084],[0.427,0.347],[0.006,0.586],[-0.946,-0.99],[-0.177,0.149],[-2.581,0.27],[-1.72,-1.2],[-0.424,0.412],[0.588,0.268],[0.166,0.516],[-0.572,-0.363],[-0.063,-2.525],[-0.038,0.015],[-1.455,0.637],[-0.669,-0.051],[0.888,-0.004],[1.67,-0.221],[-0.928,-0.098],[0.012,-0.486],[0.268,0.04],[1.092,-0.051],[1.333,-0.333]],"o":[[-4.274,1.042],[-0.349,0.006],[0.028,-0.436],[3.151,-0.078],[0.333,-0.002],[0.608,-0.387],[0.083,-0.684],[-0.811,-0.705],[-1.958,-1.137],[-0.54,-0.043],[0.385,-0.411],[-0.009,-0.872],[0.141,0.148],[2.326,-1.965],[1.843,-0.193],[0.285,0.199],[-0.374,-0.626],[-0.478,-0.218],[-0.214,-0.664],[1.509,0.958],[0.004,0.157],[1.46,-0.567],[0.613,0.157],[-0.531,0.918],[-1.668,0.008],[0.899,0.572],[0.322,0.034],[-0.009,0.376],[-1.299,-0.196],[-1.351,0.143],[-1.083,0.271]],"v":[[-162.12,122.244],[-175.067,122.885],[-175.947,122.409],[-175.096,122.038],[-165.71,121.107],[-164.723,120.848],[-162.91,119.839],[-164.443,118.987],[-167.133,117.274],[-173.242,116.092],[-174.707,115.548],[-174.111,114.086],[-173.024,113.544],[-172.513,113.678],[-164.788,112.494],[-159.237,113.335],[-158.052,113.117],[-159.708,112.061],[-160.717,111.063],[-160.046,110.284],[-156.155,113.935],[-155.867,114.377],[-151.787,114.897],[-150.149,115.754],[-152.469,116.67],[-157.474,116.893],[-154.679,117.311],[-153.917,117.768],[-154.601,118.143],[-156.799,119.773],[-160.849,120.258]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.855,0.062],[0.428,0.705],[-0.836,0.535],[-0.716,-0.887],[0.77,-1.782],[-0.801,-0.277],[-0.157,0.501],[-0.557,0.711],[-0.807,-0.209],[-0.146,-0.632],[2.526,-1.074],[2.109,-0.805],[2.523,-0.988],[0.981,0.503],[-1.174,0.872],[-2.029,0.581],[1.864,1.922],[0.509,0.603],[-0.385,0.764],[-0.92,-0.094],[-1.491,-0.88]],"o":[[-0.416,-0.872],[-0.465,-0.767],[0.829,-0.53],[1.163,1.441],[-0.221,0.512],[0.806,0.279],[0.266,-0.85],[0.428,-0.547],[0.724,0.188],[0.59,2.548],[-2.075,0.883],[-2.531,0.966],[-0.939,0.368],[-1.295,-0.664],[1.662,-1.233],[2.601,-0.744],[-0.549,-0.566],[-0.501,-0.593],[0.417,-0.827],[1.665,0.171],[0.503,0.297]],"v":[[214.139,191.275],[212.994,188.917],[213.13,186.839],[215.651,187.137],[216.502,191.965],[216.673,193.278],[217.652,192.336],[218.766,189.93],[220.467,188.993],[221.5,190.497],[218.254,196.798],[211.905,199.155],[204.337,202.121],[201.478,202.227],[201.248,199.911],[206.711,197.1],[207.418,194.359],[205.862,192.575],[205.384,190.545],[207.477,189.446],[212.304,190.659]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.426,-1.346],[0.815,-0.689],[0.863,0.589],[0.406,-0.648],[1.183,1.718],[1.554,-1.137],[1.657,1.37],[0.737,0.023],[0.276,0.849],[-0.741,0.652],[0.837,0.301],[-0.01,0.765],[-0.662,0.376],[-1.908,0.585],[-1.357,-0.398],[-0.86,0.256],[-2.288,-2.414],[-1.086,-0.463]],"o":[[-0.948,0.408],[-0.732,0.619],[-0.708,-0.483],[-1.106,1.765],[-1.126,-1.636],[-1.38,1.009],[-0.548,-0.453],[-0.77,-0.024],[-0.274,-0.843],[-0.977,-0.271],[-0.564,-0.203],[0.009,-0.689],[1.757,-0.999],[1.394,-0.427],[0.846,0.248],[2.458,-0.731],[0.853,0.9],[1.542,1.348]],"v":[[-17.32,140.031],[-20.056,141.468],[-22.491,141.643],[-24.053,142.115],[-27.113,142.164],[-29.919,141.62],[-34.264,142.038],[-36.438,141.837],[-38.539,141.185],[-37.054,139.283],[-39.744,138.52],[-41.238,137.58],[-40.114,135.757],[-34.486,133.637],[-30.354,134.495],[-27.934,134.458],[-20.675,135.036],[-17.314,135.992]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.343,0.291],[0.239,0.06],[-1.088,1.952],[1.808,0.588],[-0.383,1.579],[0,0],[0.808,1.331],[-1.615,0.161],[-0.003,0.459],[0.413,0.072],[0.394,0.004],[2.514,0.019],[0.229,0.497],[-3.639,0.146],[-1.117,-0.219],[-1.585,-0.074],[-0.541,0.313],[-0.911,-0.164],[-0.033,-0.425],[-2.004,0.379],[0.146,-2.531],[-0.019,-1.919],[1.104,0.138],[0.631,0.091],[1.075,-0.629],[-2.44,0.392],[-0.015,0.63],[0.367,0.101],[0.294,1.069]],"o":[[-0.24,-0.053],[-2.113,-0.531],[0.894,-1.605],[-1.138,-0.37],[0,0],[-1.227,0.283],[1.617,-0.136],[0.313,-0.031],[0.003,-0.449],[-0.385,-0.067],[-2.514,-0.023],[-0.042,-0.464],[3.664,-0.96],[-0.345,1.425],[0.062,1.957],[0.59,0.027],[0.91,-0.526],[0.39,0.07],[0.155,2.004],[0.588,2.566],[-0.11,1.919],[0.045,1.041],[-0.633,-0.079],[-1.196,-0.173],[-1.133,-2.329],[0.518,-0.083],[0.018,-0.778],[-1.087,-0.3],[-0.281,-1.02]],"v":[[86.996,33.716],[86.276,33.556],[85.047,30.579],[84.106,28.242],[82.252,25.993],[82.238,25.98],[78.997,25.139],[83.849,24.72],[84.619,24.201],[83.863,23.417],[82.683,23.362],[75.141,23.303],[74.305,22.367],[85.289,21.854],[86.969,23.889],[88.912,26.294],[90.639,26.028],[93.372,26.025],[93.967,26.726],[96.139,28.35],[95.757,35.951],[95.587,41.7],[94.095,43.137],[92.19,42.954],[88.764,43.451],[90.586,39.644],[91.641,38.834],[90.685,38.379],[88.749,36.202]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.19,-0.639],[4.942,0.47],[6.165,-0.636],[2.65,-1.511],[0.55,0.256],[3.012,0.318],[0.899,0.099],[-1.346,1.109],[-0.98,0.005],[-2.579,-0.802],[-0.783,1.841],[2.011,0.028],[-0.233,1.063],[1.647,0.068],[0.64,-0.016],[2.163,0.022],[0.317,0.126],[0.035,0.434],[-0.387,0.153],[-0.976,0.056],[-1.878,0.575],[-3.476,-0.408],[-1.564,-0.887],[-1.094,-0.031],[-2.855,0.29],[-2.453,-0.927],[-1.157,-0.029],[-2.689,-2.247]],"o":[[-3.936,-3.276],[-6.181,-0.587],[-3.096,0.319],[-0.65,0.37],[-2.677,-1.243],[-0.847,-0.089],[-0.098,-0.527],[0.98,-0.005],[2.549,0.9],[2.016,0.627],[-2.072,0],[-0.533,-0.008],[0.357,-1.627],[-0.638,-0.026],[-2.163,-0.022],[-0.322,-0.115],[-0.361,-0.143],[-0.048,-0.583],[0.942,-0.374],[1.899,-0.11],[3.658,-0.678],[1.737,0.204],[1.009,0.572],[2.851,0.082],[2.724,-0.277],[1.081,0.409],[3.433,0.086],[1,0.836]],"v":[[-137.126,51.361],[-150.703,46.698],[-169.204,46.706],[-177.699,49.861],[-179.304,49.836],[-187.64,46.973],[-190.129,46.117],[-190.718,44.653],[-187.779,44.64],[-180.125,47.316],[-174.76,44.922],[-180.855,44.91],[-181.908,44.025],[-183.487,41.979],[-185.405,42.019],[-191.894,41.954],[-192.858,41.607],[-193.752,40.939],[-192.819,40.189],[-189.904,39.911],[-184.205,39.664],[-173.918,41.53],[-168.946,43.334],[-165.633,43.904],[-157.069,43.811],[-149.442,45.565],[-146.16,46.253],[-136.849,49.478]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.113,-0.296],[1.098,-0.212],[0.365,1.854],[0.539,-0.265],[1.397,-1.02],[0.419,0.059],[-0.007,1.268],[0.063,0.738],[0.575,0.131],[-0.001,0.788],[-1.11,-0.566],[-1.151,-0.435],[-0.065,-0.16],[-1.494,0.182],[-2.408,-4.192],[-0.67,-1.472],[-0.119,0.567],[-0.126,-0.712],[-0.886,1.03],[-1.87,-0.335],[-2.119,-1.295],[1.098,0.298],[1.876,0.081],[-1.708,-1.068],[-0.719,-0.965],[0.464,-0.557],[0.615,0.26],[2.835,0.365],[0.268,0.698],[0.64,0.718],[-0.356,-1.766],[0.981,-0.567],[-0.089,1.021],[0.082,3.005],[0.842,1.104],[0.793,0.632],[1.726,-0.399],[0.022,-0.653],[-0.411,-0.209]],"o":[[-1.036,0.726],[-0.765,0.148],[-0.105,-0.534],[-1.583,0.031],[-0.404,0.295],[0.007,-1.269],[0.613,-0.322],[-0.054,-0.639],[0,-0.789],[1.156,0.043],[-0.498,0.339],[0.228,0.086],[0.824,2.013],[4.406,-0.537],[0.683,1.189],[0.169,-0.804],[0.534,0.487],[0.166,0.94],[1.396,-1.623],[2.471,0.442],[-0.103,1.327],[-1.7,-0.461],[1.697,1.085],[1.012,0.633],[0.369,0.495],[-0.417,0.501],[-2.592,-1.094],[-0.723,-0.093],[-0.297,-0.775],[-1.152,1.719],[0.204,1.015],[-0.912,0.527],[0.268,-3.063],[-0.045,-1.663],[0.536,-0.96],[-1.205,-0.961],[-0.465,0.107],[-0.02,0.598],[0.271,0.138]],"v":[[-229.55,78.969],[-232.855,79.291],[-235.035,78.614],[-236.653,79.015],[-241.247,79.913],[-242.506,79.87],[-242.485,76.066],[-240.839,74.946],[-242.487,74.606],[-242.485,72.24],[-239.033,72.541],[-239.095,73.641],[-238.441,73.931],[-234.613,75.039],[-223.998,79.648],[-222.201,83.592],[-221.793,81.655],[-220.907,83.464],[-219.385,84.039],[-214.384,82.781],[-207.571,85.543],[-209.546,86.714],[-214.654,85.204],[-209.559,88.454],[-206.872,90.746],[-206.708,92.37],[-208.32,92.737],[-216.32,90.15],[-217.747,88.777],[-218.989,86.502],[-219.477,91.779],[-220.307,94.199],[-222.073,93.33],[-223.055,84.384],[-225.418,80.96],[-225.876,78.459],[-230.053,76.836],[-231.296,77.638],[-230.175,78.397]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.005],[-0.922,0.119],[-2.31,-1.416],[-1.647,-1.897],[0.477,-0.689],[0.645,0.274],[0.339,0.201],[0.806,-1.83],[0.729,0.308],[0.547,-1.73],[0.473,0.064],[0.142,0.243],[0.024,0.639],[1.51,-0.364],[0.538,-0.56],[0.851,-0.5],[0.155,0.406],[0.498,-0.59],[1.648,-0.985],[0.684,0.488],[-0.117,0.55],[0.59,-0.276],[0.448,0.665],[-0.549,0.642],[-3.532,0.899],[0.062,0.617],[0.516,0.099],[0.117,1.03],[-0.789,0.049],[-1.234,0]],"o":[[0.938,0],[2.907,-0.375],[2.097,1.285],[0.421,0.485],[-0.503,0.726],[-0.363,-0.154],[-1.168,-0.692],[-0.369,0.837],[-1.78,-0.751],[-0.094,0.299],[-0.217,-0.029],[-0.339,-0.582],[-0.058,-1.562],[-0.773,0.186],[-0.766,0.798],[-0.393,0.231],[-0.353,-0.926],[-1.262,1.496],[-0.645,0.386],[-0.637,-0.455],[0.148,-0.697],[-0.682,0.319],[-0.51,-0.757],[2.39,-2.795],[0.436,-0.111],[-0.066,-0.658],[-0.803,-0.154],[-0.068,-0.598],[1.229,-0.076],[0,-0.005]],"v":[[204.786,-43.36],[207.597,-43.378],[215.188,-41.017],[221.068,-36.57],[221.614,-34.917],[219.742,-34.782],[218.681,-35.308],[215.646,-34.769],[213.684,-34.512],[211.359,-33.519],[210.825,-32.782],[210.253,-33.398],[209.978,-35.278],[207.679,-37.055],[205.589,-35.992],[202.879,-34.932],[202.01,-35.508],[200.769,-35.594],[196.175,-32.158],[194.079,-32.016],[194.02,-33.65],[193.318,-34.185],[191.255,-33.662],[192.31,-35.897],[201.325,-41.24],[202.467,-41.882],[201.122,-42.477],[198.862,-43.01],[201.087,-43.324],[204.786,-43.344]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.294,-0.542],[0.762,-0.004],[0.863,-0.45],[-1.274,-0.757],[0.998,-1.445],[0.906,0.135],[0.474,-0.725],[1.548,1.142],[0.385,0.208],[0.544,-0.25],[1.109,-0.113],[0.429,0.505],[0.33,-0.584],[1.468,0.946],[1.041,-0.406],[0.508,0.829],[0.971,0.351],[-0.967,0.31],[-0.886,0.523],[-2.48,0.458],[-0.031,0.373],[0.272,0.076],[0.906,0.191],[-0.033,0.644],[-0.383,0.107],[-0.487,0.045],[-1.081,-0.363],[-1.633,0.81],[-0.412,0.149],[-0.323,0],[-1.261,0.216],[-0.214,0.01],[-0.173,-0.04]],"o":[[0.164,0.764],[-0.739,0.004],[1.31,1.014],[1.792,1.908],[-0.904,-0.143],[-0.743,-0.11],[-0.678,1.784],[-0.349,-0.257],[-0.509,-0.828],[-1.071,0.491],[-0.809,0.083],[-0.487,-0.573],[-1.185,1.15],[-1.303,-0.839],[-0.795,-0.499],[-0.648,-1.057],[0.437,-1.067],[0.994,-0.319],[2.419,-0.767],[0.29,-0.054],[0.03,-0.363],[-0.893,-0.249],[-0.569,-0.12],[0.028,-0.551],[0.464,-0.13],[1.064,0.478],[1.052,1.51],[0.39,-0.193],[0.324,-0.001],[1.255,0.265],[0.214,-0.01],[0.173,0.04],[0.549,0.184]],"v":[[93.358,75.191],[92.438,76.235],[90.056,76.502],[94.104,78.692],[94.977,82.378],[92.263,81.952],[90.335,82.582],[87.26,83.456],[86.11,82.825],[84.446,82.737],[81.11,83.181],[79.765,81.779],[78.493,82.019],[74.521,82.597],[71.279,83.207],[68.728,82.476],[66.117,80.896],[68.488,79.04],[71.28,77.77],[78.7,76.299],[79.375,75.892],[78.782,75.346],[76.089,74.659],[74.974,73.723],[76.047,73.191],[77.503,73.035],[80.837,73.553],[84.866,74.546],[86.098,74.093],[87.069,74.091],[90.843,74.139],[91.485,74.109],[92.004,74.228]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.711,-0.096],[1.531,-1.692],[1.584,-2.468],[-0.257,-3.238],[0.221,-0.907],[0.113,-0.126],[0.475,-0.261],[0.961,0.098],[0.108,-0.758],[-0.26,1.255],[0.097,1.173],[0.025,2.655],[-0.874,0.41],[-1.816,2.943],[-0.163,-0.947],[-0.664,-0.05],[-0.26,0.648],[0,0.337],[-0.444,0.578],[-0.856,-0.928]],"o":[[1.262,1.758],[-1.945,2.148],[-1.759,2.739],[0.101,1.265],[-0.114,0.127],[-0.588,-0.073],[-0.768,0.423],[-0.924,-0.094],[-0.335,-1.189],[0.24,-1.161],[-0.22,-2.654],[-0.008,-0.892],[3.299,-1.548],[0.483,0.915],[0.099,0.575],[0.706,0.053],[0.117,-0.29],[0.078,-0.744],[0.472,-0.613],[0.548,0.594]],"v":[[58.171,84.755],[57.831,88.515],[52.15,95.096],[49.766,104.047],[48.272,106.232],[47.932,106.611],[46.432,107.138],[43.993,108.076],[42.685,109.3],[42.437,105.68],[42.248,102.165],[42.564,94.228],[43.833,92.027],[50.833,84.672],[51.126,87.535],[51.959,88.911],[53.429,87.71],[53.449,86.707],[54.205,84.671],[56.074,84.344]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.084,2.231],[-0.533,-0.196],[-0.842,-0.408],[1.406,-1.934],[-0.977,-1.355],[-1.2,0.766],[-0.281,-0.997],[-0.845,-2.071],[1,-0.616],[1.141,-0.325],[1.86,-0.87],[0.262,1.345],[1.602,-0.098],[0.081,0.584],[-0.501,0.195],[-1.763,-0.319],[-0.223,-0.574],[1.309,0.931],[-0.159,0.882],[1.274,-0.321],[0.23,0.467],[-0.412,0.284],[0.413,1.807]],"o":[[0.219,0.47],[0.879,0.323],[2.178,1.055],[-1.165,1.602],[0.603,0.837],[0.979,-0.625],[0.599,2.124],[0.5,1.225],[-1.017,0.627],[-1.941,0.553],[-1.224,0.572],[-0.249,-1.283],[-0.532,0.033],[-0.087,-0.63],[1.716,-0.668],[1.016,0.184],[1.607,-0.968],[-0.853,-0.606],[0.225,-1.248],[-0.459,0.116],[-0.314,-0.637],[1.399,-0.964],[-0.515,-2.254]],"v":[[111.228,20.051],[112.405,20.99],[114.999,22.075],[115.897,25.606],[115.625,29.498],[118.062,30.252],[120.129,31.137],[122.003,37.489],[120.444,40.21],[117.121,41.434],[111.31,43.146],[107.994,41.395],[105.797,39.247],[104.654,38.245],[105.599,37.06],[110.843,36.869],[111.568,38.547],[111.989,35.859],[111.123,33.51],[109.74,32.138],[108.37,31.965],[109.195,30.773],[110.765,26.869]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.336,-1.136],[1.063,0.01],[4.042,-0.043],[2.908,-0.173],[3.205,0.556],[-0.318,0.396],[-0.301,-0.069],[-2.96,-0.269],[0.552,1.275],[-0.399,0.069],[-1.331,-2.315],[-0.588,-0.064],[-2.953,-0.041],[-1.818,-0.256],[-2.265,0.032],[-2.129,-0.675],[-0.149,1.564],[-1.248,-0.106],[-0.34,-0.029],[0.622,1.072],[-0.878,0.169],[-1.06,-0.454],[-0.317,1.015],[-0.808,-0.062],[-0.419,-0.511],[0.633,-1.599],[0.416,-0.1],[2.833,-0.184],[-0.016,-1.295],[0.591,-0.042],[1.363,0.202],[2.838,-0.519],[0.34,0.004],[-0.218,-1.645],[0.159,-0.109]],"o":[[-0.377,-1.404],[-4.042,-0.036],[-2.902,0.031],[-3.212,0.191],[0.318,-0.396],[0.335,-0.081],[2.979,0.684],[0.37,0.034],[-0.297,-0.687],[1.906,-0.331],[0.326,0.566],[2.956,0.323],[1.823,0.026],[2.266,0.319],[2.151,-0.03],[1.424,0.451],[0.131,-1.379],[0.34,0.029],[1.367,0.116],[-0.52,-0.898],[1.306,-0.252],[0.924,0.396],[0.168,-0.539],[0.734,0.056],[1.368,1.67],[-0.197,0.497],[-2.73,0.659],[-0.866,0.056],[0.009,0.729],[-1.393,0.1],[-2.86,-0.423],[-0.339,0.062],[-1.04,-0.012],[0.011,0.087],[-0.608,-1.682]],"v":[[72.104,150.38],[69.48,149.009],[57.353,149.005],[48.646,149.2],[38.968,148.68],[39.922,147.491],[40.922,147.269],[49.748,146.886],[50.612,146.079],[51.53,145.233],[56.787,146.459],[58.418,146.956],[67.274,146.895],[72.73,147.153],[79.519,146.908],[85.956,147.33],[90.504,144.175],[92.531,142.484],[93.564,142.433],[94.481,140.908],[95.263,139.531],[98.594,140.533],[100.358,139.82],[101.52,138.699],[102.948,139.816],[102.895,144.648],[101.787,145.276],[93.534,146.96],[91.713,148.412],[90.586,149.28],[86.463,148.947],[77.924,149.103],[76.901,149.253],[74.969,150.731],[74.514,151.056]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.347,0.824],[-0.286,-1.595],[0.574,-0.412],[0.311,-0.934],[3.232,-2.517],[1.312,0.941],[0.461,-0.235],[1.252,0.684],[-0.21,0.504],[0.77,0.27],[-1.656,2.268],[-2.096,1.765],[-0.106,0.088],[0,0]],"o":[[1.658,0.286],[0.109,0.609],[-0.849,0.61],[-1.334,4.007],[-1.12,0.872],[-0.456,-0.327],[-1.542,0.786],[-0.479,-0.262],[0.215,-0.516],[0.827,-2.772],[2.096,-1.765],[0.106,-0.088],[0,0],[1.403,-0.659]],"v":[[149.48,115.532],[153.301,119.214],[152.796,120.801],[151.266,123.28],[143.943,132.702],[140.265,133.02],[138.864,132.931],[134.87,132.163],[134.478,131.068],[134.127,129.738],[138.489,122.565],[144.777,117.269],[145.096,117.005],[145.103,117.013]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.532,-0.173],[-0.215,0.42],[0.179,0.269],[0.689,0.186],[0.301,-0.793],[-0.509,-0.229]],"o":[[0.428,0.019],[0.189,-0.369],[-0.388,-0.583],[-0.86,-0.231],[-0.364,0.957],[0.533,0.24]],"v":[[-187.36,17.662],[-186.283,17.319],[-186.612,16.408],[-188.199,15.162],[-190.172,16.01],[-189.004,17.113]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.108,-0.097],[0.834,-0.224],[0.972,-0.142],[0.721,-1.013],[1.903,0.734],[1.418,0.129],[-0.578,-0.429],[0.386,-1.046],[1.161,-0.205],[0.175,0.571],[1.388,-0.828],[0.443,1.698],[0.525,-0.133],[0.427,0.852],[-0.543,0.186],[-1.25,-0.068],[-0.511,0.716],[-0.546,0.002],[-1.085,0.006],[-0.48,0.675],[-0.872,0.928],[3.509,-0.576],[-0.509,-0.834],[3.383,-0.703],[0.37,0.111],[-0.039,0.624],[-0.425,0.055],[0.848,1.398],[-0.03,0.912],[0.336,1.933],[-0.485,-0.27],[-0.712,0.282],[-1.914,0.063],[-1.006,-0.375],[-2.587,1.575],[-2.604,0.222],[-0.671,-0.328],[0.283,-1.062],[0.867,0.223],[0.482,0.069],[0.842,0.136],[0.224,-0.719],[-0.676,-0.258]],"o":[[-0.692,0.712],[-0.949,0.255],[-1.27,0.185],[-1.193,1.676],[-1.089,-0.42],[0.345,0.913],[0.731,0.543],[-0.42,1.138],[-0.746,0.132],[-0.473,-1.54],[-0.683,0.408],[-0.195,-0.748],[-2.126,0.538],[-0.587,-1.172],[1.175,-0.403],[0.749,0.041],[0.357,-0.5],[1.085,-0.005],[0.768,-0.005],[4.405,-0.327],[-3.43,-0.165],[0.52,1.145],[-3.351,-0.513],[-0.362,0.075],[-0.547,-0.164],[0.049,-0.779],[1.616,-0.208],[-0.43,-0.709],[0.823,-0.367],[0.557,-0.023],[0.7,0.389],[1.969,-0.779],[-0.344,0.749],[2.612,0.975],[2.607,0.27],[0.695,0.2],[1.327,0.648],[-0.316,1.184],[-0.469,-0.121],[-0.667,-0.729],[-0.886,-0.143],[-0.251,0.804],[0.126,0.048]],"v":[[-172.34,21.099],[-174.833,21.816],[-177.723,22.413],[-180.536,24.332],[-184.922,25.598],[-188.396,24.303],[-186.694,25.9],[-185.497,28.027],[-188.081,30.011],[-189.181,28.853],[-191.468,27.983],[-193.311,27.662],[-194.884,27.476],[-196.739,25.294],[-195.649,24.13],[-192.008,23.616],[-190.021,22.916],[-188.535,22.432],[-185.279,22.427],[-183.327,21.579],[-178.05,20.324],[-188.194,19.327],[-185.928,21.195],[-196.012,20.966],[-197.17,20.823],[-198.155,19.686],[-196.998,19.17],[-195.682,16.467],[-196.68,14.216],[-194.558,12.647],[-193.026,13.073],[-190.768,13.507],[-185.015,13.635],[-184.671,15.632],[-176.82,15.487],[-169.004,15.452],[-166.93,16.09],[-165.921,18.972],[-168.118,19.561],[-169.561,19.343],[-172.001,18.61],[-174.107,19.504],[-172.665,20.814]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.204,-0.384],[-1.472,2.037],[0.885,3.009],[-0.001,0.788],[1.097,0.791],[-0.024,1.608],[-0.853,-2.514],[-0.001,-2.982],[0.175,2.838],[0.011,0.786],[-0.342,0.064],[-0.124,-0.269],[0.103,-1.517],[-1.134,-1.997],[-0.253,6.039],[-0.005,-0.817],[0.012,-3.111],[-0.317,-1.334],[-0.983,2.165],[-0.113,-1.327],[-0.607,-0.12],[-0.238,0.525],[0.669,2.135],[-0.011,0.097],[-0.799,0.094],[-0.09,-0.58],[-0.163,-0.97],[-0.686,-0.823],[-0.428,0.514],[-0.474,-0.179],[0.164,-0.472],[1.152,-0.977],[-0.579,-3.003],[-0.48,-2.112],[-0.732,-0.059],[-0.164,0.663],[-0.803,-0.049],[-0.059,-0.615],[0.044,-1.33],[1.27,0.615],[0.679,1.232],[0.282,0.036],[0.508,1.802],[0.726,0.999],[-0.262,1.498],[1.028,-0.425],[0.125,0.37],[0.87,-0.689],[0.695,-1.405],[2.34,-0.146]],"o":[[-1.61,-2.072],[1.587,-2.196],[-0.215,-0.731],[0.001,-1.268],[-1.117,-0.806],[2.61,-0.161],[0.96,2.829],[0.355,-2.86],[-0.048,-0.785],[-0.004,-0.299],[0.367,-0.069],[0.632,1.368],[-0.142,2.098],[1.017,-5.684],[1.034,0.868],[0.017,3.111],[-0.004,1.091],[1.749,-2.211],[0.561,1.321],[0.048,0.56],[0.786,0.155],[0.867,-1.909],[-0.029,-0.092],[0.065,-0.594],[0.602,-0.071],[0.151,0.972],[0.151,0.899],[0.366,-0.675],[0.254,-0.305],[0.476,0.18],[-0.465,1.338],[-2.649,2.248],[0.41,2.124],[0.162,0.713],[0.812,0.065],[0.173,-0.702],[0.877,0.054],[0.127,1.321],[-0.047,1.411],[-1.13,-0.548],[-0.155,-0.281],[-1.956,-0.248],[-0.338,-1.199],[0.679,-1.273],[0.211,-1.206],[-0.097,-0.379],[-0.375,-1.114],[-1.286,1.019],[-0.746,1.509],[-0.227,0.014]],"v":[[89.971,12.04],[89.908,7.595],[92.168,0.136],[92.079,-2.218],[90.529,-5.19],[88.379,-8.645],[91.952,-6.205],[93.326,2.515],[93.035,-6.012],[92.932,-8.37],[93.387,-9.047],[94.014,-8.538],[94.799,-4.228],[95.68,1.978],[96.579,-15.524],[97.625,-13.003],[97.642,-3.671],[98.143,-0.195],[99.932,-7.224],[100.308,-3.21],[100.627,-1.617],[101.61,-3.011],[102.454,-9.018],[102.433,-9.313],[102.982,-10.917],[103.833,-9.539],[104.209,-6.61],[105.154,-3.953],[105.782,-5.851],[106.735,-6.365],[107.284,-5.29],[105.585,-1.409],[103.516,6.732],[105.04,13.048],[106.251,14.33],[107.487,13.116],[108.756,11.696],[109.712,13.324],[109.776,17.316],[107.591,18.701],[104.519,16.49],[103.758,15.835],[100.441,12.586],[97.951,9.92],[99.777,5.995],[98.602,5.007],[98.308,3.87],[96.42,3.381],[93.866,7.274],[90.586,10.938]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.823,0.139],[-1.032,0.09],[-3.827,-0.14],[-0.827,-0.028],[-1.248,-0.54],[0.585,0.144],[0.433,-0.601],[1.691,-0.321],[-0.143,-0.354],[1.285,-0.185],[2.251,-0.849],[2.06,0.985],[1.589,-0.409],[-0.047,1.245],[-0.003,1.916],[0.369,1.011],[-1.552,0.045],[-1.057,-0.213],[-0.918,-0.062],[0.428,-1.009],[-0.406,-1.135],[-0.976,0.001],[-0.928,0.134],[-0.028,0.902],[0.687,0.176]],"o":[[0.583,-1.009],[3.826,-0.332],[0.844,0.031],[-0.21,1.633],[-0.591,0.152],[-0.871,-0.215],[-0.857,1.189],[-0.362,0.069],[0.494,1.226],[-2.439,0.351],[-2.353,0.887],[-1.63,-0.779],[-1.315,0.339],[0.072,-1.913],[0.002,-1.035],[-0.521,-1.427],[1.132,-0.033],[0.915,0.184],[1.242,0.084],[-0.688,0.516],[0.383,1.07],[0.94,-0.001],[0.745,-0.108],[0.026,-0.855],[-0.806,-0.206]],"v":[[214.142,33.123],[216.765,31.69],[228.253,31.719],[230.735,31.629],[232.86,34.465],[231.109,34.398],[228.759,34.935],[225.667,37.805],[225.745,38.864],[224.577,41.19],[217.761,43.54],[210.892,42.881],[206.26,42.329],[204.652,40.951],[204.671,35.205],[204.256,32.158],[205.784,30.157],[208.914,30.95],[211.639,31.587],[212.639,33.212],[211.339,35.236],[213.686,36.35],[216.475,36.097],[217.902,34.945],[216.607,33.556]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.588,-0.11],[-0.158,1.186],[-1.355,-0.388],[-1.852,-0.664],[-1.489,0.926],[-0.639,-2.088],[-1.128,-0.177],[-2.583,-0.547],[-1.11,-0.504],[0.436,-0.343],[0.442,-0.322],[0.188,-0.896],[0.89,0.24],[1.105,0.778],[0.343,-1.334],[0.974,0.383],[1.113,0.802],[0.549,-0.795],[0.694,-0.765],[1.012,1.106],[0.214,0.437],[0.747,-0.433],[0.332,-0.085],[-0.433,2.021],[0.616,0.653],[0.71,0.184],[0.627,0.13],[-0.155,0.826]],"o":[[0.962,0.189],[0.144,-1.08],[1.894,0.542],[1.851,0.664],[0.766,-0.476],[0.295,0.966],[2.617,0.411],[1.042,0.221],[0.472,0.214],[-0.63,0.497],[-0.875,0.638],[-0.189,0.899],[-1.287,-0.346],[-0.819,-0.577],[-0.311,1.21],[-1.295,-0.51],[-0.754,-0.543],[-0.586,0.849],[-1.001,1.104],[-0.329,-0.36],[-0.345,-0.705],[-0.293,0.169],[-1.938,0.496],[0.156,-0.73],[-0.427,-0.453],[-0.621,-0.16],[-0.705,-0.146],[0.162,-0.862]],"v":[[-131.291,197.286],[-129.544,196.129],[-126.814,194.963],[-121.158,196.672],[-116.334,195.714],[-114.227,196.051],[-111.096,197.127],[-103.322,198.738],[-100.071,200.334],[-99.853,201.209],[-101.208,202.96],[-102.383,205.172],[-104.262,206.093],[-107.897,204.521],[-109.682,205.089],[-111.966,205.858],[-115.462,203.692],[-117.287,203.985],[-119.234,206.4],[-122.214,206.383],[-123.053,205.171],[-124.562,204.625],[-125.533,204.971],[-128.104,202.312],[-127.662,200.18],[-129.735,199.57],[-131.6,199.104],[-132.703,197.837]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.675,0.391],[-6.456,0.281],[-5.77,-0.029],[-4.677,-0.204],[-0.134,-0.051],[1.206,0.472],[0.689,0],[4.489,-0.138],[6.349,-0.306],[0.392,-0.112],[-0.9,-0.004],[-2.215,0.362],[-1.563,-0.252],[-4.823,-0.042],[-0.815,-0.258],[-0.021,-0.502],[0.356,-0.065],[3.049,-0.084],[6.813,-0.141],[2.985,-0.388],[0.455,0.319],[-0.754,0.213],[-0.802,0.244],[0.039,0.524],[0.4,0.028],[0.537,-0.059],[3.48,0.629],[2.661,-0.429],[0.619,0.345],[1.697,-0.764],[1.139,1.112],[0.302,0.161],[-0.021,0.619],[-1.663,-0.157],[-3.283,-0.144],[-2.814,-0.454],[0.691,0]],"o":[[6.468,-0.005],[5.777,-0.251],[4.678,0.024],[0.131,0.006],[-0.675,1.243],[-0.675,-0.264],[-4.493,-0.001],[-6.353,0.195],[-0.18,0.009],[0.855,0.766],[2.217,0.009],[1.568,-0.256],[4.824,0.777],[0.839,0.007],[0.353,0.112],[0.023,0.547],[-3.013,0.551],[-6.808,0.187],[-3.01,0.062],[-0.378,0.049],[0.435,-0.774],[0.807,-0.228],[0.4,-0.122],[-0.045,-0.6],[-0.54,-0.037],[-3.575,0.394],[-2.785,-0.503],[-0.698,0.113],[-1.641,-0.915],[-1.237,0.557],[-0.236,-0.23],[0.022,-0.618],[1.642,-0.784],[3.289,0.311],[2.833,0.124],[-0.691,0],[0.728,0.37]],"v":[[82.26,153.164],[101.663,153.085],[118.978,152.917],[133.011,153.479],[133.404,153.624],[130.412,154.932],[128.391,154.613],[114.912,154.639],[95.862,155.517],[95.113,155.725],[97.753,156.698],[104.402,156.492],[109.115,156.704],[123.585,156.708],[126.082,156.928],[127.045,157.411],[126.127,157.895],[117.013,158.736],[96.592,158.443],[87.601,159.018],[86.371,158.813],[88.257,157.516],[90.69,156.874],[91.722,156.223],[90.622,155.838],[88.994,155.858],[78.331,155.472],[70.307,155.753],[68.281,155.512],[63.365,155.45],[59.646,155.021],[58.747,154.527],[58.812,152.672],[63.87,152.373],[73.727,152.612],[82.219,153.111],[80.146,153.111]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.482,0.011],[-1.194,-0.309],[-0.2,0.576],[-1.298,-0.34],[-1.453,-1.104],[-0.82,0.578],[-1.943,0.16],[-0.113,-0.433],[-1.369,-0.482],[0.46,-0.325],[-0.674,-0.572],[0.261,-0.513],[0.428,0.028],[0.636,-0.025],[-0.009,-0.452],[-0.335,-0.015],[-0.542,-0.017],[-0.074,-0.388],[0.305,-0.069],[2.241,0.133],[0.928,0.577],[0.407,-1.362],[1.169,1.396],[1.243,-0.684],[0.192,0.959],[0.901,-0.012],[0.635,2.763],[0.623,0.104],[0.505,0.176],[-0.974,0.73]],"o":[[1.077,0.028],[0.434,0.113],[0.636,-1.835],[1.79,0.469],[0.819,0.622],[1.613,-1.136],[0.525,-0.043],[0.494,1.89],[0.618,0.218],[-1.046,0.738],[0.307,0.261],[-0.242,0.475],[-0.638,-0.041],[-0.319,0.013],[0.009,0.479],[0.542,0.025],[0.287,0.009],[0.063,0.328],[-1.994,0.452],[-1.138,-0.067],[-0.885,-0.55],[-0.426,1.426],[-0.928,-1.108],[-0.754,0.415],[-0.213,-1.062],[-2.51,0.033],[-0.149,-0.647],[-0.533,-0.089],[-1.158,-0.404],[1.056,-0.79]],"v":[[-181.005,157.21],[-177.531,157.803],[-176.396,157.5],[-173.099,156.434],[-168.268,158.933],[-166.06,158.952],[-160.617,157.262],[-159.297,157.703],[-155.755,160.079],[-155.472,161.011],[-155.339,162.789],[-154.719,163.823],[-155.931,164.022],[-157.844,163.938],[-158.583,164.503],[-157.812,164.982],[-156.185,165.006],[-155.484,165.377],[-155.881,166.085],[-161.643,168.105],[-164.666,167.13],[-166.601,167.761],[-169.911,167.968],[-172.841,167.296],[-174.545,166.541],[-176.375,165.216],[-181.487,161.775],[-182.829,160.781],[-184.417,160.463],[-184.77,158.362]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.055,-0.136],[0.719,-0.776],[0.992,0.305],[1.306,1.033],[0.195,-1.865],[3.16,-0.447],[0.441,0.408],[0.838,-0.142],[0.101,0.501],[0.127,0.524],[1.273,1.743],[-1.035,0.46],[-2.337,-0.372],[-1.715,0.49],[0.046,0.561],[0.44,0.041],[1.552,-0.518],[0.687,0.723],[-0.366,0.822],[-2.26,0.999],[-0.192,-0.278],[0.141,-0.329],[-1.955,-0.315],[-2.472,-2.02],[-0.367,-0.579],[1.206,-0.004],[-0.337,-0.669],[-0.848,-0.161],[-0.059,-0.801],[0.95,-1.422],[1.132,1.184],[-0.184,0.618],[-0.436,0.097],[-0.073,0.337],[0.318,0.109],[0.339,0.063],[-0.66,0.592],[1.072,0.378],[0.751,0.24],[0,0]],"o":[[0.041,0.142],[0.283,0.694],[-0.752,0.812],[-1.662,-0.511],[-1.486,-1.175],[-0.348,3.341],[-0.641,0.091],[-0.554,-0.513],[-0.563,0.095],[-0.107,-0.528],[1.301,-1.72],[1.06,-0.404],[2.289,-1.017],[1.787,0.284],[0.451,-0.129],[-0.05,-0.61],[-1.666,-0.155],[-0.731,0.244],[-0.746,-0.786],[1.104,-2.481],[0.279,-0.123],[0.225,0.325],[-0.771,1.793],[3.214,0.517],[0.554,0.453],[0.644,1.017],[-1.471,0.005],[0.412,0.817],[0.834,0.159],[0.129,1.765],[-0.971,1.454],[-0.413,-0.432],[0.209,-0.703],[0.294,-0.065],[0.099,-0.458],[-0.326,-0.111],[-0.741,-0.139],[1.162,-1.042],[-0.744,-0.262],[0,0],[0,0]],"v":[[-169.385,1.398],[-169.26,1.823],[-168.941,3.968],[-171.696,4.481],[-175.792,1.631],[-178.515,2.624],[-183.327,6.62],[-184.883,5.893],[-186.844,5.069],[-187.733,4.32],[-188.112,2.748],[-188.065,-2.446],[-184.891,-3.669],[-177.955,-3.922],[-172.713,-4.531],[-171.869,-5.385],[-172.878,-6.002],[-177.653,-5.179],[-179.863,-5.228],[-179.914,-7.72],[-174.221,-12.126],[-173.419,-11.934],[-173.493,-10.96],[-172.324,-8.718],[-163.951,-4.702],[-162.625,-3.134],[-163.623,-1.081],[-164.258,0.303],[-162.223,1.63],[-161.077,3.087],[-162.444,7.832],[-165.912,8.229],[-166.597,6.676],[-165.309,6.413],[-164.597,5.996],[-165.221,5.324],[-166.223,5.067],[-166.553,4.059],[-167.124,2.113],[-169.377,1.39],[-169.433,1.34]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.354,-0.596],[0.947,-0.823],[-0.408,-0.822],[-0.666,0.304],[-0.239,0.542],[-0.096,-0.535],[0.372,-0.254],[0.987,0.328],[0.821,-1.189],[0.847,-0.354],[0.205,0.873],[-0.783,0.317],[-0.154,1.541],[0.764,-0.183],[3.072,-0.841],[1.774,-0.193],[0.101,1.265],[-1.759,2.739],[-1.945,2.148],[1.262,1.758],[-0.262,0.915],[-0.692,-0.009],[-0.216,-0.6],[-0.399,-1.007],[-0.744,0.598],[-0.345,0.278],[-0.722,-0.391],[0.003,-0.707],[0.614,-0.798],[1.747,-1.575],[0.031,-0.361],[0.912,-0.748],[0.409,-0.814],[-0.337,-0.413],[-0.371,0.103],[-1.042,1.196],[0.773,1.234],[-0.485,-0.059],[0.528,-1.264],[-0.463,-0.791]],"o":[[-0.029,1.702],[-0.391,0.332],[0.293,0.59],[0.575,-0.262],[0.454,0.059],[0.092,0.513],[-0.844,0.576],[-1.544,-0.513],[-0.513,0.743],[-0.592,-0.675],[0.835,-0.082],[1.401,-0.568],[0.076,-0.759],[-2.968,0.711],[-1.672,0.458],[0.22,-0.907],[-0.257,-3.238],[1.584,-2.468],[1.531,-1.692],[0.859,-0.229],[0.22,-0.768],[0.727,0.01],[0.367,1.019],[0.326,0.823],[0.345,-0.278],[0.543,-0.437],[0.648,0.351],[-0.004,0.998],[-1.403,1.825],[-0.264,0.238],[-0.897,0.767],[-0.689,0.565],[-0.193,0.385],[0.28,0.343],[1.492,-0.412],[0.889,-1.02],[0.492,0.004],[1.359,0.166],[-0.444,1.063],[0.027,0.596]],"v":[[68.317,103.335],[65.724,106.038],[64.763,107.166],[66.443,107.599],[67.507,106.25],[68.509,106.943],[67.869,108.008],[65.088,108.611],[61.704,109.926],[59.753,111.653],[58.564,109.33],[60.987,108.744],[63.367,105.666],[62.428,104.601],[53.417,104.903],[48.272,106.231],[49.766,104.047],[52.15,95.096],[57.831,88.515],[58.171,84.755],[59.962,83.176],[61.479,82.298],[62.714,83.365],[63.868,86.403],[65.458,86.854],[66.498,86.029],[68.341,85.449],[69.189,87.242],[68.391,90.044],[64.367,95.648],[63.926,96.56],[61.231,98.856],[59.44,100.79],[59.263,102.018],[60.378,102.131],[64.301,99.903],[64.709,96.529],[66.184,96.55],[67.604,98.984],[68.318,101.548]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.271,0.166],[-0.181,0.988],[2.145,0.822],[-0.515,0.359],[-1.348,0.04],[-1.485,0.299],[-0.257,1.283],[-0.078,0.056],[-2.769,-1.024],[-0.354,0.806],[-1.949,1.345],[-0.666,-0.37],[0.116,-0.581],[-0.621,0.013],[-0.14,-0.562],[0.328,-0.37],[0.7,-1.255],[-0.252,0.091],[-1.904,-0.394],[-0.168,-0.724],[0.512,-0.241],[-0.323,-0.248],[-0.532,-0.437],[0.109,-0.409],[0.443,-0.075],[1.246,1.384],[0.465,0.438],[0.477,-0.428],[-0.227,-0.433],[-0.354,-0.743],[0.396,-0.516],[0.604,0.134],[0.91,0.49],[0.439,-0.331],[-0.084,-0.427],[-0.234,-0.536],[0.082,-0.449],[1.003,-0.19],[0.187,0.807],[0.491,0.23],[0.506,1.387],[0.706,-0.309],[0.152,-0.125],[2.097,-0.421],[0.27,0.404],[-0.268,0.31],[-0.932,0.591],[-0.285,0.474]],"o":[[-0.592,-0.521],[0.385,-0.52],[-0.809,-0.31],[1.122,-0.782],[1.341,-0.04],[-0.583,-0.974],[0.078,-0.056],[2.922,-0.099],[0.847,0.313],[0.95,-2.167],[0.519,-0.358],[0.63,0.35],[-0.139,0.701],[0.534,-0.011],[0.145,0.582],[-0.931,1.05],[0.282,0.382],[2.029,-0.73],[0.671,0.139],[0.169,0.725],[-0.655,0.307],[0.546,0.42],[0.305,0.25],[-0.128,0.48],[-1.862,0.314],[-0.429,-0.476],[-0.337,-0.317],[-0.419,0.376],[0.363,0.693],[0.274,0.574],[-0.384,0.501],[-1.033,-0.23],[-0.376,-0.203],[-0.398,0.3],[0.113,0.574],[0.179,0.41],[-0.122,0.673],[-0.861,0.163],[-0.15,-0.646],[-1.271,-0.595],[-0.333,-0.914],[-0.175,0.076],[-1.705,1.408],[-0.456,0.092],[-0.294,-0.44],[0.707,-0.817],[0.412,-0.262],[-2.359,-0.127]],"v":[[126.716,44.825],[125.549,42.895],[125.678,41.221],[125.842,39.845],[129.606,38.793],[133.79,38.632],[132.116,36.081],[132.35,35.913],[140.932,37.024],[142.472,36.305],[146.882,31.045],[148.657,30.64],[149.104,32.232],[149.885,33.088],[151.008,33.857],[150.352,35.062],[147.315,37.939],[148.184,38.207],[153.959,38.814],[155.336,39.983],[154.465,41.129],[154.543,41.97],[156.188,43.222],[156.726,44.215],[155.654,44.876],[151.016,43.188],[149.732,41.758],[148.479,41.359],[148.585,42.73],[149.99,44.604],[150.163,46.228],[148.52,46.618],[145.735,45.267],[144.511,45.051],[144.212,46.283],[144.736,47.966],[145.108,49.217],[144.311,51.06],[142.756,49.807],[141.586,48.805],[138.679,46.045],[137.039,45.485],[136.573,45.846],[130.707,48.179],[129.49,47.878],[129.811,46.687],[132.098,44.39],[133.196,43.401]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.095,-0.083],[0.905,0.373],[3.887,0.238],[2.546,1.089],[-0.051,-0.103],[-1.14,-1.748],[0.875,-0.721],[0.439,-0.318],[0.828,1.04],[0.438,0.533],[0.997,-0.977],[0.572,-0.613],[0.754,0.915],[0.767,1.028],[-1.531,0.797],[-0.749,0.054],[-0.127,0.537],[0.303,0.265],[0.647,0.522],[-1.612,0.597],[0.858,1.376],[-1.151,-0.147],[-0.929,-1.026],[-0.24,-0.264],[-0.048,0.258],[-1.478,-0.371],[0.364,-1.403],[-0.324,-0.812],[-0.792,0.693],[-1.142,-0.398],[-0.079,-0.255],[1.432,-0.518],[1.299,-1.17],[-0.981,2.377],[-0.356,0.004],[-3.996,0.019],[-1.451,-2.294],[-0.842,-0.669],[-0.232,-0.896]],"o":[[-1.014,0.059],[-3.673,-1.513],[-2.718,-0.167],[-0.275,-0.117],[0.83,1.688],[0.744,1.141],[-0.416,0.343],[-1.072,0.778],[-0.43,-0.54],[-0.889,-1.082],[-0.597,0.585],[-0.884,0.947],[-0.815,-0.989],[-1.029,-1.38],[0.66,-0.344],[0.426,-0.031],[0.116,-0.489],[-0.623,-0.545],[-1.392,-1.122],[1.381,-0.512],[-0.534,-0.857],[1.368,0.175],[0.261,0.289],[0.493,-0.06],[0.188,-1.014],[1.618,0.407],[-0.152,0.586],[0.911,-0.693],[1.08,-0.945],[0.257,0.09],[0.448,1.445],[-1.59,0.575],[1.457,-0.997],[0.139,-0.337],[3.996,-0.043],[2.524,-0.012],[0.606,0.958],[0.596,0.474],[-0.095,0.083]],"v":[[160.077,206.019],[157.204,205.403],[145.753,203.363],[137.789,201.953],[137.018,201.933],[135.507,204.686],[134.911,207.357],[133.557,208.259],[130.727,207.88],[129.391,206.298],[126.88,206.123],[125.211,208.005],[122.699,207.856],[120.358,204.803],[121.175,201.259],[123.29,200.653],[124.438,200.235],[123.639,199.292],[121.615,197.832],[121.884,195.129],[122.831,192.725],[124.236,191.193],[127.683,193.037],[128.447,193.878],[128.907,193.191],[130.713,191.522],[132.719,194.41],[132.374,196.332],[134.952,194.351],[138.284,194.127],[138.737,194.654],[136.485,199.016],[132.14,201.593],[136.909,199.927],[137.832,199.584],[149.819,199.456],[155.999,202.422],[158.629,204.279],[160.362,205.77]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.104,1.327],[-1.754,-2.757],[0.755,-0.577],[0.576,0.497],[1.247,-1.617],[1.022,0.176],[-1.122,1.463],[0.342,-0.013],[1.509,-1.207],[1.055,-1.164],[0.286,0.431],[2.027,-0.506],[0.272,0.809],[-0.442,0.378],[-0.559,0.553],[0.444,0.512],[0.359,-0.263],[0.522,-0.369],[2.245,0.285],[0.152,0.613],[-0.486,0.318],[-0.366,0.929],[2.168,2.144],[-0.4,0.217],[-0.893,0.417],[-0.005,0.863],[-0.105,-0.534],[-0.765,0.148],[-1.036,0.726],[-1.422,-0.571],[-0.045,-1.663],[0.268,-3.063],[-0.912,0.527],[0.204,1.015],[-1.152,1.719],[-0.297,-0.775],[-0.723,-0.093],[-2.592,-1.094],[-0.417,0.501],[0.369,0.495],[1.012,0.633],[1.697,1.085],[-1.7,-0.461]],"o":[[2.921,1.662],[0.479,0.752],[-0.74,0.565],[-1.545,-1.333],[-0.554,0.718],[-0.46,-0.079],[0.518,-0.675],[-1.981,0.077],[-1.178,0.942],[-0.418,0.461],[-1.051,-1.585],[-0.814,0.203],[-0.208,-0.618],[0.599,-0.512],[0.322,-0.318],[-0.49,-0.566],[-0.516,0.377],[-1.894,1.34],[-0.58,-0.074],[-0.154,-0.62],[0.559,-0.366],[-4.349,0.736],[-0.519,-0.514],[0.865,-0.47],[0.717,-0.335],[0.539,-0.265],[0.365,1.854],[1.098,-0.212],[1.612,0.178],[0.842,1.103],[0.082,3.005],[-0.089,1.021],[0.981,-0.567],[-0.356,-1.766],[0.64,0.718],[0.268,0.698],[2.835,0.365],[0.615,0.26],[0.464,-0.557],[-0.719,-0.965],[-1.708,-1.068],[1.876,0.081],[1.098,0.298]],"v":[[-207.571,85.543],[-200.948,92.553],[-201.15,94.849],[-203.036,94.213],[-206.839,94.633],[-209.003,95.91],[-209.792,94.812],[-210.48,94.192],[-215.807,96.155],[-219.634,98.318],[-220.971,97.766],[-225.322,95.804],[-228.829,93.359],[-228.298,91.947],[-226.533,90.377],[-226,89.189],[-227.191,89.592],[-228.72,90.752],[-234.981,92.085],[-236.22,91.218],[-235.51,89.887],[-233.834,88.47],[-241.117,83.077],[-240.562,81.968],[-237.899,80.683],[-236.653,79.015],[-235.035,78.614],[-232.855,79.291],[-229.55,78.969],[-225.418,80.96],[-223.055,84.384],[-222.073,93.33],[-220.307,94.199],[-219.477,91.779],[-218.989,86.502],[-217.747,88.777],[-216.32,90.15],[-208.32,92.737],[-206.708,92.37],[-206.872,90.746],[-209.559,88.454],[-214.654,85.204],[-209.546,86.714]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.58,0.035],[0.017,-0.846],[-0.612,0.068],[-0.029,0.798]],"o":[[-0.782,0.184],[-0.012,0.617],[0.856,-0.094],[0.02,-0.561]],"v":[[217.742,-69.302],[216.347,-67.831],[217.432,-66.884],[218.738,-68.418]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.231,3.613],[-0.745,2.948],[-1.549,0.057],[-0.443,-1.075],[0.002,-0.848],[-0.048,-2.665],[-0.614,-0.001],[-0.111,0.405],[0.263,2.091],[-0.695,1.901],[-0.886,-0.132],[-0.091,-0.716],[-0.134,-1.223],[-0.606,-0.018],[0.005,0.513],[0.702,2.52],[0.39,1.477],[-0.247,-0.009],[-0.132,-0.12],[0.013,-0.128],[-0.202,-2.353],[-0.182,-6.16],[-1.516,-3.24],[0.812,-0.344],[0.123,3.723],[-0.465,2.315],[0.36,0.114],[0.153,-0.255],[0.007,-0.278],[1.331,-0.212],[-1.151,-0.806],[0.014,-2.252],[1.085,0.941],[0.253,3.38]],"o":[[-0.053,-3.35],[0.29,-1.147],[1.438,-0.053],[0.325,0.789],[-0.005,2.665],[0.008,0.45],[0.54,0.001],[0.582,-2.124],[-0.251,-1.991],[0.246,-0.672],[0.808,0.12],[0.155,1.221],[0.059,0.539],[0.71,0.021],[-0.024,-2.558],[-0.411,-1.474],[-0.049,-0.184],[0.168,0.006],[0.098,0.089],[-0.251,2.409],[0.53,6.163],[0.102,3.46],[0.379,0.809],[-3.416,1.446],[-0.076,-2.308],[0.06,-0.297],[-0.328,-0.104],[-0.147,0.245],[-0.038,1.46],[-1.137,0.181],[2.322,1.625],[-0.008,1.305],[-2.531,-2.194],[-0.294,-3.929]],"v":[[209.397,-69.115],[209.982,-78.433],[211.924,-81.205],[214.064,-78.711],[214.445,-76.242],[214.491,-68.247],[215.13,-67.084],[215.66,-68.168],[215.44,-74.475],[215.923,-80.311],[217.342,-81.534],[218.546,-80.039],[218.912,-76.365],[219.659,-75.071],[220.324,-76.338],[219.893,-83.995],[219.957,-88.402],[220.239,-88.828],[220.727,-88.584],[220.892,-88.188],[221.86,-81.196],[221.801,-62.723],[223.264,-52.569],[222.52,-51.016],[218.544,-53.595],[218.464,-60.516],[218.16,-61.252],[217.416,-60.902],[217.132,-60.081],[214.915,-57.768],[214.45,-56.276],[216.327,-49.965],[214.256,-49.335],[209.995,-57.657]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.936,-3.276],[1.802,0.063],[4.04,0.094],[1.412,0.184],[1.4,0.931],[0.274,0.103],[0.354,-0.633],[-0.391,-0.301],[-0.594,-0.437],[0.359,-0.68],[0.514,0.138],[0.274,0.312],[1.758,0.365],[1.663,-0.449],[3.07,-0.105],[0.785,-0.116],[0.24,0.612],[-0.391,0.331],[-0.478,0.347],[0.336,0.534],[0.359,-0.198],[1.272,-0.645],[1.814,0.625],[-0.897,0.61],[0.218,0.453],[0.387,0.005],[2.564,-0.032],[1.215,0.188],[-0.758,0.709],[-0.643,0.567],[0.73,0.02],[0.832,0.369],[-0.092,0.557],[-0.389,0.043],[-0.638,-0.002],[-4.132,-0.404],[-1.013,0.598],[-0.847,-0.089],[-2.677,-1.243],[-0.65,0.37],[-3.096,0.319],[-6.181,-0.587]],"o":[[0.62,1.613],[-4.038,-0.142],[-1.415,-0.033],[-1.634,-0.213],[-0.244,-0.163],[-0.561,-0.21],[-0.359,0.642],[0.584,0.449],[0.695,0.511],[-0.39,0.741],[-0.417,-0.112],[-1.42,-1.614],[-1.512,-0.314],[-3.075,0.831],[-0.772,0.026],[-0.516,0.077],[-0.243,-0.62],[0.448,-0.38],[0.321,-0.233],[-0.287,-0.457],[-1.251,0.689],[-1.709,0.867],[-0.841,-0.29],[0.302,-0.206],[-0.171,-0.356],[-2.564,-0.032],[-1.244,0.015],[-1.007,-0.156],[0.533,-0.499],[-0.78,-0.543],[-0.893,-0.025],[-0.396,-0.175],[0.079,-0.476],[0.446,0.615],[4.133,0.011],[0.983,0.096],[0.899,0.099],[3.012,0.318],[0.55,0.256],[2.65,-1.511],[6.165,-0.636],[4.942,0.47]],"v":[[-137.126,51.361],[-138.31,52.966],[-150.426,52.602],[-154.367,53.287],[-158.98,51.885],[-159.765,51.478],[-161.37,51.641],[-160.595,52.859],[-158.742,54.073],[-158.267,56.062],[-159.837,56.056],[-161,55.436],[-166.354,53.306],[-171.532,53.659],[-180.754,54.044],[-183.088,54.1],[-184.536,53.696],[-183.738,52.419],[-182.272,51.423],[-181.56,50.543],[-182.732,50.755],[-186.454,52.876],[-191.768,53.159],[-191.993,51.93],[-191.412,51.037],[-192.476,50.633],[-200.169,50.597],[-203.842,50.238],[-204.249,48.879],[-202.513,47.343],[-204.816,47.029],[-207.427,46.632],[-208.269,45.757],[-207.299,45.267],[-205.552,45.821],[-193.153,46.058],[-190.129,46.117],[-187.64,46.973],[-179.304,49.836],[-177.699,49.861],[-169.204,46.706],[-150.703,46.698]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.564,1.67],[-0.827,0.029],[-0.494,-0.001],[-0.072,-0.927],[0.739,-0.123],[1.098,0.046],[-0.037,-0.681],[-0.411,-0.014],[-3.402,-1.008],[-0.287,0.053],[-0.072,0.37],[0.278,0.154],[1.095,0.275],[-0.034,0.731],[-0.491,0.133],[-0.341,0.036],[-0.136,1.544],[-0.312,0.14],[-0.837,-0.355],[-2.255,-0.447],[0.461,-0.028],[0.077,-0.776],[2.982,-0.952],[-0.839,-0.596],[-0.901,0.744],[-2.612,0.311],[-0.012,1.222],[0.275,0.207],[-1.358,-0.534],[-0.904,0.09],[-2.748,0.3],[-3.579,0.509],[0.965,1.345],[-0.576,-0.075],[-1.096,-0.225],[-0.567,0.499],[-1.554,0.358],[-2.903,-0.655],[-1.166,0.138],[-0.933,-0.267],[-0.687,1.108],[-1.274,-1.166],[2.301,0.037],[-0.422,-1.109],[1.105,0.206],[0.841,-0.53],[0.815,0.48],[0.973,-0.46],[1.296,-0.792],[-1.546,-0.846],[-0.237,-0.372],[0.496,-0.876],[-0.022,-0.044],[-0.117,0.104],[-1.642,0.278],[0.22,-0.999],[-0.816,0.203],[-0.441,0.581],[-0.446,-0.286],[-0.583,-0.349],[0.572,-0.027],[0.813,-0.287],[0.572,1.495],[0.575,-0.082],[1.023,-0.138],[0.381,0.623],[-0.463,0.253],[0.17,0.218],[0.38,-0.082],[3.037,0.107],[1.611,0.155],[-0.858,1.213],[0.742,-0.013],[4.532,1.076],[0.321,-0.279],[0.583,-0.031],[1.925,-1.298],[-0.149,-0.568],[-0.486,0.067],[-1.018,0.169],[2.636,0.247],[0.273,0.616],[-0.37,0.459],[-0.109,0.16],[0.407,0.588],[0.473,-0.311],[0.499,-0.4],[0.41,-0.266],[0.816,0.444],[0.258,0.579],[2.319,-0.364],[0.189,0.652],[-0.464,0.599],[2.422,-0.015],[-0.143,-0.537],[0.76,-0.391],[0.541,0.527],[1.929,-0.088],[0.444,-1.107],[0.078,-0.125],[0.683,0.04],[0.179,0.565],[1.537,0.249],[0.241,0.169],[-0.055,0.456],[-0.365,0.135],[-2.192,-0.542],[-0.613,0.401],[-0.406,0.662],[-0.514,0.097]],"o":[[0.828,-0.029],[0.494,0.002],[0.849,0.001],[0.069,0.896],[-1.069,0.177],[-0.546,-0.023],[0.031,0.561],[3.468,0.119],[0.269,0.08],[0.333,-0.061],[0.089,-0.454],[-1.028,-0.568],[-0.437,-0.11],[0.027,-0.575],[0.333,-0.091],[0.98,-0.104],[0.015,-0.166],[0.069,1.188],[2.151,0.912],[-0.437,0.027],[0.161,0.523],[-2.606,0.832],[1.321,0.592],[1.138,0.808],[2.632,-0.053],[1.201,-0.143],[-0.026,-0.386],[1.365,-0.026],[0.732,0.288],[2.737,-0.272],[3.575,-0.39],[1.601,-0.228],[0.622,0.08],[1.035,0.488],[0.762,0.156],[1.327,-1.167],[2.936,0.009],[1.173,0.265],[0.94,-0.111],[0.865,0.247],[0.835,-1.348],[-1.684,2.15],[-0.753,-0.012],[-1.099,-0.241],[-0.909,-0.17],[-0.892,0.562],[-0.962,-0.566],[-1.373,0.649],[-1.542,0.942],[0.333,0.182],[0.89,1.397],[-0.04,0.076],[0.077,0.155],[1.647,-0.246],[0.663,-0.112],[-0.231,1.052],[0.604,-0.15],[0.317,-0.417],[0.572,0.367],[-0.436,0.569],[-0.833,0.039],[-1.165,0.412],[-0.253,-0.662],[-1.022,0.146],[-0.67,0.091],[-0.474,-0.774],[0.265,-0.145],[-0.239,-0.307],[-2.987,0.643],[-1.614,-0.057],[1.369,-0.073],[-0.807,-0.318],[-4.597,0.079],[-0.398,-0.094],[-0.431,0.375],[-2.205,0.118],[-0.359,0.242],[0.166,0.632],[1.022,-0.14],[-1.099,2.378],[-0.604,-0.057],[-0.287,-0.647],[0.123,-0.153],[0.28,-0.412],[-0.401,-0.579],[-0.532,0.35],[-0.384,0.307],[-0.722,0.468],[-0.852,-0.464],[-2.347,0.009],[-0.491,0.077],[-0.208,-0.72],[-2.572,0],[-0.537,0.003],[0.226,0.851],[-0.767,0.394],[-1.488,-1.449],[-1.16,0.053],[-0.055,0.137],[-0.364,0.586],[-0.729,-0.043],[-0.405,-1.277],[-0.269,-0.044],[-0.331,-0.232],[0.062,-0.514],[1.991,-0.735],[0.615,0.152],[0.182,-0.69],[0.301,-0.49],[1.342,-0.253]],"v":[[-31.905,122.98],[-29.422,122.893],[-27.94,122.898],[-26.128,124.031],[-27.711,125.266],[-30.945,125.597],[-32.157,126.366],[-31.035,126.748],[-20.665,127.56],[-19.784,127.54],[-18.943,127.045],[-19.634,126.422],[-22.94,125.69],[-24.028,124.977],[-22.987,124.074],[-21.976,123.846],[-19.701,122.449],[-18.804,122.025],[-16.913,123.82],[-10.17,125.255],[-11.506,125.337],[-10.574,126.44],[-18.799,129.066],[-15.457,129.691],[-12.547,129.384],[-4.687,128.762],[-2.844,126.768],[-3.419,125.967],[0.637,126.376],[2.994,127.093],[11.231,126.812],[22.002,126.489],[23.597,122.701],[25.371,122.931],[28.643,123.708],[30.933,123.574],[35.443,122.022],[44.236,122.358],[47.742,122.52],[50.475,122.716],[53.113,122.201],[55.329,122.009],[48.963,123.808],[47.906,124.912],[44.608,124.198],[41.879,124.248],[39.403,124.204],[36.439,124.045],[32.42,126.199],[32.454,128.134],[33.275,128.863],[32.348,131.701],[32.238,131.922],[32.558,131.948],[37.498,131.2],[38.492,131.96],[39.672,132.958],[41.387,132.229],[42.555,132.082],[44.301,133.134],[42.66,133.558],[40.171,133.773],[37.421,132.819],[35.829,132.431],[32.773,132.931],[31.101,132.232],[31.766,131.106],[31.811,130.476],[30.891,130.207],[21.835,130.863],[17.002,130.416],[20.4,128.688],[18.124,128.435],[4.387,127.649],[3.264,127.859],[1.792,128.348],[-4.559,129.915],[-5.301,130.871],[-4.078,131.388],[-1.021,130.89],[-6.731,134.147],[-8.235,133.388],[-7.676,131.815],[-7.266,131.391],[-6.397,130.262],[-7.95,130.577],[-9.458,131.762],[-10.609,132.681],[-12.972,133.092],[-13.113,131.254],[-20.11,131.467],[-21.527,131.014],[-20.364,129.741],[-27.781,129.747],[-28.506,130.615],[-29.286,132.469],[-31.335,132.08],[-36.55,130.568],[-38.994,132.106],[-39.202,132.498],[-40.614,133.878],[-41.401,132.303],[-43.808,129.634],[-44.562,129.181],[-45.133,128.218],[-44.259,127.581],[-38.101,126.723],[-36.12,126.524],[-36.809,125.275],[-35.303,124.82]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.689],[0.012,0],[0.036,0.736],[0.577,-0.061],[-0.093,-0.471],[0.164,-1.16],[-0.073,-1.377],[-0.489,-0.211],[-0.297,0.341],[-0.607,3.316],[0.292,0.131],[0.191,-0.155],[0.156,-0.835],[0.678,-1.089],[0.411,0.132],[0.006,0.295]],"o":[[-0.012,0],[0,-0.738],[-0.023,-0.468],[-0.596,0.063],[0.231,1.173],[-0.195,1.375],[0.025,0.482],[0.571,0.247],[2.293,-2.631],[0.044,-0.238],[-0.263,-0.118],[-0.703,0.573],[-0.224,1.199],[-0.185,0.298],[-0.331,-0.106],[-0.013,-0.689]],"v":[[100.346,60.324],[100.311,60.324],[100.301,58.11],[99.518,57.247],[98.98,58.255],[99.062,61.785],[98.872,65.903],[99.397,67.204],[100.561,66.503],[104.266,57.315],[104.074,56.678],[103.407,56.87],[102.385,59.093],[101.521,62.647],[100.714,63.132],[100.35,62.391]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.21,1.482],[0.049,-0.512],[1.553,-1.982],[0.786,-1.31],[-0.44,-0.497],[-0.506,0.238],[-1.855,2.831],[0.035,0.189]],"o":[[-0.488,0.481],[-0.237,2.457],[-0.938,1.197],[-0.29,0.484],[0.488,0.551],[3.383,-1.593],[0.093,-0.141],[-0.334,-1.79]],"v":[[105.652,60.067],[105.09,61.619],[102.574,68.294],[100.093,72.146],[99.753,73.763],[101.355,73.5],[107.694,65.63],[107.724,65.048]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.164,0.764],[-0.115,-0.517],[-0.819,0.281],[-0.419,1.088],[0.45,0.139],[1.371,0.406],[-0.153,0.522],[-0.352,-0.07],[-0.572,-0.148],[-0.503,1.423],[0.285,0.48],[0.689,0.311],[0.023,0.637],[-0.638,3.222],[0.423,0.636],[-0.128,0.449],[0.117,2.516],[-0.158,2.354],[-0.698,0.124],[-0.594,1.01],[-1.906,-0.024],[-0.17,-0.62],[0.374,-0.251],[0.431,-0.322],[-0.751,-1.101],[-1.597,-0.624],[0.708,-0.779],[0.795,-0.656],[0.341,1.105],[-0.325,1.071],[0.537,0.22],[0.058,-0.703],[0.187,-2.749],[-0.087,-0.38],[-0.287,0.003],[-0.036,0.24],[-2.563,1.035],[-0.168,0.313],[-2.707,0.717],[-1.517,0.17],[-2.529,-0.384],[-0.592,-0.521],[1.353,-0.204],[-0.235,-1.157],[1.056,0.242],[0.454,0.191],[0.871,-0.659],[1.532,1.314],[0.458,-0.324],[0.987,-1.373],[-0.232,-0.464],[-0.491,0.064],[0.009,-1.615],[0.248,-5.673],[0.18,-1.269],[0.38,0.864],[0.586,-0.635],[0.726,-2.757],[-0.068,-0.499],[1.947,0.567],[-0.046,0.634],[1.108,0.501],[0.299,-0.468],[1.31,1.014],[-0.739,0.004]],"o":[[0.516,0.157],[0.141,0.637],[0.962,-0.33],[0.22,-0.571],[-1.366,-0.423],[-0.294,-0.087],[0.106,-0.361],[0.578,0.115],[1.479,0.383],[0.167,-0.473],[-0.647,0.064],[-0.723,-0.326],[-0.116,-3.25],[0.137,-0.692],[-0.265,-0.398],[0.705,-2.473],[-0.109,-2.346],[0.04,-0.589],[1.28,-0.228],[0.836,-1.423],[0.555,0.007],[0.184,0.671],[-0.449,0.301],[-1.033,0.771],[0.885,1.299],[0.943,0.368],[-0.696,0.766],[-0.878,0.725],[-0.326,-1.057],[0.086,-0.283],[-0.617,-0.253],[-0.228,2.746],[-0.026,0.386],[0.053,0.232],[0.298,-0.003],[0.462,-3.105],[0.345,-0.139],[1.52,-2.838],[1.418,-0.376],[2.604,-0.293],[-0.181,0.988],[-1.276,0.646],[-1.003,0.151],[0.271,1.333],[-0.477,-0.109],[-0.94,-0.396],[-1.619,1.225],[-0.457,-0.392],[-1.318,0.933],[-0.26,0.361],[0.278,0.556],[1.603,-0.208],[-0.03,5.672],[-0.044,1.004],[-0.925,-0.98],[-0.254,-0.578],[-1.831,1.987],[-0.128,0.486],[0.269,1.968],[-0.842,-0.245],[0.101,-1.387],[-0.467,-0.211],[-1.274,-0.757],[0.863,-0.45],[0.762,-0.004]],"v":[[93.358,75.191],[94.333,76.209],[95.482,77.138],[98.033,75.592],[97.097,74.662],[92.976,73.472],[92.321,72.893],[93.181,72.469],[94.891,72.935],[99.034,70.775],[98.926,69.338],[97.553,70.214],[96.842,68.382],[97.212,58.65],[97.033,56.651],[96.882,55.373],[97.164,47.892],[97.499,40.825],[98.418,39.446],[100.837,37.292],[104.609,34.607],[105.968,35.261],[105.047,36.207],[103.661,37.049],[103.149,39.877],[106.426,43.167],[106.846,45.033],[104.645,47.223],[102.621,46.558],[102.628,43.354],[102.545,42.489],[99.753,44.218],[99.14,52.463],[99.267,53.63],[99.776,54.094],[100.235,53.6],[105.567,48.166],[106.317,47.495],[113.447,43.271],[117.918,42.488],[125.549,42.895],[126.716,44.825],[122.667,45.535],[121.333,47.136],[119.757,48.433],[118.364,47.938],[115.754,48.265],[111.934,48.091],[110.433,47.828],[106.556,50.738],[106.187,51.939],[107.5,52.296],[109.468,53.934],[109.774,70.94],[109.325,74.208],[107.993,71.336],[106.821,70.927],[102.25,77.539],[102.152,79.003],[97.876,82.532],[97.093,80.985],[95.259,78.429],[94.104,78.692],[90.056,76.502],[92.438,76.235]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.704,0.018],[-0.006,1.193],[1.641,-0.017],[-0.016,-1.261]],"o":[[1.228,0.007],[0.006,-1.312],[-1.161,0.012],[0.017,1.339]],"v":[[-222.097,156.095],[-220.093,154.632],[-223.133,152.265],[-225.042,153.981]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.732,-0.827],[0,4.229],[-1.506,-0.961],[-0.951,-0.155],[-2.097,-1.141],[-1.609,0.03],[-4.278,-1.067],[-1.14,-0.452],[0.349,-1.451],[-0.436,-0.181],[-1.722,-0.939],[-0.47,0.943],[0.175,-0.792],[0.565,0.004],[2.933,-0.85],[3.555,-1.466],[1.61,-0.33],[0.491,0.119],[0.074,0.553],[-0.386,0.205],[-1.781,1.654],[1.27,-0.106],[1.941,1.503],[1.345,1.099],[-1.044,1.189],[0.427,0.545],[0.38,-0.177]],"o":[[0,-4.23],[1.608,0.043],[0.792,0.505],[2.362,0.384],[-0.703,2.398],[4.501,-0.083],[1.187,0.296],[1.199,0.475],[-0.108,0.447],[1.835,0.761],[0.585,0.319],[0.676,0.191],[-0.191,0.862],[-3.096,-0.022],[-3.687,1.068],[-1.503,0.62],[-0.49,0.1],[-0.51,-0.123],[-0.076,-0.569],[2.053,-1.093],[-1.258,0.248],[-2.457,0.206],[-1.36,-1.053],[-1.053,-0.86],[0.29,-0.33],[-0.316,-0.403],[-1.739,0.812]],"v":[[-242.505,155.184],[-242.506,142.495],[-237.77,143.25],[-235.046,143.295],[-228.355,145.488],[-227.295,148.379],[-214.302,150.767],[-210.818,151.961],[-209.145,154.669],[-208.743,155.641],[-203.723,158.707],[-201.979,158.491],[-200.906,159.824],[-202.366,160.303],[-211.352,161.947],[-222.301,165.51],[-226.862,167.199],[-228.326,167.27],[-229.347,166.325],[-228.521,165.426],[-222.586,161.664],[-226.364,162.383],[-233.04,160.401],[-236.793,156.837],[-236.695,153.623],[-236.109,152.469],[-237.306,152.71]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.105,-0.016],[-0.607,0.237],[1.067,1.013],[0.958,-0.891],[-1.178,-0.457]],"o":[[1.023,0.003],[1.363,-0.531],[-0.9,-0.854],[-0.923,0.858],[0.442,0.172]],"v":[[64.253,76.397],[66.513,76.115],[66.984,73.694],[62.761,73.777],[63.194,76.219]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.916,0.451],[-0.347,0.618],[-2.102,1.92],[-2.271,0.626],[-2.612,0.21],[-1.266,-0.058],[-0.011,0.922],[-0.202,1.192],[-0.297,0.764],[-0.356,1.323],[0.559,0.373],[0.374,-0.397],[0.442,-0.815],[1.073,0.627],[-0.021,1.536],[1.388,0.133],[0.379,0.101],[-0.001,0.754],[-0.797,0.075],[-0.147,0.014],[1.42,2.198],[3.301,1.617],[0.279,0.633],[1.111,-0.042],[0.018,0.186],[-1.459,0.065],[-0.903,-0.176],[-2.267,0.177],[-2.85,-0.523],[-0.238,0.054],[-0.14,0.347],[0.236,0.215],[1.229,1.616],[0.838,-0.151],[-0.642,2.229],[-0.11,0.379],[-1.26,-0.206],[-1.227,0.283],[0,0],[-1.138,-0.37],[0.894,-1.605],[-2.113,-0.531],[-0.24,-0.053],[-0.41,-2.252],[2.134,-1.389],[1.755,-1.179],[-0.687,-1.304],[0.395,-0.687],[-0.693,-0.489],[-0.818,0.824],[-0.226,-1.207],[-0.779,-1.077],[0.45,-0.454],[0.399,0.193],[0.388,-0.27],[-0.129,-0.448],[-0.307,-1.291],[3.162,-1.278],[0.118,-0.295],[0.464,-0.13],[0.028,-0.551],[-0.569,-0.12],[-0.893,-0.249],[0.03,-0.363],[0.29,-0.054],[2.418,-0.767],[0.577,-0.094],[4.184,-1.452],[0.907,-0.782]],"o":[[-0.268,-0.636],[1.39,-2.476],[1.931,-1.763],[2.674,-0.738],[0.992,1.547],[0.851,0.039],[0.014,-1.186],[0.883,0.513],[0.496,-1.277],[0.218,-0.811],[-0.597,-0.399],[-0.666,0.706],[-0.652,-0.964],[0.044,-1.526],[0.019,-1.415],[-0.39,-0.038],[-0.631,-0.167],[0.001,-0.901],[0.147,-0.014],[2.565,-0.252],[-1.948,-3.015],[-0.661,-0.324],[-0.455,-1.031],[-0.018,-0.186],[0.913,-0.612],[0.933,-0.042],[2.246,0.438],[2.853,-0.223],[0.234,0.043],[0.33,-0.074],[0.182,-0.45],[-1.497,-1.363],[-0.525,-0.691],[-2.288,0.411],[0.109,-0.379],[1.109,-0.711],[0.808,1.331],[0,0],[-0.383,1.579],[1.808,0.588],[-1.088,1.952],[0.239,0.06],[-1.172,2.276],[0.458,2.519],[-1.773,1.153],[-0.951,0.639],[0.424,0.805],[-0.432,0.75],[0.688,0.486],[0.886,-0.893],[0.222,1.189],[0.332,0.459],[-0.526,0.531],[-0.45,-0.218],[-0.46,0.32],[0.368,1.276],[0.799,3.365],[-0.29,0.117],[-0.487,0.045],[-0.383,0.107],[-0.033,0.644],[0.906,0.191],[0.272,0.076],[-0.031,0.373],[-2.48,0.458],[-0.039,-0.553],[-4.363,0.714],[-1.107,0.384],[-0.722,0.623]],"v":[[52.038,82.32],[52.206,80.505],[57.556,74.085],[64.068,71.545],[71.904,71.721],[75.648,72.423],[76.916,70.968],[76.656,67.448],[78.4,66.744],[79.695,62.839],[78.647,61.228],[77.273,61.707],[76.082,64.215],[73.906,61.5],[74.258,56.934],[72.357,54.669],[71.199,54.45],[69.474,53.719],[71.326,52.657],[71.77,52.635],[73.689,48.649],[66.107,41.37],[64.734,39.875],[62.419,38.401],[62.363,37.844],[64.568,35.512],[67.369,35.553],[74.139,36.015],[82.684,36.015],[83.418,35.959],[84.3,35.504],[83.763,34.743],[79.529,30.407],[77.616,29.722],[75.085,26.868],[75.416,25.731],[78.997,25.139],[82.238,25.98],[82.252,25.993],[84.106,28.242],[85.047,30.579],[86.276,33.556],[86.996,33.716],[87.078,40.502],[85.352,44.59],[80.031,48.045],[79.048,50.748],[78.603,52.957],[78.369,55.242],[81.035,54.898],[82.678,55.453],[83.633,58.958],[83.399,60.614],[82.145,60.278],[80.892,60.41],[80.671,61.603],[81.732,65.443],[78.138,72.465],[77.503,73.035],[76.047,73.191],[74.974,73.723],[76.089,74.659],[78.782,75.346],[79.375,75.892],[78.7,76.299],[71.28,77.77],[70.404,77.098],[57.534,80.146],[54.487,81.907]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.942,-1.458],[-0.192,-0.4],[-1.452,-1.972],[3.474,-0.947],[1.289,-0.807],[-0.943,-1.13],[0.225,-1.219],[0.259,-0.95],[0.619,-0.605],[-0.336,-0.293],[-0.002,-0.967],[0.046,-1.419],[0.486,-0.428],[1.147,-1.303],[0.459,-0.115],[0.504,-0.301],[1.386,0.243],[0.011,0.298],[0.277,2.299],[0.037,2.164],[-1.982,1.319],[2.848,1.819],[0.577,0.561],[-1.417,0.23],[-0.374,0.226],[0.05,0.599],[0.582,0.089],[0.488,-0.005],[-0.02,1.164],[-0.637,3.511],[0.203,0.744],[-1.496,1.576],[-2.424,-1.267],[-0.233,-0.019],[-0.731,-0.886],[-1.497,1.603],[-0.424,-0.804],[2.326,-2.589]],"o":[[0.192,0.4],[0.852,2.362],[2.12,2.879],[-1.501,0.409],[-0.961,0.602],[0.882,1.058],[-0.178,0.965],[-1.008,0.057],[-0.278,0.272],[0.861,0.752],[0.004,1.419],[-0.019,0.591],[-1.617,0.618],[-0.251,0.438],[-0.481,0.34],[-1.026,0.614],[-0.011,-0.298],[0.324,-2.298],[-0.261,-2.168],[-0.043,-2.5],[2.745,-1.827],[-0.291,-0.805],[-0.571,-1.052],[0.417,-0.068],[0.455,-0.274],[-0.061,-0.737],[-0.488,0.006],[-1.117,0.011],[0.06,-3.512],[0.71,-0.37],[-0.553,-2.024],[1.826,-1.924],[0.216,0.113],[1.25,0.103],[1.445,1.751],[0.921,-0.987],[1.475,2.797],[-1.338,1.489]],"v":[[125.519,-41.874],[126.096,-40.675],[130.07,-34.499],[128.406,-29.552],[124.239,-27.725],[123.64,-25.167],[124.184,-21.641],[123.423,-18.787],[121.326,-17.304],[121.264,-16.414],[122.004,-13.68],[121.927,-9.422],[121.328,-7.816],[117.166,-4.961],[116.035,-4.235],[114.589,-3.222],[111.306,-1.85],[111.271,-2.743],[111.544,-9.661],[111.322,-16.151],[114.509,-21.8],[114.358,-30.055],[112.797,-31.884],[113.677,-33.926],[114.867,-34.475],[115.848,-35.644],[114.518,-36.519],[113.053,-36.502],[111.308,-38.16],[111.322,-48.697],[112.122,-50.422],[113.538,-55.605],[117.642,-56.4],[118.322,-56.133],[121.097,-54.345],[124.761,-54.065],[126.438,-53.748],[125.874,-45.703]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,3.258],[-0.015,13.026],[-2.103,-0.358],[-3.236,-1.805],[-0.97,-0.671],[0.016,-2.124],[0.365,-3.997],[-0.248,-1.699],[2.842,-1.516],[0.792,-0.585],[-0.117,-1.568],[0.518,-0.819],[-0.893,-0.854],[-0.865,0.688],[-0.906,-0.566],[0.127,-0.855],[0.684,-1.264],[0.78,0.021],[2.506,-0.474],[-0.226,-0.683],[-0.433,0.177],[-2.119,0.466],[-0.368,-1.085],[-0.662,0.687],[-1.523,-1.685],[-0.507,0.008],[-1.014,0.16],[-0.496,-0.533],[0.424,-0.087],[0.487,-0.001],[6.269,-0.015],[0.076,1.347],[0.569,0.015],[0.002,2.241]],"o":[[0.385,-13.023],[0.003,-2.145],[3.527,0.6],[1.032,0.576],[1.81,1.253],[-0.03,3.992],[-0.154,1.689],[0.466,3.184],[-0.879,0.469],[-1.173,0.866],[0.07,0.939],[-0.437,0.691],[0.8,0.765],[0.432,-0.344],[0.771,0.481],[-0.212,1.426],[-0.38,0.702],[-2.678,-0.072],[-0.557,0.105],[0.216,0.653],[2.103,-0.862],[0.929,-0.205],[0.303,0.893],[1.536,-1.596],[0.368,0.407],[1.035,-0.016],[0.931,-0.146],[0.353,0.379],[-0.479,0.098],[-6.269,0.012],[-1.103,0.003],[-0.03,-0.536],[-2.282,-0.059],[-0.003,-3.258]],"v":[[204.671,15.723],[204.95,-23.353],[207.264,-25.267],[217.63,-22.621],[220.707,-20.861],[223.284,-15.63],[223.114,-3.651],[223.496,1.488],[220.757,7.082],[218.288,8.702],[216.483,12.209],[215.844,14.902],[215.53,17.086],[218.685,17.116],[220.054,16.197],[220.874,18.443],[219.425,22.461],[217.618,23.578],[210.373,25.837],[209.152,27.06],[210.73,27.133],[217.152,26.633],[219.219,27.829],[220.788,28.032],[224.502,28.151],[225.833,28.665],[228.934,28.562],[230.791,29.504],[230.522,30.23],[229.063,30.417],[210.255,30.433],[208.197,28.9],[207.312,28.192],[204.672,25.497]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.838,2.381],[3.432,-3.193]],"o":[[-4.22,0.393],[3.429,1.285]],"v":[[193.904,28.021],[182.094,30.104]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.396,-0.26],[0.313,-0.301],[1.765,-0.225],[1.859,-1.23],[1.543,0.143],[0.004,1.062],[2.215,-1.2],[2.474,-1.338],[1.226,-0.181],[0.265,0.47],[-0.291,0.316],[-0.831,0.845],[1.795,0.468],[0.093,0.03],[0.087,0.553],[-0.353,0.247],[-2.505,0.776],[-2.4,0.262],[-0.578,0.125],[-0.095,0.38],[0.292,0.135],[-0.517,0.501],[1.42,0.31],[0.793,1.264],[-1.09,0.257],[-1.72,-0.473],[-0.397,1.867],[-1.354,-0.637],[-0.927,-0.563],[-0.684,0.934],[-1.752,0.151],[-0.01,0.581],[1.368,7.594],[0.625,0.425],[1.904,-1.093],[0.397,0.776],[0.05,0.586],[0.623,0.297],[0.543,-0.396],[0.269,-0.717],[0.476,0.108],[0.051,0.329],[0.983,-0.752],[1.009,0.112],[-0.452,1.071],[0.267,0.179],[0.259,-0.125],[3.327,-0.804],[0.341,0.016],[0.265,0.522],[-0.303,0.427],[-3.403,0.994],[-0.2,0.429],[0.673,-0.027],[1.65,-0.613],[0.11,2.311],[0.031,0.193],[0.641,0.134],[0.18,-0.401],[0.601,0.022],[0.247,-0.974],[1.323,0.389],[1.399,0.456],[-1.649,2.174],[-0.409,-0.762],[0.003,-0.649],[-0.651,-0.529],[-0.206,1.032],[-3.482,0.466],[-1.147,-0.673],[-0.028,-1.422],[-1.82,-0.151],[-0.341,0.289],[-0.423,-1.05],[0.221,-0.816],[-0.695,-0.776],[-0.386,0.287],[0.28,0.298],[-0.26,0.63],[-0.579,0.051],[-1.404,-1.028],[-0.236,0.34],[0.261,0.278],[-0.68,1.021],[-0.815,-0.183],[-0.8,-1.213],[-0.802,1.023],[-0.098,0.171],[-1.495,-1.744],[-0.909,0.631],[-0.63,-0.609],[0.411,-0.668],[1.131,-0.325],[0.762,-0.196],[-1.675,0.562],[-1.425,-0.017],[-0.056,-0.535],[-0.049,-5.179],[0.121,-2.133],[0.394,-2.385],[0.11,-0.271],[-1.441,-1.498],[0.473,-0.46],[-0.576,-0.351],[0.108,-0.776],[-0.132,-1.023],[0.912,0.468],[1.102,-1.484]],"o":[[-0.378,-0.308],[-1.364,1.311],[-2.207,0.281],[-1.11,0.734],[-1.08,-0.1],[-0.008,-2.427],[-2.473,1.34],[-1.099,0.594],[-0.42,0.062],[-0.261,-0.463],[0.803,-0.871],[1.333,-1.355],[-0.095,-0.025],[-0.474,-0.152],[-0.079,-0.503],[2.176,-1.524],[2.326,-0.721],[0.586,-0.064],[0.337,-0.073],[0.127,-0.511],[-0.748,-0.346],[1.03,-1],[-1.319,-0.288],[-0.538,-0.858],[1.931,-0.455],[1.567,0.43],[0.186,-0.872],[0.98,0.461],[1.04,0.632],[0.959,-1.311],[0.707,-0.061],[0.138,-7.632],[-0.092,-0.513],[-0.772,2.876],[-0.798,0.458],[-0.282,-0.552],[-0.049,-0.565],[-0.701,-0.335],[-0.604,0.441],[-0.145,0.385],[-0.433,-0.098],[-0.195,-1.264],[-0.962,0.736],[-0.81,-0.09],[0.097,-0.231],[-0.31,-0.208],[-3.056,1.469],[-0.331,0.08],[-0.539,-0.026],[-0.278,-0.548],[2.095,-2.954],[0.266,-0.078],[-0.454,-0.677],[-1.805,0.072],[-2.158,0.803],[-0.009,-0.197],[-0.072,-0.452],[-0.507,-0.106],[-0.352,0.787],[-0.91,-0.034],[-0.326,1.282],[-1.415,-0.416],[-2.625,-0.856],[0.486,-0.641],[0.31,0.578],[-0.003,0.84],[0.807,0.656],[0.659,-3.302],[1.191,-0.159],[0.882,0.518],[1.199,-1.689],[0.462,0.038],[0.971,-0.822],[0.302,0.748],[-0.255,0.94],[0.282,0.315],[0.465,-0.346],[-0.379,-0.403],[0.296,-0.717],[1.57,-0.138],[0.27,0.198],[0.288,-0.416],[-0.448,-0.477],[0.614,-0.922],[1.347,0.303],[0.702,1.065],[0.121,-0.154],[1.172,-2.056],[0.615,0.717],[0.968,-0.672],[0.63,0.609],[-0.624,1.013],[-0.556,0.16],[1.008,1.059],[1.305,-0.438],[0.902,0.011],[0.544,5.17],[0.02,2.124],[-0.136,2.409],[-0.048,0.292],[-0.48,1.186],[0.395,0.411],[-0.341,0.332],[0.794,0.484],[-0.147,1.056],[0.079,0.608],[-2.311,-1.187],[-0.396,0.26]],"v":[[192.193,32.797],[191.126,32.87],[186.249,34.788],[180.227,37.071],[176.435,38.492],[174.996,36.947],[172.558,35.628],[165.142,39.651],[161.628,40.759],[160.417,40.466],[160.775,39.274],[163.256,36.729],[162.713,34.585],[162.423,34.529],[161.324,33.672],[162.077,32.661],[169.25,29.572],[176.37,28.335],[178.113,28.011],[178.932,27.47],[178.287,26.856],[178.206,25.661],[177.671,23.866],[174.263,22.052],[174.87,20.279],[180.692,20.003],[183.062,19.012],[187.199,18.617],[190.05,20.186],[192.632,19.684],[196.402,17.106],[197.23,15.914],[196.65,-6.957],[195.979,-8.467],[190.425,-4.943],[188.562,-6.253],[188.343,-8],[187.992,-9.631],[186.153,-8.959],[184.821,-7.217],[183.979,-6.554],[183.606,-7.426],[181.881,-8.302],[178.958,-7.797],[177.895,-9.214],[177.869,-9.874],[177.087,-9.666],[167.685,-5.828],[166.657,-5.742],[165.203,-6.286],[165.709,-7.747],[174.164,-13.365],[174.973,-13.777],[173.162,-14.241],[168.085,-12.847],[164.644,-15.123],[164.633,-15.714],[164.228,-16.982],[163.415,-16.075],[161.731,-15.512],[160.001,-14.327],[157.523,-13.028],[153.213,-14.049],[150.901,-21.568],[152.719,-21.351],[153.085,-19.479],[154.039,-17.398],[155.723,-18.041],[159.869,-21.776],[163.289,-21.427],[165.124,-19.162],[169.686,-21.18],[170.824,-21.812],[172.849,-21.215],[173.056,-18.906],[173.563,-16.259],[174.607,-16.02],[174.491,-17.009],[173.983,-18.434],[175.5,-19.071],[180.041,-18.384],[180.985,-18.45],[180.663,-19.481],[179.838,-21.139],[182.104,-21.514],[185.34,-19.396],[187.878,-19.438],[188.184,-19.944],[190.859,-20.264],[193.019,-19.794],[195.363,-19.229],[195.377,-17.18],[192.68,-15.229],[190.798,-14.742],[194.089,-13.278],[198.344,-13.556],[199.013,-12.175],[199.253,3.361],[199.586,9.708],[198.94,16.91],[198.746,17.775],[198.351,21.475],[197.598,23.095],[197.514,24.175],[198.156,26.107],[198.653,29.158],[197.798,30.134],[193.382,32.016]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.631,-0.077],[1.009,-0.224],[0.032,-0.811],[-0.64,-0.203],[-1.85,-0.232],[-0.727,0.778],[1.194,0.461]],"o":[[-0.954,-0.098],[-0.625,0.139],[-0.03,0.755],[1.784,0.566],[1.005,0.126],[0.879,-0.941],[-1.432,-0.552]],"v":[[-62.362,124.683],[-65.34,124.994],[-66.726,126.062],[-65.508,127.351],[-60.04,128.508],[-57.367,127.534],[-57.795,125.396]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.191,0.002],[-0.042,1.398],[0.021,2.667],[1.675,-0.017],[3.56,0.552],[-0.027,0.528],[-0.367,0.044],[-3.198,-0.12],[-0.598,1.961],[1.488,-1.503],[0.55,0.197],[3.329,0.22],[0.396,0.037],[-0.864,0.055],[-1.226,0.101],[-1.663,1.339],[-1.593,0.475],[0.182,1.72],[-0.098,0.83],[-0.178,1.252],[0.794,0.196],[1.595,1.59],[-0.208,1.645],[0.868,0.149],[0.315,-0.731],[0.884,-0.129],[0.454,0.496],[0.926,-0.06],[0.395,1.18],[0.599,0.805],[-0.421,0.344],[0.275,1.247],[-0.212,1.877],[0.063,2.26],[0.123,3.595],[-0.752,2.026],[-0.529,-0.007],[-0.047,-0.426],[-0.037,-1.132],[-1.899,-0.035],[-1.564,0.835],[-1.32,-0.115],[-0.059,1.23],[1.012,1.758],[-0.099,-2.798],[0.087,-1.274],[1.275,0.081],[1.332,-0.01],[-0.053,-0.655],[0.892,-0.368],[0.368,-0.319],[0.858,0.065],[0.417,0.59],[0.881,-0.247],[-0.191,-0.781],[-0.348,-2.329],[1.69,-0.493],[0.003,-0.176],[-0.255,-2.608],[-0.447,-0.075],[-0.15,0.349],[-1.181,-0.539],[-0.082,1.034],[-2.406,-0.465],[-0.244,-0.03],[-1.293,0.136],[-0.57,-0.412],[-0.651,0.223],[-0.439,-1.095],[-1.627,0.584],[-1.646,-0.305],[0.221,-1.681],[0.667,-0.622],[-0.089,-0.736],[-0.394,-1.011],[1.655,-0.192],[1.133,-0.044],[0.918,-0.884],[-0.649,-0.393],[-0.852,0.031],[-3.199,0.116],[-1.181,-0.152],[-1.899,0.359],[-1.564,0.051],[-3.875,-0.136],[-0.102,-0.038],[-0.176,0.003],[-0.907,-0.772],[0.736,-0.051],[1.203,-0.856],[0.828,-0.029],[2.267,-0.35],[0.012,-0.129],[1.017,-0.15],[1.588,-0.347],[0.163,-0.613],[-0.45,-0.268],[-0.334,-0.21],[0.814,-1.728],[0.545,-0.202],[-1.227,-0.959],[-1.066,-0.682],[-1.163,-0.47],[0.271,-1.596],[-0.003,-0.139],[0.001,-0.259],[0.077,-0.328],[2.498,0.915],[0.432,0.229],[0.327,-0.242],[0.776,-1.63],[0.081,-0.065],[0.171,-1.296],[0.877,-0.41],[0.44,-0.307],[0.298,-0.104],[1.775,-2.333],[0.818,0.451],[1.811,-0.224],[1.494,-0.441]],"o":[[-1.495,-0.656],[0.081,-2.665],[-0.013,-1.656],[-3.61,0.037],[-0.362,-0.056],[0.026,-0.51],[3.184,-0.385],[2.003,0.075],[-1.96,-0.902],[-0.421,0.425],[-3.234,-1.161],[-0.241,-0.016],[0.625,-1.025],[1.23,-0.079],[2.019,-0.166],[1.254,-1.01],[1.448,-0.432],[-0.086,-0.81],[0.715,-0.16],[0.141,-0.994],[0.706,-2.23],[-1.081,-1.077],[0.112,-0.887],[-0.974,-0.168],[-0.279,0.648],[-0.685,0.1],[-0.681,-0.745],[-1.557,0.1],[-0.293,-0.875],[-0.474,-0.637],[1.179,-0.964],[-0.429,-1.944],[0.257,-2.279],[-0.101,-3.596],[-0.07,-2.062],[0.145,-0.391],[0.629,0.008],[0.124,1.123],[0.063,1.913],[1.679,0.031],[1.218,-0.65],[1.395,0.122],[0.091,-1.916],[2.872,0.086],[0.045,1.269],[-0.812,1.015],[-1.327,-0.084],[-0.51,0.004],[0.104,1.27],[-0.441,0.182],[-0.546,0.473],[-0.793,-0.06],[-0.479,-0.676],[-0.802,0.225],[0.566,2.316],[0.162,1.084],[-0.124,0.036],[-0.045,2.611],[0.037,0.379],[0.535,0.09],[0.411,-0.953],[1.311,0.599],[0.189,-2.386],[0.241,0.047],[1.033,1.21],[0.598,-0.063],[0.588,0.425],[1.075,-0.367],[0.525,1.31],[1.533,-0.55],[1.405,0.261],[-0.628,0.104],[-0.59,0.551],[0.132,1.086],[0.596,1.53],[-1.122,0.13],[-1.205,0.047],[-0.527,0.508],[0.757,0.459],[3.199,-0.117],[1.157,-0.364],[1.856,0.95],[1.568,0.059],[3.876,-0.126],[0.102,0.038],[0.176,-0.003],[0.907,0.773],[-0.736,0.053],[-1.362,0.094],[-0.828,0.029],[-2.42,-0.534],[-0.163,0.025],[-0.138,1.527],[-1.605,0.237],[-0.78,0.17],[-0.156,0.584],[0.339,0.202],[1.691,1.062],[-0.55,0.19],[-1.438,0.532],[0.993,0.776],[-0.59,0.411],[1.191,0.481],[0.003,0.139],[-0.002,0.259],[-0.138,0.313],[-0.615,2.613],[-0.459,-0.168],[-0.373,-0.197],[-1.315,0.973],[-0.081,0.065],[-1.39,0.118],[-0.129,0.983],[-0.479,0.224],[-0.298,0.104],[-2.727,1.365],[-0.659,0.621],[-1.513,-0.834],[-1.495,-0.419],[-0.191,-0.002]],"v":[[-75.728,158.727],[-77.219,155.417],[-77.186,147.417],[-79.217,145.421],[-89.962,144.551],[-90.887,144.071],[-89.912,143.659],[-80.327,143.124],[-76.391,140.671],[-80.308,141.352],[-81.801,141.747],[-91.75,140.704],[-92.628,140.623],[-90.188,139.507],[-86.487,139.466],[-80.989,137.364],[-76.678,134.979],[-74.49,132.191],[-74.226,129.705],[-72.265,128.837],[-73.662,127.339],[-75.255,121.697],[-76.91,117.765],[-78.144,116.235],[-79.708,117.443],[-80.417,119.346],[-81.603,117.821],[-84.11,116.734],[-86.58,114.707],[-87.545,112.106],[-86.928,110.457],[-85.882,106.973],[-85.761,101.244],[-85.753,94.472],[-85.837,83.678],[-85.641,77.533],[-85.086,76.447],[-84.48,77.63],[-84.319,81.021],[-81.819,83.497],[-76.922,82.72],[-72.998,82.269],[-71.07,80.492],[-71.87,74.899],[-67.789,78.785],[-68.027,82.605],[-71.171,83.839],[-75.166,83.828],[-76.245,84.538],[-77.894,86.449],[-79.093,87.286],[-80.312,88.951],[-81.31,87.138],[-83.205,86.031],[-84.478,87.827],[-83.538,94.839],[-84.279,97.451],[-84.524,97.956],[-84.479,105.789],[-83.795,106.668],[-83.045,105.918],[-80.907,104.782],[-79.28,103.57],[-76.443,101.475],[-75.71,101.568],[-71.987,102.365],[-70.386,102.585],[-68.392,102.452],[-66.16,103.459],[-63.312,104.714],[-58.334,104.637],[-55.449,109.828],[-57.142,109.426],[-57.583,111.523],[-56.606,114.616],[-57.789,116.601],[-61.186,116.718],[-64.447,117.88],[-64.306,119.139],[-61.892,119.674],[-52.296,119.325],[-48.782,119.164],[-43.126,119.349],[-38.424,119.509],[-26.799,119.484],[-26.493,119.597],[-25.964,119.586],[-23.242,121.904],[-25.449,122.063],[-29.422,122.893],[-31.905,122.98],[-38.68,124.17],[-39.111,124.51],[-41.404,125.923],[-46.177,126.917],[-47.231,128.383],[-46.571,129.573],[-45.546,130.166],[-44.639,133.058],[-46.288,133.629],[-46.645,135.764],[-43.462,137.828],[-43.432,139.024],[-41.437,141.816],[-41.429,142.232],[-41.434,143.01],[-41.839,143.952],[-44.948,145.657],[-46.291,145.062],[-47.409,144.96],[-51.203,148.07],[-51.447,148.263],[-53.733,150.523],[-55.21,152.524],[-56.537,153.429],[-57.429,153.741],[-63.635,159.844],[-65.77,160.049],[-70.671,158.73],[-75.155,158.732]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-22.33,227.389],[-22.401,227.337],[-22.414,227.419]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.745,0.121],[1.652,-1.212],[-1.054,-0.512],[-1.686,0.01],[-1.553,0.761],[0.791,0.749]],"o":[[-1.976,0.192],[-0.873,0.64],[1.6,0.776],[1.635,-0.01],[1.033,-0.507],[-1.345,-1.274]],"v":[[-23.134,221.593],[-28.694,223.341],[-28.539,225.067],[-23.495,225.971],[-18.597,225.074],[-18.401,223.325]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.564,-0.122],[-1.078,0.083],[-0.209,0.938],[0.868,0.622],[0.133,0.063],[3.861,-1.703],[-0.289,-1.096],[-0.829,0.043]],"o":[[1.084,0],[0.883,-0.068],[0.232,-1.041],[-0.119,-0.085],[-3.93,-1.862],[-0.846,0.373],[0.261,0.992],[2.555,-0.132]],"v":[[7.722,207.961],[10.973,207.941],[13.494,207.506],[11.491,205.219],[11.099,205.014],[-0.605,205.191],[-2.067,207.321],[0.054,208.236]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.517,0.454],[-1.007,-0.225],[-3.498,0.137],[-0.109,0.44],[0.306,0.206],[2.107,-0.167],[0.989,0.193],[0.697,0.774],[-0.782,0.022],[-3.011,-0.817],[-0.279,-0.41],[-2.681,0.109],[-13.128,-0.091],[-4.869,-0.388],[-1.502,0.956],[-3.29,-0.499],[-1.664,-1.391],[0.178,-0.43],[0.358,-0.003],[0.424,0.104],[1.285,0.489],[2.228,-1.282],[2.435,0.384],[4.065,-0.994],[-0.043,-0.066],[0.259,-0.803],[0.671,-0.183],[1.394,0.453],[2.167,0.592],[-1.014,1.647],[0.36,-0.057],[1.155,-1.285],[-1.358,-0.659],[-0.951,0.451],[-0.913,-0.053],[-4.439,-0.149],[-0.355,-0.107],[0.243,-0.053],[3.284,0.841],[2.601,-0.15],[3.184,-0.323],[3.543,0.013],[1.079,0.646],[0.185,-0.518],[-0.374,-0.069],[-1.589,0.004],[-4.469,-0.332],[-4.629,0.192],[-3.975,-0.315],[-0.134,-0.13],[-1.717,0.196],[-0.163,-0.663],[0.358,-0.235],[0.594,0.356],[3.241,-0.271],[0.688,0.025],[0.465,-0.451],[1.383,1.167],[0.932,-0.056],[1.899,-0.805],[0.343,-0.19],[-0.112,-0.413],[-0.285,-0.022],[-2.557,-0.083],[-5.345,0.545],[-5.358,-0.053],[-4.944,0.182],[-2.381,-0.112],[-2.931,-0.349],[-3.163,0.061],[-0.383,-0.345],[0.902,-0.45],[2.732,-5.114],[2.237,-0.083],[7.096,0.273],[2.291,-1.798],[1.036,-1.561],[1.385,0.141],[1.369,0],[-0.942,-0.053],[-1.962,0.167],[-2.695,-0.226],[-4.191,-0.112],[-0.379,-1.545],[-0.827,-1.009],[0.244,-0.02],[0.395,0],[4.347,-0.005],[1.332,-0.19],[1.425,2.002],[0.595,0.003],[1.778,0.021],[4.253,1.2],[2.407,0.338],[0.055,1.162],[-1.689,1.228],[0.971,0.786],[1.487,0.873],[-0.043,0.59],[-0.518,0.127],[-1.724,1.009],[-1.803,-0.164],[-3.011,0.002],[-1.578,1.2],[-0.494,0.01],[-0.785,0.071],[0.023,0.621],[0.504,0.119],[2.49,-0.279],[0.128,0.52],[-2.353,1.015],[1.939,-0.365],[0.938,0.007],[0.282,0.457],[1.058,-0.582],[0.2,0.084],[1.271,-0.945],[0.238,0.016],[4.886,0.62],[1.629,0.996],[-0.149,0.556],[-0.427,0.001],[-5.862,-0.652],[-2.643,0.165],[-3.634,0.213],[-2.59,0.033],[-0.531,0.383],[-1.671,-0.002],[-5.033,0.054],[-1.867,-0.182],[-0.087,0.502],[0.461,0.082],[2.068,0.057],[5.384,0.181],[5.203,0.427],[1.724,0.12],[3.545,0.458],[0.682,-0.091],[0.617,0.231],[3.959,-0.024],[2.742,0.011],[0.985,0.018],[0.726,0.46],[1.184,-0.247],[0.493,0.222],[2.017,-0.048],[0.576,0.86],[1.081,-0.073],[0.284,1.331],[-2.613,0.049],[-2.025,0.027],[-0.487,0.49],[1.49,-0.141],[6.464,0.312],[2.203,-0.285],[0.236,0.035],[0.111,0.976],[-0.947,0.732],[-0.343,-0.244],[-1.164,0.519],[-1.487,-2.16],[-0.505,-0.008],[-4.53,0.353],[-0.423,0.404],[0.867,0.076],[0.108,1.1],[-0.93,-0.029],[-4.827,-0.69],[-3.627,-0.045],[0.401,0.016],[2.723,0.535],[4.034,0.582],[4.717,-0.457],[-0.013,-0.983],[0.056,-0.101],[2.126,-0.369],[0.653,0.665],[1.855,-0.037],[0.524,-0.128],[0.327,0.43],[-0.213,0.348],[-1.428,0.982],[-0.766,-0.409],[0.262,-0.135],[-0.206,-0.662],[-0.456,0.144],[-1.651,-0.818],[-1.144,-0.283],[-0.298,0.465],[0.31,0.33]],"o":[[0.576,-1.026],[3.438,0.769],[0.367,-0.014],[0.109,-0.441],[-1.911,-1.289],[-0.972,0.077],[-0.562,-1.119],[0.654,-0.673],[3.051,-0.085],[0.448,0.121],[1.591,2.341],[13.121,-0.535],[4.881,0.034],[1.638,0.131],[2.927,-1.863],[2.035,0.309],[0.26,0.217],[-0.144,0.35],[-0.439,0.004],[-1.342,-0.33],[-2.535,-0.964],[-2.059,1.185],[-4.055,-0.64],[0,0.2],[0.36,0.557],[-0.281,0.872],[-1.437,0.392],[-2.149,-0.699],[-0.88,-0.24],[0.347,-0.564],[-1.483,0.236],[1.684,0.404],[0.883,0.428],[0.898,-0.426],[4.424,0.256],[0.372,0.012],[0,0.507],[-3.126,0.68],[-2.578,-0.66],[-3.195,0.184],[-3.549,0.36],[-1.192,-0.004],[-0.369,-0.221],[-0.239,0.67],[1.551,0.286],[4.494,-0.013],[4.634,0.344],[4,-0.166],[0.246,0.02],[1.421,1.382],[0.483,-0.055],[0.087,0.353],[-0.528,0.347],[-3.024,-1.812],[-0.688,0.058],[-0.639,-0.023],[-1.282,1.243],[-0.745,-0.629],[-1.958,0.117],[-0.363,0.154],[-0.293,0.162],[0.095,0.352],[2.554,0.199],[5.375,0.173],[5.387,-0.55],[4.916,0.048],[2.358,-0.087],[2.977,0.141],[3.142,0.374],[0.331,-0.006],[-0.652,0.783],[-5.159,2.576],[-0.965,1.806],[-7.107,0.265],[-2.918,-0.112],[-1.434,1.126],[-0.73,1.101],[-0.998,-0.101],[0.968,1.069],[1.982,0.112],[2.741,-0.233],[4.198,0.352],[1.618,0.043],[0.256,1.042],[0.165,0.202],[-0.393,0.031],[-4.347,0.002],[-1.331,0.001],[-1.904,0.272],[-0.368,-0.516],[-1.778,-0.008],[-4.306,-0.052],[-2.32,-0.655],[-1.2,-0.168],[-0.091,-1.931],[1.189,-0.865],[-1.354,-1.096],[-0.419,-0.246],[0.047,-0.638],[1.941,-0.475],[1.531,-0.896],[2.994,0.272],[1.91,-0.001],[0.424,-0.322],[0.79,-0.016],[0.615,-0.055],[-0.031,-0.818],[-2.408,-0.57],[-0.324,0.036],[2.358,-0.683],[-0.896,-0.886],[-0.934,0.176],[-0.51,-0.004],[-0.776,-1.257],[-0.256,0.14],[-1.733,-0.729],[-0.177,0.131],[-4.877,-0.331],[-1.905,-0.242],[-0.393,-0.241],[0.152,-0.569],[5.861,-0.01],[2.677,0.298],[3.632,-0.227],[2.608,-0.153],[0.643,-0.008],[1.486,-1.071],[5.033,0.006],[1.866,-0.02],[0.365,0.036],[0.097,-0.559],[-2.043,-0.364],[-5.379,-0.15],[-5.212,-0.175],[-1.675,-0.137],[-3.54,-0.247],[-0.669,-0.086],[-0.643,0.086],[-3.848,-1.44],[-2.742,0.017],[-0.985,-0.004],[-0.796,-0.015],[-1.165,-0.737],[-0.477,0.099],[-1.927,-0.868],[-0.969,0.023],[-0.542,-0.809],[-1.556,0.106],[-0.533,-2.5],[2.024,-0.038],[0.463,-0.006],[-1.458,-1.052],[-6.449,0.612],[-2.194,-0.106],[-0.245,0.032],[-0.868,-0.129],[-0.125,-1.099],[0.359,-0.277],[1.081,0.768],[2.176,-0.97],[0.316,0.458],[4.541,0.068],[0.466,-0.036],[-0.874,0],[-0.934,-0.082],[-0.089,-0.908],[4.829,0.152],[3.35,0.479],[-0.526,-0.713],[-2.808,-0.109],[-4.056,-0.797],[-4.632,-1.091],[-0.604,0.059],[-0.136,0.056],[-1.412,2.53],[-0.889,0.154],[-1.976,-2.012],[-0.518,0.01],[-0.482,0.118],[-0.347,-0.457],[0.915,-1.494],[0.625,-0.43],[-0.263,0.133],[-0.458,0.236],[0.235,0.755],[1.652,-0.522],[1.043,0.517],[0.45,0.111],[0.348,-0.542],[-0.469,-0.499]],"v":[[-90.556,177.184],[-88.121,176.441],[-77.689,177.085],[-76.693,176.61],[-77.352,175.715],[-83.518,174.891],[-86.433,175.081],[-89.034,174.064],[-86.677,173.387],[-77.544,173.869],[-76.451,174.524],[-69.815,177.714],[-30.442,177.187],[-15.813,177.749],[-11.159,176.776],[-1.556,175.198],[4.145,177.829],[4.595,178.651],[3.765,179.178],[2.449,179.056],[-1.55,177.972],[-8.649,178.773],[-15.124,179.722],[-27.431,180.183],[-27.425,180.565],[-26.154,181.999],[-28.127,182.496],[-32.34,182.228],[-38.949,181.607],[-40.175,179.835],[-40.841,179.249],[-44.773,181.381],[-40.436,183.244],[-37.743,183.384],[-34.979,183.433],[-21.744,184.682],[-20.652,184.999],[-21.282,185.558],[-30.766,186.189],[-38.54,186.73],[-48.111,187.504],[-58.741,187.495],[-62.185,186.865],[-63.351,186.923],[-62.482,187.579],[-57.789,188.144],[-44.311,188.202],[-30.422,188.633],[-18.479,188.981],[-17.755,189.042],[-12.928,189.952],[-11.601,190.639],[-11.733,191.751],[-13.542,192.058],[-23.06,191.01],[-25.13,191.079],[-26.686,191.724],[-30.852,191.89],[-33.278,191.07],[-39.138,191.576],[-40.221,192.05],[-40.77,192.823],[-40.013,193.134],[-32.351,193.705],[-16.229,193.945],[-0.13,193.837],[14.625,194.614],[21.703,194.493],[30.503,195.566],[39.944,196.126],[41.02,196.377],[38.709,198.278],[27.016,209.818],[21.773,212.959],[0.461,212.562],[-7.059,214.724],[-11.045,218.355],[-14.224,219.817],[-17.608,219.797],[-14.826,221.05],[-8.921,220.728],[-0.826,221.394],[11.754,221.621],[17.39,225.61],[17.91,228.849],[17.435,229.243],[16.251,229.279],[3.211,229.282],[-0.772,229.503],[-6.107,228.237],[-7.77,227.8],[-13.104,227.772],[-25.975,226.851],[-33.192,226.358],[-34.825,224.619],[-32.935,219.78],[-33.089,217.255],[-37.527,214.595],[-38.467,213.571],[-37.32,212.563],[-31.932,210.193],[-26.763,209.228],[-17.766,209.775],[-12.445,208.327],[-11.03,207.995],[-8.661,207.945],[-7.045,207.272],[-8.493,206.951],[-15.804,206.275],[-16.667,205.526],[-9.398,204.495],[-14.109,203.612],[-16.909,203.805],[-18.23,203.275],[-21.029,202.821],[-21.848,203.102],[-26.102,204.234],[-26.818,204.368],[-41.448,204.429],[-46.73,202.666],[-47.422,201.686],[-46.311,201.189],[-28.727,201.198],[-20.798,200.61],[-9.881,200.25],[-2.126,200.576],[-0.247,200.288],[4.588,199.381],[19.688,199.356],[25.283,199.365],[26.278,198.977],[25.42,198.172],[19.242,197.598],[3.113,197.888],[-12.52,197.32],[-17.461,197.909],[-28.11,197.622],[-30.168,197.763],[-32.072,197.72],[-43.871,196.807],[-52.097,196.822],[-55.052,196.71],[-57.289,196.136],[-60.871,196.29],[-62.297,196.486],[-68.278,195.843],[-70.521,194.755],[-72.899,193.201],[-75.223,191.16],[-72.833,188.14],[-66.758,188.11],[-65.287,187.793],[-69.827,187.299],[-89.186,187.591],[-95.806,187.675],[-96.54,187.745],[-98.697,186.585],[-97.265,183.673],[-96.166,183.793],[-92.799,183.997],[-87.186,185.25],[-85.855,185.748],[-72.245,185.431],[-70.902,184.801],[-73.522,184.784],[-75.401,183.248],[-73.43,181.026],[-58.938,181.401],[-48.574,181.582],[-49.971,180.988],[-58.381,180.604],[-70.563,179.725],[-84.6,178.96],[-85.959,179.902],[-86.358,180.076],[-92.464,182.127],[-95.183,182.121],[-100.794,182.193],[-102.342,182.652],[-103.719,182.417],[-103.328,181.269],[-99.706,177.649],[-97.642,177.336],[-98.433,177.733],[-99.499,178.72],[-98.104,178.825],[-93.224,178.969],[-89.846,180.011],[-88.469,179.784],[-89.019,178.558]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.082,0.971],[0.222,0.8],[0.609,0.024],[0.217,-0.444],[-0.376,-1.005],[-0.957,0.151]],"o":[[-0.13,-0.741],[-0.147,-0.528],[-0.595,-0.024],[-0.485,0.992],[0.252,0.673],[0.985,-0.155]],"v":[[-93.791,-17.376],[-94.23,-19.755],[-95.392,-20.747],[-96.412,-19.819],[-96.481,-16.807],[-95.09,-15.377]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.799,1.802],[0.727,0.058],[-0.805,-2.24],[-0.044,-0.14],[-0.674,0.348]],"o":[[-0.895,-0.142],[-2.361,-0.189],[0.05,0.139],[0.206,0.653],[1.599,-0.825]],"v":[[-90.478,13.98],[-92.819,13.618],[-95.34,16.963],[-95.17,17.371],[-93.971,17.85]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.26,1.171],[0.035,0.292],[1.38,-0.798],[-0.169,-1.559],[-0.574,-0.333],[-0.425,0.411]],"o":[[0,-0.332],[-0.187,-1.571],[-1.455,0.841],[0.099,0.91],[0.578,0.335],[0.76,-0.734]],"v":[[-97.636,0.209],[-97.641,-0.715],[-100.093,-1.883],[-101.648,1.765],[-100.336,3.173],[-98.888,2.841]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.866,-0.09],[-0.323,0.814],[-0.43,1.463],[0.769,0.448],[0.539,-0.471],[1.138,-0.943],[-0.46,-0.988]],"o":[[0.899,0.073],[0.563,-1.418],[0.203,-0.691],[-0.842,-0.49],[-1.096,0.958],[-0.699,0.579],[0.445,0.955]],"v":[[-93.752,-9.848],[-91.838,-10.953],[-90.315,-15.273],[-90.79,-17.287],[-92.667,-16.532],[-95.171,-13.078],[-96.077,-10.791]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.309,0.736],[-1.312,0.038],[-0.003,1.074],[-1.38,0.043],[-0.956,0.369],[-0.349,-0.663],[-1.575,2.184],[1.063,4.118],[0.792,0.167],[0.013,1.115],[0.612,0.916],[-0.463,0.18],[-0.75,0.838],[0.699,0.71],[-0.238,1.008],[0.723,0.075],[0.638,-0.041],[0.291,0.185],[1.532,-0.024],[-0.675,1.052],[-0.585,0.593],[-1.207,1.102],[-0.213,1.359],[0.715,0.206],[-0.074,0.752],[-0.765,0.072],[-1.034,-0.048],[-0.303,1.454],[-0.546,-0.5],[-1.383,1.235],[-0.3,0.256],[-0.345,-0.906],[-0.106,-0.223],[-1.453,0.512],[0.314,1.112],[0.23,1.971],[1.418,0.111],[0.134,0.548],[0.111,0.475],[0.916,-0.829],[0.233,-1.032],[0.608,-0.134],[0.341,0.331],[0.769,0.17],[-0.02,-1.083],[0.806,-0.134],[0.556,0.745],[1.537,0.956],[-0.155,0.356],[-1.549,-0.037],[-0.467,0.137],[0.02,0.961],[0.891,0.101],[1.18,0.06],[0.269,0.854],[-0.705,0.444],[-0.322,0.115],[1.069,1.144],[-0.548,0.317],[-1.292,-0.486],[-2.3,1.97],[0.165,0.167],[-0.166,0.45],[-0.378,0.012],[-1.648,-0.971],[1.58,-1.341],[0.628,-1.679],[-0.723,0.005],[-1.431,0.226],[-1.669,-1.003],[1.792,-1.54],[1.004,-0.871],[0.962,1.139],[0.49,0.296],[0.94,-0.859],[-0.78,-0.352],[-0.023,-1.445],[-0.575,-0.28],[-0.32,0.263],[-1.524,-0.044],[-0.406,1.226],[-1.17,0.209],[-0.35,-0.429],[0.228,-0.393],[-0.37,-0.333],[-0.286,0.331],[-0.739,-0.344],[-0.905,-1.241],[0.387,-0.478],[1.333,-0.008],[0.166,-1.059],[2.062,-1.45],[0.244,-0.524],[-2.434,-1.866],[0.62,-1.517],[1.392,0.147],[0.466,-1.679],[0.825,-1.047],[0.262,-0.998],[-0.49,-0.457],[-0.557,0.344],[-1.53,-1.221],[-1.1,0.336],[-3.995,-0.029],[-0.165,-0.393],[0.271,-0.28],[0.869,0.103],[0.588,0.048],[-0.087,-1.094],[1.741,-0.228],[0.432,-0.086],[-0.93,-0.926],[1.084,-0.728],[0.528,-1.215],[0.662,-0.675],[-0.417,-0.703],[-0.765,0.237],[-0.293,-0.009],[-0.012,-0.378],[0.31,-0.033],[0.734,0.023],[-0.303,-0.869],[-1.019,-0.903],[-0.117,-2.255],[-0.008,-0.807],[0.295,-2.09],[0.706,-0.341],[-0.935,-1.054],[1.118,-3.64],[-0.795,-0.349],[-0.258,0.811],[0.258,0.886],[-1.278,0.685],[-0.676,-0.691],[-2.324,0.26],[-0.133,-0.314],[-0.106,-1.803],[-0.017,-4.088],[0.181,-0.61],[0.091,-1.916],[1.395,0.122],[1.218,-0.65],[1.679,0.031],[0.063,1.913],[0.124,1.123],[0.629,0.008],[0.145,-0.391],[-0.07,-2.062],[-0.101,-3.596],[0.257,-2.279],[-0.429,-1.944],[1.179,-0.964],[-0.474,-0.637],[-0.293,-0.875],[-1.557,0.1],[-0.681,-0.745],[-0.685,0.1],[-0.279,0.648],[-0.974,-0.168],[0.112,-0.887],[-1.081,-1.077],[0.706,-2.23],[-0.933,-1.056],[-0.086,-0.81],[1.448,-0.432],[1.254,-1.01],[2.019,-0.166],[1.23,-0.079],[0.625,-1.025],[-0.241,-0.016],[-3.234,-1.161],[-0.421,0.425],[-1.96,-0.902],[2.003,0.075],[3.184,-0.385],[0.026,-0.51],[-0.362,-0.056],[-3.61,0.037],[-0.013,-1.656],[0.081,-2.665],[-1.495,-0.656],[1.398,-2.363],[1.534,-0.152],[0.153,-0.463],[-0.374,-0.255],[-0.421,-0.248],[-1.026,-1.074],[1.78,1.529],[0.623,0.553],[0.654,-0.919],[0.531,0.477],[-0.628,0.503],[-0.794,1.081],[1.505,-0.985],[1.008,0.121],[1.005,-1.572],[3.342,3.813],[-0.669,2.131],[-0.232,1.705],[-1.238,0.361],[-0.511,0.885],[-1.187,0.533],[-0.637,0.458],[-0.487,-1.339],[-0.219,-0.549],[-0.813,-0.032],[-0.242,0.692],[-0.915,-0.581],[-1.001,1.425],[1.683,1.236],[0.549,1.294],[-1.317,-0.033],[-0.885,0.067],[-0.107,0.389],[0.291,0.197],[-0.047,1.842],[1.359,1.128],[-0.004,0.549],[1.01,0.978],[-0.023,0.126],[-1.219,2.097],[3.595,-0.436],[0.272,1.22],[1.411,-0.057],[0.382,0.096],[0.284,1.109],[-0.595,0.777],[-0.393,0.16],[0.122,1.558],[-0.466,0.297],[0.582,0.969],[0.388,0.795],[-1.183,-0.154],[-0.293,0.699],[0.613,0.29],[0.422,1.137],[1.744,-0.222],[4.014,0.962],[2.332,1.861],[1.07,-0.02],[0.843,1.93],[-1.844,0.598],[-0.338,0.067],[-1.5,0.613],[-2.66,-0.824],[-0.566,-0.004],[-1.261,-1.172],[-0.484,-0.616],[-0.433,0.193],[0.081,0.335],[-1.471,-0.097],[-0.607,-1.128],[-0.775,-0.324],[0.318,0.869],[-0.004,0.691],[-0.438,-0.052],[-1.549,-0.168],[-0.141,0.63],[0.58,0.35],[1.223,0.895],[2.08,1.131],[1.572,0.081],[1.9,0.469],[0.085,0.588],[-0.466,0.24],[-0.92,0.354],[-0.75,2.209],[-1.72,0.468],[0.867,0.828],[0.933,0.953],[-0.672,1.423],[-0.391,0.042],[-0.145,-0.302],[-0.165,-0.358],[-0.333,0.321],[-1.881,-0.019],[-0.371,1.421],[-0.459,-0.2],[-0.61,-0.323],[-1.2,0.706],[0.18,0.471],[1.579,1.31],[0.235,-0.38],[-0.27,-0.209],[-0.734,-1.059],[0.972,-0.059],[1.8,0.605],[1.17,-1.508],[0.864,0.218],[1.542,1.536],[0.506,-0.359],[-0.011,-0.419],[0.023,-0.54],[0.847,-0.33],[0.508,0.32],[1.041,-1.796],[0.459,0.334],[0.656,-1.804],[0.188,-0.454],[1.338,0.043],[0.555,1.374],[-0.887,0.887],[-0.451,0.522],[0.432,0.329],[0.186,-0.36],[1.135,-0.684],[0.46,0.958],[-1.7,0.768],[-2.549,-0.107],[-3.505,1.444],[-2.404,-0.459],[-1.384,-1.89],[-0.834,-0.227],[2.127,0.823],[1.867,0.712],[2.12,-0.766],[5.228,0.179],[0.295,0.024],[-0.91,2.196]],"o":[[1.257,-0.687],[0.976,-0.028],[0.004,-1.352],[0.986,-0.031],[1.165,-0.45],[1.267,2.405],[2.523,-3.498],[-0.178,-0.691],[-1.147,-0.242],[-0.011,-0.976],[-0.471,-0.705],[0.957,-0.373],[0.633,-0.707],[-0.653,-0.663],[0.189,-0.801],[-0.629,-0.065],[-0.44,0.028],[-1.389,-0.881],[-1.207,0.019],[0.449,-0.7],[0.82,-0.833],[-1.64,-0.107],[0.11,-0.699],[-0.554,-0.16],[0.081,-0.825],[1.028,-0.097],[1.437,0.066],[0.216,-1.038],[1.32,1.21],[0.294,-0.263],[0.69,-0.587],[0.087,0.23],[0.443,0.938],[1.2,-0.423],[-0.538,-1.905],[-0.134,-1.15],[-0.758,-0.059],[-0.115,-0.473],[-0.284,-1.214],[-0.812,0.735],[-0.102,0.45],[-0.536,0.118],[-0.533,-0.519],[-0.773,-0.171],[0.012,0.639],[-0.901,0.15],[-1.016,-1.362],[-0.454,-0.282],[0.545,-1.247],[0.483,0.012],[1.087,-0.32],[-0.021,-1.028],[-1.175,-0.133],[-0.882,-0.045],[-0.292,-0.929],[0.292,-0.184],[1.329,-0.473],[-0.498,-0.533],[1.07,-0.619],[2.301,0.865],[-0.183,-0.192],[-0.274,-0.278],[0.173,-0.468],[1.835,-0.059],[1.792,1.056],[-1.517,1.287],[-0.302,0.808],[1.429,-0.01],[1.827,-0.288],[2.074,1.246],[-1.008,0.866],[-1.134,0.983],[-0.38,-0.45],[-0.637,-0.385],[-0.638,0.583],[1.82,0.821],[0.01,0.634],[0.527,0.257],[1.19,-0.977],[1.37,0.039],[0.374,-1.13],[0.501,-0.089],[0.355,0.435],[-0.191,0.329],[0.465,0.42],[0.603,-0.697],[1.449,0.675],[0.37,0.507],[-0.804,0.993],[-1.155,0.007],[-0.371,2.371],[-0.456,0.321],[-1.373,2.945],[0.87,0.667],[-0.57,1.396],[-1.81,-0.191],[-0.366,1.319],[-0.607,0.77],[-0.167,0.635],[0.496,0.463],[2.137,-1.319],[0.925,0.738],[3.893,-1.187],[0.331,0.002],[0.181,0.43],[-0.64,0.662],[-0.587,-0.069],[-1.07,-0.087],[0.141,1.758],[-0.44,0.058],[-1.295,0.257],[0.979,0.974],[-1.077,0.723],[-0.375,0.863],[-0.509,0.519],[0.38,0.641],[0.276,-0.085],[0.306,0.01],[0.012,0.376],[-0.735,0.078],[-1.239,-0.039],[0.446,1.281],[1.459,1.292],[-0.448,0.712],[-1.177,1.642],[-0.109,0.769],[-1.246,0.603],[2.613,2.946],[-0.27,0.878],[0.822,0.361],[0.249,-0.784],[-0.409,-1.407],[0.758,-0.406],[1.542,1.576],[0.341,-0.038],[0.624,1.467],[0.241,4.086],[-0.181,0.61],[1.012,1.758],[-0.059,1.23],[-1.32,-0.115],[-1.564,0.835],[-1.899,-0.035],[-0.037,-1.132],[-0.047,-0.426],[-0.529,-0.007],[-0.752,2.026],[0.123,3.595],[0.063,2.26],[-0.212,1.877],[0.275,1.247],[-0.421,0.344],[0.599,0.805],[0.395,1.18],[0.926,-0.06],[0.454,0.496],[0.884,-0.129],[0.315,-0.731],[0.868,0.149],[-0.208,1.645],[1.595,1.59],[-1.256,0.534],[-0.098,0.83],[0.182,1.72],[-1.593,0.475],[-1.663,1.339],[-1.226,0.101],[-0.864,0.055],[0.396,0.037],[3.329,0.22],[0.55,0.197],[1.488,-1.503],[-0.598,1.961],[-3.198,-0.12],[-0.367,0.044],[-0.027,0.528],[3.56,0.552],[1.675,-0.017],[0.021,2.667],[-0.042,1.398],[-2.727,0.719],[-1.423,-0.606],[-0.381,0.038],[-0.163,0.495],[0.402,0.274],[1.213,0.714],[-0.57,2.422],[-0.632,-0.543],[-0.792,-0.704],[-0.55,0.772],[-0.681,-0.611],[0.874,-0.699],[-2.454,-0.169],[-0.228,-1.029],[-1.813,-0.218],[-1.582,-5.021],[-1.301,-1.484],[0.506,-1.612],[0.166,-1.222],[1.272,-0.371],[0.673,-1.166],[0.773,-0.347],[1.168,-0.839],[0.203,0.557],[0.272,0.68],[0.783,0.031],[0.405,-1.159],[1.456,0.925],[0.767,-1.092],[-1.149,-0.844],[-0.461,-1.085],[0.886,0.022],[0.337,-0.026],[0.112,-0.409],[-1.603,-1.083],[0.037,-1.462],[-0.412,-0.342],[0.008,-1.233],[-0.092,-0.089],[0.423,-2.37],[1.654,-2.847],[-1.29,0.156],[-0.26,-1.167],[-0.385,0.016],[-0.757,-0.191],[-0.263,-1.025],[0.261,-0.341],[1.314,-0.536],[-0.045,-0.576],[1.103,-0.702],[-0.457,-0.761],[-0.535,-1.095],[0.601,0.078],[0.311,-0.742],[-0.794,-0.377],[-0.96,2.257],[-4.138,0.527],[-2.893,-0.694],[-0.775,-0.618],[-2.192,0.04],[-0.764,-1.75],[0.325,-0.105],[1.274,1.078],[2.793,0.044],[0.278,0.54],[1.884,0.014],[0.57,0.529],[0.345,0.44],[0.459,-0.205],[-0.346,-1.438],[1.218,0.08],[0.487,0.905],[0.64,0.267],[-0.243,-0.665],[0.438,0.052],[0.512,1.925],[0.503,0.054],[0.097,-0.433],[-1.321,-0.797],[-1.775,-1.599],[-1.022,-1.344],[-1.918,-0.099],[-0.46,-0.114],[-0.09,-0.626],[0.876,-0.451],[2.425,-0.932],[0.582,-1.715],[1.196,-0.325],[-0.964,-0.921],[-1.167,-1.191],[0.146,-0.309],[0.429,-0.046],[0.17,0.355],[0.151,0.328],[1.64,-1.576],[0.94,0.009],[0.143,-0.548],[0.632,0.275],[1.35,0.715],[0.667,-0.392],[-0.788,-2.057],[-0.371,-0.308],[-0.316,0.511],[0.968,0.75],[0.544,0.784],[-2.018,0.123],[-1.531,-0.514],[-0.619,0.798],[-2.015,-0.509],[-0.381,-0.379],[-0.472,0.335],[0.014,0.542],[-0.035,0.817],[-0.792,0.308],[-0.708,-0.445],[-0.412,0.711],[-1.488,-1.085],[-0.168,0.463],[-0.525,1.271],[-1.34,-0.043],[-0.535,-1.326],[0.489,-0.489],[0.249,-0.288],[-0.436,-0.332],[-0.652,1.26],[-0.952,0.573],[-0.807,-1.682],[2.323,-1.05],[3.741,0.157],[2.419,-0.997],[2.075,0.396],[0.486,0.663],[-0.012,-1.603],[-1.897,-0.734],[-2.176,-0.83],[-4.912,1.775],[-0.296,-0.01],[-2.356,-0.195],[0.3,-0.724]],"v":[[-126.722,26.045],[-122.792,25.696],[-121.375,24.33],[-119.107,22.184],[-116.195,21.777],[-114.399,23.085],[-108.689,23.753],[-106.826,12.196],[-108.227,10.829],[-109.82,8.646],[-110.363,5.798],[-109.559,4.72],[-106.809,3.368],[-106.737,1.299],[-107.592,-1.079],[-108.63,-2.387],[-110.544,-2.325],[-111.84,-2.219],[-116.232,-2.931],[-117.07,-4.75],[-115.493,-6.699],[-112.568,-9.391],[-114.689,-11.205],[-116.075,-12.531],[-117.335,-13.531],[-115.753,-14.856],[-112.646,-14.879],[-109.939,-16.817],[-108.808,-17.048],[-105.703,-17.101],[-104.8,-17.866],[-103.231,-17.498],[-102.904,-16.834],[-100.688,-15.313],[-98.663,-18.423],[-99.838,-24.209],[-101.995,-26.45],[-102.934,-27.788],[-103.076,-29.257],[-105.084,-29.856],[-106.498,-27.148],[-106.906,-25.858],[-107.937,-26.798],[-109.733,-28.045],[-111.097,-27.126],[-111.991,-25.625],[-114.151,-26.614],[-117.303,-30.623],[-117.437,-31.681],[-114.58,-33.845],[-113.129,-34.076],[-111.739,-36.281],[-113.494,-37.743],[-117.028,-38.057],[-118.859,-39.277],[-117.846,-41.201],[-116.93,-41.685],[-116.242,-44.036],[-116.002,-45.142],[-112.674,-45.502],[-105.645,-45.879],[-106.153,-46.411],[-106.657,-47.397],[-105.623,-47.769],[-100.299,-46.862],[-99.983,-43.41],[-102.29,-38.534],[-101.127,-37.438],[-96.842,-37.599],[-91.525,-36.861],[-91.12,-32.847],[-94.121,-30.223],[-96.82,-30.443],[-98.075,-31.682],[-100.221,-32.249],[-100.147,-29.256],[-98.587,-25.529],[-97.749,-24.059],[-96.657,-24.619],[-92.575,-26.124],[-90.05,-27.92],[-87.711,-29.939],[-86.356,-29.54],[-86.496,-28.323],[-86.677,-27.263],[-85.586,-27.631],[-83.581,-27.872],[-80.277,-24.764],[-80.362,-23.269],[-83.458,-21.47],[-85.399,-19.856],[-88.66,-13.957],[-89.7,-12.543],[-88.416,-6.406],[-86.953,-3.752],[-90.011,-1.943],[-93.248,0.33],[-95.395,3.671],[-96.959,6.156],[-96.526,7.768],[-94.898,8.025],[-89.556,9.122],[-86.731,9.777],[-74.83,8.81],[-73.914,9.123],[-74.311,10.16],[-76.638,10.84],[-78.395,10.598],[-79.848,12.099],[-81.963,14.698],[-83.29,14.8],[-83.938,16.707],[-84.202,19.036],[-86.617,21.974],[-88.147,24.32],[-88.433,26.017],[-86.884,26.754],[-86.005,26.674],[-85.38,27.16],[-85.969,27.687],[-88.177,27.874],[-89.203,29.411],[-86.886,32.599],[-83.573,37.274],[-84.059,39.589],[-86.856,44.9],[-87.984,46.456],[-88.291,48.563],[-86.444,58.546],[-85.94,60.753],[-84.239,59.518],[-83.906,57.079],[-82.437,53.62],[-80.287,53.873],[-74.641,56.233],[-73.694,56.525],[-71.564,60.81],[-71.327,73.07],[-71.87,74.899],[-71.07,80.492],[-72.998,82.269],[-76.922,82.72],[-81.819,83.497],[-84.319,81.021],[-84.48,77.63],[-85.086,76.447],[-85.641,77.533],[-85.837,83.678],[-85.753,94.472],[-85.761,101.244],[-85.882,106.973],[-86.928,110.457],[-87.545,112.106],[-86.58,114.707],[-84.11,116.734],[-81.603,117.821],[-80.417,119.346],[-79.708,117.443],[-78.144,116.235],[-76.91,117.765],[-75.255,121.697],[-73.662,127.339],[-74.226,129.705],[-74.49,132.191],[-76.678,134.979],[-80.989,137.364],[-86.487,139.466],[-90.188,139.507],[-92.628,140.623],[-91.75,140.704],[-81.801,141.747],[-80.308,141.352],[-76.391,140.671],[-80.327,143.124],[-89.912,143.659],[-90.887,144.071],[-89.962,144.551],[-79.217,145.421],[-77.186,147.417],[-77.219,155.417],[-75.728,158.727],[-81.733,163.575],[-86.173,162.925],[-87.168,163.372],[-86.649,164.485],[-85.372,165.202],[-81.63,167.145],[-84.971,168.415],[-86.866,166.785],[-89.138,166.867],[-90.701,166.971],[-90.582,165.225],[-88.06,162.74],[-92.902,165.592],[-94.82,164.109],[-99.073,165.936],[-107.611,153.466],[-109.031,148.407],[-108.383,143.297],[-106.327,140.842],[-104.572,138.265],[-101.872,135.666],[-100.107,134.123],[-97.775,134.806],[-97.196,136.486],[-95.677,137.696],[-94.012,136.701],[-92.133,136.143],[-86.448,134.892],[-88.035,130.728],[-90.549,127.512],[-89.454,125.84],[-86.793,125.741],[-85.979,125.2],[-86.461,124.373],[-88.492,119.873],[-89.616,115.778],[-89.968,114.227],[-90.855,110.758],[-90.987,110.351],[-89.834,103.253],[-95.136,96.358],[-97.171,94.943],[-99.561,92.96],[-100.726,92.765],[-102.889,91.968],[-101.851,89.318],[-100.823,88.496],[-98.796,85.613],[-97.924,84.311],[-97.496,81.767],[-98.858,79.479],[-97.854,78.063],[-96.307,77.61],[-97.094,76.068],[-98.872,73.991],[-103.426,76.363],[-115.453,74.977],[-123.289,71.726],[-126.273,71.039],[-130.726,67.974],[-129.21,64.721],[-128.199,64.516],[-124.02,65.075],[-115.855,66.461],[-114.527,67.245],[-110.076,69.557],[-108.561,71.352],[-107.377,71.569],[-107.219,70.698],[-105.532,68.649],[-102.539,70.244],[-100.417,71.701],[-99.499,70.799],[-99.815,68.779],[-98.503,68.936],[-94.806,72.695],[-93.614,72.156],[-93.713,70.821],[-97.06,67.778],[-102.997,63.919],[-107.051,62.153],[-112.806,61.91],[-114.011,61.246],[-113.02,60.094],[-110.327,58.866],[-106.087,53.638],[-102.823,50.351],[-102.427,48.645],[-105.252,45.813],[-106.121,41.183],[-105.469,40.443],[-104.776,41.104],[-104.325,42.199],[-103.551,42.601],[-98.066,41.698],[-95.705,40.587],[-94.398,40.396],[-92.548,41.329],[-88.775,40.931],[-88.543,39.488],[-92.786,35.07],[-93.96,35.386],[-93.396,36.228],[-90.498,38.486],[-91.091,39.658],[-96.621,38.157],[-100.566,38.786],[-103.06,39.222],[-108.605,36.587],[-110.039,36.151],[-109.856,37.347],[-109.82,38.972],[-110.876,40.937],[-112.416,40.049],[-114.756,39.895],[-116.322,39.309],[-118.567,40.035],[-119.036,41.438],[-121.901,43.401],[-124.923,41.391],[-123.976,38.226],[-122.541,36.73],[-122.395,35.706],[-123.313,36.128],[-126.291,38.717],[-128.47,37.974],[-126.626,32.942],[-119.314,31.333],[-108.462,29.673],[-101.176,30.007],[-95.663,32.795],[-93.5,34.01],[-97.146,29.903],[-102.986,28.3],[-109.138,28.514],[-124.416,30.742],[-125.305,30.723],[-126.865,28.178]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.505,-1.626],[0.83,1.592]],"o":[[0.001,-1.687],[-0.632,1.734]],"v":[[-168.658,-72.98],[-169.012,-77.983]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.868,0.096],[0.141,-0.831],[-0.56,-0.042],[-0.194,0.862]],"o":[[-0.7,-0.126],[-0.095,0.557],[0.875,0.065],[0.137,-0.611]],"v":[[-124.224,-62.098],[-125.398,-60.839],[-124.749,-59.959],[-122.951,-61.077]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.029,0.664],[0.826,-0.062],[0.014,-0.748],[-0.733,-0.052]],"o":[[-0.04,-0.674],[-0.666,0.05],[-0.016,0.85],[0.79,0.057]],"v":[[-224.489,-65.948],[-225.56,-67.199],[-226.823,-65.994],[-225.463,-64.751]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.548,-0.339],[-0.8,-0.188],[0.143,-1.089],[0.453,-2.591],[-0.38,-1.127],[0.357,3.015],[-0.234,1.521],[3.246,-0.014]],"o":[[0.809,0.648],[0.991,0.232],[-0.342,2.603],[-0.28,1.604],[0.622,-3.159],[-0.18,-1.525],[0.499,-3.244],[-0.429,0.002]],"v":[[-157.499,-50.797],[-155.007,-50.068],[-153.217,-48.239],[-153.562,-40.421],[-153.316,-33.292],[-152.663,-42.423],[-152.649,-46.99],[-156.068,-51.022]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.085,-0.278],[0.302,-1.912],[0.056,-0.388],[3.488,-0.08],[0.002,-1.051],[-0.842,0.009],[-1.519,0.017],[-0.573,-1.356],[1.335,0.157],[0,0],[0.108,0.085],[0.486,-0.852],[0.421,0.392],[0.618,-0.31],[0.048,-0.637],[-0.477,-0.669],[-0.508,0.218],[-0.536,0.192],[-0.037,-0.116],[0.571,-0.469],[-0.802,-0.321],[-0.124,-1.228],[0.643,-1.205],[0.789,-0.208],[0.062,-1.834],[-0.03,-1.529],[1.163,-0.55],[0.27,-1.284],[-0.052,-1.923],[0.021,-4.046],[-0.93,-0.614],[0.623,-0.766],[-0.275,-2.291],[0.081,-2.014],[-1.24,-0.663],[-0.971,-0.995],[0.574,-0.736],[0.921,0.258],[0.12,0.08],[0.937,-1.018],[-0.443,-1.256],[-0.491,-0.968],[0.698,-0.8],[-1.524,-1.078],[-0.355,-0.707],[0.286,-1.827],[3.732,-1.76],[1.55,0.1],[0.438,0.069],[0.388,0.261],[0.537,0.023],[3.843,0.155],[-0.104,0.738],[1.141,0.239],[0.214,0.953],[-1.117,0.91],[1.302,0.624],[0.862,0.868],[-0.969,0.465],[-0.248,0.236],[-3.081,0.127],[0.631,0.039],[-0.538,1.172],[-1.684,-1.171],[0,0],[0,0],[-1.668,1.03],[-0.025,0.986],[-0.259,3.346],[0.463,0.734],[1.484,-5.461],[1.3,2.257],[0.139,1.099],[0.683,0.916],[0.695,-0.458],[0.887,-0.13],[0.237,0.381],[-0.439,0.699],[-1.427,1.371],[-0.855,1.339],[0.752,0.9],[1,-0.525],[2.23,0.45],[-0.063,-1.273],[0.473,-0.048],[0.462,0.696],[-0.326,0.448],[0.785,1.046],[-0.309,0.082],[-1.28,-0.597],[-0.449,0.697],[-0.444,0.006],[-2.206,0],[2.244,0.03],[3.078,2.059],[-0.223,0.549],[-0.53,-0.183],[-3.208,1.169],[0.116,0.706],[0.612,-0.055],[0.97,0.36],[0.067,0.445],[-0.317,0.186],[0.14,0.61],[0.641,0.13],[0.853,-0.37],[1.288,-0.15],[-0.635,1.8],[-0.904,0.577],[-0.904,0.602],[0.038,0.436],[0.347,0.116],[1.203,0.44],[-0.823,0.77],[0.881,0.776],[0.075,0.536],[0.78,1.447],[-2.002,0.974],[0.441,1.318],[3.453,0.059],[0.102,1.208],[0.374,0.07],[0.182,-0.282],[0.088,-0.681],[1.968,-0.773],[0.106,-0.475],[0.251,-0.639],[1.388,0.876],[0.809,-1.804],[1.122,-0.094],[0.017,0.409],[0.058,0.638],[0.558,-0.1],[-0.082,-0.38],[0.037,-1.479],[2.368,-0.356],[1.836,-2.485],[0.884,-0.262],[0.556,-0.726],[-1.027,-0.706],[0.694,-0.631],[0.035,-0.035],[-1.225,-1.577],[-1.312,0.999],[-0.801,0.799],[-1.078,-0.554],[-0.437,0.651],[-0.616,-1.104],[0.695,-0.81],[-0.431,-0.782],[0.678,-1.172],[-0.96,-0.878],[0.773,-0.64],[-1.476,-1.363],[0.467,-0.613],[0.64,0.35],[2.026,-0.702],[1.064,0.973],[0.934,-0.466],[-0.068,-1.427],[1.288,-0.167],[-0.576,-1.084],[-1.278,-2.256],[-0.074,-0.434],[1.132,0.404],[0.322,-0.369],[1.297,0.124],[0.216,-0.356],[1.494,-0.043],[2.946,-0.222],[1.705,-0.772],[1.816,-1.621],[-0.001,0.414],[-0.321,0.662],[-1.697,2.215],[0.492,0.528],[0.931,-0.352],[0.615,-0.397],[0.472,-0.005],[-0.011,3.275],[-1.129,-0.489],[0.022,-0.541],[0.399,-0.149],[0.243,-0.039],[-0.221,-0.809],[-0.621,0.149],[-2.235,-0.813],[-1.363,-0.173],[-0.784,-0.552],[-1.544,0.151],[0.552,0.584],[2.464,-0.213],[1.914,0.17],[0.598,0.829],[0.67,0.974],[-0.063,0.801],[0.342,1.555],[0.079,3.067],[1.221,3.017],[2.629,0.616],[-0.001,25.28],[-1.04,-0.822],[1.232,-3.414],[-1.756,-0.104],[-1.39,-1.326],[-1.556,-1.054],[0.607,-0.335],[0.135,2.442],[0.723,-0.323],[1.301,-2.042],[-1.53,-1.026],[-0.461,-0.24],[-0.346,0.251],[-2.589,0.542],[-2.164,0.791],[-0.755,1.764],[0,0],[-0.103,0.094],[-0.925,0.587],[-1.382,0.499],[0.101,1.272],[-0.407,0.831],[0.086,-0.829],[-1.193,-0.394],[-2.453,-0.736],[-0.514,-1.316],[-0.95,-0.495],[-0.788,-1.622],[-0.401,-0.977],[-0.297,0.063],[-0.042,0.166],[0.082,2.835],[-1.96,3.451],[-0.207,-3.174],[0.016,-2.154],[0.126,-0.616],[-1.808,-0.993],[-0.857,0.808],[1.819,1.691],[0.246,1.279],[-0.262,0.111],[-0.124,-0.113],[-1.267,0.024],[0.042,-0.073],[-0.64,-0.316],[0.11,-1.153],[-1.093,0.576],[-1.828,0.975],[-0.433,-0.559],[0.457,-0.41],[0.644,-0.802],[-0.016,-1.24],[-0.983,0.129],[-2.548,0.753],[-4.788,1.722],[-0.877,-0.567],[-2.091,-1.56],[-1.996,1.526],[-0.272,0.109],[-3.2,-4.218],[-1.554,-0.379]],"o":[[-1.867,1.118],[-0.061,0.387],[-0.497,3.464],[-0.845,0.019],[-0.002,0.998],[1.519,-0.017],[1.373,-0.015],[0.467,1.105],[0,0],[-0.108,-0.085],[-1.394,-0.789],[-0.421,-0.392],[-0.443,-0.384],[-0.64,0.321],[-0.068,0.908],[0.113,0.569],[0.522,-0.224],[0.037,0.116],[-0.593,0.442],[-0.545,0.448],[0.76,0.305],[0.141,1.39],[-0.371,0.696],[-2.081,0.547],[-0.051,1.528],[0.025,1.26],[-1.224,0.579],[-0.399,1.893],[0.108,4.044],[-0.005,0.989],[0.67,0.442],[-1.538,1.893],[0.242,2.023],[-0.06,1.499],[1.225,0.655],[0.434,0.445],[-0.504,0.647],[-0.141,-0.04],[-0.945,-0.631],[-0.934,1.014],[0.359,1.016],[0.448,0.883],[-1.217,1.396],[0.598,0.423],[0.49,1.77],[-0.644,4.109],[-1.563,0.737],[-0.44,-0.028],[-0.388,-0.261],[0.493,-0.89],[-3.843,-0.163],[-0.134,-0.699],[-1.168,0.208],[-1.124,-0.236],[-0.166,-0.739],[0.746,-0.608],[-1.063,-0.509],[-0.604,-0.608],[0.301,-0.145],[1.67,-1.595],[-0.983,-0.86],[-1.299,-0.081],[0.673,-1.468],[0,0],[0,0],[-1.513,-2.512],[1.116,-0.284],[0.085,-3.344],[0.166,-2.144],[-0.337,5.547],[-2.086,0.293],[0.908,-0.376],[1.161,-0.876],[-0.73,-0.979],[-0.692,0.456],[-0.434,0.064],[-0.498,-0.8],[1.059,-1.688],[1.14,-1.095],[0.493,-0.771],[-0.742,-0.888],[-2.221,1.166],[-0.74,-0.149],[0.027,0.542],[-0.797,0.081],[-0.312,-0.47],[0.412,-0.565],[-0.194,-0.259],[1.307,-0.345],[0.67,0.312],[0.249,-0.387],[2.195,-0.031],[0.275,-2.222],[-3.6,-0.048],[-0.437,-0.292],[0.277,-0.682],[3.171,1.095],[0.48,-0.175],[-0.128,-0.778],[-0.986,0.089],[-0.367,-0.136],[-0.079,-0.522],[0.368,-0.217],[-0.139,-0.607],[-0.88,-0.178],[-1.183,0.514],[-1.901,0.221],[0.357,-1.013],[0.915,-0.584],[0.315,-0.21],[-0.045,-0.518],[-1.216,-0.406],[-0.88,-0.322],[0.791,-0.74],[-0.415,-0.365],[-0.23,-1.645],[-0.996,-1.848],[1.311,-0.638],[-1.11,-3.313],[-1.215,-0.021],[-0.024,-0.281],[-0.396,-0.073],[-0.384,0.594],[-0.258,2.006],[-0.463,0.182],[-0.15,0.672],[-0.597,1.518],[-1.671,-1.055],[-0.595,1.326],[-0.553,0.046],[-0.027,-0.641],[-0.044,-0.489],[-0.509,0.091],[0.317,1.467],[-0.06,2.415],[-2.841,0.427],[-0.495,0.67],[-0.835,0.247],[-0.556,0.726],[0.78,0.536],[-0.036,0.033],[-0.918,0.921],[0.942,1.212],[0.9,-0.686],[0.771,-0.769],[0.609,0.313],[0.695,-1.035],[0.501,0.897],[-0.588,0.685],[0.553,1.004],[-0.539,0.931],[0.775,0.708],[-1.33,1.102],[0.546,0.504],[-0.5,0.657],[-2.036,-1.114],[-1.453,0.504],[-0.715,-0.654],[-0.959,0.479],[0.06,1.255],[-1.077,0.139],[1.224,2.306],[0.207,0.365],[0.157,0.923],[-0.466,-0.166],[-0.971,1.115],[-0.404,-0.039],[-0.965,1.588],[-2.966,0.085],[-1.794,0.135],[-2.181,0.988],[0.001,-0.415],[0.342,-0.651],[1.196,-2.468],[0.479,-0.625],[-0.583,-0.625],[-0.68,0.257],[-0.376,0.242],[0.011,-3.275],[1.274,-0.035],[0.388,0.168],[-0.023,0.561],[-0.228,0.085],[-0.676,0.109],[0.241,0.884],[2.342,-0.563],[1.302,0.474],[0.965,0.123],[1.245,0.877],[0.438,-0.043],[-1.348,-1.427],[-1.93,0.167],[-1.021,-0.091],[-0.691,-0.959],[0.692,-0.486],[0.123,-1.567],[-0.658,-2.986],[-0.082,-3.18],[-0.934,-2.308],[0.001,-25.28],[1.021,0.845],[2.846,2.249],[-0.581,1.611],[1.949,0.115],[1.352,1.29],[-0.427,0.56],[-2.17,1.198],[-0.026,-0.472],[-2.277,1.018],[-0.839,1.316],[0.069,0.419],[0.469,0.244],[2.083,-1.51],[2.255,-0.473],[1.574,-0.575],[0,0],[0.103,-0.094],[0.925,-0.587],[1.234,-0.833],[1.234,-0.446],[-0.057,-0.71],[0.874,0.609],[-0.137,1.329],[2.434,0.803],[1.36,0.408],[0.322,0.824],[0.228,1.833],[0.401,0.977],[0.028,0.244],[0.074,-0.016],[-0.082,-2.835],[0.245,-3.461],[-0.354,3.341],[-0.016,2.153],[-0.005,0.641],[-0.478,2.34],[0.998,0.548],[1.803,-1.698],[-0.921,-0.856],[-0.047,-0.243],[0.129,-0.055],[0.734,0.67],[0.048,-0.001],[-0.881,1.533],[0.624,0.309],[-0.081,0.845],[1.833,-0.965],[0.529,-0.282],[0.486,0.628],[-0.783,0.702],[-0.865,1.079],[0.012,0.949],[2.66,-0.35],[4.875,-1.441],[1.158,-0.416],[2.196,1.421],[2.124,1.585],[0.28,-0.09],[4.896,-1.957],[0.787,1.038],[0.144,0.035]],"v":[[-118.851,-84.922],[-121.358,-79.992],[-121.455,-78.816],[-126.343,-74.491],[-128.523,-73.612],[-126.338,-72.704],[-121.782,-72.948],[-118.728,-71.053],[-119.814,-69.493],[-119.855,-69.483],[-120.179,-69.737],[-122.378,-68.52],[-123.642,-69.695],[-125.177,-70.232],[-125.864,-68.582],[-124.93,-66.365],[-123.996,-65.925],[-122.391,-66.508],[-122.28,-66.16],[-124.055,-64.829],[-123.883,-63.668],[-121.724,-62.549],[-122.853,-58.663],[-124.645,-57.187],[-127.27,-53.223],[-127.266,-48.635],[-128.869,-45.88],[-130.943,-43.002],[-131.239,-37.293],[-131.21,-25.155],[-130.15,-22.735],[-129.859,-20.832],[-131.416,-14.391],[-131.215,-8.338],[-129.408,-5.247],[-126.093,-2.791],[-125.619,-1.166],[-127.632,-0.259],[-128.042,-0.424],[-131.067,-0.998],[-131.148,2.802],[-129.728,5.729],[-130.026,8.16],[-129.537,11.574],[-127.877,13.006],[-127.287,18.408],[-134.01,27.123],[-138.665,27.09],[-139.979,26.888],[-141.143,26.104],[-141.862,25.222],[-153.391,24.753],[-152.592,23.102],[-156.016,23.13],[-157.77,21.205],[-157.759,18.917],[-159.062,16.265],[-162.093,14.481],[-161.97,12.933],[-161.166,12.294],[-155.307,8.27],[-157.626,7.638],[-158.811,5.844],[-155.447,4.65],[-155.408,4.696],[-155.456,4.658],[-153.381,0.205],[-151.934,-1.936],[-151.69,-11.969],[-152.426,-16.391],[-153.37,0.215],[-157.852,-2.385],[-156.445,-4.422],[-156.262,-7.268],[-158.427,-7.044],[-160.55,-5.755],[-165.84,-8.315],[-165.593,-10.522],[-161.739,-15],[-158.598,-18.533],[-158.141,-21.096],[-161.11,-21.866],[-167.736,-21.595],[-169.2,-20.689],[-170.149,-19.958],[-172.079,-20.786],[-172.02,-22.16],[-171.38,-24.089],[-170.632,-24.596],[-166.726,-24.515],[-165.076,-24.873],[-163.943,-25.505],[-157.347,-25.519],[-159.471,-27.937],[-169.633,-30.579],[-170.575,-31.742],[-169.007,-31.914],[-159.447,-31.726],[-158.306,-32.643],[-159.863,-33.432],[-162.788,-33.5],[-163.7,-34.149],[-162.911,-34.88],[-162.126,-35.778],[-163.254,-37.032],[-165.868,-36.807],[-169.572,-35.813],[-171.873,-38.634],[-169.954,-41.011],[-167.206,-42.759],[-166.406,-43.551],[-167.372,-44.025],[-171.026,-45.221],[-171.401,-46.85],[-171.394,-49.1],[-172.113,-50.538],[-173.842,-55.052],[-171.382,-61.891],[-170.28,-64.607],[-175.436,-68.516],[-177.393,-70.214],[-177.745,-70.944],[-178.554,-70.401],[-179.134,-68.429],[-182.224,-64.095],[-182.999,-63.103],[-183.571,-61.115],[-186.298,-60.255],[-189.026,-59.48],[-191.88,-58.079],[-192.505,-58.888],[-192.564,-60.812],[-193.434,-61.588],[-193.904,-60.642],[-193.676,-56.216],[-197.495,-52.194],[-204.863,-48.368],[-206.837,-46.913],[-208.938,-45.334],[-208.852,-43.247],[-208.82,-41.393],[-208.924,-41.288],[-209.992,-37.987],[-205.083,-37.523],[-202.524,-39.761],[-199.899,-40.421],[-198.417,-40.835],[-196.467,-40.667],[-196.555,-38.041],[-196.595,-36.123],[-196.448,-32.727],[-196.144,-30.103],[-196.393,-27.763],[-196.71,-24.252],[-196.617,-22.344],[-198.628,-21.805],[-204.617,-21.816],[-208.399,-22.969],[-210.794,-23.577],[-212.68,-21.244],[-214.648,-19.106],[-215.234,-17.574],[-211.149,-10.951],[-210.87,-9.664],[-212.014,-8.592],[-213.433,-8.468],[-216.911,-7.466],[-217.95,-6.996],[-222.109,-5.213],[-230.945,-4.444],[-236.289,-3.069],[-242.489,0.479],[-242.485,-0.765],[-241.462,-2.721],[-237.657,-10.013],[-236.579,-12.018],[-239.374,-12.03],[-241.304,-10.978],[-242.488,-10.452],[-242.454,-20.277],[-238.918,-19.322],[-238.028,-18.454],[-239.007,-17.708],[-239.728,-17.552],[-240.924,-16.403],[-239.318,-16.091],[-232.338,-15.882],[-228.4,-14.747],[-225.832,-13.73],[-221.654,-12.549],[-221.069,-13.277],[-225.958,-16.364],[-231.651,-17.13],[-234.072,-18.692],[-236.087,-21.611],[-234.951,-23.604],[-235.053,-28.308],[-236.105,-37.368],[-237.562,-46.791],[-242.484,-51.647],[-242.479,-127.486],[-239.413,-124.955],[-237.23,-117.335],[-236.054,-115.633],[-231.052,-113.38],[-226.845,-109.694],[-228.441,-108.403],[-231.488,-110.052],[-232.243,-110.66],[-237.529,-105.908],[-236.072,-101.759],[-235.763,-100.544],[-234.614,-101.016],[-227.782,-104.35],[-221.127,-106.263],[-217.126,-109.232],[-217.119,-109.149],[-216.809,-109.432],[-214.034,-111.193],[-210.059,-113.137],[-208.466,-115.567],[-208.239,-117.865],[-207.361,-115.55],[-205.705,-113.19],[-198.437,-110.68],[-195.751,-108.245],[-194.403,-105.882],[-192.506,-100.839],[-191.304,-97.908],[-190.908,-97.486],[-190.779,-97.962],[-191.024,-106.468],[-189.802,-116.961],[-189.192,-107.319],[-189.239,-100.859],[-189.271,-98.939],[-186.61,-94.399],[-183.932,-94.69],[-183.918,-98.067],[-185.877,-101.125],[-185.698,-101.77],[-185.185,-101.613],[-182.807,-99.829],[-182.669,-99.475],[-181.438,-97.895],[-180.164,-96.474],[-176.702,-95.654],[-171.216,-98.575],[-169.6,-98.705],[-170.157,-97.061],[-172.121,-94.683],[-172.97,-91.194],[-171.595,-89.988],[-163.88,-92.018],[-149.296,-96.475],[-146.426,-95.744],[-139.853,-91.463],[-133.811,-91.533],[-132.973,-91.805],[-121.78,-88.637],[-119.113,-85.724]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.494,0.043],[-0.097,0.797],[0.46,0.016],[0.007,-0.927]],"o":[[0.548,-0.244],[0.092,-0.757],[-0.521,-0.019],[-0.003,0.469]],"v":[[68.457,68.208],[70.122,67.428],[68.868,66.94],[67.566,67.632]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.445,-0.132],[-0.138,0.73],[0.433,0.02],[0.15,-0.746]],"o":[[0.688,-0.022],[0.107,-0.565],[-0.717,-0.034],[-0.116,0.576]],"v":[[-32.212,100.031],[-30.722,99.106],[-31.633,98.401],[-33.281,99.301]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.015,0.574],[0.689,-0.006],[-0.013,-0.651],[-0.671,0.015]],"o":[[0.002,-0.52],[-0.714,0.006],[0.011,0.559],[0.725,-0.016]],"v":[[77.751,-0.144],[77.011,-1.158],[75.917,-0.049],[76.915,0.989]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.463,-0.153],[-0.138,0.889],[0.635,-0.035],[0.091,-0.786]],"o":[[0.784,-0.103],[0.096,-0.615],[-0.729,0.04],[-0.099,0.85]],"v":[[-53.156,91.554],[-51.156,90.742],[-52.685,90.016],[-54.472,90.956]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.736,-0.017],[-0.765,0.248],[0.026,0.288],[0.15,0.028],[1.53,-0.328],[0.042,-0.339],[-0.252,-0.123]],"o":[[0.787,-0.015],[0.238,-0.077],[-0.012,-0.137],[-1.502,-0.276],[-0.273,0.059],[-0.046,0.369],[0.695,0.339]],"v":[[-6.172,97.977],[-3.827,97.751],[-3.34,97.29],[-3.717,96.924],[-8.257,96.691],[-8.94,97.166],[-8.353,97.714]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.136,-0.892],[-0.868,0.008],[-0.114,0.842],[0.801,0.053]],"o":[[0.058,0.886],[0.934,-0.009],[0.115,-0.852],[-1.015,-0.067]],"v":[[55.906,67.422],[57.224,69.101],[58.699,67.344],[57.447,65.83]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0.406,0.128],[0.276,-0.069],[-0.012,-0.869],[-0.691,-0.065],[-0.821,-0.163],[-0.455,0.573],[0.252,0.616],[0.746,-0.275]],"o":[[-0.325,0],[-0.622,0.154],[0.011,0.762],[0.827,0.078],[0.539,0.107],[0.463,-0.584],[-0.286,-0.698],[-0.424,0.156]],"v":[[-40.369,106.076],[-41.277,106.088],[-42.872,106.99],[-41.29,108.016],[-38.823,108.322],[-37.243,108.62],[-37.609,106.732],[-39.112,106.012]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0.56,0.999],[-0.053,-0.985],[-0.008,-1.032],[-2.339,-0.057],[0.095,0.856],[1.094,-0.074],[0.358,1.678],[-0.127,0.793]],"o":[[-0.739,0.936],[0.055,1.031],[0.018,2.347],[0.736,0.018],[-0.072,-0.654],[-1.681,0.114],[-0.167,-0.784],[0.145,-0.906]],"v":[[12.079,-3.983],[11.304,-1.119],[11.449,1.975],[15.133,5.768],[16.358,4.69],[15.171,3.43],[12.457,1.189],[12.397,-1.156]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.07,0.003],[-2.119,0.015],[-0.085,0.49],[0.419,0.11],[0.538,0.019],[0.902,0.046],[2.831,-0.512],[-0.057,-0.667],[-0.46,-0.005]],"o":[[2.119,0],[0.368,-0.003],[0.084,-0.482],[-0.513,-0.135],[-0.879,-0.031],[-2.845,-0.146],[-0.49,0.089],[0.049,0.572],[2.069,0.023]],"v":[[-43.065,111.014],[-36.709,111.007],[-35.699,110.663],[-36.514,109.743],[-38.12,109.597],[-40.755,109.712],[-49.294,109.931],[-50.552,110.644],[-49.274,111.007]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.315,1.074],[0.712,-1.238],[0.428,-0.597],[1.065,0.483],[-0.187,0.984],[0.025,1.084],[0.725,-0.028],[0.004,-0.479],[0.052,-1.133],[1.979,-0.023],[-0.01,1.1],[0.064,1.133],[0.879,0.085],[0.31,-0.66],[-0.376,-0.384],[1.317,-0.905],[-0.274,-0.839],[-0.633,-0.017],[-4.389,-0.104],[-1.712,2.079],[0.467,0.503],[0.807,-0.073],[-0.037,-0.464],[1.75,-0.051],[0.592,0.007],[0.303,0.724],[-0.401,0.498]],"o":[[-1.475,0.017],[-0.369,0.641],[-0.609,0.849],[-0.968,-0.439],[0.205,-1.081],[-0.013,-0.564],[-0.703,0.027],[-0.009,1.135],[-0.061,1.328],[-1.261,0.014],[0.01,-1.135],[-0.04,-0.71],[-0.698,-0.068],[-0.345,0.734],[1.418,1.449],[-0.51,0.35],[0.241,0.738],[4.388,0.116],[2.701,0.064],[0.339,-0.412],[-0.637,-0.686],[-0.616,0.055],[0.144,1.786],[-0.592,0.017],[-0.649,-0.007],[-0.299,-0.714],[0.634,-0.787]],"v":[[-33.033,80.414],[-36.051,82.153],[-37.136,84.087],[-39.662,85.103],[-40.616,82.681],[-40.467,79.434],[-41.321,78.288],[-41.939,79.422],[-41.937,82.828],[-44.783,84.649],[-46.375,82.841],[-46.432,79.436],[-47.549,77.924],[-49.394,78.579],[-48.414,79.835],[-48.162,84.369],[-49.212,85.738],[-47.571,86.462],[-34.405,86.778],[-27.8,83.73],[-27.336,82.343],[-29.726,82.072],[-30.183,83.114],[-32.081,85.271],[-33.859,85.275],[-35.508,84.561],[-34.896,82.857]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.797,-0.936],[0.562,-0.026],[-0.016,-0.734],[-0.447,-0.027],[-1.098,-1.742],[1.144,-0.399],[-0.106,-0.451],[-0.36,0.001],[-1.383,0.023],[-0.077,0.435],[0.406,0.067],[0.56,1.9],[-1.153,-0.139],[-1.006,0.126],[-4.14,0.135],[-0.027,1.111],[0.721,0.042],[1.628,0],[-1.338,0.355],[-0.071,0.683],[-1.137,-0.068],[-1.425,1.318],[-0.624,0.06],[-1.602,-0.228],[-1.885,0.219],[-1.259,-0.737],[0.225,-0.8],[-1.59,-0.055],[-0.789,0.025],[-0.12,0.715],[0.587,0.222],[0.145,0.009],[0.217,1.184],[1.374,0.336],[2.173,0.476],[-0.026,1.105],[-1.152,0.059],[-2.628,-3.677],[-1.573,0.199],[-0.634,-0.074],[-0.372,-1.12],[-0.918,-0.346],[-3.775,-0.761],[-0.195,0.126],[-0.822,-0.492],[-1.277,-0.396],[-0.247,0.602],[0.453,0.318],[0.263,0.741],[-0.853,-0.288],[-0.298,0.331],[0.182,0.286],[3.591,1.015],[1.226,0.44],[-0.05,0.694],[0.981,0.64],[-0.09,0.564],[0.92,0.119],[1.291,0.656],[-0.908,0.837],[1.019,0.481],[2.896,0.444],[1.987,0.676],[-0.303,1.257],[1.707,0.356],[0.628,0.127],[-0.042,0.571],[1.399,-0.212],[-0.075,0.9],[-1.615,1.577],[-0.142,0.785],[1.455,1.669],[1.022,-1.628],[0.166,-0.072],[1.736,-1.401],[-0.063,-0.234],[-0.188,-0.766],[-0.581,-0.086],[0.02,-2.089],[-0.021,-0.145],[1.371,-0.121],[0.389,-1.431],[0.213,-0.252],[-1.073,-0.28],[0.066,-0.955],[0.848,-0.13],[0.346,0.004],[1.077,-0.525],[-0.519,-0.601],[0.941,-1.388],[0.623,0.139],[0.069,0.67],[0.013,0.345],[0.767,0.106],[0.201,-0.583],[-0.024,-0.187],[2.55,0.089],[0.026,-0.52],[-0.438,-0.068],[-0.492,0.004],[0.625,-3.266],[0.103,-0.432],[2.662,-0.383],[1.949,0.264],[2.424,-0.113],[-0.037,-0.904],[-0.524,-0.012],[-0.395,-0.002],[-2.614,-0.861],[-2.139,-0.258],[-0.004,-0.619],[0.408,-0.052],[1.496,0.476],[0.64,-1.445],[0.466,0.067],[2.7,2.12],[0.43,-0.013],[1.661,0.251],[0.877,-0.107],[-0.011,-0.625],[-0.514,-0.016],[-1.943,0.229]],"o":[[-0.857,0],[-0.624,0.029],[0.015,0.682],[2.074,0.123],[0.473,0.75],[-0.348,0.121],[0.101,0.429],[1.383,-0.005],[0.35,-0.006],[0.086,-0.486],[-2.58,-0.425],[-0.32,-1.085],[1.027,0.124],[4.139,-0.518],[0.694,-0.023],[0.03,-1.268],[-1.623,-0.094],[1.342,-0.598],[0.577,-0.153],[0.133,-1.281],[1.74,0.104],[0.42,-0.388],[1.561,-0.151],[1.895,0.27],[1.567,-0.183],[0.567,0.332],[-0.436,1.552],[0.789,0.027],[0.583,-0.018],[0.139,-0.83],[-0.138,-0.052],[-1.221,-0.074],[-0.249,-1.36],[-2.172,-0.531],[-1.016,-0.223],[0.027,-1.13],[3.654,-0.188],[0.902,1.263],[0.631,-0.08],[1.08,0.125],[0.337,1.015],[3.607,1.358],[0.285,0.057],[1.072,-0.689],[1.152,0.689],[0.462,0.143],[0.219,-0.534],[-0.46,-0.324],[0.933,-0.184],[0.306,0.103],[0.262,-0.291],[-1.704,-2.681],[-1.226,-0.347],[-0.68,-0.244],[0.088,-1.22],[-0.36,-0.235],[0.194,-1.218],[-1.422,-0.184],[-1.32,-0.671],[1.153,-1.063],[-2.647,-1.249],[-2.093,-0.321],[-1.137,-0.387],[0.401,-1.665],[-0.627,-0.131],[-0.45,-0.091],[0.138,-1.87],[-0.738,0.112],[0.177,-2.119],[0.655,-0.639],[0.486,-2.692],[-1.35,-1.548],[-0.097,0.155],[-2.327,1.001],[-0.099,0.08],[0.204,0.762],[0.159,0.647],[2.075,0.308],[-0.001,0.148],[0.177,1.215],[-1.493,0.132],[-0.089,0.326],[-0.853,1.009],[0.749,0.196],[-0.056,0.809],[-0.338,0.052],[-1.217,-0.016],[-0.638,0.311],[1.125,1.304],[-0.372,0.549],[-0.693,-0.155],[-0.035,-0.342],[-0.024,-0.647],[-0.833,-0.115],[-0.063,0.184],[0.292,2.229],[-0.462,-0.016],[-0.029,0.588],[0.484,0.075],[3.268,-0.028],[-0.083,0.436],[-0.618,2.601],[-1.995,0.287],[-2.403,-0.326],[-0.571,0.027],[0.034,0.815],[0.395,0.009],[2.772,0.011],[2.005,0.66],[0.418,0.051],[0.004,0.589],[-1.517,0.195],[-1.552,-0.493],[-0.174,0.392],[-2.853,-0.41],[-0.308,-0.241],[-1.686,0.05],[-0.896,-0.135],[-0.513,0.063],[0.013,0.695],[1.92,0.059],[0.703,-0.083]],"v":[[-45.887,97.112],[-47.87,97.118],[-49.155,98.045],[-47.975,98.593],[-43.24,101.413],[-43.655,103.281],[-44.199,104.016],[-43.394,104.504],[-39.246,104.471],[-38.454,103.96],[-39.078,103.097],[-42.442,98.591],[-41.137,97.155],[-38.046,97.383],[-25.62,97.101],[-23.67,96.416],[-25.655,95.61],[-30.538,95.58],[-26.47,94.85],[-25.353,93.914],[-23.263,92.401],[-18.413,91.156],[-16.603,90.603],[-11.895,90.489],[-6.148,90.725],[-2.108,91.672],[-1.493,93.021],[0.257,95.299],[2.628,95.298],[4.105,94.628],[2.828,93.461],[2.399,93.352],[0.323,91.429],[-2.132,89.014],[-8.72,88.08],[-10.266,86.282],[-8.66,84.143],[1.455,86.925],[5.214,88.494],[7.137,88.52],[9.566,90.169],[11.556,91.976],[22.638,95.117],[23.499,95.172],[26.22,95.635],[29.847,97.294],[31.13,96.933],[30.614,95.683],[29.248,94.5],[31.882,94.657],[32.842,94.692],[32.851,93.716],[26.538,86.739],[23.162,84.934],[22.351,83.332],[20.88,80.62],[20.091,79.667],[18.597,78.17],[14.47,77.052],[13.677,74.346],[13.209,72.3],[4.924,69.618],[-1.125,67.948],[-2.423,65.768],[-4.161,63.202],[-6.051,62.858],[-6.939,62.048],[-9.299,60.315],[-10.77,59.324],[-8.712,53.451],[-7.855,51.394],[-10.664,45.395],[-14.126,45.749],[-14.552,46.123],[-18.06,51.436],[-17.977,52.141],[-17.338,54.421],[-16.145,55.327],[-14.091,57.733],[-14.087,58.177],[-15.638,60.282],[-18.407,62.739],[-18.838,63.665],[-18.177,65.368],[-16.108,66.164],[-18.427,66.917],[-19.463,66.935],[-22.87,67.818],[-23.115,69.053],[-22.699,75.287],[-24.129,76.598],[-24.763,74.789],[-24.781,73.753],[-25.553,72.178],[-26.625,73.529],[-26.719,74.11],[-29.639,77.656],[-30.517,78.5],[-29.623,79.291],[-28.148,79.369],[-25.235,82.93],[-25.552,84.224],[-30.451,88.674],[-36.339,88.331],[-43.569,87.909],[-44.84,88.731],[-43.608,89.401],[-42.423,89.392],[-34.234,90.402],[-28.194,92.301],[-27.217,92.978],[-28.166,93.728],[-32.709,93.586],[-35.665,94.824],[-36.444,95.556],[-45.052,94.701],[-46.332,94.446],[-51.345,94.076],[-53.995,94.236],[-54.945,95.179],[-53.899,95.93],[-48.144,96.247]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[0.093,0.392],[0.393,2.883],[0.026,2.305],[-0.708,4.32],[-0.543,2],[-1.541,-0.139],[-0.479,-3.103],[-0.151,-2.952],[-1.695,-0.398],[0.335,-0.688],[0.01,-0.822],[-0.303,-1.859],[0.2,-1.058],[0.926,0.202],[-0.039,1.152],[0.104,3.352],[-0.637,3.546],[0.043,1.032],[1.189,0.179],[0.399,-1.242],[0.055,-1.768],[-1.035,0.001],[0.003,-1.376],[-0.348,-5.761],[0.6,-0.256],[-0.038,-0.6],[-0.423,-0.017],[-0.113,-0.863],[0.248,-1.79],[-0.309,-2.5],[-0.471,0.047],[-0.055,0.432],[-1.988,-0.667],[-0.579,0.11],[0.216,0.765],[0.735,-0.149],[0.558,-0.192],[0.166,0.924],[0.436,2.495],[-0.986,-0.172],[-2.163,-0.357],[-0.756,1.457],[-2.118,2.19],[-2.723,0.81],[-0.798,3.105],[-1.118,1.31],[-0.085,1.196],[-0.411,1.463],[-0.943,0.111],[0.111,1.456],[-0.185,2.361],[0.001,1.326],[-0.954,0.542],[-0.55,-0.511],[0.283,-0.47],[-0.732,-0.737],[0.742,-0.725],[-0.471,-0.75],[-0.58,0.159],[-1.116,0.537],[0.503,0.914],[0.073,1.975],[-2.784,0.32],[-3.297,-0.3],[-0.033,0.594],[-0.587,2.64],[-0.071,0.634],[0.705,0.298],[0.573,-0.521],[-0.145,-1.079],[-0.122,-1.174],[1.102,-0.359],[0.377,0.541],[-0.37,0.361],[-0.119,2.609],[0.241,0.59],[-0.004,1.207],[-0.022,3.455],[0.364,1.025],[1.164,-0.033],[0.224,-1.286],[1.483,-0.733],[0.828,-0.441],[0.778,0.283],[0.622,-2.043],[-0.232,-1.682],[-0.166,-1.471],[0.697,0.164],[0.103,1.125],[0.248,2.833],[0.305,2.788],[0.042,1.525],[-2.439,0.589],[0.697,0.187],[1.484,-0.056],[1.319,0.619],[-0.618,0.029],[-2.021,0.319],[-1.725,0.231],[-0.248,-0.159],[-0.674,0.477],[0.626,0.365],[2.486,-0.497],[3.18,-0.041],[-1.193,3.851],[-0.046,-0.353],[-1.345,0.972],[0.002,1.191],[0,1.906],[-0.125,0.051],[-0.824,-1.175],[-1.154,2.211],[0.111,1.272],[-0.887,1.548],[-0.409,3.476],[-0.347,1.116],[-0.08,-1.6],[-0.543,-2.886],[-0.233,-0.746],[-3.109,0.038],[-1.915,-0.246],[-0.207,-0.593],[2.378,-1.101],[-3.205,0.119],[-0.383,-1.672],[-0.028,-2.408],[-2.991,-0.074],[-0.313,-1.783],[-0.778,0.264],[0.258,0.746],[2.781,-0.049],[0.42,-0.106],[0.161,0.892],[-0.5,2.699],[-0.459,0.016],[-0.048,-0.421],[-0.13,-1.123],[-0.593,0.044],[-0.013,0.416],[-0.031,1.724],[-0.308,-0.587],[-0.441,0.05],[-0.061,0.287],[-0.006,0.533],[-0.021,2.415],[0.795,0.305],[-0.028,1.679],[-0.917,2.27],[-0.708,-0.063],[-0.099,-0.503],[-0.153,-1.269],[-2.337,-0.353],[-0.641,-0.012],[-0.058,1.793],[0.025,2.27],[-0.179,1.812],[0.016,0.687],[2.518,0.225],[3.634,0.314],[2.184,1.611],[-1.141,0.958],[-0.39,-0.176],[0.063,-0.314],[-0.029,-1.108],[-0.738,-0.116],[-0.933,-0.406],[-2.777,0.008],[-0.645,-0.094],[-0.317,1.691],[-2.319,-0.343],[-0.516,0.111],[-3.985,2.948],[-3.439,-2.145],[-0.226,0.593],[-0.745,-0.803],[-1.43,1.122],[-0.619,0.63],[-2.281,0.34],[0.003,-2.615],[0.252,-4.279],[-0.503,-4.367],[-2.7,-0.475],[-0.739,2.384],[-0.121,0.323],[-0.545,-0.002],[-0.274,-0.478],[0.125,-0.633],[-0.759,-0.177],[-0.544,0.458],[0.123,0.558],[0.108,0.22],[4.132,-0.045],[0.526,1.367],[0.52,1.541],[0.001,-0.194],[0.03,-2.368],[0.678,0.008],[0.033,0.448],[0.087,2.36],[-0.163,5.475],[0.503,4.187],[-0.215,2.981],[0.033,6.95],[0.111,2.466],[-0.378,4.431],[-0.304,-0.051],[-0.224,-1.806],[0.361,-1.868],[-0.047,-0.538],[0.213,-5.518],[-0.795,-1.126],[-0.222,8.773],[0.097,-0.858],[-0.082,-3.838],[-0.037,-2.858],[-1.194,0.453],[-0.425,2.248],[-0.982,0.047],[-0.482,1.865],[-1.141,0.989],[0.499,1.885],[-0.46,1.839],[-1.832,2.831],[0.919,2.093],[-0.058,0.077],[-0.418,-0.546],[-1.346,-0.74],[-0.204,0.195],[0.176,0.216],[0.25,0.301],[0.495,1.366],[1.121,2.482],[1.313,2.025],[-0.131,0.737],[-1.208,-3.035],[0.362,-1.959],[-0.465,-0.481],[-1.79,-1.835],[-0.138,-0.14],[-0.563,-1.048],[0.405,-0.955],[-1.803,-1.709],[0.037,-1.801],[0.075,-1.545],[1.455,0.061],[0.022,-0.358],[0.019,-1.969],[-1.58,0.028],[0.301,-0.486],[0.397,-1.271],[-2.498,-2.78],[0.028,-0.534],[0.462,-5.027],[0.477,-3.234],[0.833,-0.254],[0.408,-0.874],[-1.446,-0.211],[0.09,-2.48],[0.275,-2.364],[2.924,-0.485],[2.485,-0.373],[0.739,-0.411],[-0.003,-0.444],[0.961,-2.069],[0.115,-0.271],[-0.448,-0.408],[-0.389,0.3],[-0.882,0.772],[-0.745,-0.683],[-0.711,-0.675],[-0.168,-1.716],[-0.439,-0.615],[-1.671,-2.083],[-1.117,-0.806],[0.001,-1.268],[-0.215,-0.731],[1.587,-2.196],[-1.61,-2.072],[-0.695,-0.55],[-0.025,-2.739],[1.762,0.195],[0.597,-1.667],[0.564,-0.198],[3.664,-0.96],[-0.042,-0.464],[1.434,-1.291],[0.936,-0.87],[0.993,-0.448],[1.366,-2.167],[-1.045,-0.561],[-0.614,-0.925],[-0.018,-0.186],[-0.813,-0.705],[-2.255,-2.498],[0.382,-1.196],[1.054,-0.2],[0.139,-0.042],[0.218,-0.945],[-0.681,-0.352],[-0.73,-0.487],[0.045,-0.977],[0.703,-0.28],[-2.418,-1.943],[-0.467,-0.437],[0.368,-1.954],[0.023,-0.39],[0.717,-0.082],[2.674,-0.738],[1.931,-1.763],[1.39,-2.476],[-0.268,-0.636],[0.037,-0.258],[-0.08,-0.834],[3.299,-1.548],[-0.008,-0.892],[-0.22,-2.654],[0.24,-1.161],[-0.335,-1.189],[-0.334,0.156],[-1.308,-0.814],[-0.606,-0.178],[0.079,-0.46],[2.746,0.15],[0.391,-0.02],[0.752,-0.188],[0.648,-0.004],[-0.076,0.534],[0.163,2.24],[0.874,0.052],[0.083,-0.562],[0.213,-2.89],[0.172,0.011],[-0.654,0.255],[0.421,0.672],[-0.008,0.633],[0.478,0.401],[0.658,-0.504],[-0.01,-0.804],[-0.115,-0.32],[0.065,-1.202],[0.528,-0.166],[3.318,0.201],[-0.069,0.183],[1.884,-0.033],[0.785,0.027],[0.53,1.174],[2.652,-0.654],[1.083,0.188],[0.508,0.18],[2.773,-0.829],[1.476,0.073],[2.106,0.938],[0.165,-0.076],[2.091,-0.106],[1.231,-0.029],[0.007,-0.494],[-0.374,0.064],[-3.438,0.096],[-0.677,-0.126],[0.047,-0.45],[0.359,-0.057],[-0.012,-0.898],[-0.804,-0.105],[-0.313,0.109],[-1.513,-0.067],[0.334,-0.825],[1.39,-0.853],[0.046,-0.904],[1.549,0.593],[2.156,0.278],[3.463,0.105],[6.066,0.318],[1.247,-1.159],[-0.657,-0.886],[3.199,-0.117],[0.757,0.459],[-0.527,0.508],[-1.205,0.047],[-1.122,0.13],[0.596,1.53],[0.132,1.086],[-0.59,0.551],[-0.628,0.104],[1.405,0.261],[1.533,-0.55],[0.525,1.31],[1.075,-0.367],[0.588,0.425],[0.598,-0.063],[1.033,1.21],[-0.413,0.469],[-0.515,-0.329],[-0.85,0.637],[0.348,1.034],[0.059,2.281],[-0.052,-0.947],[-0.03,-1.571],[-3.684,0.012],[-0.313,-0.608],[-1.547,0.115],[0.716,1.37],[0.864,1.007],[-0.641,2.066],[0.65,1.001],[-0.023,0.933],[1.39,0.125]],"o":[[0.358,-2.835],[-0.312,-2.288],[-0.047,-4.271],[0.33,-2.011],[0.588,-2.165],[4.584,0.413],[0.462,2.99],[0.059,1.164],[0.756,0.177],[-0.915,0.297],[-0.023,1.873],[0.181,1.109],[-0.137,0.723],[-0.79,-0.173],[0.114,-3.353],[-0.111,-3.606],[0.186,-1.034],[-0.051,-1.224],[-1.17,-0.176],[-0.557,1.734],[-0.027,0.876],[1.314,-0.001],[-0.014,5.748],[-0.601,0.033],[-0.445,0.19],[0.037,0.583],[0.746,0.03],[0.23,1.755],[-0.347,2.502],[0.033,0.263],[0.287,-0.394],[0.162,-1.266],[0.504,0.169],[0.442,-0.084],[-0.159,-0.563],[-0.578,0.118],[-0.892,0.307],[-0.447,-2.496],[-0.095,-0.545],[2.16,0.376],[1.127,0.186],[2.502,1.331],[1.856,-1.919],[2.953,-0.878],[0.415,-1.616],[0.804,-0.941],[0.109,-1.535],[0.27,-0.962],[1.511,-0.178],[-0.176,-2.315],[0.103,-1.313],[0,-1.023],[0.589,-0.335],[0.537,0.499],[-0.521,0.864],[0.748,0.753],[-0.492,0.481],[0.406,0.646],[1.148,-0.314],[0.869,-0.418],[0.352,-1.923],[2.787,-0.292],[3.288,-0.378],[0.803,0.073],[0.152,-2.765],[0.139,-0.625],[0.075,-0.667],[-0.691,-0.292],[-0.779,0.709],[0.157,1.17],[0.144,1.394],[-0.536,0.175],[-0.313,-0.45],[2.361,-2.301],[0.031,-0.683],[-0.451,-1.103],[0.012,-3.456],[0.007,-1.107],[-0.383,-1.081],[-1.193,0.033],[-0.302,1.73],[-0.841,0.416],[-0.691,0.368],[-2.034,-0.738],[-0.533,1.751],[0.203,1.476],[0.142,1.256],[-1.389,-0.328],[-0.257,-2.799],[-0.246,-2.807],[-0.168,-1.533],[-0.073,-2.675],[-0.284,-0.801],[-1.438,-0.387],[-1.372,0.052],[0.439,-0.672],[2.006,-0.094],[1.58,-0.249],[0.218,-0.029],[0.793,0.508],[0.538,-0.381],[-2.104,-1.229],[-3.091,0.618],[-2.983,0.038],[0.265,0.255],[0.213,1.619],[1.013,-0.732],[-0.003,-1.906],[0.125,-0.051],[0.84,1.164],[1.401,1.996],[0.583,-1.116],[-0.155,-1.768],[1.793,-3.129],[0.131,-1.113],[0.603,1.54],[0.145,2.899],[0.145,0.773],[1.081,3.459],[1.909,-0.024],[0.472,0.061],[-2.468,0.126],[3.141,0.78],[1.664,-0.062],[0.547,2.391],[0.035,2.943],[1.554,0.038],[0.157,0.897],[0.842,-0.285],[-0.932,-2.691],[-0.443,0.008],[-1.059,0.268],[-0.485,-2.688],[0.07,-0.378],[0.547,-0.02],[0.127,1.123],[0.046,0.401],[0.574,-0.043],[0.052,-1.724],[0.764,0.352],[0.157,0.3],[0.33,-0.037],[0.111,-0.526],[0.025,-2.415],[0.008,-0.866],[-2.148,-0.825],[0.041,-2.393],[0.191,-0.472],[0.641,0.057],[0.246,1.254],[0.24,1.985],[0.628,0.095],[1.539,0.385],[0.074,-2.268],[-0.02,-1.834],[0.068,-0.686],[-0.059,-2.606],[-3.632,-0.324],[-2.808,-0.242],[-1.212,-0.894],[0.324,-0.271],[0.43,0.195],[-0.212,1.061],[0.018,0.677],[1.092,0.171],[2.668,1.162],[0.633,-0.002],[1.75,0.255],[0.433,-2.313],[0.529,0.078],[4.668,-1.001],[2.935,-2.171],[0.618,0.385],[0.341,-0.894],[1.234,1.331],[0.696,-0.546],[1.61,-1.639],[0.015,2.615],[-0.004,4.293],[-0.259,4.392],[0.388,3.367],[2.467,0.435],[0.102,-0.33],[0.201,-0.536],[0.526,0.002],[0.349,0.61],[-0.112,0.571],[0.631,0.147],[0.481,-0.404],[-0.053,-0.239],[-1.515,-3.088],[-1.408,0.015],[-0.486,-1.262],[-0.033,0.494],[-0.008,2.369],[-0.007,0.526],[-0.677,-0.008],[-0.176,-2.356],[-0.201,-5.471],[0.124,-4.175],[0.659,-2.943],[0.501,-6.938],[-0.012,-2.462],[-0.199,-4.429],[0.304,0.051],[0.116,1.819],[0.232,1.87],[-0.101,0.523],[0.486,5.513],[-0.049,1.276],[0.81,-8.452],[0.887,1.01],[-0.436,3.843],[0.061,2.855],[0.013,1.018],[2.137,-0.811],[0.173,-0.914],[2.078,-0.1],[0.356,-1.376],[1.537,-1.333],[-0.451,-1.702],[0.824,-3.292],[1.06,-1.638],[-0.019,-0.043],[0.599,0.368],[0.941,1.227],[0.209,0.115],[0.29,-0.277],[-0.246,-0.304],[-0.867,-1.042],[0.948,-2.428],[-1.001,-2.215],[-0.336,-0.517],[2.595,2.087],[0.717,1.802],[-0.115,0.622],[1.786,1.849],[0.137,0.141],[0.835,0.846],[0.742,1.381],[-0.975,2.301],[1.564,1.482],[-0.031,1.514],[-0.043,0.877],[-0.411,-0.017],[-0.118,1.967],[-0.01,1.007],[0.877,-0.015],[-0.703,1.134],[-1.024,3.276],[0.381,0.424],[-0.261,5.043],[-0.298,3.246],[-0.126,0.854],[-0.864,0.264],[-0.613,1.314],[2.374,0.346],[-0.086,2.366],[-0.354,3.034],[-2.479,0.411],[-0.838,0.126],[-0.393,0.219],[0.018,2.529],[-0.124,0.268],[-0.235,0.556],[0.447,0.407],[0.811,-0.626],[0.405,0.935],[0.724,0.663],[1.28,1.217],[0.066,0.677],[-0.3,2.38],[-0.024,1.608],[1.097,0.791],[-0.001,0.788],[0.885,3.009],[-1.472,2.037],[0.339,0.888],[1.916,1.517],[-1.743,0.507],[-1.323,-0.147],[-0.564,0.198],[-3.639,0.146],[0.229,0.497],[-1.749,0.404],[-1.143,-1.046],[-0.889,0.826],[-2.626,1.184],[-0.61,0.967],[0.955,0.513],[0.018,0.186],[0.279,1.119],[2.528,2.194],[0.706,0.782],[-0.394,1.232],[-0.145,0.027],[-0.978,0.295],[-0.237,1.025],[0.787,0.407],[0.679,0.454],[-0.048,1.049],[-2.825,1.127],[0.499,0.401],[1.449,1.355],[-0.072,0.381],[-0.717,0.082],[-2.613,0.21],[-2.271,0.626],[-2.102,1.92],[-0.347,0.618],[-0.037,0.258],[-0.549,0.398],[-1.816,2.943],[-0.874,0.41],[0.025,2.655],[0.097,1.173],[-0.26,1.255],[0.276,0.295],[1.588,-0.74],[-0.014,0.617],[0.534,0.157],[-0.46,2.685],[-0.389,-0.021],[-0.721,-0.04],[-0.648,0.004],[0.054,-0.537],[0.31,-2.189],[-0.045,-0.617],[-0.809,-0.048],[-0.424,2.877],[-0.171,-0.011],[-1.199,-1.145],[1.376,-0.535],[0.036,-0.633],[0.007,-0.524],[-0.582,-0.489],[-1.013,0.776],[0.004,0.322],[-0.247,1.212],[-0.528,0.166],[-3.318,0.629],[0.071,-0.183],[0.658,-1.742],[-0.786,0.014],[-1.061,-0.037],[-1.123,-2.487],[-1.065,0.262],[-0.522,-0.14],[-2.679,-0.947],[-1.452,0.434],[-2.136,-0.106],[-0.161,-0.072],[-2.029,0.934],[-1.229,0.062],[-0.531,0.012],[-0.009,0.609],[3.431,-0.589],[0.678,-0.019],[0.394,0.074],[-0.057,0.538],[-0.728,0.116],[0.011,0.815],[0.335,0.044],[1.499,-0.519],[0.034,0.872],[-1.648,-0.078],[-0.611,0.796],[-1.585,0.001],[-0.027,-2.755],[-3.43,-0.443],[-6.062,-0.184],[-1.79,-0.094],[-0.782,0.727],[-3.199,0.116],[-0.852,0.031],[-0.649,-0.393],[0.918,-0.884],[1.133,-0.044],[1.655,-0.192],[-0.394,-1.011],[-0.089,-0.736],[0.667,-0.622],[0.221,-1.681],[-1.646,-0.305],[-1.627,0.584],[-0.439,-1.095],[-0.651,0.223],[-0.57,-0.412],[-1.293,0.136],[0.419,-0.464],[0.427,-0.484],[0.686,0.438],[0.979,-0.733],[-0.76,-2.256],[0.956,0.022],[0.086,1.57],[0.072,3.703],[0.674,-0.002],[1.025,1.99],[1.493,-0.111],[-0.62,-1.186],[-1.37,-1.597],[0.347,-1.119],[-0.011,-0.934],[0.028,-1.141],[-0.498,-0.045]],"v":[[-63.791,82.69],[-63.476,74.154],[-63.726,67.218],[-63.843,54.382],[-62.913,48.3],[-59.317,44.813],[-53.43,49.021],[-53.807,57.846],[-52.337,60.589],[-52.021,62.382],[-53.169,64.255],[-53.006,69.869],[-53.271,73.093],[-54.719,74.171],[-56.206,72.777],[-56.358,62.721],[-55.37,51.991],[-55.229,48.895],[-57.532,46.372],[-60.386,48.252],[-60.672,53.546],[-59.459,54.913],[-57.688,57],[-57.556,74.261],[-59.305,74.12],[-60.34,75.006],[-59.276,75.526],[-57.727,76.574],[-57.479,81.87],[-57.386,89.382],[-56.934,89.969],[-56.704,88.68],[-54.537,86.729],[-52.794,86.53],[-51.847,85.76],[-53.157,84.833],[-54.868,85.3],[-56.192,84.384],[-56.608,76.861],[-55.552,75.665],[-49.072,76.795],[-45.951,76.069],[-40.507,75.092],[-34.079,70.595],[-28.405,64.488],[-26.193,60.012],[-25.049,56.711],[-24.1,52.245],[-22.028,50.865],[-20.371,48.573],[-21.01,41.635],[-21.166,37.659],[-19.868,35.155],[-18.079,35.267],[-18.166,36.726],[-17.95,39.155],[-17.992,41.323],[-18.632,43.098],[-16.858,43.396],[-13.37,42.844],[-12.639,40.982],[-11.934,35.168],[-3.573,34.288],[6.301,34.109],[7.462,33.054],[9.533,25.209],[9.902,23.325],[9.143,21.708],[7.221,22.046],[6.188,24.678],[6.602,28.195],[4.806,31.471],[3.329,31.185],[3.403,29.805],[4.522,22.069],[3.536,20.458],[2.813,17.005],[2.824,6.639],[2.25,3.451],[-0.088,1.745],[-2.405,3.612],[-5.321,7.092],[-7.836,8.354],[-9.952,8.516],[-14.145,10.73],[-13.976,15.857],[-13.682,20.28],[-15.297,23.153],[-16.737,20.435],[-16.641,12.035],[-17.752,3.694],[-17.897,-0.882],[-12.017,-6.479],[-13.656,-7.748],[-18.049,-8.133],[-22.133,-8.475],[-20.381,-8.973],[-14.367,-9.38],[-9.3,-9.154],[-8.571,-8.689],[-6.376,-8.924],[-6.468,-10.025],[-13.24,-11.456],[-22.616,-10.39],[-27.509,-16.671],[-27.125,-15.738],[-24.576,-14.673],[-23.262,-17.661],[-23.263,-23.379],[-22.887,-23.532],[-20.37,-20.038],[-17.3,-20.299],[-16.445,-23.842],[-15.398,-28.817],[-12.881,-38.92],[-12.202,-42.254],[-11.431,-37.502],[-11.127,-28.799],[-10.664,-26.486],[-5.029,-22.791],[0.693,-22.98],[1.916,-22.329],[-5.442,-21.322],[4.106,-20.424],[6.407,-18.807],[6.692,-11.587],[10.53,-7.6],[13.515,-5.539],[15.277,-4.722],[15.86,-6.429],[11.135,-9.806],[9.809,-9.742],[8.196,-10.929],[8.104,-19.01],[8.635,-19.954],[9.326,-18.969],[9.618,-15.589],[10.242,-14.589],[10.738,-15.669],[10.839,-20.842],[11.744,-19.072],[12.417,-18.41],[12.934,-19.064],[13.183,-20.658],[13.198,-27.903],[12.17,-29.876],[10.034,-34.314],[11.312,-41.396],[12.203,-42.568],[13.002,-41.284],[13.599,-37.495],[16.981,-34.488],[18.901,-34.44],[21.137,-36.331],[21.172,-43.141],[21.65,-48.584],[21.764,-50.649],[18.837,-53.537],[7.927,-54.151],[0.621,-56.974],[0.292,-62.873],[1.391,-63.104],[1.568,-62.188],[0.992,-58.994],[1.834,-57.443],[4.588,-56.092],[12.857,-55.351],[14.768,-55.404],[17.3,-57.169],[20.073,-59.141],[21.689,-59.137],[34.954,-64.137],[44.613,-64.999],[45.89,-65.513],[47.298,-65.778],[50.421,-65.579],[52.42,-67.33],[58.211,-70.359],[58.252,-62.514],[58.155,-49.639],[58.283,-36.511],[61.824,-32.189],[67.106,-35.404],[67.443,-36.384],[68.608,-37.111],[69.865,-36.482],[69.909,-34.611],[70.338,-33.102],[72.252,-32.798],[72.031,-34.446],[71.79,-35.145],[64.517,-41.091],[61.717,-43.328],[60.69,-47.487],[60.632,-46.606],[60.604,-39.5],[59.894,-38.233],[59.41,-39.429],[58.935,-46.501],[58.943,-62.917],[59.184,-75.449],[59.99,-84.388],[60.278,-105.233],[60.131,-112.624],[60.206,-125.925],[61.117,-125.772],[61.488,-120.318],[61.502,-114.736],[61.494,-113.111],[61.618,-96.565],[62.478,-92.874],[63.11,-118.571],[64.043,-115.801],[63.938,-104.268],[64.157,-95.696],[65.579,-94.757],[69.483,-99.165],[71.117,-100.8],[74.626,-103.996],[76.408,-107.832],[77.714,-112.631],[77.201,-117.856],[81.193,-127.037],[82.48,-132.31],[82.646,-132.538],[84.066,-131.066],[87.548,-128.173],[88.227,-128.098],[88.091,-128.863],[87.287,-129.721],[84.613,-132.785],[84.647,-140.084],[81.059,-146.357],[80.293,-148.046],[85.758,-140.173],[86.44,-134.52],[87.042,-132.963],[92.903,-128.034],[93.344,-127.64],[95.501,-124.833],[94.323,-121.903],[95.132,-115.778],[96.597,-110.746],[95.805,-106.275],[94.126,-104.279],[93.603,-103.502],[93.286,-97.599],[94.924,-95.537],[95.245,-94.351],[93.392,-90.821],[94.742,-81.579],[95.307,-80.092],[95.856,-65.026],[95.41,-55.287],[94.183,-53.712],[92.21,-52.043],[93.359,-49.9],[95.62,-47.075],[95.352,-39.977],[91.603,-35.851],[84.147,-34.737],[81.783,-33.911],[80.895,-32.981],[78.08,-26.731],[77.666,-25.946],[77.961,-24.456],[79.328,-24.501],[81.766,-26.61],[82.775,-23.884],[85.068,-22.027],[87.009,-17.504],[87.347,-15.494],[88.379,-8.645],[90.529,-5.19],[92.079,-2.218],[92.168,0.136],[89.908,7.595],[89.971,12.04],[91.791,13.919],[95.55,19.774],[90.296,19.87],[86.983,21.261],[85.29,21.854],[74.305,22.367],[75.141,23.303],[70.099,25.094],[67.14,25.483],[64.317,27.752],[59.251,33.448],[59.93,35.755],[62.363,37.844],[62.419,38.401],[64.346,40.926],[71.895,47.546],[73.195,50.355],[70.471,51.762],[70.032,51.815],[68.167,53.742],[69.565,55.367],[71.944,56.547],[73.304,58.528],[71.621,59.923],[71.066,64.087],[72.52,65.339],[74.131,70.305],[74.054,71.473],[71.904,71.721],[64.068,71.545],[57.556,74.085],[52.206,80.505],[52.038,82.32],[51.926,83.093],[50.833,84.672],[43.833,92.027],[42.564,94.228],[42.248,102.165],[42.437,105.68],[42.685,109.301],[43.621,109.438],[47.847,110.193],[48.71,111.394],[49.28,112.447],[45.75,116.076],[44.576,116.131],[42.435,115.843],[40.491,115.854],[40.656,114.243],[41.38,107.655],[40.614,106.137],[39.798,107.47],[39.263,116.146],[38.748,116.113],[38.083,114.404],[38.3,112.545],[38.402,110.648],[38.053,109.144],[33.915,109.161],[33.909,111.569],[34.235,112.53],[34.427,116.115],[32.843,116.613],[22.889,116.626],[23.101,116.077],[21.435,113.757],[19.077,113.773],[16.7,112.295],[11.753,110.011],[8.546,110.187],[6.981,109.762],[-1.231,109.009],[-5.564,109.619],[-11.977,109.365],[-12.558,109.387],[-18.823,109.88],[-22.517,109.922],[-23.339,110.79],[-22.48,111.267],[-12.162,111.096],[-10.12,111.385],[-9.3,112.089],[-10.269,112.483],[-12.242,113.142],[-10.128,113.996],[-9.103,113.933],[-4.573,113.763],[-4.9,116.325],[-9.433,117.578],[-9.937,120.22],[-14.674,119.931],[-19.044,115.507],[-29.415,114.812],[-47.586,115.248],[-51.943,117.029],[-52.296,119.325],[-61.892,119.674],[-64.306,119.139],[-64.447,117.88],[-61.186,116.718],[-57.789,116.601],[-56.606,114.616],[-57.583,111.523],[-57.142,109.426],[-55.449,109.828],[-58.334,104.637],[-63.312,104.714],[-66.16,103.459],[-68.392,102.452],[-70.386,102.585],[-71.987,102.365],[-75.71,101.568],[-74.454,100.176],[-73.006,99.967],[-70.898,100.116],[-69.947,97.442],[-70.382,90.609],[-68.893,92.076],[-68.631,96.786],[-64.67,100.694],[-62.712,100.988],[-58.453,102.265],[-57.399,100.217],[-59.853,97.095],[-61.442,91.558],[-61.513,88.531],[-61.538,85.729],[-63.1,83.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.429,0.048],[0.123,-0.912],[-0.423,0.189],[-0.127,1.165]],"o":[[-0.839,-0.023],[-0.057,0.42],[0.695,-0.31],[0.068,-0.624]],"v":[[-61.691,0.512],[-63.261,1.696],[-62.682,2.263],[-60.716,1.12]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.63,0.087],[0.01,0.879],[0.514,-0.153],[-0.029,-0.836]],"o":[[0.659,-0.193],[-0.006,-0.535],[-0.588,0.175],[0.016,0.451]],"v":[[-38.331,12.126],[-36.993,10.843],[-37.877,10.161],[-39.154,11.332]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.597,-0.053],[0,-0.911],[-0.577,0.226],[0.017,1.331]],"o":[[-1.161,0.053],[0,0.68],[0.629,-0.246],[-0.01,-0.757]],"v":[[-52.99,11.788],[-54.61,13.198],[-53.662,13.895],[-51.865,12.994]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.341,-0.027],[0.02,0.672],[0.579,0.109],[-0.051,-0.571]],"o":[[0.936,-0.016],[-0.018,-0.601],[-0.53,-0.099],[0.051,0.565]],"v":[[-38.882,33.654],[-36.767,32.094],[-37.733,30.97],[-39.71,33.119]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.158,0.592],[0.667,0.075],[0.091,-0.738],[-0.546,-0.044]],"o":[[0.09,-1.048],[-1.047,-0.118],[-0.091,0.738],[0.83,0.066]],"v":[[-63.047,34.363],[-64.23,33.023],[-65.74,34.475],[-64.432,35.6]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.431,0.087],[0.084,-1.071],[-0.674,0.071],[-0.142,1.009]],"o":[[-1.1,-0.048],[-0.054,0.683],[0.953,-0.101],[0.132,-0.941]],"v":[[-63.768,18.898],[-65.778,20.268],[-64.53,21.203],[-62.608,19.665]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[1.082,-0.139],[1.892,-0.995],[0,-0.526],[-0.387,-0.163],[-1.977,-0.333],[-0.122,0.152],[-0.873,0.606],[0.85,0.402]],"o":[[-2.116,0.125],[-0.371,0.195],[0,0.523],[1.893,0.796],[0.218,0.037],[0.693,-0.866],[0.672,-0.466],[-0.944,-0.446]],"v":[[-71.12,3.453],[-77.158,5.059],[-78.133,5.822],[-77.16,6.591],[-71.234,7.613],[-70.549,7.429],[-67.98,5.545],[-68.125,4.094]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.196],[-0.016,0],[-0.025,-0.539],[-1.678,0.423],[-0.648,0.229],[0.789,1.61],[0.805,0.501],[1.116,-0.523],[0.059,-1]],"o":[[0.016,0],[0,0.54],[0.08,1.731],[0.665,-0.168],[1.69,-0.596],[-0.422,-0.86],[-0.99,-0.616],[-1.167,0.546],[-0.012,0.196]],"v":[[-87.933,-141.79],[-87.886,-141.79],[-87.882,-140.169],[-85.39,-138.301],[-83.433,-138.95],[-81.946,-142.573],[-83.835,-144.594],[-87.042,-145.134],[-87.931,-142.379]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.009,0.741],[-0.269,0.039],[-2.498,0.097],[-2.584,-0.297],[-0.099,-0.079],[0,0],[-0.108,-0.414],[-0.686,-0.111],[-0.191,0.496],[-0.663,0.031],[-1.108,-0.147],[-0.675,-0.002],[0.113,-0.918],[-0.057,-0.721],[-1.068,0.095],[0.068,0.698],[-0.949,0.054],[-0.068,-1.103],[-0.636,-0.026],[0.302,-0.698],[0.411,-0.505],[2.061,-1.041],[2,-0.692],[0.617,-0.222],[0.951,-0.735],[0.061,-0.789],[-0.007,-0.685],[-2.443,-2.886],[-0.164,-0.412],[-0.579,0.09],[-0.142,0.765],[-0.949,-0.003],[-0.022,-0.677],[-0.01,-0.197],[-1.241,0.8],[-1.043,0.144],[-0.365,-0.273],[-0.671,0.98],[-1.18,0.055],[-2.207,-0.109],[-0.306,-4.68],[0.008,-0.932],[0.628,0.095],[0.24,1.985],[0.246,1.254],[0.641,0.057],[0.191,-0.472],[0.041,-2.393],[-2.148,-0.825],[0.008,-0.866],[0.025,-2.415],[0.111,-0.526],[0.33,-0.037],[0.157,0.3],[0.764,0.352],[-0.701,1.253],[1.562,0.203],[0.249,-0.68],[0.378,-1.142],[1.5,-1.694],[0.291,-0.005],[0.472,0.061],[1.909,-0.024],[1.081,3.459],[0.145,0.773],[0.145,2.899],[0.603,1.54],[0.131,-1.113],[1.793,-3.129],[-0.155,-1.768],[0.583,-1.116],[1.401,1.996],[0.84,1.164],[0.125,-0.051],[-0.003,-1.906],[1.013,-0.732],[0.213,1.619],[0.265,0.255],[-0.009,0.284],[0.046,0.111],[-0.003,0.526],[0.679,0.915],[0.895,-0.141],[-0.042,1.76],[-0.483,2.567],[0.108,0.727],[0.527,-0.037],[0.02,-0.404],[-0.308,-3.415],[-3.358,-0.351],[-0.247,-0.015],[-0.048,-0.876],[0.052,-2.14],[-2.986,0.665],[-0.232,0.081],[-0.727,0.459],[-0.086,0.039],[-0.171,0.006],[-1.372,0.052],[-1.438,-0.387],[-0.284,-0.801],[-0.073,-2.675],[-0.168,-1.533],[-0.246,-2.807],[-0.257,-2.799],[-1.389,-0.328],[0.142,1.256],[0.203,1.476],[-0.533,1.751],[-2.034,-0.738],[-0.691,0.368],[-0.841,0.416],[-0.302,1.73],[-1.193,0.033],[-0.383,-1.081],[0.007,-1.107],[0.012,-3.456],[-0.451,-1.103],[0.031,-0.683],[2.361,-2.302],[-0.313,-0.45],[-0.536,0.175],[0.144,1.394],[0.157,1.17],[-0.779,0.709],[-0.691,-0.292],[0.075,-0.667],[0.139,-0.625],[0.152,-2.765],[0.803,0.073],[3.288,-0.378],[2.787,-0.292],[0.006,-0.011],[0.678,-1.054],[-0.528,-0.498],[-1.032,-0.22],[0.869,-0.418],[1.148,-0.314],[0.406,0.646],[-0.492,0.481],[0.748,0.753],[-0.521,0.864],[0.537,0.499],[0.589,-0.335],[0,-1.023],[0.103,-1.313],[-0.176,-2.315],[1.511,-0.178],[0.27,-0.962],[0.109,-1.535],[0.804,-0.941],[0.415,-1.616],[2.953,-0.878],[1.856,-1.919],[2.502,1.331],[0.649,0.083],[1.069,0.153],[-0.176,1.28],[0.017,2.466],[0.545,0.759],[0.756,0.177],[0.059,1.164],[0.462,2.99],[4.584,0.413],[0.588,-2.165],[0.33,-2.011],[-0.047,-4.271],[-0.312,-2.288],[0.357,-2.835],[0.07,0.224],[0.656,0.065],[0.204,-0.402],[0.365,-0.103],[-0.055,0.636],[0.157,1.924],[1.446,-0.083],[1.129,0.013],[0.241,4.086],[0.624,1.467],[0.341,-0.038],[1.542,1.576],[0.758,-0.406],[-0.409,-1.407],[0.249,-0.784],[0.822,0.361],[-0.27,0.878],[2.613,2.946],[-1.246,0.603],[-0.109,0.769],[-1.177,1.642],[0.893,-1.688],[-0.465,-1.678],[-0.383,0.734],[-0.395,-0.476],[-0.265,-0.353],[-0.671,0.157],[-0.128,0.608],[0.701,0.966],[-0.739,3.396],[1.034,-0.526],[1.459,1.292],[0.446,1.281],[-1.239,-0.039],[-0.735,0.078],[0.012,0.376],[0.306,0.01],[0.276,-0.085],[0.38,0.641],[-0.509,0.519],[-0.375,0.863],[-1.077,0.723],[0.979,0.974],[-1.295,0.257],[-0.44,0.058],[0.141,1.758],[-1.07,-0.087],[-0.587,-0.069],[-0.64,0.662],[0.181,0.43],[0.331,0.002],[3.893,-1.187],[0.925,0.738],[2.137,-1.319],[0.496,0.463],[-0.167,0.635],[-0.607,0.77],[-0.366,1.319],[-1.81,-0.191],[-0.57,1.396],[0.87,0.667],[-1.373,2.945],[-0.456,0.321],[-0.371,2.371],[-1.155,0.007],[-0.804,0.993],[0.37,0.507],[1.449,0.675],[0.603,-0.697],[0.465,0.42],[-0.191,0.329],[0.355,0.435],[0.501,-0.089],[0.374,-1.13],[1.37,0.039],[1.19,-0.977],[0.527,0.257],[0.01,0.634],[1.82,0.821],[-0.638,0.583],[-0.637,-0.385],[-0.38,-0.45],[-1.134,0.983],[-1.008,0.866],[2.074,1.246],[1.827,-0.288],[1.429,-0.01],[-0.302,0.808],[-1.517,1.287],[1.792,1.056],[1.835,-0.059],[0.173,-0.468],[-0.274,-0.278],[-0.183,-0.192],[2.301,0.865],[1.07,-0.619],[-0.498,-0.533],[1.329,-0.473],[0.292,-0.184],[-0.292,-0.929],[-0.882,-0.045],[-1.175,-0.133],[-0.021,-1.028],[1.087,-0.32],[0.483,0.012],[0.545,-1.247],[-0.454,-0.282],[-1.016,-1.362],[-0.901,0.15],[0.012,0.639],[-0.773,-0.171],[-0.533,-0.519],[-0.536,0.118],[-0.102,0.45],[-0.812,0.735],[-0.284,-1.214],[-0.115,-0.473],[-0.758,-0.059],[-0.134,-1.15],[-0.538,-1.905],[1.2,-0.423],[0.443,0.938],[0.087,0.23],[0.69,-0.587],[0.294,-0.263],[1.32,1.21],[0.216,-1.038],[1.437,0.066],[1.028,-0.097],[0.081,-0.825],[-0.554,-0.16],[0.11,-0.699],[-1.64,-0.107],[0.82,-0.833],[0.449,-0.7],[-1.207,0.019],[-1.389,-0.881],[-0.44,0.028],[-0.629,-0.065],[0.189,-0.801],[-0.653,-0.663],[0.633,-0.707],[0.957,-0.373],[-0.471,-0.705],[-0.011,-0.976],[-1.147,-0.242],[-0.178,-0.691],[2.523,-3.498],[1.267,2.405],[1.165,-0.45],[0.986,-0.031],[0.004,-1.352],[0.976,-0.028],[1.257,-0.687],[-0.521,1.433],[-0.556,1.784],[1.906,1.398],[0.598,0.423],[-1.217,1.396],[0.448,0.883],[0.359,1.016],[-0.934,1.014],[-0.945,-0.631],[-0.141,-0.04],[-0.504,0.647],[0.434,0.445],[1.225,0.655],[-0.06,1.499],[0.242,2.023],[-1.538,1.893],[0.67,0.442],[-0.005,0.989],[0.108,4.044],[-0.399,1.893],[-1.224,0.579],[0.025,1.26],[-0.051,1.528],[-2.081,0.547],[-0.371,0.696],[0.141,1.39],[0.76,0.305],[-0.545,0.448],[-0.593,0.442],[0.41,2.668],[0.467,1.105],[1.373,-0.015],[1.519,-0.017],[-0.002,0.998],[-0.845,0.019],[-0.497,3.464],[-0.061,0.387],[-1.867,1.118],[-0.662,-1.86],[-0.198,-0.041],[-0.133,0.288],[-2.201,-0.348],[-0.967,-0.194],[0.496,-2.267],[-0.114,-1.582],[-0.958,0.349],[-2.565,-0.746],[-0.264,-1.428],[1.083,-0.76],[-0.813,-0.937],[-0.347,-1.709],[-1.886,-1.14],[-0.689,0.777],[0.414,1.241],[0.243,0.368],[-0.368,1.203],[0.497,1.074],[-1.117,1.71],[0.02,2.243],[-0.498,-0.334],[-0.062,0.839],[0.484,2.63],[-0.651,0.954],[0.868,0.425],[0.773,0.325],[-0.015,0.083],[0.649,0.932],[0.382,0.451],[-0.257,0.471],[-0.414,-0.08],[-1.086,-0.013],[0.018,0.904],[-0.107,6.447],[-0.919,1.806],[0.457,0.818],[-0.279,0.834],[0.162,1.411],[1.206,0.262],[0.192,0.046],[0.127,4.173],[0.079,1.674],[-0.169,0.141],[-0.274,-0.187],[-0.705,-0.104],[0.28,1.054],[0.146,0.366],[1.749,-1.363],[0.577,1.864],[-0.338,0.293],[-0.537,0.433],[0.693,1.046],[-0.603,0.144],[-1.028,0.491],[-0.185,0.881],[-1.727,0.308],[-2.638,-0.903],[0.262,-1.537],[-0.104,-0.054],[0.039,-1.261],[-0.735,-0.005],[-1.428,-0.058],[0.911,-1.363],[0.621,-0.552],[0.13,-1.858],[0.196,-0.023],[0.589,-0.821],[-0.737,-1.376],[-2.634,0.396],[-0.136,-0.667],[-1.303,0.723],[-0.636,1.205],[-1.068,1.524],[-0.55,0.692],[-0.928,-1.483],[-0.443,-0.647],[-1.543,1.116],[-1.369,0.409],[-0.388,0.203],[-1.446,2.263],[0,0],[-0.05,-0.479],[-1.201,0.59],[-0.264,0.025],[-1.087,-0.081],[-1.806,-0.051],[-0.17,1.13],[-2.046,0.46],[-0.005,-1.185],[-0.167,-8.136],[-0.121,-5.016],[-0.02,-1.054],[0.416,-4.637],[-0.353,-1.592],[-1.101,0.299],[-0.036,2.173]],"o":[[0.268,-0.039],[2.513,0.285],[2.227,1.085],[0.099,0.078],[0,0],[0.033,0.433],[0.126,0.484],[0.704,0.114],[0.231,-0.599],[0.698,1.131],[0.177,1.128],[0.991,0.004],[-0.09,0.73],[0.068,0.866],[1.086,-0.096],[-0.068,-0.702],[0.762,-0.044],[0.039,0.626],[0.903,0.037],[-0.257,0.594],[-1.513,1.86],[-2.124,-0.23],[-0.674,-0.167],[-0.805,-0.497],[-0.864,0.039],[-0.053,0.686],[0.032,3.235],[0.268,0.316],[0.279,0.7],[1.001,-0.156],[0.11,-0.59],[0.808,0.003],[0.006,0.197],[0.073,1.446],[0.821,-0.529],[0.365,0.274],[0.286,0.665],[0.721,-1.052],[2.232,-0.103],[0.864,4.668],[0.061,0.927],[-0.641,-0.012],[-2.337,-0.353],[-0.153,-1.269],[-0.099,-0.503],[-0.708,-0.063],[-0.917,2.27],[-0.028,1.679],[0.795,0.305],[-0.021,2.415],[-0.006,0.533],[-0.061,0.287],[-0.441,0.05],[-0.308,-0.587],[0.073,-1.281],[0.708,-1.267],[-1.014,-0.567],[-0.413,1.129],[-1.5,-0.451],[-0.13,0.147],[-0.207,-0.593],[-1.915,-0.246],[-3.109,0.038],[-0.233,-0.746],[-0.543,-2.886],[-0.08,-1.6],[-0.347,1.116],[-0.409,3.476],[-0.887,1.548],[0.111,1.272],[-1.154,2.211],[-0.824,-1.175],[-0.125,0.051],[0,1.906],[0.002,1.191],[-1.345,0.972],[-0.046,-0.353],[0.009,-0.284],[-0.046,-0.111],[-0.032,-0.526],[0.006,-0.988],[-0.576,-0.77],[-1.688,0.266],[0.061,-2.555],[0.133,-0.705],[-0.06,-0.406],[-0.601,0.042],[-0.165,3.393],[0.298,3.304],[0.245,0.026],[0.048,0.876],[-0.641,2.115],[-0.073,3.021],[0.238,-0.053],[0.627,0.083],[0.094,-0.009],[0.171,-0.006],[1.319,0.62],[1.484,-0.056],[0.697,0.187],[-2.439,0.589],[0.042,1.525],[0.305,2.788],[0.248,2.833],[0.103,1.125],[0.697,0.164],[-0.166,-1.471],[-0.232,-1.682],[0.622,-2.043],[0.778,0.283],[0.828,-0.441],[1.483,-0.733],[0.224,-1.286],[1.164,-0.033],[0.364,1.025],[-0.022,3.455],[-0.004,1.207],[0.241,0.59],[-0.119,2.609],[-0.37,0.361],[0.377,0.541],[1.102,-0.359],[-0.122,-1.174],[-0.145,-1.079],[0.573,-0.521],[0.705,0.298],[-0.071,0.634],[-0.587,2.64],[-0.033,0.594],[-3.297,-0.3],[-2.784,0.32],[-0.131,-0.054],[-0.597,1.145],[-0.273,0.423],[0.698,0.658],[0.503,0.915],[-1.116,0.537],[-0.58,0.159],[-0.471,-0.75],[0.742,-0.725],[-0.732,-0.737],[0.283,-0.47],[-0.55,-0.511],[-0.954,0.542],[0.001,1.326],[-0.185,2.361],[0.111,1.456],[-0.943,0.111],[-0.411,1.463],[-0.085,1.196],[-1.118,1.31],[-0.798,3.105],[-2.723,0.81],[-2.118,2.19],[-0.321,-0.429],[-1.07,-0.137],[-1.405,-0.201],[0.337,-2.454],[-0.005,-0.814],[0.335,-0.688],[-1.695,-0.398],[-0.151,-2.952],[-0.479,-3.103],[-1.541,-0.139],[-0.543,2],[-0.708,4.32],[0.026,2.305],[0.393,2.883],[-0.125,-0.206],[-0.142,-0.457],[-0.725,-0.072],[-0.16,0.315],[-0.077,-0.639],[0.164,-1.9],[-0.1,-1.226],[-1.125,0.065],[-0.017,-4.087],[-0.106,-1.803],[-0.133,-0.314],[-2.324,0.26],[-0.676,-0.691],[-1.278,0.685],[0.258,0.886],[-0.258,0.811],[-0.795,-0.349],[1.118,-3.64],[-0.935,-1.054],[0.706,-0.341],[0.295,-2.09],[0.265,2.018],[-0.89,1.682],[0.16,0.576],[0.576,-1.103],[0.28,0.337],[0.369,0.49],[0.651,-0.152],[0.242,-1.147],[-2.084,-2.873],[0.26,-1.193],[-0.118,-2.255],[-1.019,-0.903],[-0.303,-0.869],[0.734,0.023],[0.31,-0.033],[-0.012,-0.378],[-0.293,-0.009],[-0.765,0.237],[-0.417,-0.703],[0.662,-0.675],[0.528,-1.215],[1.084,-0.728],[-0.93,-0.926],[0.432,-0.086],[1.741,-0.228],[-0.087,-1.094],[0.588,0.048],[0.869,0.103],[0.271,-0.28],[-0.165,-0.393],[-3.995,-0.029],[-1.1,0.336],[-1.53,-1.221],[-0.557,0.344],[-0.49,-0.457],[0.262,-0.998],[0.825,-1.047],[0.466,-1.679],[1.392,0.147],[0.62,-1.517],[-2.434,-1.866],[0.244,-0.524],[2.062,-1.45],[0.166,-1.059],[1.333,-0.008],[0.387,-0.478],[-0.905,-1.241],[-0.739,-0.344],[-0.286,0.331],[-0.37,-0.333],[0.228,-0.393],[-0.35,-0.429],[-1.17,0.209],[-0.406,1.226],[-1.524,-0.044],[-0.32,0.263],[-0.575,-0.28],[-0.023,-1.445],[-0.78,-0.352],[0.94,-0.859],[0.49,0.296],[0.962,1.139],[1.004,-0.871],[1.792,-1.54],[-1.669,-1.003],[-1.431,0.226],[-0.723,0.005],[0.628,-1.679],[1.58,-1.341],[-1.648,-0.971],[-0.378,0.012],[-0.166,0.45],[0.165,0.167],[-2.3,1.97],[-1.292,-0.486],[-0.548,0.317],[1.069,1.144],[-0.322,0.115],[-0.705,0.444],[0.269,0.854],[1.18,0.06],[0.891,0.101],[0.02,0.961],[-0.467,0.137],[-1.549,-0.037],[-0.155,0.356],[1.537,0.956],[0.556,0.745],[0.806,-0.134],[-0.02,-1.083],[0.769,0.17],[0.341,0.331],[0.608,-0.134],[0.233,-1.032],[0.916,-0.829],[0.111,0.475],[0.134,0.548],[1.418,0.111],[0.23,1.971],[0.314,1.112],[-1.453,0.512],[-0.106,-0.223],[-0.345,-0.906],[-0.3,0.256],[-1.383,1.235],[-0.546,-0.5],[-0.303,1.454],[-1.034,-0.048],[-0.765,0.072],[-0.074,0.752],[0.715,0.206],[-0.213,1.359],[-1.207,1.102],[-0.585,0.593],[-0.675,1.052],[1.532,-0.024],[0.291,0.185],[0.638,-0.041],[0.723,0.075],[-0.238,1.008],[0.699,0.71],[-0.75,0.838],[-0.463,0.18],[0.612,0.916],[0.013,1.115],[0.792,0.167],[1.063,4.118],[-1.575,2.184],[-0.349,-0.663],[-0.956,0.369],[-1.38,0.043],[-0.003,1.074],[-1.312,0.038],[-1.511,-0.444],[0.64,-1.758],[0.715,-2.291],[-0.355,-0.707],[-1.524,-1.078],[0.698,-0.8],[-0.491,-0.968],[-0.443,-1.256],[0.937,-1.018],[0.12,0.08],[0.921,0.258],[0.574,-0.736],[-0.971,-0.995],[-1.24,-0.663],[0.081,-2.014],[-0.275,-2.291],[0.623,-0.766],[-0.93,-0.614],[0.021,-4.046],[-0.052,-1.923],[0.27,-1.284],[1.163,-0.55],[-0.03,-1.529],[0.062,-1.834],[0.789,-0.208],[0.643,-1.205],[-0.124,-1.228],[-0.802,-0.321],[0.571,-0.469],[2.408,-0.032],[1.334,0.157],[-0.573,-1.356],[-1.519,0.017],[-0.842,0.009],[0.002,-1.051],[3.488,-0.08],[0.056,-0.388],[0.302,-1.912],[0.646,1.866],[0.094,0.264],[0.464,0.096],[0.929,-2.006],[0.974,0.154],[2.251,0.452],[-0.325,1.486],[0.065,0.905],[2.558,-0.933],[1.4,0.407],[0.25,1.352],[-1.037,0.727],[1.12,1.292],[0.423,2.082],[1.211,0.732],[0.978,-1.102],[-0.139,-0.417],[-0.715,-1.083],[0.327,-1.071],[-0.878,-1.895],[1.119,-1.713],[-0.004,-0.485],[1.161,0.779],[0.193,-2.595],[-0.211,-1.148],[0.884,-1.297],[-0.752,-0.368],[-0.217,-0.091],[0.284,-1.53],[-0.334,-0.48],[-0.321,-0.38],[0.246,-0.45],[1.076,0.207],[1.001,0.012],[-0.127,-6.45],[-0.111,-2.109],[0.407,-0.799],[-0.497,-0.889],[0.442,-1.321],[-0.143,-1.245],[-0.193,-0.042],[-3.957,-0.957],[-0.051,-1.675],[-0.013,-0.279],[0.327,-0.272],[0.569,0.389],[0.921,0.136],[-0.101,-0.38],[-0.838,-2.101],[-1.501,1.17],[-0.164,-0.528],[0.521,-0.452],[0.863,-0.696],[-0.501,-0.756],[1.107,-0.265],[0.801,-0.383],[0.402,-1.911],[2.682,-0.478],[1.284,0.439],[-0.04,0.232],[1.38,0.721],[-0.028,0.901],[1.431,0.01],[1.63,0.066],[-0.46,0.689],[-1.409,1.252],[-0.196,0.023],[-0.759,-0.217],[-0.736,1.027],[0.169,2.282],[0.083,0.678],[0.298,1.466],[1.168,-0.648],[1.501,1.108],[0.507,-0.724],[1.079,-1.357],[0.417,0.667],[1.038,1.516],[1.633,0.545],[0.397,0.377],[2.077,-1.086],[0,0],[-0.007,0.485],[0.121,1.159],[0.264,-0.025],[0.229,1.655],[1.798,0.134],[1.105,0.031],[1.553,1.149],[0.776,-0.174],[0.031,8.138],[0.103,5.018],[-0.239,1.003],[0.088,4.634],[-0.14,1.562],[0.178,0.804],[2.045,-0.555],[0.012,-0.741]],"v":[[-14.631,-82.993],[-13.826,-83.111],[-6.333,-83.403],[0.435,-80.34],[0.733,-80.105],[0.734,-80.099],[0.847,-78.803],[1.606,-77.53],[2.655,-78.517],[3.948,-79.514],[6.937,-78.268],[8.687,-77.449],[9.892,-76.059],[9.686,-73.868],[11.182,-72.207],[11.952,-73.956],[12.766,-75.327],[14.362,-74.33],[15.403,-73.298],[16.033,-72.129],[15.028,-70.513],[9.356,-66.637],[3.188,-65.81],[1.279,-65.531],[-1.277,-65.833],[-2.528,-64.479],[-2.713,-62.423],[-1.276,-52.905],[-0.815,-51.664],[-0.088,-49.65],[0.454,-51.808],[1.245,-53.274],[2.195,-51.85],[2.203,-51.258],[4.218,-50.261],[6.747,-51.727],[7.842,-50.907],[9.115,-50.591],[12.066,-51.944],[18.655,-51.284],[18.913,-37.234],[18.901,-34.44],[16.981,-34.488],[13.599,-37.495],[13.002,-41.284],[12.203,-42.568],[11.312,-41.396],[10.034,-34.314],[12.17,-29.876],[13.198,-27.903],[13.183,-20.658],[12.934,-19.064],[12.417,-18.41],[11.744,-19.072],[10.839,-20.842],[11.174,-24.681],[9.938,-26.729],[8.411,-25.834],[7.267,-22.41],[2.769,-22.361],[1.916,-22.329],[0.693,-22.98],[-5.029,-22.791],[-10.664,-26.486],[-11.127,-28.799],[-11.431,-37.502],[-12.202,-42.254],[-12.881,-38.92],[-15.398,-28.817],[-16.445,-23.842],[-17.3,-20.299],[-20.37,-20.038],[-22.887,-23.532],[-23.263,-23.379],[-23.262,-17.661],[-24.576,-14.673],[-27.125,-15.738],[-27.509,-16.671],[-27.482,-17.523],[-27.621,-17.855],[-27.71,-19.433],[-28.017,-22.357],[-30.263,-23.103],[-32.134,-24.755],[-32.179,-32.422],[-32.291,-34.627],[-32.945,-35.651],[-33.357,-34.554],[-33.417,-24.369],[-29.797,-20.529],[-29.058,-20.484],[-28.914,-17.857],[-29.193,-11.436],[-25.473,-8.489],[-24.777,-8.728],[-22.915,-8.384],[-22.645,-8.457],[-22.134,-8.476],[-18.049,-8.133],[-13.656,-7.748],[-12.017,-6.479],[-17.897,-0.882],[-17.752,3.694],[-16.641,12.035],[-16.737,20.435],[-15.297,23.153],[-13.682,20.28],[-13.976,15.857],[-14.145,10.73],[-9.952,8.516],[-7.836,8.354],[-5.321,7.092],[-2.405,3.612],[-0.088,1.745],[2.25,3.451],[2.824,6.639],[2.813,17.005],[3.536,20.458],[4.522,22.069],[3.403,29.805],[3.329,31.185],[4.806,31.471],[6.602,28.195],[6.188,24.678],[7.221,22.046],[9.143,21.708],[9.902,23.325],[9.533,25.209],[7.462,33.054],[6.301,34.109],[-3.573,34.288],[-11.934,35.168],[-12.312,35.014],[-14.815,37.791],[-14.926,39.249],[-12.639,40.981],[-13.37,42.844],[-16.858,43.396],[-18.632,43.098],[-17.992,41.323],[-17.95,39.155],[-18.166,36.726],[-18.079,35.267],[-19.868,35.155],[-21.166,37.659],[-21.01,41.635],[-20.371,48.573],[-22.028,50.865],[-24.1,52.245],[-25.049,56.711],[-26.193,60.012],[-28.405,64.488],[-34.08,70.595],[-40.507,75.092],[-45.951,76.069],[-47.197,75.159],[-50.374,74.498],[-51.972,72.215],[-51.735,64.823],[-52.021,62.382],[-52.337,60.589],[-53.807,57.846],[-53.43,49.021],[-59.317,44.813],[-62.913,48.3],[-63.843,54.382],[-63.726,67.218],[-63.476,74.154],[-63.79,82.69],[-64.158,82.069],[-64.912,80.953],[-65.752,81.964],[-66.466,82.663],[-66.385,80.761],[-65.939,75.056],[-67.94,73.091],[-71.327,73.069],[-71.564,60.81],[-73.694,56.525],[-74.641,56.233],[-80.287,53.873],[-82.437,53.62],[-83.906,57.079],[-84.239,59.518],[-85.94,60.753],[-86.444,58.546],[-88.291,48.563],[-87.984,46.456],[-86.856,44.9],[-84.059,39.589],[-85.489,45.066],[-85.71,50.074],[-84.695,50.224],[-83.32,50.316],[-82.615,51.441],[-81.107,52.154],[-79.994,50.895],[-80.504,47.623],[-82.266,38.207],[-83.572,37.274],[-86.886,32.599],[-89.203,29.411],[-88.177,27.874],[-85.969,27.687],[-85.38,27.16],[-86.005,26.674],[-86.884,26.754],[-88.433,26.017],[-88.147,24.32],[-86.617,21.974],[-84.202,19.036],[-83.938,16.707],[-83.29,14.8],[-81.963,14.698],[-79.848,12.099],[-78.395,10.598],[-76.638,10.84],[-74.311,10.16],[-73.914,9.123],[-74.83,8.81],[-86.731,9.777],[-89.556,9.122],[-94.898,8.025],[-96.526,7.768],[-96.959,6.156],[-95.395,3.671],[-93.248,0.33],[-90.011,-1.943],[-86.953,-3.752],[-88.416,-6.406],[-89.7,-12.543],[-88.66,-13.957],[-85.399,-19.856],[-83.458,-21.47],[-80.362,-23.269],[-80.277,-24.764],[-83.581,-27.872],[-85.586,-27.631],[-86.677,-27.263],[-86.496,-28.323],[-86.356,-29.54],[-87.711,-29.939],[-90.05,-27.92],[-92.575,-26.124],[-96.657,-24.619],[-97.749,-24.059],[-98.587,-25.529],[-100.147,-29.256],[-100.221,-32.249],[-98.075,-31.682],[-96.82,-30.443],[-94.121,-30.223],[-91.12,-32.847],[-91.525,-36.861],[-96.842,-37.599],[-101.127,-37.438],[-102.29,-38.534],[-99.983,-43.41],[-100.299,-46.862],[-105.623,-47.769],[-106.657,-47.397],[-106.153,-46.411],[-105.645,-45.879],[-112.674,-45.502],[-116.002,-45.142],[-116.242,-44.036],[-116.93,-41.685],[-117.846,-41.201],[-118.859,-39.277],[-117.028,-38.057],[-113.494,-37.743],[-111.739,-36.281],[-113.129,-34.076],[-114.58,-33.845],[-117.437,-31.681],[-117.303,-30.623],[-114.151,-26.614],[-111.991,-25.625],[-111.097,-27.126],[-109.733,-28.045],[-107.937,-26.798],[-106.906,-25.858],[-106.498,-27.148],[-105.084,-29.856],[-103.076,-29.257],[-102.934,-27.788],[-101.995,-26.45],[-99.838,-24.209],[-98.663,-18.423],[-100.688,-15.313],[-102.904,-16.834],[-103.231,-17.498],[-104.8,-17.866],[-105.703,-17.101],[-108.808,-17.048],[-109.939,-16.817],[-112.646,-14.879],[-115.753,-14.856],[-117.335,-13.531],[-116.075,-12.531],[-114.689,-11.205],[-112.568,-9.391],[-115.493,-6.699],[-117.07,-4.75],[-116.232,-2.931],[-111.84,-2.219],[-110.544,-2.325],[-108.63,-2.387],[-107.592,-1.079],[-106.737,1.299],[-106.809,3.368],[-109.559,4.72],[-110.363,5.798],[-109.82,8.646],[-108.227,10.829],[-106.826,12.196],[-108.689,23.753],[-114.399,23.085],[-116.195,21.777],[-119.107,22.184],[-121.375,24.33],[-122.792,25.696],[-126.722,26.045],[-127.96,23.712],[-126.041,18.439],[-127.877,13.006],[-129.537,11.574],[-130.026,8.16],[-129.728,5.729],[-131.148,2.802],[-131.067,-0.998],[-128.042,-0.424],[-127.632,-0.259],[-125.619,-1.166],[-126.093,-2.791],[-129.408,-5.247],[-131.215,-8.338],[-131.416,-14.391],[-129.859,-20.832],[-130.15,-22.735],[-131.21,-25.155],[-131.239,-37.293],[-130.943,-43.002],[-128.869,-45.88],[-127.266,-48.635],[-127.27,-53.223],[-124.645,-57.187],[-122.853,-58.663],[-121.724,-62.549],[-123.883,-63.668],[-124.055,-64.829],[-122.28,-66.16],[-119.813,-69.493],[-118.728,-71.053],[-121.782,-72.948],[-126.338,-72.704],[-128.523,-73.612],[-126.343,-74.491],[-121.455,-78.816],[-121.358,-79.992],[-118.851,-84.922],[-116.904,-79.328],[-116.436,-78.633],[-115.849,-79.331],[-112.289,-81.236],[-109.384,-80.669],[-107.392,-77.522],[-108.314,-73.05],[-106.989,-72.171],[-99.292,-72.125],[-96.308,-69.558],[-98.249,-66.464],[-98.566,-63.973],[-96.445,-59.519],[-92.969,-54.57],[-89.072,-54.538],[-88.793,-58.164],[-89.393,-59.351],[-89.706,-62.742],[-89.721,-66.029],[-89.152,-71.327],[-86.655,-76.904],[-85.91,-77.388],[-84.447,-78.268],[-84.228,-86.074],[-84.087,-89.549],[-84.832,-91.62],[-87.16,-92.575],[-87.743,-92.935],[-89.547,-95.853],[-90.76,-97.147],[-91.137,-98.488],[-89.912,-98.699],[-86.668,-98.478],[-85.188,-99.925],[-84.957,-119.267],[-83.288,-125.015],[-83.17,-127.405],[-83.027,-129.973],[-82.45,-134.03],[-84.461,-136.263],[-85.036,-136.404],[-89.104,-141.535],[-89.38,-146.554],[-89.213,-147.375],[-88.313,-147.104],[-86.517,-146.109],[-85.324,-147.344],[-85.701,-148.465],[-88.897,-149.375],[-93.631,-150.965],[-93.153,-152.108],[-91.551,-153.419],[-90.937,-155.976],[-90.376,-157.031],[-87.176,-158.171],[-85.579,-159.998],[-82.099,-163.202],[-74.058,-162.824],[-72.166,-160.078],[-72.14,-159.383],[-70.948,-156.184],[-69.472,-155.111],[-65.181,-155.113],[-64.145,-153.064],[-65.803,-151.185],[-68.076,-146.53],[-68.663,-146.461],[-70.919,-146.514],[-71.592,-142.911],[-68.073,-140.543],[-67.816,-138.512],[-65.718,-137.507],[-62.962,-140.276],[-60.197,-140.734],[-58.597,-142.85],[-55.604,-142.663],[-54.408,-140.628],[-50.523,-140.053],[-46.392,-141.195],[-45.152,-141.143],[-38.95,-144.456],[-38.947,-144.442],[-38.959,-142.989],[-37.105,-141.866],[-36.313,-141.942],[-33.602,-140.322],[-28.182,-140.264],[-26.226,-141.758],[-21.043,-140.548],[-19.481,-138.211],[-19.324,-113.797],[-19.223,-98.747],[-19.53,-95.696],[-19.626,-81.788],[-19.989,-77.094],[-18.43,-75.787],[-14.66,-80.771]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.296],[1.16,0.332],[-1.215,-0.062]],"o":[[-1.19,-0.052],[1.134,-0.5],[0,0.296]],"v":[[242.88,-49.878],[239.335,-50.257],[242.88,-50.767]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.501,-0.529],[0.097,0.906],[-1.087,0]],"o":[[-0.667,-0.208],[1.087,0],[-0.387,0.693]],"v":[[36.626,-235.365],[35.12,-236.594],[38.38,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.889],[0.244,0.294],[-1.754,0.443]],"o":[[-0.224,-0.311],[-1.075,-1.298],[0,0.889]],"v":[[242.88,-46.322],[242.206,-47.252],[242.88,-48.989]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.296,0],[-0.58,-1.202],[0.522,1.46]],"o":[[0.58,1.202],[-1.327,-0.874],[0.296,0]],"v":[[34.231,-236.594],[35.972,-232.988],[33.342,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.296,0],[-0.084,-2.184],[1.031,-1.68],[0.216,1.975],[0.566,0.223],[0.348,0.875],[0.215,0.478]],"o":[[0.639,2.027],[0.067,1.752],[-0.197,-1.977],[-0.051,-0.468],[0.386,-1.027],[-0.194,-0.486],[0.296,0]],"v":[[-132.926,-236.594],[-131.019,-230.514],[-131.391,-225.275],[-131.989,-231.206],[-132.615,-232.428],[-133.175,-235.158],[-133.815,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.667,-0.208],[-0.972,-0.623],[-0.61,-0.896],[0.309,-0.261],[0.245,0.157],[0.914,0.19],[0.59,0.587],[0.58,1.202],[-0.296,0]],"o":[[0.252,1.108],[0.921,0.59],[0.154,0.227],[-0.274,0.231],[-0.736,-0.473],[-0.59,-0.587],[-0.58,-1.202],[0.296,0],[0.097,0.906]],"v":[[36.626,-235.365],[38.448,-232.8],[40.626,-230.427],[40.748,-229.656],[39.96,-229.829],[37.741,-231.227],[35.972,-232.988],[34.231,-236.594],[35.12,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.092,0.599],[0.617,0.015],[0.044,-0.669],[-0.558,-0.029]],"o":[[-0.042,-0.515],[-0.675,-0.017],[-0.037,0.564],[0.654,0.034]],"v":[[14.02,-234.18],[13.257,-235.256],[12.115,-234.146],[12.989,-233.158]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.593,0],[-0.237,-0.246],[1.146,-0.968],[0.858,1.14],[-1.267,0.866],[-0.196,0.145]],"o":[[0.265,0.219],[1.019,1.06],[-0.982,0.829],[-0.812,-1.079],[0.202,-0.138],[0.593,0]],"v":[[14.077,-236.594],[14.868,-235.933],[14.625,-232.271],[10.943,-232.894],[11.709,-236.159],[12.299,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.296],[3.28,1.06],[0.548,0.51],[-3.482,-1.496],[-0.39,-0.032]],"o":[[-3.24,0.257],[-0.496,-0.16],[3.436,-0.857],[0.341,0.146],[0,0.296]],"v":[[242.88,28.365],[233.146,28.648],[231.538,28.01],[241.718,27.363],[242.88,27.476]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.766],[0.817,0.002],[-0.556,1.987],[-1.388,1.649],[-0.323,0.099]],"o":[[-0.717,-0.95],[-2.096,-0.006],[0.592,-2.114],[0.183,-0.217],[0,2.766]],"v":[[242.88,-184.136],[240.417,-184.415],[238.53,-186.687],[241.931,-192.12],[242.88,-192.434]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.494],[3.213,-1.214],[0.575,-0.12],[0.213,0.604],[-0.449,0.205],[-2.147,0.991],[-0.441,-0.181],[-1.602,-0.218]],"o":[[-3.355,-1.111],[-0.551,0.208],[-0.492,0.103],[-0.236,-0.667],[2.151,-0.983],[0.458,-0.212],[1.448,0.593],[0,0.494]],"v":[[242.88,105.126],[233.058,105.731],[231.37,106.258],[230.142,105.731],[230.866,104.658],[237.322,101.719],[238.55,101.833],[242.88,103.644]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.383],[3.002,1.414],[-0.371,0.109],[0.151,0.913],[0.831,0.113],[0.381,0.065],[-1.906,-0.187],[-1.357,-0.163]],"o":[[-3.147,0.424],[0.212,-0.373],[0.699,-0.206],[-0.136,-0.824],[-0.383,-0.052],[1.829,-1.232],[1.36,0.133],[0,1.383]],"v":[[242.88,35.181],[233.597,34.448],[234.558,33.839],[235.722,32.464],[234.274,31.06],[233.131,30.868],[238.809,30.549],[242.88,31.032]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.889,0],[-0.099,-2.531],[-0.072,-3.534],[0.406,-1.423],[0.454,0.748],[0.034,2.739],[0.067,1.752],[0.639,2.027]],"o":[[1.223,2.413],[0.138,3.538],[0.026,1.278],[-0.879,-0.743],[-0.035,-2.738],[1.031,-1.68],[-0.084,-2.184],[0.889,0]],"v":[[-130.258,-236.594],[-129.521,-229.095],[-129.357,-218.49],[-129.98,-214.552],[-131.288,-217.059],[-131.391,-225.275],[-131.019,-230.514],[-132.926,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.581],[0.517,2.799],[0.718,-0.645],[1.877,-1.587],[0.429,0.326],[-0.103,0.431],[-0.197,0.261],[-3.404,1.289],[-0.294,0.029],[-1.19,-0.052],[0,-0.296],[-1.075,-1.298],[-0.224,-0.311]],"o":[[-2.242,-0.322],[-0.217,-1.174],[-1.829,1.642],[-0.313,0.265],[-0.365,-0.277],[0.079,-0.333],[2.021,-2.683],[0.294,-0.029],[1.16,0.332],[0,0.296],[-1.754,0.443],[0.244,0.294],[0,1.581]],"v":[[242.88,-41.58],[239.07,-45.773],[237.861,-46.148],[232.283,-41.326],[231.139,-40.915],[231.029,-42.173],[231.366,-43.144],[238.452,-50.169],[239.335,-50.257],[242.88,-49.878],[242.88,-48.989],[242.206,-47.252],[242.88,-46.322]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.087,0],[0.004,-4.881],[-1.153,-0.323],[0.311,-0.477],[1.75,-2.21],[1.638,8.147]],"o":[[0.006,4.881],[-0.001,0.915],[0.526,0.147],[-1.468,2.255],[0.868,-8.206],[1.087,0]],"v":[[-163.749,-236.594],[-163.734,-221.952],[-162.621,-219.838],[-162.263,-218.787],[-166.96,-212.074],[-167.009,-236.594]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.482],[0.817,-0.95],[0.247,0.135],[1.218,0.367],[-0.256,0.248],[0.333,0.229],[0.256,-0.153],[1.138,1.641],[-0.373,0.403],[-2.276,-0.99],[-0.036,0.024],[-1.879,0.482]],"o":[[-0.746,1.035],[-0.233,0.271],[-1.071,-0.583],[-0.389,-0.117],[0.238,-0.231],[-0.299,-0.206],[-1.679,1.003],[-0.359,-0.517],[1.653,-1.788],[0.089,0.039],[1.92,-1.285],[0,1.482]],"v":[[242.88,198.187],[239.932,200.327],[239.114,200.279],[235.987,198.373],[235.984,197.693],[235.979,196.954],[235.176,197.097],[230.417,195.995],[230.593,194.691],[237.056,193.369],[237.305,193.503],[242.88,193.742]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.388,0.01],[1.314,0.176],[0.112,1.651],[0.29,1.794],[-0.523,0.31],[-0.879,-0.743],[0.026,1.278],[0.138,3.538],[1.223,2.413],[-1.383,0],[-0.051,-2.25],[0.047,-3.897],[-1.372,-1.363],[-0.014,-1.143],[-1.823,0.482]],"o":[[-0.437,1.072],[-1.377,-0.184],[-0.123,-1.819],[-0.077,-0.477],[0.454,0.748],[0.406,-1.423],[-0.072,-3.534],[-0.099,-2.531],[1.383,0],[-2.314,1.36],[0.088,3.895],[-0.019,1.536],[0.713,0.708],[0.024,1.957],[0.365,-0.097]],"v":[[-123.387,-209.812],[-128.322,-207.285],[-131.079,-210.343],[-131.726,-215.748],[-131.288,-217.059],[-129.98,-214.552],[-129.357,-218.49],[-129.521,-229.095],[-130.258,-236.594],[-126.109,-236.594],[-128.198,-230.78],[-128.188,-219.089],[-127.231,-214.737],[-126.7,-211.45],[-124.549,-209.77]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.039,0.074],[-0.003,-0.008],[-0.038,-0.074],[0.003,0.008]],"o":[[-0.039,0.024],[0.029,0.078],[0.04,-0.024],[-0.029,-0.078]],"v":[[239.532,205.751],[239.42,205.82],[239.528,206.045],[239.642,205.976]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-2.075],[0.689,0.263],[0.242,-0.244],[-0.108,-0.259],[1.351,-0.705],[0.795,1.311],[0.352,0.591],[0.959,-1.199],[1.505,1.595],[-0.779,0.694],[-2.66,-1.306],[-0.357,0.373],[-0.197,0.726],[-0.956,0.072],[-0.529,0.112]],"o":[[-0.689,-0.263],[-0.277,-0.106],[-0.265,0.267],[0.398,0.954],[-1.133,0.591],[-0.356,-0.588],[-0.78,-1.31],[-1.567,1.959],[-0.678,-0.718],[2.034,-1.814],[0.553,0.271],[0.606,-0.634],[0.343,-1.262],[0.535,-0.04],[0,2.075]],"v":[[242.88,207.078],[240.814,206.289],[239.989,206.29],[240.085,207.086],[239.726,209.737],[236.762,208.64],[235.811,206.806],[233.518,206.674],[228.649,207.231],[228.726,205.25],[235.588,203.874],[237.354,204.293],[239.206,202.532],[241.292,201.178],[242.88,200.854]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.644,0.276,0.181,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.593],[0.626,-0.056],[0.153,-0.985],[1.298,-0.109],[2.193,0.254],[2.262,0.066],[0.435,0.073],[0.088,0.318],[-0.244,0.135],[-1.086,-0.001],[-0.672,-0.016],[-0.997,0.357],[-2.837,0.234],[-0.266,0.495],[0.264,0.433],[-1.445,-0.488],[-0.509,0.005]],"o":[[-0.615,0.18],[-0.931,0.083],[-0.232,1.49],[-2.237,0.188],[-2.269,-0.263],[-0.442,-0.013],[-0.276,-0.046],[-0.099,-0.357],[0.847,-0.468],[-0.247,0.749],[1.044,0.025],[2.641,-0.946],[0.495,-0.041],[0.348,-0.649],[1.61,-0.436],[0.448,0.151],[0,0.593]],"v":[[242.88,5.84],[241.034,6.358],[239.542,7.77],[236.765,9.698],[230.162,9.054],[223.374,8.811],[222.051,8.708],[221.32,8.302],[221.814,7.656],[224.401,6.336],[225.207,7.337],[228.251,6.864],[236.352,4.644],[237.677,4.17],[237.065,2.804],[241.536,3.584],[242.88,4.062]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.343,-0.004],[0.187,-0.058],[1.478,-3.061],[-0.35,-0.268],[-0.382,0.41],[-1.935,2.437],[0.116,0.267]],"o":[[-0.147,0.026],[-3.431,1.064],[-0.21,0.434],[0.465,0.356],[2.113,-2.271],[0.151,-0.19],[-0.149,-0.343]],"v":[[232.968,-48.753],[232.434,-48.655],[225.578,-41.945],[225.887,-40.923],[227.218,-40.993],[233.577,-47.788],[233.776,-48.454]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.198],[0.791,1.168],[0.322,0.495],[0.654,-0.669],[1.679,-1.152],[0.807,0.325],[-0.05,0.671],[0.393,-0.288],[0.787,-0.591],[0.314,-0.121],[0.589,0.575],[-0.279,0.56],[-0.793,1.53],[0.242,0.353],[0.288,-0.06],[2.354,-1.052],[0.256,0.255],[-0.191,0.276],[-1.706,-0.01],[-5.226,0.642],[-0.148,-0.005],[2.021,-2.683],[0.079,-0.333],[-0.365,-0.277],[-0.313,0.265],[-1.829,1.642],[-0.217,-1.174],[-2.242,-0.322]],"o":[[-1.526,0.148],[-0.332,-0.489],[-0.503,-0.775],[-1.411,1.444],[-0.601,0.412],[-0.89,-0.359],[0.063,-0.848],[-0.794,0.581],[-0.275,0.207],[-0.608,0.234],[-0.507,-0.495],[0.769,-1.542],[0.155,-0.299],[-0.199,-0.29],[-2.45,0.512],[-0.262,0.117],[-0.311,-0.31],[1.052,-1.523],[5.297,0.03],[0.145,-0.018],[-3.404,1.289],[-0.197,0.261],[-0.103,0.431],[0.429,0.326],[1.877,-1.587],[0.718,-0.645],[0.517,2.799],[0,0.198]],"v":[[242.88,-40.987],[239.587,-42.832],[238.56,-44.279],[236.937,-44.391],[232.478,-40.296],[230.473,-39.619],[230.008,-41.411],[229.195,-41.722],[226.846,-39.932],[225.979,-39.375],[224.113,-39.006],[224.395,-40.78],[226.758,-45.377],[226.973,-46.318],[226.155,-46.434],[218.767,-45.108],[217.941,-45.084],[217.996,-46.029],[222.276,-48.911],[238.009,-50.182],[238.452,-50.169],[231.366,-43.144],[231.029,-42.173],[231.139,-40.915],[232.283,-41.326],[237.861,-46.148],[239.07,-45.773],[242.88,-41.58]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.581,0.67],[-2.655,-1.905],[0.102,0.47],[0.05,0.532],[-0.854,0.267],[-0.34,-0.491],[-0.579,-0.97],[-0.686,0.113],[-0.255,0.438],[-1.714,0.836],[0,-2.47],[1.783,-0.574],[1.41,0.656],[1.136,-0.195],[1.138,1.66],[-0.796,-0.25],[-0.824,0.248],[0.814,0.985]],"o":[[1.809,-1.335],[0.255,-0.599],[-0.114,-0.526],[-0.076,-0.807],[0.735,-0.229],[0.642,0.927],[0.24,0.403],[0.552,-0.091],[0.907,-1.558],[0,2.47],[-1.773,0.604],[-1.462,0.471],[-1.092,-0.508],[-1.71,0.293],[0.803,0.23],[0.82,0.257],[0.976,-0.294],[-0.565,-0.683]],"v":[[229.21,-56.42],[234.062,-55.804],[233.754,-57.285],[233.417,-58.863],[234.262,-60.868],[235.576,-59.691],[237.361,-56.812],[238.333,-55.912],[239.311,-56.906],[242.88,-60.844],[242.88,-53.435],[237.559,-51.628],[233.229,-51.864],[229.895,-52.032],[225.385,-53.394],[227.791,-52.701],[230.266,-52.593],[230.95,-54.408]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.501,-1.305],[1.003,-0.356],[-1.19,-0.056],[-0.76,-0.353],[0.287,-0.757],[0.793,0.174],[0.371,0.599],[0.844,0.219],[1.055,0.478],[0.595,1.88],[0.79,0.629],[-0.358,1.027],[0.482,0.49],[0.192,0.65],[-0.736,-0.473],[-0.274,0.231],[0.154,0.227],[0.921,0.59],[0.252,1.108],[-0.387,0.693],[-0.692,0],[-1.271,-0.96],[-0.702,-0.393],[0.881,-0.561],[1.109,-0.793],[0.639,-0.918],[-2.991,0.032]],"o":[[-0.35,1.209],[1.166,0.608],[0.843,0.039],[0.62,0.288],[-0.274,0.723],[-0.672,-0.147],[-0.535,-0.864],[-0.577,-1.176],[-1.734,-0.786],[-0.344,-1.087],[-0.755,-0.601],[0.243,-0.696],[-0.443,-0.451],[0.914,0.19],[0.245,0.157],[0.309,-0.261],[-0.61,-0.896],[-0.972,-0.623],[0.501,-0.529],[0.692,0],[1.641,0.497],[0.62,0.469],[1.023,0.574],[-1.126,0.716],[-0.791,0.566],[2.709,1.079],[0.9,0.988]],"v":[[50.588,-221.163],[48.08,-219.911],[51.468,-218.746],[53.893,-218.202],[54.679,-216.68],[53.057,-215.748],[51.254,-216.655],[49.043,-217.9],[46.223,-219.895],[42.544,-223.669],[40.357,-225.774],[39.442,-228.022],[38.91,-229.739],[37.741,-231.227],[39.96,-229.829],[40.748,-229.656],[40.626,-230.427],[38.448,-232.8],[36.626,-235.365],[38.38,-236.594],[40.455,-236.594],[44.175,-233.602],[45.982,-232.119],[45.931,-230.357],[42.281,-228.851],[39.958,-226.94],[48.105,-224.301]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.325,0.716,0.272,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.386,-1.027],[0.65,-2.069],[1.092,-1.74],[2.172,0.647],[2.935,-0.55],[0.175,0.195],[-0.188,0.263],[-0.995,1.814],[-0.532,0.704],[-0.694,-1.012],[-0.784,0.055],[-0.784,-0.201],[-0.491,1.607],[-0.26,1.052],[-1.526,0.657],[0.04,0.509],[-0.198,0],[-0.194,-0.486]],"o":[[-1.449,1.705],[-0.605,1.925],[-1.208,1.927],[-2.84,-0.846],[-0.312,0.058],[-0.288,-0.321],[1.21,-1.694],[0.426,-0.775],[0.593,-0.784],[0.484,0.704],[0.789,-0.056],[1.643,0.421],[0.316,-1.034],[0.346,-1.403],[0.418,-0.18],[0.198,0],[0.215,0.478],[0.348,0.875]],"v":[[-132.615,-232.427],[-135.296,-226.551],[-137.443,-220.903],[-142.607,-218.684],[-151.188,-219.424],[-152.154,-219.594],[-151.826,-220.462],[-148.782,-225.871],[-147.375,-228.123],[-145.353,-228.211],[-143.422,-227.397],[-141.081,-227.211],[-138.027,-228.907],[-137.293,-232.074],[-135.044,-235.516],[-134.408,-236.594],[-133.815,-236.594],[-133.175,-235.158]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.014,1.222],[0.834,0.615],[0.417,-1.464],[-1.837,-0.507]],"o":[[-0.008,-0.758],[-1.209,-0.892],[-0.398,1.396],[1.21,0.334]],"v":[[109.752,-149.485],[108.104,-152.172],[105.123,-151.124],[107.58,-147.874]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.973,-0.535],[0.254,1.28],[0.008,0.638],[0.071,2.175],[0.617,0.187],[0.281,-0.396],[-0.567,-2.471],[0.108,-1.286],[-0.64,-1.296],[0.048,-1.101],[-0.587,-0.144],[-0.275,0.451],[-0.154,1.251]],"o":[[-0.558,-1.285],[0.561,-0.376],[-0.027,-2.181],[-0.015,-0.459],[-0.512,-0.155],[-1.465,2.065],[-0.417,1.261],[-0.55,1.351],[0.453,0.919],[-0.021,0.476],[0.661,0.162],[0.716,-1.171],[0.256,-2.076]],"v":[[97.69,-182.068],[97.753,-185.893],[98.773,-187.448],[99.45,-193.89],[99.047,-195.176],[97.805,-194.526],[96.473,-187.706],[96.155,-183.847],[96.344,-179.88],[97.334,-176.993],[97.847,-175.744],[99.001,-176.674],[99.529,-180.419]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.087,2.179],[-0.223,1.105],[0.661,0.725],[0.158,1.879],[0.819,0.059],[0.074,0.841],[0.816,-0.125],[-0.178,0.382],[0.503,1.144],[-1.634,1.181],[0.283,0.667],[-0.33,1.63],[-0.07,0.386],[1.404,1.023],[-13.732,0],[-0.028,-2.015],[1.706,-2.485],[-0.464,-0.383],[0.123,-1.161],[-0.2,-1.405],[-0.17,-0.165],[0.01,-0.189],[0.197,-0.923],[-0.014,-0.592],[0.19,-8.529],[0.157,-6.262],[-0.422,-1.478],[-0.005,-0.193],[0.046,-0.387],[0.41,-1.788],[0.532,-3.447],[0.019,-2.113],[-0.016,-2.165],[0.017,-6.206],[0.102,-0.677],[0.792,0.101],[0.021,0.462],[0.524,1.706],[-0.522,1.587],[0.16,0.497],[-0.008,0.205],[-0.154,1.877],[-0.011,1.872],[0.666,0.557],[0.039,1.072],[-0.17,3.74],[0.017,3.155],[0.166,2.356],[0.182,1.514],[0.625,-0.242],[0.161,0.7],[-0.709,0.176],[-0.166,0.589],[0.834,2.462],[-0.194,1.99],[-0.046,4.324],[0.072,3.448],[0.341,5.844],[0.768,0.207],[0.35,-0.626],[0.273,0.112],[0.053,0.215],[-0.961,1.23],[0.413,0.582],[0.742,-0.158],[0.887,-0.289],[-0.596,-4.098],[0.617,-1.926],[-0.704,-1.285],[0.352,-0.262],[-0.302,-0.866],[-0.15,-0.57],[0.01,-1.46],[-0.111,-0.308],[0.252,-3.994],[-0.453,-2.778],[-1.187,-0.418],[-2.252,-1.112],[1.504,-1.41],[-0.698,-2.247],[2.031,-1.239],[-0.021,-0.734],[1.348,-0.501],[-0.461,-3.287],[-0.006,-0.453],[0.207,-1.299],[0.015,-0.528],[0.075,-3.411],[-0.481,-1.977],[-0.099,-3.463],[0.66,-0.423],[0.981,-0.031],[1.73,-0.148],[0.053,0.635],[0.373,4.606],[1.084,-0.054],[-0.318,2.412],[-0.661,1.323],[-0.971,0.192],[0.087,1.571],[-0.312,0.232],[0.719,0.799],[0.19,-0.072],[-0.024,0.708],[-0.353,0.765],[-1.244,2.13],[0.295,2.194],[0.426,0.026],[0.047,-0.324],[2.469,-3.236],[0.516,0.625],[0.66,2.185],[0.846,-0.141],[0.314,-0.649],[-0.343,0.191],[-0.369,-0.944],[-0.382,-0.69],[-0.815,-1.53],[1.642,-0.797],[-0.056,0.335],[1.053,2.515],[0.766,-0.139],[0.139,-0.494],[-0.147,-1.948],[-0.136,-3.053],[0.253,-1.466],[0.426,0.119],[-0.062,0.232],[1.233,3.018],[0.48,0.054],[0.464,0.698],[0.226,1.455],[-0.467,1.756],[0.795,1.176],[-0.533,0.365],[-0.306,0.736],[1.553,0.329],[-0.55,1.111],[-0.074,0.044],[-1.608,1.727],[0.008,0.787],[0.005,2.618]],"o":[[0.253,-1.098],[0.164,-0.81],[0.797,-1.898],[-0.065,-0.771],[-0.801,-0.057],[-0.108,-1.234],[0.066,-0.434],[0.545,-1.17],[-0.639,-1.455],[0.666,-0.481],[-0.708,-1.671],[0.078,-0.385],[0.268,-1.487],[13.732,0],[-2.499,0.999],[0.039,2.808],[-0.336,0.489],[1,0.825],[-0.156,1.47],[0.026,0.185],[-0.01,0.189],[-0.904,0.71],[-0.121,0.567],[0.208,8.538],[-0.139,6.265],[-0.039,1.55],[0.005,0.193],[-0.046,0.387],[-1.734,1.39],[-0.783,3.419],[-0.326,2.116],[-0.02,2.164],[-0.011,6.206],[-0.002,0.689],[-0.073,0.484],[-0.672,-0.086],[-0.081,-1.758],[0.433,-1.587],[0.29,-0.444],[0.008,-0.205],[0.827,-1.83],[0.009,-1.872],[0.005,-0.819],[-0.039,-1.072],[0.115,-3.742],[0.144,-3.163],[-0.012,-2.361],[-0.107,-1.519],[-0.062,-0.516],[-0.51,0.198],[-0.156,-0.68],[0.615,-0.152],[0.721,-2.558],[-0.646,-1.908],[0.422,-4.317],[0.037,-3.441],[-0.123,-5.881],[-0.04,-0.685],[-0.856,-0.231],[-0.121,0.217],[-0.182,-0.075],[-0.317,-1.293],[0.357,-0.456],[-0.429,-0.605],[-0.915,0.194],[-3.926,1.28],[0.273,1.877],[-0.347,1.084],[0.219,0.4],[-0.831,0.618],[0.194,0.555],[-0.01,1.46],[-0.226,0.231],[1.425,3.964],[-0.177,2.818],[0.18,1.104],[2.376,0.837],[1.808,0.893],[-1.904,1.785],[0.693,2.231],[-0.558,0.34],[0.048,1.689],[-2.754,1.024],[0.006,0.453],[0.159,1.307],[-0.104,0.526],[-0.099,3.41],[0.151,1.987],[-0.366,3.454],[-0.71,0.042],[-0.981,0.031],[-1.721,-0.007],[-0.104,-0.631],[-0.386,-4.605],[0.186,-1.511],[0.823,-2.244],[0.686,-1.311],[0.451,-0.902],[1.165,-0.231],[-0.023,-0.416],[0.874,-0.651],[-0.153,-0.17],[-1.322,0.5],[0.029,-0.855],[1.039,-2.251],[1.107,-1.896],[-0.045,-0.334],[-0.454,-0.028],[-0.62,4.31],[-0.414,0.543],[-1.369,-1.661],[-0.393,-1.303],[-0.796,0.132],[-0.191,0.395],[1.432,-0.798],[0.286,0.731],[0.836,1.511],[1.21,2.269],[-0.223,-0.327],[0.452,-2.7],[-0.211,-0.503],[-0.677,0.123],[-0.553,1.968],[0.231,3.053],[-0.251,1.458],[-0.578,-0.118],[0.01,-0.246],[0.85,-3.192],[-0.16,-0.393],[-0.948,-0.108],[-0.337,-1.389],[-0.278,-1.784],[0.337,-1.267],[-0.389,-0.575],[0.676,-0.463],[0.606,-1.458],[-1.239,-0.262],[0.044,-0.088],[2.184,-1.318],[0.546,-0.586],[-0.028,-2.617],[0.288,-2.162]],"v":[[95.876,-201.028],[96.628,-204.325],[96.355,-206.699],[96.241,-212.334],[95.124,-213.519],[93.326,-214.77],[91.743,-215.778],[91.957,-217.073],[91.857,-220.477],[92.489,-224.536],[92.799,-226.598],[92.857,-231.507],[93.124,-232.655],[92.024,-236.594],[133.221,-236.594],[131.15,-231.425],[129.595,-223.313],[129.812,-221.829],[130.834,-218.76],[131.537,-214.562],[132.027,-214.065],[131.997,-213.497],[131.171,-210.781],[131.139,-209.008],[130.748,-183.407],[130.537,-164.617],[131.177,-160.094],[131.194,-159.514],[131.055,-158.355],[129.461,-153.082],[128.803,-142.692],[129.047,-136.372],[129.088,-129.878],[129.051,-111.26],[128.956,-109.197],[128.13,-108.055],[127.613,-109.265],[127.015,-114.495],[126.988,-119.249],[127.155,-120.664],[127.179,-121.28],[127.573,-126.916],[127.601,-132.533],[126.774,-134.657],[126.658,-137.874],[127.016,-149.101],[126.689,-158.554],[126.371,-165.634],[125.822,-170.175],[124.982,-170.818],[123.822,-171.23],[124.635,-172.565],[125.954,-173.649],[126.037,-181.36],[124.957,-187.086],[125.286,-200.047],[125.316,-210.364],[123.665,-227.842],[122.89,-229.783],[121.428,-228.396],[120.915,-227.994],[120.518,-228.559],[120.788,-232.373],[121.053,-234.008],[119.231,-234.723],[116.509,-234.04],[112.031,-226.62],[112.218,-220.91],[111.736,-217.553],[111.111,-216.472],[110.613,-214.226],[111.071,-212.518],[111.043,-208.137],[110.843,-207.327],[111.133,-195.329],[111.355,-186.947],[113.296,-184.558],[120.108,-181.338],[120.603,-178.253],[119.333,-172.164],[117.558,-167.435],[116.368,-166.054],[114.021,-163.016],[111.644,-157.403],[111.662,-156.044],[111.58,-152.136],[111.28,-150.558],[111.043,-140.324],[111.23,-134.355],[111.033,-123.974],[108.922,-123.7],[105.979,-123.607],[100.835,-123.922],[100.529,-125.815],[99.404,-139.631],[97.522,-141.159],[99.789,-147.958],[101.84,-151.894],[103.951,-153.594],[106.088,-155.619],[106.919,-156.384],[107.307,-160.65],[106.782,-160.806],[105.694,-161.975],[106.451,-164.358],[110.194,-170.742],[111.547,-176.837],[111.015,-177.62],[110.448,-176.885],[104.383,-166.396],[102.913,-166.158],[99.042,-171.323],[96.716,-172.246],[95.428,-170.501],[96.083,-170.057],[98.066,-168.845],[99.15,-166.742],[101.774,-162.276],[99.906,-155.512],[99.883,-156.509],[98.951,-164.339],[97.865,-165.527],[97.319,-164.148],[97.365,-158.266],[97.717,-149.105],[96.962,-144.723],[96.178,-145.594],[96.215,-146.329],[95.42,-155.612],[94.701,-156.397],[92.846,-157.93],[91.397,-161.947],[91.513,-167.227],[91.18,-170.935],[91.513,-172.31],[92.912,-174.184],[91.541,-176.739],[90.549,-178.714],[90.698,-178.967],[94.839,-184.66],[95.599,-186.663],[95.574,-194.516]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.106,-1.456],[-0.029,-0.241],[-0.68,-0.065],[-0.078,0.463],[-0.082,0.482],[0.162,1.184],[0.61,-0.008],[0.034,-0.414]],"o":[[0,0.156],[0.054,0.45],[0.702,0.067],[0.081,-0.482],[0.198,-1.158],[-0.069,-0.505],[-0.647,0.008],[-0.11,1.365]],"v":[[-188.928,-215.931],[-188.923,-215.286],[-188.412,-214.096],[-187.727,-215.165],[-187.473,-216.611],[-187.183,-220.109],[-188.049,-221.116],[-188.618,-220.119]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.224,1.2],[0,3.416],[0.795,-1.934],[0.458,0.375],[1.187,-2.338],[0.696,-1.245],[1.963,1.148],[0.843,1.322],[0.848,0.949],[1.058,-1.106],[0.531,-0.648],[2.8,-4.501],[-0.002,-0.801],[-0.012,-10.156],[0.001,-7.922],[0.001,-25.28],[0.004,-8.265],[-0.016,-0.999],[-0.128,-1.193],[0.011,-3.275],[-0.001,-3.229],[0.001,-0.415],[0.001,-9],[-0.006,-0.184],[0.001,-0.807],[0.009,-2.067],[-0.002,-6.823],[0,-0.883],[-0.004,-4.158],[0,-0.789],[0,-0.487],[0.007,-1.268],[0.003,-13.77],[-0.011,-7.106],[0,-4.23],[0,-2.19],[0,-1.36],[0.003,-6.568],[0.046,-16.448],[-1.251,0.001],[-79.72,0.006],[-0.492,0.022],[-6.799,-0.005],[-4.936,0],[-68.728,-0.003],[-0.641,-0.01],[0.298,0.01],[0.395,0],[161.008,-0.035],[0,1.194],[0.037,156.809],[-1.231,-0.003],[-18.965,0],[-0.739,-1.819],[-0.748,-0.399],[-1.021,-1.056],[1.109,-0.86],[1.236,-1.344],[1.53,0.485],[0.106,-0.722],[-1.779,-2.353],[1.649,-1.301],[0.136,0.352],[0.789,0.117],[0.462,-0.517],[0.325,-1.352],[0.326,-1.137],[1.116,1.1],[2.688,0.56],[0.156,-0.964],[-0.286,-4.814]],"o":[[0,-3.081],[-2.23,1.73],[-0.457,-0.375],[-1.985,-1.626],[-0.647,1.274],[-1.109,1.984],[-1.339,-0.783],[-0.687,-1.077],[-1.027,-1.149],[-0.578,0.604],[-3.342,4.075],[-0.392,0.63],[0.031,10.156],[-0.001,7.922],[-0.001,25.28],[-0.004,8.264],[0.016,1],[-0.131,1.193],[-0.011,3.275],[0.001,3.229],[-0.001,0.415],[-0.001,9],[0.006,0.184],[-0.001,0.807],[-0.009,2.067],[0.002,6.823],[0,0.883],[0.004,4.158],[-0.001,0.788],[0,0.487],[-0.007,1.268],[-0.011,13.77],[-0.002,7.106],[0,4.229],[0,2.19],[0,1.359],[-0.015,6.568],[-0.008,16.448],[-0.003,1.215],[79.72,-0.036],[0.493,0],[6.798,0.005],[4.936,0.019],[68.728,0.005],[0.641,0],[-0.065,0.091],[-0.395,-0.013],[-161.008,0],[-1.209,0],[0.034,-156.809],[0,-1.277],[18.965,0.046],[1.449,1.365],[0.327,0.806],[1.258,0.672],[0.978,1.011],[-1.457,1.131],[-1.056,1.149],[-0.906,-0.287],[-0.371,2.528],[0.791,1.045],[-0.342,-0.299],[-0.241,-0.622],[-0.68,-0.1],[-0.954,1.068],[-0.276,1.151],[-0.429,1.499],[-2.046,-2.016],[-0.853,-0.178],[-0.768,4.732],[-1.81,-0.348]],"v":[[-207.648,-192.975],[-207.648,-202.553],[-210.607,-196.548],[-211.98,-197.673],[-215.513,-196.888],[-217.406,-193.043],[-221.843,-191.87],[-225.112,-195.014],[-227.372,-198.113],[-230.398,-198.11],[-232.026,-196.196],[-241.793,-183.765],[-242.524,-181.722],[-242.476,-151.253],[-242.479,-127.486],[-242.484,-51.647],[-242.496,-26.854],[-242.449,-23.856],[-242.454,-20.277],[-242.488,-10.452],[-242.485,-0.766],[-242.489,0.479],[-242.492,27.479],[-242.474,28.03],[-242.478,30.45],[-242.504,36.65],[-242.499,57.118],[-242.497,59.766],[-242.485,72.24],[-242.487,74.606],[-242.485,76.066],[-242.506,79.869],[-242.537,121.178],[-242.506,142.495],[-242.505,155.184],[-242.505,161.753],[-242.505,165.831],[-242.549,185.537],[-242.586,234.88],[-241.069,236.421],[-1.91,236.379],[-0.432,236.316],[19.963,236.33],[34.772,236.384],[240.956,236.392],[242.88,236.419],[242.732,236.719],[241.547,236.716],[-241.477,236.749],[-242.914,235.305],[-242.916,-235.121],[-241.391,-236.626],[-184.495,-236.594],[-181.435,-231.697],[-179.528,-230.126],[-175.884,-227.893],[-175.965,-225.118],[-179.887,-221.309],[-183.761,-220.136],[-185.049,-219.24],[-184.236,-211.847],[-185.77,-208.171],[-186.067,-209.264],[-187.033,-210.948],[-188.719,-209.871],[-190.386,-206.122],[-191.208,-202.668],[-193.654,-201.962],[-200.945,-205.289],[-202.327,-204.382],[-203.476,-190.102]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.072,-0.264],[-0.014,0.116],[0.056,0.026],[-0.001,-0.121]],"o":[[0.094,-0.244],[0.01,-0.081],[-0.194,-0.091],[0.001,0.125]],"v":[[-116.784,-182.051],[-116.611,-182.522],[-116.693,-182.769],[-116.916,-182.564]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.067,0.324],[0.273,-0.004],[0.035,-0.273],[-0.286,0.001]],"o":[[-0.009,-0.303],[-0.279,0.004],[-0.035,0.269],[0.309,-0.001]],"v":[[-180.19,-108.945],[-180.656,-109.348],[-181.139,-108.925],[-180.783,-108.421]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.504,0.01],[0.032,0.404],[0.351,-0.021],[-0.082,-0.327]],"o":[[0.354,-0.209],[-0.032,-0.402],[-0.512,0.031],[0.074,0.294]],"v":[[-189.35,-182.627],[-188.794,-183.555],[-189.528,-184.075],[-189.881,-183.328]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.439,-0.04],[-0.011,0.353],[0.4,-0.065],[-0.007,-0.328]],"o":[[0.378,-0.153],[0.012,-0.378],[-0.432,0.07],[0.006,0.271]],"v":[[-205.677,-115.373],[-205.17,-116.205],[-205.74,-116.909],[-206.058,-116.036]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.347,-0.033],[0.075,-0.502],[-0.27,0.041],[-0.024,0.517]],"o":[[-0.415,0.241],[-0.043,0.288],[0.577,-0.087],[0.012,-0.251]],"v":[[-188.577,-186.56],[-189.411,-185.48],[-188.94,-185.099],[-188.14,-186.123]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.37,1.321],[0.541,-0.641]],"o":[[-1,0.278],[0.828,-0.166]],"v":[[-162.015,-120.507],[-164.21,-119.134]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.41,1.075],[2.414,-0.693]],"o":[[-2.451,-0.019],[2.448,-0.077]],"v":[[-135.648,-122.614],[-142.985,-122.331]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0.221,-1.639],[-0.933,0.99],[0.317,0.536],[0.628,-0.103],[0.093,-0.613]],"o":[[1.439,-0.912],[0.562,-0.597],[-0.277,-0.468],[-0.687,0.112],[-0.205,1.355]],"v":[[-171.983,-206.202],[-168.842,-209.27],[-169.053,-211.023],[-170.347,-211.839],[-171.389,-210.557]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.202,-0.012],[0.019,1.113],[1.174,0.022],[0.053,-1.083]],"o":[[1.245,0.013],[-0.017,-1.011],[-1.096,-0.021],[-0.052,1.044]],"v":[[-139.281,-153.829],[-137.026,-155.855],[-139.362,-157.881],[-141.521,-155.887]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[2.187,1.165],[-0.076,-0.521],[-0.439,0.152],[-0.264,0.877]],"o":[[-0.144,0.633],[0.062,0.426],[0.794,-0.275],[0.449,-1.494]],"v":[[-119.386,-206.574],[-119.587,-198.858],[-118.921,-198.355],[-116.995,-199.798]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.316,0],[0,-0.007],[-0.837,0.011],[-0.083,0.474],[0.283,0.157],[0.792,0.124],[2.526,-0.721],[-0.048,-0.518],[-0.41,-0.003]],"o":[[0,0.007],[0.837,0],[0.415,-0.006],[0.074,-0.425],[-0.695,-0.386],[-2.66,-0.416],[-0.356,0.102],[0.06,0.641],[2.316,0.016]],"v":[[-174.217,-104.742],[-174.217,-104.721],[-171.706,-104.724],[-170.792,-105.305],[-171.412,-106.035],[-173.651,-106.764],[-181.38,-105.886],[-182.226,-105.238],[-181.165,-104.75]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.02,1.508],[1.4,0.029],[0.011,-1.436],[-1.403,0.002]],"o":[[0.019,-1.445],[-1.671,-0.035],[-0.012,1.545],[1.436,-0.002]],"v":[[-141.802,-211.382],[-144.34,-214.093],[-147.491,-211.468],[-144.702,-208.375]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.106,-1.125],[-1.191,-1.278],[-0.335,0.164],[0.011,0.232],[-1.525,0.76],[-1.789,0.815],[-0.049,0.376],[0.295,0.222],[3.054,-0.673],[0.056,-0.773]],"o":[[-0.054,1.75],[0.194,0.208],[0.26,-0.127],[-0.088,-1.911],[1.758,-0.876],[0.305,-0.139],[0.065,-0.498],[-2.558,-1.927],[-0.688,0.151],[-0.093,1.273]],"v":[[-186.282,-201.744],[-185.195,-197.128],[-184.451,-196.811],[-184.249,-197.468],[-181.663,-201.238],[-176.298,-203.688],[-175.507,-204.268],[-176.273,-205.038],[-184.743,-206.647],[-185.972,-205.397]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.886],[0.022,0],[-0.023,1.28],[0.887,0.038],[1.856,-1.001],[-0.249,-1.484],[-2.597,-0.246],[0.033,2.171]],"o":[[-0.022,0],[0,-1.28],[0.015,-0.852],[-2.124,-0.091],[-1.485,0.801],[0.431,2.567],[2.185,0.207],[-0.013,-0.886]],"v":[[-151.268,-188.581],[-151.335,-188.581],[-151.329,-192.421],[-152.542,-193.693],[-158.516,-192.336],[-160.428,-188.668],[-154.394,-183.062],[-151.266,-185.923]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[1.183,1.833],[-0.012,0.672],[-0.006,1.479],[0.894,-0.015],[-0.023,-0.635],[0.041,-2.263],[-0.538,-4.603],[-1.006,0.004],[-0.12,0.799],[-0.217,3.291],[-0.546,1.138],[-0.554,-1.452]],"o":[[-0.507,-0.479],[0.025,-1.479],[0.003,-0.781],[-0.875,0.014],[0.081,2.272],[-0.083,4.63],[0.089,0.76],[0.751,-0.003],[0.495,-3.292],[0.081,-1.228],[0.51,1.363],[1.26,-1.604]],"v":[[-147.429,-191.579],[-148.032,-193.33],[-148.023,-197.767],[-149.148,-199.177],[-150.108,-197.777],[-150.433,-190.994],[-149.841,-177.138],[-149.196,-175.058],[-148.598,-177.255],[-148.616,-187.124],[-147.958,-190.717],[-147.504,-186.397]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.118,-0.492],[0.01,-0.695],[0,-1.58],[-1.86,1.57],[0.398,0.71],[0.172,0.403],[-2.123,1.861],[0.023,0.834],[-0.145,1.392],[-0.955,0.209],[0.912,0.865],[-0.719,1.483],[0.755,-0.109],[1.314,-0.19],[0.016,-1.21],[0.083,-5.02],[-0.383,-0.457]],"o":[[-0.01,0.695],[0,1.58],[1.952,-1.726],[0.764,-0.134],[-0.215,-0.384],[-0.688,-1.606],[1.165,-0.767],[0.788,-1.342],[0.073,-0.704],[1.216,-0.266],[-1.233,-1.17],[0.349,-0.72],[-1.314,0.189],[-1.134,0.164],[-0.064,5.02],[-0.009,0.539],[-0.194,0.474]],"v":[[-169.636,-145.348],[-169.666,-143.263],[-169.666,-138.524],[-164.098,-143.503],[-163.485,-144.737],[-164.127,-145.892],[-164.575,-150.868],[-164.435,-153.359],[-164.129,-157.541],[-163.119,-159.057],[-162.467,-161.22],[-163.214,-165.043],[-163.953,-165.933],[-167.899,-165.391],[-169.643,-163.409],[-169.893,-148.35],[-169.555,-146.799]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.062,0.941],[0.649,-1.508]],"o":[[1.404,-0.466],[-1.375,0.506],[0,0]],"v":[[-186.276,-104.714],[-182.813,-107.15],[-186.268,-104.705]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.642,-0.187],[0,0],[-0.46,0.897],[0.064,-0.706]],"o":[[0,0],[-0.116,-0.825],[-0.91,0.149],[-0.06,0.665]],"v":[[-182.418,-109.753],[-182.428,-109.742],[-181.94,-112.257],[-183.376,-111.035]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.346,-0.593],[0.241,-0.355],[0.426,0.087],[0.581,-1.575],[0.838,-0.96],[0.08,-0.642],[-0.051,-0.424],[0.03,-2.26],[-0.026,-0.454],[0.048,-2.367],[-0.137,-2.463],[0.243,-6.741],[1.17,-0.451],[0.42,-1.469],[1.43,-2.674],[-0.558,-2.335],[1.24,-0.223],[-0.539,-1.801],[-0.557,-1.636],[-0.013,-0.801],[3.135,-2.598],[-0.529,-2.562],[-0.603,-1.065],[0.328,-0.801],[2.124,1.585],[2.196,1.421],[1.158,-0.416],[4.875,-1.441],[2.66,-0.35],[0.012,0.949],[-0.865,1.079],[-0.783,0.702],[0.486,0.628],[0.529,-0.282],[1.833,-0.965],[-0.081,0.845],[0.624,0.309],[-0.881,1.533],[0.048,-0.001],[0.734,0.67],[0.129,-0.055],[-0.047,-0.243],[-0.921,-0.856],[1.803,-1.698],[0.998,0.548],[-0.478,2.34],[-0.005,0.641],[-1.521,2.885],[1.268,-0.471],[-0.354,3.341],[0.245,-3.461],[0.478,-0.107],[0.649,-0.089],[0.322,0.824],[1.36,0.408],[2.434,0.803],[-0.137,1.329],[0.874,0.609],[-0.057,-0.71],[1.234,-0.446],[1.234,-0.833],[2.6,-1.867],[2.228,0.311],[1.352,1.29],[1.949,0.115],[-0.581,1.611],[2.846,2.249],[1.021,0.845],[-0.001,7.922],[-1.175,-0.455],[-3.346,2.141],[2.312,1.19],[2.254,0.536],[-0.647,1.178],[-1.727,3.273],[-0.433,0.272],[-0.704,4.451],[-0.335,1.583],[-2.471,-1.513],[-0.345,-1.306],[-0.257,-2.299],[-1.567,-2.228],[0.133,2.295],[-0.114,5.625],[-2.23,1.73],[0,-3.081],[-0.045,-4.419],[-1.038,-0.147],[1.195,3.166],[0.116,2.437],[-0.768,4.732],[-0.853,-0.178],[-2.046,-2.016],[-0.429,1.499],[-0.276,1.151],[-0.954,1.068],[-0.68,-0.1],[-0.241,-0.622],[-0.342,-0.299],[0.791,1.045],[-0.371,2.528],[-0.906,-0.287],[-1.056,1.149],[-1.457,1.131],[0.978,1.011],[1.258,0.672],[0.327,0.806],[1.449,1.365],[-5.829,0],[0.868,-8.206],[-1.468,2.255],[0.526,0.147],[-0.001,0.915],[0.006,4.881],[-9.78,0],[0.418,-0.18],[0.346,-1.403],[0.316,-1.034],[1.643,0.421],[0.789,-0.056],[0.484,0.704],[0.593,-0.784],[0.426,-0.775],[1.21,-1.694],[-0.288,-0.321],[-0.312,0.058],[-2.84,-0.846],[-1.208,1.927],[-0.605,1.925],[-1.449,1.706],[-0.051,-0.468],[-0.197,-1.977],[-0.034,-2.739],[-0.077,-0.477],[-0.123,-1.819],[-1.377,-0.184],[-0.437,1.072],[-1.534,0.221],[-0.847,-1.112],[-2.35,-1.899],[-0.092,-0.171],[0.108,-0.098],[-1.436,-1.066]],"o":[[0.017,0.421],[-0.355,0.143],[-1.952,-0.397],[-0.448,1.216],[-1.096,0.019],[-0.304,0.345],[-0.03,2.26],[-0.488,0.229],[0.137,2.375],[-0.05,2.469],[0.378,6.796],[-0.045,1.245],[-1.337,0.516],[-0.826,2.891],[-1.071,2.002],[0.327,1.368],[-1.802,0.324],[0.496,1.655],[0.258,0.757],[0.068,4.179],[-1.998,1.655],[0.256,1.241],[0.423,0.747],[-1.996,1.526],[-2.091,-1.56],[-0.877,-0.567],[-4.788,1.722],[-2.548,0.753],[-0.983,0.129],[-0.016,-1.24],[0.644,-0.802],[0.457,-0.41],[-0.433,-0.559],[-1.828,0.975],[-1.093,0.576],[0.11,-1.153],[-0.64,-0.316],[0.042,-0.073],[-1.267,0.024],[-0.124,-0.113],[-0.262,0.111],[0.246,1.279],[1.819,1.691],[-0.857,0.808],[-1.808,-0.993],[0.126,-0.616],[1.351,-2.563],[-1.64,0.608],[-0.207,-3.174],[-1.96,3.451],[-0.478,0.107],[-0.649,0.089],[-0.949,-0.495],[-0.514,-1.316],[-2.453,-0.736],[-1.193,-0.394],[0.086,-0.829],[-0.407,0.831],[0.101,1.272],[-1.382,0.499],[-2.431,-1.968],[-1.8,1.292],[-1.556,-1.054],[-1.39,-1.326],[-1.756,-0.104],[1.232,-3.414],[-1.04,-0.822],[0.001,-7.922],[1.317,-0.137],[4.049,1.568],[2.166,-1.386],[-2.079,-1.071],[-1.24,-0.295],[1.78,-3.244],[0.238,-0.451],[3.893,-2.45],[0.254,-1.603],[0.61,-2.884],[1.222,0.749],[0.595,2.252],[0.254,2.266],[0.875,-2.562],[-0.324,-5.613],[0.795,-1.934],[0,3.416],[-0.406,4.414],[0.01,1.019],[3.327,0.47],[-0.854,-2.263],[-0.286,-4.814],[0.156,-0.964],[2.688,0.56],[1.116,1.1],[0.326,-1.137],[0.325,-1.352],[0.462,-0.517],[0.789,0.117],[0.136,0.352],[1.649,-1.301],[-1.779,-2.353],[0.106,-0.722],[1.53,0.485],[1.236,-1.344],[1.109,-0.86],[-1.021,-1.056],[-0.748,-0.399],[-0.739,-1.819],[5.829,0],[1.638,8.147],[1.75,-2.21],[0.311,-0.477],[-1.153,-0.323],[0.004,-4.881],[9.78,0],[0.04,0.509],[-1.526,0.657],[-0.26,1.052],[-0.491,1.607],[-0.784,-0.201],[-0.784,0.055],[-0.694,-1.012],[-0.532,0.704],[-0.995,1.814],[-0.188,0.263],[0.175,0.195],[2.935,-0.55],[2.172,0.647],[1.092,-1.74],[0.65,-2.069],[0.566,0.223],[0.216,1.975],[0.034,2.739],[-0.523,0.31],[0.29,1.794],[0.112,1.651],[1.314,0.176],[1.404,-0.809],[1.406,-0.203],[1.824,2.393],[0.139,0.112],[-0.119,0.086],[-1.363,1.233],[0.568,0.422]],"v":[[-108.011,-198.048],[-108.311,-196.876],[-109.405,-196.54],[-112.904,-194.199],[-114.847,-190.974],[-115.772,-189.467],[-116.035,-188.287],[-116.126,-181.507],[-116.652,-180.379],[-116.956,-173.287],[-116.695,-165.899],[-118.652,-145.796],[-120.437,-143.381],[-123.13,-140.446],[-126.259,-132.001],[-127.397,-125.601],[-129.197,-122.827],[-130.494,-120.692],[-128.872,-115.767],[-128.492,-113.444],[-133.436,-103.482],[-135.608,-97.125],[-134.101,-93.765],[-133.811,-91.533],[-139.853,-91.463],[-146.426,-95.744],[-149.296,-96.475],[-163.88,-92.018],[-171.595,-89.988],[-172.97,-91.194],[-172.121,-94.683],[-170.157,-97.061],[-169.6,-98.705],[-171.216,-98.575],[-176.702,-95.654],[-180.164,-96.474],[-181.438,-97.895],[-182.669,-99.475],[-182.807,-99.829],[-185.185,-101.613],[-185.698,-101.77],[-185.877,-101.125],[-183.918,-98.067],[-183.932,-94.69],[-186.61,-94.399],[-189.271,-98.939],[-189.239,-100.859],[-185.015,-108.869],[-189.192,-107.319],[-189.802,-116.961],[-191.024,-106.468],[-192.457,-106.149],[-194.404,-105.882],[-195.751,-108.245],[-198.437,-110.68],[-205.705,-113.19],[-207.361,-115.55],[-208.239,-117.865],[-208.466,-115.567],[-210.059,-113.137],[-214.034,-111.193],[-220.972,-111.455],[-226.845,-109.694],[-231.052,-113.38],[-236.054,-115.633],[-237.23,-117.335],[-239.413,-124.955],[-242.479,-127.486],[-242.476,-151.253],[-238.714,-150.585],[-227.807,-152.481],[-228.104,-156.534],[-234.682,-158.749],[-235.585,-160.669],[-230.373,-170.47],[-229.375,-171.528],[-222.745,-182.065],[-222.119,-186.896],[-216.167,-189.473],[-214.091,-186.174],[-213.194,-179.294],[-211.09,-172.538],[-210.102,-179.701],[-210.608,-196.548],[-207.648,-202.553],[-207.648,-192.975],[-207.791,-179.718],[-205.894,-177.962],[-201.808,-183.107],[-203.476,-190.103],[-202.327,-204.382],[-200.945,-205.289],[-193.654,-201.962],[-191.208,-202.668],[-190.386,-206.122],[-188.719,-209.871],[-187.033,-210.948],[-186.067,-209.264],[-185.77,-208.171],[-184.236,-211.847],[-185.049,-219.24],[-183.761,-220.136],[-179.887,-221.309],[-175.965,-225.118],[-175.884,-227.893],[-179.528,-230.126],[-181.435,-231.697],[-184.495,-236.594],[-167.009,-236.594],[-166.96,-212.074],[-162.263,-218.787],[-162.621,-219.838],[-163.734,-221.952],[-163.749,-236.594],[-134.408,-236.594],[-135.044,-235.516],[-137.293,-232.074],[-138.027,-228.907],[-141.081,-227.211],[-143.422,-227.397],[-145.353,-228.211],[-147.375,-228.123],[-148.782,-225.871],[-151.826,-220.462],[-152.154,-219.594],[-151.188,-219.424],[-142.607,-218.684],[-137.443,-220.903],[-135.296,-226.551],[-132.615,-232.428],[-131.989,-231.206],[-131.39,-225.275],[-131.288,-217.059],[-131.726,-215.748],[-131.079,-210.343],[-128.322,-207.285],[-123.387,-209.812],[-118.845,-210.931],[-115.41,-209.263],[-109.279,-202.711],[-108.998,-202.207],[-109.353,-201.947],[-109.283,-199.641]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.252,0.564,0.241,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.068,0.053],[0.045,0.075],[0.01,-0.062],[-0.045,-0.074]],"o":[[-0.045,-0.075],[-0.068,0.053],[-0.011,0.066],[0.068,-0.052]],"v":[[204.52,-131.79],[204.385,-132.014],[204.193,-131.854],[204.316,-131.633]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.088,0.419],[0.62,0.002],[0.021,-0.434],[-0.546,-0.082]],"o":[[-0.015,-0.55],[-0.462,-0.001],[-0.027,0.546],[0.587,0.088]],"v":[[69.834,-154.032],[69.028,-155.027],[68.335,-154.258],[69.09,-153.184]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.188,0.641],[0.49,0.043],[0.141,-0.679],[-0.568,-0.013]],"o":[[0.003,-0.568],[-0.653,-0.057],[-0.129,0.617],[0.651,0.015]],"v":[[12.802,-183.288],[11.982,-184.124],[10.654,-183.275],[11.501,-182.374]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.608,-0.005],[0.055,-0.838],[-0.671,0.013],[-0.098,0.829]],"o":[[-0.688,-0.005],[-0.041,0.62],[0.732,-0.014],[0.085,-0.722]],"v":[[34.98,-191.848],[33.639,-190.873],[34.537,-189.816],[35.984,-190.946]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.657,0.005],[-0.111,-0.904],[-0.649,0.099],[-0.135,0.752]],"o":[[-0.44,0.294],[0.06,0.488],[0.705,-0.108],[0.096,-0.534]],"v":[[182.669,-63.451],[181.453,-62.324],[182.241,-61.104],[183.713,-62.591]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.017,-0.645],[-0.707,0.053],[-0.009,0.847],[0.747,-0.017]],"o":[[0.019,0.498],[0.671,-0.05],[0.008,-0.741],[-0.825,0.018]],"v":[[201.145,-144.958],[201.875,-143.958],[203.105,-145.095],[202.062,-146.14]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.054,0.679],[0.803,0.064],[0.036,-0.656],[-0.717,-0.125]],"o":[[-0.042,-0.787],[-0.642,-0.051],[-0.049,0.892],[0.668,0.117]],"v":[[133.23,-174.192],[131.954,-175.515],[130.884,-174.57],[132.176,-173.239]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.059,0.468],[1.144,0.088],[0.015,-0.559],[-0.42,0.066]],"o":[[-0.02,-0.881],[-0.525,-0.04],[-0.016,0.609],[0.693,-0.109]],"v":[[138.582,-175.187],[137.327,-177.001],[136.482,-176.221],[137.978,-174.017]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.039,0.004],[-0.145,0.014],[-0.147,0.542],[0.298,0.055],[0.896,-0.617],[-0.147,-0.324],[-0.302,-0.048]],"o":[[0.526,0],[0.43,-0.042],[0.108,-0.396],[-0.873,-0.16],[-0.296,0.204],[0.128,0.283],[0.335,0.053]],"v":[[42.48,-189.15],[43.298,-189.152],[44.378,-189.695],[43.879,-190.487],[41.233,-190.664],[41.162,-189.712],[41.842,-189.215]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.341,-0.005],[0.06,0.554],[0.253,0.069],[-0.18,-1.049]],"o":[[0.59,0.017],[-0.031,-0.291],[-1.002,-0.274],[0.061,0.357]],"v":[[131.499,-81.64],[133.893,-84.066],[133.411,-84.535],[130.903,-82.154]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0.05,-0.744],[-1.022,0.115],[0.04,0.885],[0.787,0.008]],"o":[[0.157,0.546],[0.783,-0.088],[-0.034,-0.738],[-1,-0.01]],"v":[[169.07,-168.872],[169.975,-167.425],[171.345,-169.099],[170.03,-170.438]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.02,0.483],[0.766,-0.074],[0.01,-0.488],[-0.761,-0.015]],"o":[[-0.01,-0.887],[-0.55,0.053],[-0.015,0.729],[0.607,0.012]],"v":[[60.867,-173.961],[58.725,-176.047],[57.978,-175.118],[59.953,-173.156]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[0.008,-0.808],[-0.828,0.095],[0.014,0.957],[0.795,0.03]],"o":[[-0.065,0.751],[0.78,-0.089],[-0.014,-0.953],[-0.969,-0.036]],"v":[[76.025,-173.709],[77.147,-172.624],[78.647,-173.929],[77.115,-175.181]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.278,0.224],[0.046,1.05],[0.993,0.142],[-0.097,-0.888]],"o":[[0.641,-0.132],[-0.058,-1.33],[-0.568,-0.081],[0.113,1.038]],"v":[[38.468,-181.093],[40.137,-181.986],[37.826,-183.523],[36.65,-182.662]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0.068,0.442],[1.201,0.508],[0.288,-0.327],[-0.286,-0.398],[-1.119,-0.253]],"o":[[-0.407,-1.291],[-0.394,-0.167],[-0.341,0.388],[0.692,0.962],[0.352,0.08]],"v":[[41.259,-165.952],[38.922,-168.69],[37.869,-168.391],[37.814,-167.185],[40.626,-165.478]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.651,-0.029],[-0.089,1.134],[0.835,-0.155],[0.231,-1.037]],"o":[[1.013,0.001],[0.061,-0.78],[-1.022,0.19],[-0.19,0.855]],"v":[[179.308,-57.016],[181.204,-58.556],[180.052,-60.092],[178.115,-57.92]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.588,-0.098],[-0.013,1.008],[0.815,0.022],[-0.039,-0.934]],"o":[[0.921,0.012],[0.014,-1.078],[-0.921,-0.025],[0.042,1.002]],"v":[[28.937,-189.527],[30.8,-190.602],[28.969,-191.838],[27.293,-190.388]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[0.189,-0.721],[-1.215,-0.027],[0.027,0.858],[1.235,0.042]],"o":[[0.127,0.951],[0.969,0.022],[-0.033,-1.035],[-1.081,-0.037]],"v":[[29.796,-175.615],[31.255,-173.591],[32.5,-175.241],[30.961,-177.341]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.961,-0.119],[-0.019,1.026],[1.062,0.014],[0.014,-1.149]],"o":[[0.915,-0.067],[0.017,-0.927],[-1.012,-0.014],[-0.012,1.025]],"v":[[55.023,-171.952],[56.723,-173.397],[55.208,-175.012],[53.421,-173.54]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.354,0.165],[-0.002,1.167],[1.128,-0.009],[-0.029,-1.195]],"o":[[1.337,-0.004],[0.002,-1.207],[-1.222,0.01],[0.029,1.17]],"v":[[146.249,3.138],[148.314,1.283],[146.455,-0.695],[144.532,1.224]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.108,0.926],[0.562,0.397],[-0.023,-0.811],[-0.87,-1.064],[-0.184,0.908]],"o":[[-0.023,-0.531],[-0.802,-0.566],[0.038,1.344],[0.472,0.578],[0.156,-0.769]],"v":[[135.839,-37.703],[135.02,-39.219],[133.03,-38.647],[134.282,-34.926],[135.534,-35.215]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.011,0.15],[1.728,-0.27],[0.294,-0.028],[-0.688,-0.77],[-0.744,-0.646],[-0.167,1.005]],"o":[[-0.003,-1.975],[-0.292,0.046],[-1.111,0.106],[0.652,0.73],[0.841,0.73],[0.056,-0.339]],"v":[[28.63,-176.889],[26.384,-179.044],[25.508,-178.907],[24.893,-177.456],[27.087,-175.478],[28.564,-176.051]],"c":true}},"nm":"P"},{"ind":22,"ty":"sh","ks":{"a":0,"k":{"i":[[0.011,1.156],[0.839,0.025],[0,-0.99],[-1.044,-0.021]],"o":[[-0.009,-0.9],[-0.944,-0.028],[0,1.194],[1.052,0.021]],"v":[[144.723,-181.738],[143.193,-183.406],[140.986,-181.199],[142.797,-179.521]],"c":true}},"nm":"P"},{"ind":23,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,0.807],[0.189,0.912],[0.876,-0.212],[-0.273,-0.689],[-0.2,-0.759],[-0.787,0.073]],"o":[[-0.111,-0.773],[-0.238,-1.145],[-1.161,0.28],[0.288,0.726],[0.226,0.858],[0.761,-0.071]],"v":[[81.418,-154.534],[81.03,-157.153],[78.956,-158.266],[78.659,-156.529],[79.309,-154.266],[80.864,-152.574]],"c":true}},"nm":"P"},{"ind":24,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.137,-0.05],[-2.057,0.161],[0.017,0.739],[0.543,-0.048],[2.344,0.592],[0.56,-0.309],[-0.098,-0.448],[-0.32,-0.029]],"o":[[1.812,-0.108],[0.517,-0.04],[-0.015,-0.641],[-2.408,0.211],[-0.686,-0.173],[-0.279,0.154],[0.085,0.387],[0.881,0.079]],"v":[[178.503,-122.45],[184.433,-122.819],[185.878,-123.237],[184.346,-123.643],[177.221,-124.16],[175.404,-123.714],[174.746,-123.049],[175.598,-122.591]],"c":true}},"nm":"P"},{"ind":25,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.679,0.029],[-0.512,0.331],[0.214,0.549],[0.779,-0.363],[0.055,-0.612],[-0.571,-0.333]],"o":[[0.476,0.072],[0.38,-0.245],[-0.318,-0.814],[-0.508,0.237],[-0.059,0.657],[0.487,0.284]],"v":[[75.686,-210.098],[77.25,-210.468],[77.756,-211.548],[74.172,-213.113],[73.24,-211.886],[73.989,-210.408]],"c":true}},"nm":"P"},{"ind":26,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.015,0.615],[0.14,0.623],[0.814,-0.021],[0.166,-0.802],[0.106,-1.075],[-0.696,-0.12],[-0.342,0.602]],"o":[[-0.098,-0.632],[-0.093,-0.415],[-0.641,0.016],[-0.219,1.058],[-0.065,0.656],[0.631,0.109],[0.3,-0.529]],"v":[[176.213,-142.361],[175.908,-144.254],[175.297,-145.354],[173.769,-144.477],[173.27,-141.271],[174.255,-140.009],[175.778,-140.645]],"c":true}},"nm":"P"},{"ind":27,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.736,-0.582],[0.507,3.214],[0.561,-0.024],[0.001,-0.443],[-0.022,-2.559]],"o":[[0.725,-3.305],[-0.067,-0.426],[-0.735,0.032],[-0.007,2.559],[0.005,0.649]],"v":[[179.44,-195.885],[179.811,-205.585],[179.093,-206.55],[178.533,-205.405],[178.571,-197.727]],"c":true}},"nm":"P"},{"ind":28,"ty":"sh","ks":{"a":0,"k":{"i":[[0.993,-0.125],[0.245,0.022],[-0.007,-1.208],[-1,0.007],[-1.229,0.522],[0.599,0.442]],"o":[[-0.441,0],[-1.166,-0.107],[0.007,1.209],[1.359,-0.01],[0.733,-0.311],[-0.953,-0.702]],"v":[[23.283,-206.734],[22.348,-206.737],[20.581,-205.149],[22.354,-203.678],[26.209,-204.625],[26.286,-205.824]],"c":true}},"nm":"P"},{"ind":29,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.688,-0.043],[0.011,1.026],[1.007,-0.025],[0.06,-1.206]],"o":[[0.571,-0.036],[-0.021,-1.926],[-0.928,0.023],[-0.073,1.463]],"v":[[141.606,-39.236],[142.869,-40.45],[140.849,-44.176],[138.974,-41.842]],"c":true}},"nm":"P"},{"ind":30,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.392,0],[0,0.006],[-0.538,0.019],[-0.225,0.782],[0.582,0.362],[1.177,0.046],[0.012,-0.993],[-0.644,-0.084]],"o":[[0,-0.006],[0.539,0],[0.567,-0.02],[0.242,-0.84],[-1.052,-0.655],[-1.588,-0.062],[-0.014,1.221],[0.385,0.05]],"v":[[67.404,-172.803],[67.404,-172.821],[69.02,-172.825],[70.48,-173.467],[69.574,-175.13],[66.154,-175.664],[64.589,-173.659],[66.23,-172.813]],"c":true}},"nm":"P"},{"ind":31,"ty":"sh","ks":{"a":0,"k":{"i":[[0.864,-0.044],[0.168,-0.656],[-0.338,-1.553],[-0.807,0.038],[-0.167,0.674],[0.05,0.373],[-0.21,1.13]],"o":[[-0.672,-0.118],[-0.399,1.555],[0.114,0.523],[0.709,-0.033],[0.094,-0.377],[-0.152,-1.132],[0.16,-0.863]],"v":[[43.337,-171.67],[42.161,-170.717],[42.101,-166.041],[43.062,-164.765],[44.352,-166.012],[44.506,-167.17],[44.509,-170.551]],"c":true}},"nm":"P"},{"ind":32,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.349,1.7],[0.893,0.156],[0.086,-0.789],[-0.475,-1.97],[-0.5,-0.032],[-0.255,0.309]],"o":[[0.114,-0.89],[-0.653,-0.114],[-0.21,1.931],[0.091,0.375],[0.46,0.029],[1.217,-1.473]],"v":[[136.76,-63.012],[135.627,-64.602],[134.036,-64.016],[133.694,-58.191],[134.425,-57.383],[135.363,-57.989]],"c":true}},"nm":"P"},{"ind":33,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.26],[0.12,1.711],[0.88,0.042],[0.136,-0.655],[-0.042,-0.536],[-0.222,-1.3],[-1.453,0.097],[-0.158,0.866]],"o":[[-0.146,-1.499],[-0.055,-0.782],[-0.973,-0.046],[-0.107,0.515],[0.104,1.319],[0.126,0.736],[1.26,-0.084],[0.009,-0.047]],"v":[[175.796,-153.184],[175.331,-158.098],[174.327,-159.804],[173.319,-158.153],[173.322,-156.543],[173.71,-152.595],[174.679,-150.59],[175.795,-152.827]],"c":true}},"nm":"P"},{"ind":34,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.058,0.584],[1.815,-0.229],[0.009,-0.458],[-0.047,-1.123],[-0.973,-0.08],[-0.299,0.987]],"o":[[-0.047,-1.882],[-0.469,0.059],[-0.022,1.125],[0.04,0.956],[0.978,0.08],[0.167,-0.552]],"v":[[133.851,-52.346],[130.757,-55.111],[130.043,-54.333],[130.012,-50.958],[131.583,-49.32],[133.657,-50.598]],"c":true}},"nm":"P"},{"ind":35,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.135,-0.012],[-0.143,1.113],[1.005,0.426],[0.144,0.023],[-0.038,-1.38],[-0.919,-0.349]],"o":[[1.495,0.01],[0.205,-1.597],[-0.134,-0.057],[-1.337,-0.211],[0.041,1.502],[0.265,0.1]],"v":[[195.086,-148.87],[198.084,-150.938],[195.956,-153.092],[195.531,-153.212],[191.873,-150.384],[194.369,-148.943]],"c":true}},"nm":"P"},{"ind":36,"ty":"sh","ks":{"a":0,"k":{"i":[[0.008,-0.772],[-2.358,-0.463],[-0.148,0.532],[0.595,1.688],[0.584,0.303],[0.312,-1.022]],"o":[[-0.085,2.63],[0.657,0.129],[0.493,-1.767],[-0.213,-0.603],[-0.868,-0.451],[-0.305,1.002]],"v":[[129.925,-149.459],[132.713,-145.775],[133.791,-146.437],[133.458,-151.632],[132.13,-152.97],[130.321,-152.257]],"c":true}},"nm":"P"},{"ind":37,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.026,1.896],[0.965,0.892],[0.304,-1.205],[1.356,-0.774],[-0.336,-0.567],[-0.941,0.045],[-0.077,0.702],[-0.614,-0.155]],"o":[[-0.027,-0.966],[-0.916,-0.847],[-0.344,1.364],[-0.574,0.328],[0.37,0.625],[0.849,-0.04],[0.07,-0.635],[1.434,0.362]],"v":[[131.421,-21.1],[130.097,-24.116],[128.002,-23.582],[125.968,-20.183],[125.776,-18.592],[127.39,-17.309],[128.508,-18.578],[129.555,-19.196]],"c":true}},"nm":"P"},{"ind":38,"ty":"sh","ks":{"a":0,"k":{"i":[[0.003,-0.037],[-0.957,0.017],[-1.61,-1.176],[-1.182,-0.711],[-0.372,0.46],[0.312,0.328],[1.354,0.817],[0.703,1.631],[1.127,-0.294],[0.23,-0.837]],"o":[[-0.015,0.891],[2.137,-0.038],[1.112,0.813],[0.42,0.252],[0.445,-0.551],[-1.097,-1.154],[-1.395,-0.842],[-0.36,-0.835],[-1.035,0.27],[-0.051,0.186]],"v":[[147.782,-184.97],[148.777,-183.318],[154.105,-181.044],[157.593,-178.816],[158.955,-178.807],[158.484,-180.021],[154.709,-182.854],[151.245,-186.147],[149.082,-187.567],[147.817,-185.399]],"c":true}},"nm":"P"},{"ind":39,"ty":"sh","ks":{"a":0,"k":{"i":[[0.647,-1.801],[-1.2,0.201],[-0.212,1.319],[1.154,1.112],[0.086,0.046],[0.208,-0.949]],"o":[[0.037,1.022],[1.44,-0.241],[0.342,-2.126],[-0.07,-0.068],[-0.887,-0.469],[-0.461,2.107]],"v":[[136.485,-53.977],[137.615,-52.305],[142.523,-56.742],[139.812,-60.597],[139.573,-60.769],[137.726,-60.06]],"c":true}},"nm":"P"},{"ind":40,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.573],[0.014,0],[-0.016,1.573],[0.825,-0.066],[-1.031,-1.983],[0.118,-0.935],[-1.038,-1.17],[-0.553,0.147],[-0.004,0.426]],"o":[[-0.014,0],[0,-1.573],[0.008,-0.755],[-2.222,0.178],[0.456,0.876],[-0.199,1.574],[0.364,0.411],[0.578,-0.154],[0.016,-1.573]],"v":[[138.608,-148.457],[138.566,-148.457],[138.571,-153.176],[137.491,-154.396],[134.956,-149.922],[135.543,-147.243],[136.864,-143.215],[138.085,-142.65],[138.601,-143.738]],"c":true}},"nm":"P"},{"ind":41,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.041,2.349],[0.44,0.183],[0.469,0.882],[1.126,-1.701],[-3.148,-1.312]],"o":[[-0.101,-0.248],[-1.134,-0.471],[-0.957,-1.8],[-1.655,2.499],[2.079,0.867]],"v":[[89.083,-194.675],[88.83,-195.644],[87.153,-198.13],[82.852,-198.372],[85.5,-192.172]],"c":true}},"nm":"P"},{"ind":42,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.392,-0.55],[0.396,0.924],[0.528,0.374],[1.725,1.521],[2.628,-1.99],[-0.417,-0.351],[-2.039,0.169],[-1.328,-0.065],[-0.351,-0.741]],"o":[[1.027,-0.077],[-0.27,-0.63],[-1.886,-1.335],[-3.028,-2.67],[-0.369,0.279],[1.347,1.135],[1.32,-0.109],[0.676,0.033],[0.848,1.789]],"v":[[72.118,-190.921],[73.155,-192.28],[71.824,-193.614],[66.231,-197.701],[57.79,-197.395],[57.683,-196.42],[62.296,-194.137],[66.285,-194.104],[68.063,-193.266]],"c":true}},"nm":"P"},{"ind":43,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.071,-0.814],[0.915,0.048],[0.108,-0.813],[-0.588,-0.355],[-0.293,-0.005],[-1.377,1.181],[-1.703,-0.122],[-0.198,0.669],[0.731,0.449],[1.724,1.174],[1.438,-0.064],[0.166,-0.747],[-0.567,-0.389]],"o":[[-1.05,0.645],[-0.699,-0.036],[-0.095,0.716],[0.23,0.139],[1.559,0.027],[1.319,-1.131],[0.836,0.06],[0.251,-0.847],[-1.773,-1.089],[-1.273,-0.867],[-0.531,0.023],[-0.146,0.66],[0.996,0.684]],"v":[[49.269,-194.167],[46.385,-193.797],[44.733,-192.913],[45.932,-191.375],[46.8,-191.255],[51.204,-192.349],[56.023,-193.197],[58.437,-193.606],[56.682,-195.304],[50.996,-197.708],[46.91,-198.593],[45.623,-197.92],[46.263,-196.43]],"c":true}},"nm":"P"},{"ind":44,"ty":"sh","ks":{"a":0,"k":{"i":[[1.789,0.297],[0.686,-0.366],[-1.418,-1.191],[0.707,-0.34],[-0.402,-0.711],[-0.845,-1.494],[-0.436,0.123],[-1.717,0.06],[-0.488,-1.067],[-0.338,0.096],[-0.027,0.329],[-0.135,1.372],[-0.667,0.203],[-0.387,-0.446],[0.174,-1.297],[0.147,-1.123],[-0.989,0.234],[-2.06,0.937],[0.02,0.376],[0.383,0.013],[0.175,1.498],[0.165,1.912],[3.314,0.204],[0.568,0.155],[0.426,-0.957],[1.069,0.24]],"o":[[-0.67,0.065],[-1.631,0.87],[0.636,0.534],[-0.867,0.417],[0.846,1.494],[0.207,0.367],[1.737,-0.489],[1.059,-0.037],[0.12,0.263],[0.423,-0.121],[0.115,-1.374],[0.059,-0.602],[0.689,-0.21],[0.928,1.072],[-0.151,1.123],[-0.117,0.898],[2.206,-0.522],[0.349,-0.159],[-0.03,-0.555],[-1.628,-0.057],[-0.222,-1.905],[-0.291,-3.365],[-0.587,-0.036],[-0.956,-0.261],[-0.408,0.918],[-1.634,-0.366]],"v":[[156.109,-133.89],[154.027,-133.121],[153.733,-130.132],[153.64,-128.759],[153.182,-127.081],[155.719,-122.599],[156.655,-122.022],[161.804,-121.896],[164.252,-120.616],[164.885,-120.11],[165.224,-120.998],[165.563,-125.121],[166.467,-126.524],[167.971,-125.802],[168.694,-122.151],[168.218,-118.786],[169.388,-117.738],[175.78,-119.931],[176.328,-120.732],[175.447,-121.293],[172.85,-123.802],[172.335,-129.535],[167.15,-134.651],[165.404,-134.955],[163.373,-134.033],[161.201,-133.021]],"c":true}},"nm":"P"},{"ind":45,"ty":"sh","ks":{"a":0,"k":{"i":[[0.263,5.314],[-0.013,0.493],[0.001,0.571],[0.029,12.535],[0.098,0.428],[0.792,-0.101],[0.03,-0.516],[-0.313,-7.515],[-0.141,-7.394],[-0.008,-7.501],[-0.319,-0.592],[-0.496,0.089],[-0.039,0.361],[-0.032,3.598]],"o":[[0.013,-0.493],[0.478,-0.493],[-0.012,-12.535],[-0.001,-0.441],[-0.142,-0.621],[-0.641,0.082],[-0.43,7.475],[0.307,7.382],[0.143,7.499],[0.001,0.641],[0.215,0.4],[0.523,-0.094],[0.392,-3.587],[0.048,-5.316]],"v":[[141.473,-133.173],[141.512,-134.651],[141.824,-136.341],[141.758,-173.946],[141.625,-175.265],[140.524,-176.594],[139.991,-175.213],[139.324,-152.766],[139.61,-130.588],[139.663,-108.085],[139.95,-106.205],[140.925,-105.443],[141.286,-106.438],[141.592,-117.226]],"c":true}},"nm":"P"},{"ind":46,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.347,-0.221],[-0.243,0.799],[-0.14,0.761],[1.485,-0.444],[0.041,-0.086],[-1.424,-0.372],[-0.376,-0.421]],"o":[[0.896,0.549],[0.223,-0.736],[-0.516,-1.567],[-0.062,0.018],[-0.79,0.83],[0.296,0.492],[0.705,0.79]],"v":[[56.456,-163.942],[58.097,-164.669],[58.536,-166.946],[53.19,-169.964],[53.064,-169.714],[53.461,-167.795],[54.363,-166.332]],"c":true}},"nm":"P"},{"ind":47,"ty":"sh","ks":{"a":0,"k":{"i":[[0.23,0.921],[-0.001,0.249],[-0.281,0.674],[0.367,0.235],[0.686,-0.916],[-0.599,-0.313],[-1.877,-0.275]],"o":[[0.001,-0.249],[0.214,-0.702],[0.221,-0.53],[-1.19,-0.761],[-0.342,0.457],[1.653,0.863],[0.628,0.092]],"v":[[73.198,-196.955],[73.201,-197.702],[73.859,-199.802],[73.44,-200.684],[66.913,-199.266],[67,-198.036],[72.185,-196.01]],"c":true}},"nm":"P"},{"ind":48,"ty":"sh","ks":{"a":0,"k":{"i":[[2.581,1.371],[1.184,1.976],[-0.451,-1.122],[-0.599,-0.903],[-0.925,-2.27]],"o":[[-0.143,-1.866],[-0.53,1.177],[0.394,0.981],[0.275,2.22],[1.514,-4.037]],"v":[[95.697,-85.184],[95.044,-90.989],[93.819,-87.829],[95.023,-84.867],[97.093,-78.368]],"c":true}},"nm":"P"},{"ind":49,"ty":"sh","ks":{"a":0,"k":{"i":[[0.702,0.051],[0.021,0.885],[2.045,0.055],[1.96,1.453],[-0.618,-0.198],[-1.123,-0.351],[-0.222,0.351],[0.298,0.224],[1.375,1.33],[0.377,-0.935],[1.12,-0.51],[1.86,0.463],[1.492,-1.351],[-1.181,-1.216],[-0.121,-0.183],[0.847,0.502],[0.205,0.767],[1.728,1.051],[0.433,0.662],[-0.008,0.94],[0.002,0.039],[-1.412,1.086],[-0.315,0.139],[0.164,1.111],[0.931,0.157],[1.951,0.582],[0.077,0.451],[-0.268,0.187],[-3.049,1.212],[-0.622,0.041],[-0.817,0.832],[-0.376,-1.719],[-0.724,0.088],[-0.062,0.918],[-0.187,0.816],[1.611,-0.154],[1.291,-0.312],[-0.084,1.161],[1.354,-0.092],[-0.413,0.259],[-2.33,0.888],[-0.272,0.274],[-0.678,-0.251],[-3.04,-1.937],[-0.79,-1.277],[-1.092,-1.056],[-1.061,0.016],[-2.022,0.089],[0.246,0.429],[1.572,1.192],[-0.36,0.027],[-0.825,-0.756],[-0.766,-1.435],[-0.771,-0.305],[-2.476,0.628],[1.213,1.236],[1.622,-0.868],[0.425,1.023],[0.036,0.421],[1.044,0.271],[3.683,1.506],[0.681,-0.57],[0.536,0.56],[-0.41,0.487],[-1.697,0.192],[0.106,1.915],[-0.044,0.141],[-0.348,0.005],[-1.203,0.421],[-0.488,0.001],[-0.535,-0.864],[-0.672,-0.147],[-0.274,0.723],[0.62,0.288],[0.843,0.039],[1.166,0.608],[-0.35,1.209],[-0.381,0.216],[-0.632,0.692],[0.135,0.752],[0.795,0.102],[1.718,0.269],[2.709,1.079],[-0.791,0.566],[-1.126,0.716],[1.023,0.574],[0.62,0.469],[1.641,0.497],[-17.19,0],[0.268,-1.487],[0.078,-0.385],[-0.708,-1.671],[0.666,-0.481],[-0.639,-1.455],[0.545,-1.17],[0.066,-0.434],[1.892,-0.404],[0.06,-0.564],[-0.515,-0.247],[-1.297,-0.232],[-0.22,-1.504],[-0.93,0.214],[-0.38,0.087],[0.164,-0.81],[0.253,-1.098],[-0.421,-2.552],[-1.43,0.035],[-0.028,-2.617],[0.546,-0.586],[2.184,-1.318],[0.044,-0.088],[-1.239,-0.262],[0.606,-1.458],[0.676,-0.463],[-0.389,-0.575],[0.337,-1.267],[-0.278,-1.784],[-0.337,-1.389],[0.185,-0.002],[1.004,0.139],[-0.176,-0.89],[1.683,1.675],[0.079,0.041],[0.738,-0.333],[-0.001,-0.662],[-0.142,-0.863],[-2.662,-1.361],[0.007,-1.332],[-0.503,-2.446],[-0.661,-0.579],[-1.671,-1.029],[-0.157,0.66],[-0.109,0.93],[-0.412,-1.75],[-0.054,-0.59],[1.626,-1.444],[-1.281,-1.07],[-0.143,-0.366],[-0.775,0.27],[0.056,0.441],[-1.323,0.67],[-0.351,-0.436],[0.405,-4.503],[-0.135,-5.913],[-0.424,-0.188],[-0.24,0.296],[-0.169,-1.079],[-0.687,-1.089],[-0.567,0.292],[0.272,0.31],[0.415,1.879],[0.987,0.229],[-0.104,2.09],[-0.265,0.075],[-0.328,0.633],[-0.421,0.534],[-1.411,2.426],[0.006,3.355],[-0.575,0.078],[-0.113,-0.418],[0.074,-1.331],[-0.956,-2.193],[-0.508,-1.123],[1.175,-2.842],[0.674,0.103],[0.099,0.466],[1.38,2.512],[1.031,-1.171],[0.24,-0.371],[1.461,-3.057],[-0.409,-1.945],[-0.887,-2.444],[-0.459,-1.762],[-0.619,-0.047],[-0.146,0.495],[-1.233,0.777],[-0.053,-0.552],[-0.011,-0.736],[-1.139,0.337],[-1.19,0.323],[-0.61,2.026],[-1.687,2.063],[1.622,1.841],[-1.231,1.18],[-2.687,-0.342],[-1.031,-0.822],[-0.985,0.3],[-1.318,-0.086],[-0.12,0.868],[0.746,0.239],[0.953,-0.586],[0.535,0.535],[-0.184,0.642],[-0.631,0.079],[-0.783,0.084],[0.368,1.291],[1.101,0.526],[-0.001,1.552],[0.072,1.092],[0.436,1.75],[-0.327,1.316],[-0.043,1.257],[-0.056,5.315],[0.481,0.422],[1.618,0.845],[0.069,-2.573],[0.378,-2.611],[-1.013,-0.46],[-0.759,-0.459],[0.35,-0.752],[0.54,0.136],[1.172,0.375],[-0.02,2.164],[-0.326,2.116],[-0.783,3.419],[-1.734,1.39],[-3.92,1.961],[0.118,0.744],[0.19,0.834],[0.071,0.874],[1.83,-0.442],[0.592,-0.014],[0,-0.821],[-0.319,-0.621],[4.135,-0.09],[-0.039,1.55],[-0.139,6.265],[0.208,8.538],[-0.121,0.567],[-0.904,0.71],[-0.058,-0.238],[-0.663,0.427],[0.27,0.982],[1.285,-1.181],[0.026,0.185],[-0.156,1.47],[1,0.825],[-0.336,0.489],[0.039,2.808],[-2.499,0.999],[-2.272,0],[-0.574,-0.038],[-2.794,-0.628],[0.811,-1.424],[-1.487,-1.176],[0.501,-0.621],[0.163,-1.305],[-0.78,-0.234],[-0.273,-0.419],[-1.144,1.006],[-0.447,-0.689],[-1.29,0.315],[-0.854,-0.394],[-1.361,1.405],[-0.43,1.43],[-0.346,0.537],[-1.055,-0.884],[-1.332,-0.685],[-0.269,0.797],[-2.156,-0.611],[0.035,-0.988],[-1.748,-3.322],[-2.147,-0.288],[-0.143,-1.709],[-0.053,-1.969],[-0.543,-2.006],[-0.008,-0.54],[0.976,0.22],[0.187,-0.59],[-0.346,-0.207],[-2.238,-1.996],[-0.522,-1.917],[0.455,-0.176],[0.328,0.356],[2.776,1.421],[2.808,0.901],[0.691,-0.262],[0.783,2.523],[0.093,0.434],[1.506,0.93],[0.731,1.785],[0.469,0.979],[0.361,-0.107],[0.026,-0.254],[-1.272,-1.496],[-1.435,-2.83],[0.46,-0.426],[0.371,0.226],[1.543,1.33],[0.379,-0.216],[0.04,-0.285],[0.674,-0.108],[0.271,0.602],[0.8,-0.29],[-0.441,-0.812],[-0.257,-0.361],[1.928,-1.384],[-0.858,-0.76],[-1.079,-0.083],[0.041,-0.334],[-0.804,-0.573],[-0.764,0.338],[-0.018,0.86],[0.495,0.533],[-0.458,-0.043],[-1.125,0.032],[-0.062,-0.588],[-2.758,-1.502],[-0.409,-3.643],[0.236,-0.422],[-1.069,-2.245],[-0.407,-1.264],[0.035,-0.187],[-0.787,-0.81],[-1.597,-0.094],[-0.444,0.465],[-1.049,0.41],[-0.017,-2.107],[-1.023,-0.092],[0.061,-1.304],[-0.557,-0.923],[0.398,-0.72],[-0.177,-2.105],[-0.73,0],[-0.04,0.541],[-0.025,0.195],[-0.495,-0.028],[0,-0.288],[0.642,-1.109],[-0.331,-0.398],[0.034,-0.832],[0.733,0.209],[0.949,-0.546],[1.453,0.747],[0.111,-0.361],[-0.102,-0.368],[-0.282,0.116],[-2.751,-0.041],[-2.592,-1.66],[0.258,-0.808],[0.758,0.147],[5.28,-2.013],[1.616,0.818],[-0.447,-1.52],[0.548,-0.052],[1.497,-0.145],[-3.005,0.648],[0.685,0.215],[0.073,0.405],[-0.338,0.172],[-2.375,0.178],[-6.058,-2.95],[-0.8,-0.666],[0.198,-0.423],[0.342,-0.004],[0.725,0.073],[-1.279,-1.555],[-0.712,-3.598],[0.94,-0.519],[0.614,0.586],[0.771,3.017],[1.436,0.87],[1.426,0.972],[0.434,-0.53],[-0.413,-0.444],[-1.317,-1.266],[-0.495,-0.852],[1.089,-0.055],[1.69,1.75],[1.464,1.323],[0.661,-0.615],[-0.385,-0.567],[-0.273,-0.899],[1.738,0.332],[1.491,-0.25],[0.585,0.116],[0.017,-0.169],[0.989,-0.212],[0.459,0.671],[-0.115,2.263],[-0.011,-0.492],[1.637,-0.722],[0.661,0.512],[0.257,2.342],[0.606,0.016],[0.13,-0.608],[0.776,-1.293],[1.03,0.422],[0.681,-0.543],[-0.037,-1.003],[1.748,-1.189],[0.817,0.529],[-0.224,0.916],[0.669,0.343],[0.543,-0.438],[0.606,-0.418],[0.451,0.367],[-0.075,0.422],[-0.569,0.969],[0.092,1.226],[3.467,-1.752],[0,0],[-0.901,1.18],[-1.426,1.227],[1.085,0.576],[-0.506,0.53],[-0.593,0.595],[0.326,0.461],[0.368,-0.153],[0.587,-0.258],[0.428,-0.085],[0.182,0.391],[-0.326,0.213],[-0.242,0.165],[0.011,0.139],[0.235,-0.062],[1.191,-0.801],[-1.374,-0.813],[1.189,-2.305],[1.388,-4.211],[1.765,-2.462],[-0.615,-1.035],[0.879,-1.987],[-1.103,-0.216],[0.109,0.946],[-0.297,2.078],[-0.962,0.042],[-0.224,-0.674],[1.125,-2.383],[-0.605,-0.457],[-0.438,0.5],[-1.602,-1.062],[-0.705,1.019],[-0.441,2.229],[-0.454,1.784],[-1.001,-0.688],[-1.282,0.379],[1.028,2.085],[-0.593,0.579],[-0.567,-0.204],[0.433,-0.4],[-0.556,-0.66],[-1.813,-1.418],[-0.657,-2.557],[0.889,-3.218],[0.222,-2.539],[1.231,-0.539],[0.128,-3.342],[0.27,-2.509],[1.024,-1.414],[0.971,1.292],[1.808,0.393],[0.923,-1.08],[1.235,0.094],[1.063,-0.37],[1.412,-0.292],[2.418,-0.289],[0.619,-0.168],[0.094,-0.471],[-0.362,-0.242],[-0.817,-0.855],[1.108,-0.261],[0.785,0.147],[-0.015,-1.045],[0.977,-0.081],[0.611,1.212],[0.186,0.29],[1.358,-0.225],[1.357,-0.485],[0.018,-2.032],[0.584,-1.989],[-1.154,-0.184],[0.166,-2.736],[-1.869,-1.2],[-0.508,-0.666],[0.484,-0.445],[-0.566,-0.827],[-1.298,-0.448],[0.242,0.858],[0.284,0.737],[-0.324,0.553],[-0.523,0.053],[-0.226,-0.377],[-3.638,-1.601],[0.241,-1.108],[-0.807,-0.191],[-0.261,0.62],[-0.317,0.83],[-1.109,-0.069],[0.177,-1.195],[-0.252,-1.371],[0.749,-0.049],[2.119,-1.021],[0.58,1.893],[0.547,-0.101],[1.745,0.473],[3.271,-0.478],[2.383,-0.695],[-0.278,-2.386],[0.792,-0.397],[3.31,-0.531],[0.485,0.518],[1.587,-0.419],[1.403,-0.281],[-0.047,1.466],[-0.142,1.715],[0.018,2.159],[-0.736,0.669],[-0.498,-0.053],[0.05,1.06],[-0.02,0.44],[-0.251,0.438],[-1.061,0.333],[-0.009,0.778],[-0.019,0.591],[0.004,1.419],[0.861,0.752],[-0.278,0.272],[-1.008,0.057],[1.416,1.565],[-0.695,0.429],[-0.721,0.308],[-1.301,0.68],[0.704,1.533],[1.291,1.669],[1.125,0.506],[0.192,0.4],[-1.482,1.354],[1.1,2.138],[1.467,2.294],[1.254,0.243],[1.006,0.236],[0.4,-0.495],[1.45,0.251],[0.731,0.093],[-0.172,2.63],[0.761,0.096],[0.147,-0.512],[0.197,-0.764],[1.663,-2.066],[-0.547,-2.454],[-1.002,-0.946],[0.532,0.081],[0.337,0.714],[0.451,0.583],[-0.434,0.759],[-0.057,0.67],[0.385,0.186],[0.199,-0.286],[0.523,-0.714],[0.943,0.134],[-0.042,0.677],[-0.051,1.797],[0.518,3.224],[0.843,2.647],[0.429,0.043],[0.184,-0.275],[0.636,-0.537],[0.33,0.359],[0,-4.759],[0,-0.265],[-0.005,-1.553],[-0.827,-0.098],[-0.012,-0.198],[0.281,-0.303],[-0.912,-1.087],[0.096,-1.257],[0.306,-2.685],[-0.919,-0.202],[-0.375,0.394],[-0.062,0.076],[-1.163,-0.563],[0.095,-0.576],[1.279,-0.524],[1.566,-0.032],[0.595,-0.357],[0.104,-0.611],[0.558,-0.604],[0.769,0.814],[-1.075,0.872],[-0.383,0.435],[1.258,-0.514],[-0.135,-0.166],[0.603,-0.719],[0.802,-1.177],[-0.352,-0.286],[-0.247,0.227],[-0.62,0.48],[-0.044,-1.231],[-1.466,-0.415],[-0.2,-0.538],[-0.458,-1.401],[0.727,-0.905],[0.066,0.677],[1.28,1.217],[0.724,0.663],[0.405,0.935],[0.811,-0.626],[0.447,0.407],[-0.235,0.556],[-0.124,0.268],[0.018,2.529],[-0.393,0.219],[-0.838,0.126],[-2.479,0.411],[-0.354,3.034],[-0.086,2.366],[2.374,0.346],[-0.613,1.314],[-0.864,0.264],[-0.126,0.854],[-0.298,3.246],[-0.261,5.043],[0.381,0.424],[-1.024,3.276],[-0.703,1.134],[0.877,-0.015],[-0.01,1.007],[-0.118,1.967],[-0.411,-0.017],[-0.043,0.877],[-0.031,1.514],[1.564,1.482],[-0.975,2.301],[0.742,1.381],[0.835,0.846],[0.137,0.141],[1.786,1.849],[-0.115,0.622],[0.717,1.802],[2.595,2.087],[0,0],[0.43,0.577],[0.516,2.006],[1.658,0.113],[0.271,-0.611],[-0.484,-0.252],[-0.434,-0.233],[0.75,-0.38],[0.851,-0.386],[-0.052,-0.779],[-0.545,-0.321],[-1.19,-0.449],[0.282,-1.805],[0.69,0.052],[2.33,-0.266],[0.334,-0.064],[0.479,0.828],[1.729,1.759],[1.053,0.475],[0.251,0.011],[0.874,1.948],[-0.6,0.857],[0.514,0.214],[0.117,-0.355],[0.127,-0.159],[0.681,0.61],[1.785,0.454],[0.257,0.228],[1.127,1.083],[0.578,-0.155],[0.021,-0.498],[0.055,-1.272],[0.725,-1.05],[-0.001,-0.653],[-0.019,-6.842],[-0.35,-0.473],[-0.006,-0.207],[0.002,-0.285],[0.033,-0.38],[-0.006,1.129],[0.815,1.708],[0.214,3.368],[0.007,1.07],[1.493,1.268],[1.21,0.028],[3.064,1.199],[0.762,-0.544],[-0.029,-0.641],[-0.009,-0.196],[0,-0.477]],"o":[[-0.021,-0.885],[0.651,-2.307],[-1.911,-1.022],[0.949,-0.49],[1.12,0.359],[0.252,0.079],[0.2,-0.316],[-1.541,-1.16],[-0.805,-0.779],[-0.334,0.827],[-0.135,-2.494],[-1.102,-1.399],[-1.581,1.431],[0.121,0.183],[-0.101,0.223],[-0.707,-0.419],[-0.541,-2.02],[-0.75,-0.456],[-0.597,-0.912],[0.029,-0.04],[-0.127,-2.643],[0.262,-0.201],[0.866,-0.381],[-0.143,-0.972],[-1.989,-0.335],[-0.357,-0.107],[-0.068,-0.4],[2.674,-1.866],[0.59,-0.234],[1.145,-0.075],[0.705,-0.717],[0.15,0.685],[0.745,-0.091],[0.055,-0.822],[0.358,-1.566],[-1.317,0.126],[-0.965,0.233],[0.097,-1.343],[0.057,-0.743],[2.08,-1.308],[0.36,-0.137],[0.589,-0.594],[3.295,1.219],[1.288,0.82],[0.822,1.328],[0.779,0.753],[2.023,-0.03],[1.238,-0.054],[-1.003,-1.752],[-0.017,-0.243],[1.157,-0.087],[1.219,1.116],[0.406,0.761],[2.549,1.009],[1.922,-0.487],[-0.975,-0.994],[-1.058,0.566],[-0.17,-0.409],[-0.102,-1.195],[-3.833,-0.996],[-0.752,-0.308],[-0.444,0.371],[-0.504,-0.527],[1.015,-1.205],[1.684,-0.19],[-0.008,-0.138],[0.348,-0.005],[1.212,0.33],[0.488,-0.001],[0.844,0.219],[0.371,0.599],[0.793,0.174],[0.287,-0.757],[-0.76,-0.353],[-1.19,-0.056],[1.003,-0.356],[0.381,-0.216],[0.752,0.447],[0.799,-0.222],[-0.157,-0.871],[-1.725,-0.221],[-2.991,0.031],[0.639,-0.918],[1.109,-0.793],[0.881,-0.561],[-0.702,-0.393],[-1.271,-0.96],[17.19,0],[1.404,1.023],[-0.07,0.386],[-0.33,1.63],[0.283,0.667],[-1.634,1.181],[0.503,1.144],[-0.178,0.382],[-1.565,0.962],[-0.563,0.12],[-0.068,0.645],[1.213,0.581],[1.309,0.234],[0.163,1.116],[0.38,-0.087],[0.661,0.725],[-0.223,1.105],[-2.432,1.385],[0.179,1.084],[0.005,2.618],[0.008,0.787],[-1.608,1.727],[-0.074,0.044],[-0.55,1.111],[1.553,0.329],[-0.306,0.736],[-0.533,0.365],[0.795,1.176],[-0.467,1.756],[0.226,1.455],[-0.185,0.002],[-0.897,-0.885],[-0.878,-0.122],[-0.941,2.13],[-0.069,-0.069],[-0.661,-0.348],[-0.678,0.306],[0.002,0.887],[0.38,2.304],[1.372,0.701],[-0.014,2.576],[0.177,0.861],[1.473,1.292],[1.108,0.682],[0.215,-0.905],[1.032,1.529],[-0.41,0.53],[0.218,2.409],[-0.924,0.821],[0.273,0.228],[0.216,0.552],[0.638,-0.222],[-0.153,-1.217],[0.124,0.488],[0.138,4.532],[-0.529,5.882],[0.007,0.32],[0.424,-0.179],[0.882,0.79],[0.189,1.209],[0.337,0.535],[0.549,-0.283],[-1.46,-1.662],[-0.188,-0.852],[0.357,-2.081],[0.265,-0.075],[0.799,-0.08],[0.317,-0.612],[1.748,-2.215],[1.708,-2.937],[-0.001,-0.413],[0.559,-0.076],[0.352,1.302],[-0.136,2.431],[0.492,1.13],[1.265,2.795],[-0.198,0.478],[-0.596,-0.091],[-0.585,-2.745],[-0.743,-1.353],[-0.289,0.329],[-1.868,2.882],[-0.908,1.9],[0.547,2.6],[0.623,1.717],[0.131,0.505],[0.669,0.05],[0.407,-1.376],[0.725,0.115],[0.071,0.736],[0.018,1.205],[1.182,-0.35],[2.046,-0.555],[0.758,-2.515],[1.518,-1.856],[-1.108,-1.257],[1.686,-1.616],[1.238,0.158],[0.731,0.582],[1.222,-0.372],[0.647,0.042],[0.121,-0.876],[-1.013,-0.325],[-0.52,0.32],[-0.506,-0.505],[0.215,-0.749],[0.781,-0.098],[1.342,-0.145],[-0.343,-1.206],[-1.503,-0.719],[0.001,-1.133],[-0.116,-1.764],[-0.33,-1.325],[0.31,-1.244],[0.181,-5.312],[0.006,-0.561],[-1.373,-1.204],[-2.308,-1.205],[-0.07,2.611],[-0.142,0.985],[0.807,0.367],[0.471,0.285],[-0.299,0.642],[-1.191,-0.299],[-0.017,-2.165],[0.019,-2.113],[0.532,-3.447],[0.41,-1.788],[2.867,3.729],[0.632,-0.316],[0.084,-0.807],[0.207,-0.89],[0.345,-2.081],[-0.592,0.014],[-0.795,-0.053],[0,0.711],[1.409,2.744],[-0.422,-1.478],[0.157,-6.262],[0.19,-8.529],[-0.014,-0.592],[0.197,-0.923],[0.038,0.243],[0.358,1.473],[1.216,-0.782],[-0.466,-1.695],[-0.17,-0.165],[-0.2,-1.405],[0.123,-1.161],[-0.464,-0.383],[1.706,-2.485],[-0.028,-2.015],[2.272,0],[0.308,0.719],[2.857,0.191],[1.66,0.373],[-0.772,1.356],[0.767,0.606],[-0.836,1.037],[-0.096,0.769],[0.558,0.167],[0.999,1.531],[0.705,-0.62],[0.729,1.124],[0.937,-0.229],[1.802,0.83],[0.999,-1.032],[0.182,-0.605],[0.631,-0.979],[1.123,0.941],[0.891,0.458],[0.74,-2.195],[0.944,0.268],[-0.146,4.082],[1.048,1.992],[1.528,0.205],[0.165,1.978],[0.055,2.037],[0.139,0.514],[0.014,0.942],[-0.43,-0.097],[-0.148,0.466],[2.61,1.561],[1.574,1.404],[0.121,0.446],[-0.58,0.224],[-2.124,-2.31],[-2.608,-1.335],[-0.761,-0.244],[-2.442,0.927],[-0.132,-0.424],[-0.324,-1.504],[-1.718,-1.061],[-0.411,-1.003],[-0.128,-0.266],[-0.257,0.076],[-0.153,1.527],[2.035,2.393],[0.186,0.367],[-0.393,0.364],[-1.726,-1.054],[-0.253,-0.218],[-0.292,0.167],[-0.064,0.453],[-0.586,0.094],[-0.501,-1.113],[-0.873,0.316],[0.21,0.386],[1.358,1.907],[-0.933,0.669],[0.79,0.699],[-0.107,0.326],[-0.086,0.693],[0.753,0.537],[0.848,-0.376],[0.018,-0.834],[0.086,-0.466],[1.147,0.108],[0.72,-0.02],[0.367,3.498],[2.936,1.599],[0.059,0.529],[-1.342,2.404],[0.566,1.19],[0.057,0.178],[-0.136,0.716],[0.951,0.979],[0.743,0.044],[0.817,-0.856],[1.979,-0.774],[0.009,1.055],[1.282,0.116],[-0.054,1.155],[0.442,0.733],[-1.097,1.987],[0.054,0.635],[0.746,0],[0.015,-0.197],[0.041,-0.324],[0.369,0.021],[0.002,1.109],[-0.264,0.456],[0.605,0.727],[-0.028,0.704],[-1.21,-0.345],[-1.137,0.654],[-0.434,-0.223],[-0.128,0.418],[0.119,0.429],[2.601,-1.07],[2.993,0.045],[0.616,0.394],[-0.292,0.912],[-5.909,-1.145],[-1.612,0.615],[-0.758,-0.384],[0.247,0.839],[-1.364,0.13],[1.372,0.868],[-0.466,-0.706],[-0.314,-0.099],[-0.088,-0.483],[2.195,-1.119],[6.75,-0.507],[0.938,0.457],[0.251,0.209],[-0.153,0.327],[-0.432,0.005],[1.248,1.892],[2.277,2.77],[0.201,1.018],[-0.903,0.499],[-2.351,-2.243],[-0.431,-1.688],[-1.471,-0.891],[-0.493,-0.336],[-0.555,0.678],[1.243,1.335],[0.722,0.694],[0.545,0.939],[-2.296,0.117],[-1.372,-1.42],[-0.581,-0.525],[-0.549,0.51],[0.531,0.783],[0.518,1.706],[-1.39,-0.266],[-0.585,0.098],[-0.076,0.154],[-0.105,1.071],[-1.013,0.217],[-1.156,-1.69],[-0.923,0.253],[0.042,1.822],[-0.823,0.363],[-1.63,-1.261],[-0.048,-0.434],[-0.679,-0.018],[-0.328,1.53],[-0.541,0.901],[-0.552,-0.226],[-0.721,0.575],[0.093,2.535],[-0.804,0.547],[-0.828,-0.536],[0.179,-0.733],[-0.59,-0.303],[-0.574,0.463],[-0.343,0.236],[-0.377,-0.306],[0.202,-1.142],[0.418,-0.712],[-3.095,2.583],[0,0],[-0.548,-1.454],[1.141,-1.494],[0.731,-0.629],[-0.697,-0.37],[0.58,-0.607],[0.26,-0.261],[-0.256,-0.362],[-0.592,0.246],[-0.404,0.177],[-0.398,0.079],[-0.218,-0.467],[0.246,-0.161],[0.143,-0.097],[-0.027,-0.329],[-1.329,0.352],[-1.323,0.89],[2.338,1.383],[-2.061,3.994],[-0.952,2.89],[-0.703,0.981],[1.01,1.702],[-0.351,0.793],[1.148,0.225],[-0.253,-2.206],[0.1,-0.702],[0.905,-0.039],[0.748,2.249],[-0.319,0.676],[0.669,0.505],[1.003,-1.145],[1.151,0.763],[1.324,-1.914],[0.354,-1.794],[0.222,-0.872],[1.136,0.781],[2.215,-0.655],[-0.29,-0.588],[0.407,-0.397],[0.376,0.135],[-1.14,1.054],[1.504,1.787],[2.201,1.721],[0.794,3.088],[-0.769,2.782],[-0.105,1.206],[-3.409,1.493],[-0.096,2.512],[-0.191,1.777],[-0.937,1.294],[-1.07,-1.423],[-1.381,-0.3],[-0.811,0.948],[-1.128,-0.086],[-1.29,0.449],[-2.406,0.497],[-0.633,0.076],[-0.366,0.099],[-0.101,0.505],[0.997,0.667],[0.791,0.827],[-0.776,0.183],[-1.007,-0.189],[0.008,0.566],[-0.929,0.077],[-0.156,-0.309],[-0.665,-1.033],[-1.408,0.234],[-1.965,0.702],[-0.018,1.986],[-0.3,1.023],[2.636,0.419],[-0.111,1.825],[0.668,0.429],[0.383,0.501],[-0.833,0.765],[0.732,1.07],[0.933,0.322],[-0.214,-0.758],[-0.228,-0.591],[0.222,-0.379],[0.575,-0.059],[1.944,3.25],[0.965,0.425],[-0.116,0.533],[0.744,0.176],[0.344,-0.818],[0.397,-1.038],[0.934,0.058],[-0.203,1.363],[0.168,0.915],[-2.491,0.164],[-1.777,0.856],[-0.198,-0.646],[-1.782,0.33],[-3.261,-0.885],[-2.437,0.356],[-2.307,0.672],[0.119,1.02],[-3.051,1.53],[-0.725,0.116],[-1.122,-1.199],[-1.383,0.365],[-1.239,0.248],[0.056,-1.726],[0.182,-2.195],[0.799,0.383],[0.387,-0.352],[1.221,0.13],[-0.021,-0.438],[0.459,-0.115],[1.202,-0.017],[0.748,-0.234],[0.486,-0.428],[0.046,-1.419],[-0.002,-0.967],[-0.336,-0.293],[0.619,-0.605],[1.628,-0.901],[-0.868,-0.96],[0.663,-0.409],[1.355,-0.579],[1.501,-0.785],[-0.89,-1.94],[-0.677,-0.875],[-0.192,-0.4],[-0.109,-1.96],[1.761,-1.608],[-1.204,-2.341],[-0.753,-1.178],[-1.013,-0.196],[-0.646,-0.151],[-1.169,1.447],[-0.725,-0.126],[-0.62,-2.537],[0.032,-0.493],[-0.713,-0.09],[-0.217,0.758],[-0.642,2.493],[-1.464,1.819],[0.231,1.038],[0.431,0.407],[-0.762,-0.117],[-0.322,-0.684],[0.061,-0.954],[0.317,-0.555],[0.035,-0.414],[-0.545,-0.263],[-0.505,0.728],[-0.42,0.574],[0.042,-0.677],[1.755,-1.04],[0.093,-3.245],[-0.436,-2.713],[-0.104,-0.327],[-0.438,-0.044],[-0.415,0.62],[-0.201,-0.218],[0,4.991],[0.001,0.265],[0.003,1.553],[0.002,0.59],[0.012,0.198],[-0.281,0.303],[-1.257,0.305],[0.906,1.08],[-0.205,2.692],[-0.073,0.643],[0.865,0.19],[0.067,-0.071],[0.388,0.892],[-0.095,0.576],[-1.279,0.524],[-1.467,-0.437],[-0.037,-0.712],[-0.561,0.336],[-0.133,0.78],[-0.846,0.914],[-0.719,-0.76],[0.409,-0.332],[-1.399,0.127],[-0.184,0.075],[1.091,1.338],[-0.929,1.108],[-0.185,0.271],[0.355,0.288],[0.581,-0.533],[0.978,-0.756],[0.057,1.586],[0.466,0.132],[0.515,1.383],[0.329,1.004],[-0.439,-0.615],[-0.168,-1.716],[-0.711,-0.675],[-0.745,-0.683],[-0.882,0.772],[-0.389,0.3],[-0.448,-0.408],[0.115,-0.271],[0.961,-2.069],[-0.003,-0.444],[0.739,-0.411],[2.485,-0.373],[2.924,-0.485],[0.275,-2.364],[0.09,-2.48],[-1.446,-0.211],[0.408,-0.874],[0.833,-0.254],[0.477,-3.234],[0.462,-5.027],[0.028,-0.534],[-2.498,-2.78],[0.397,-1.271],[0.301,-0.486],[-1.58,0.028],[0.019,-1.969],[0.022,-0.358],[1.455,0.061],[0.075,-1.545],[0.037,-1.801],[-1.803,-1.709],[0.405,-0.955],[-0.563,-1.048],[-0.138,-0.14],[-1.79,-1.835],[-0.465,-0.481],[0.362,-1.959],[-1.208,-3.035],[0,0],[0.065,-0.733],[-1.207,-1.618],[-0.478,-1.861],[-0.781,-0.053],[-0.315,0.711],[0.437,0.227],[0.671,0.361],[-0.834,0.423],[-0.642,0.292],[0.048,0.714],[1.173,0.69],[0.748,1.139],[-0.3,0.476],[-0.877,-1.917],[-0.341,0.039],[-1.011,0.194],[-1.216,-2.101],[-0.753,-0.866],[-0.245,-0.153],[-1.575,-0.067],[-0.323,-0.719],[0.271,-0.387],[-0.568,-0.237],[-0.041,0.124],[-0.708,-0.634],[-1.257,-1.112],[-0.257,-0.228],[1.113,-1.656],[-0.491,-0.472],[-0.591,0.158],[-0.055,1.272],[0.285,1.201],[-0.358,0.519],[0.015,6.842],[0.001,0.535],[0.006,0.207],[-0.002,0.285],[-0.033,0.38],[-0.766,-0.951],[0.009,-1.822],[0.141,-3.382],[0.098,-1.071],[-0.01,-1.563],[-1.114,-0.777],[-2.616,-1.797],[-0.662,-0.259],[-0.752,0.537],[0.009,0.196],[-0.344,0.399],[0,0.762]],"v":[[28.633,-164.889],[28.57,-167.543],[26.829,-170.492],[20.92,-173.776],[23.108,-173.767],[26.466,-172.681],[27.245,-172.634],[27.045,-173.565],[22.895,-177.527],[20.955,-176.903],[19.237,-174.723],[15.315,-178.055],[10.892,-178.137],[10.187,-173.466],[10.551,-172.918],[10.112,-172.388],[8.929,-174.356],[5.325,-178.796],[3.13,-180.196],[4.001,-182.635],[4.083,-182.756],[7.862,-186.493],[8.816,-186.878],[11.023,-188.422],[8.451,-189.394],[2.47,-190.324],[1.535,-190.903],[2.193,-191.62],[10.64,-196.482],[12.478,-196.995],[15.363,-198.278],[17.255,-197.912],[18.77,-197.024],[20.081,-198.291],[20.657,-200.729],[18.943,-202.762],[15.031,-202.007],[13.517,-203.054],[11.61,-204.888],[12.619,-206.125],[18.976,-209.856],[19.96,-210.502],[22.003,-211.057],[32.006,-207.793],[35.073,-204.474],[38.058,-201.039],[40.889,-199.934],[46.954,-200.174],[47.291,-201.342],[43.14,-205.483],[43.43,-206.028],[46.369,-204.893],[49.181,-200.932],[50.96,-199.525],[58.502,-199.659],[59.791,-203.233],[55.841,-203.514],[53.752,-204.242],[53.264,-205.472],[51.388,-207.428],[40.009,-210.824],[37.764,-210.592],[36.386,-210.427],[36.354,-212.033],[40.089,-214.729],[42.789,-217.42],[42.914,-217.843],[43.957,-217.857],[47.58,-217.898],[49.043,-217.9],[51.254,-216.655],[53.057,-215.748],[54.679,-216.68],[53.893,-218.202],[51.468,-218.746],[48.08,-219.911],[50.588,-221.163],[51.73,-221.812],[53.821,-222.032],[54.832,-223.594],[53.158,-224.736],[48.105,-224.3],[39.958,-226.94],[42.281,-228.851],[45.931,-230.357],[45.982,-232.119],[44.175,-233.602],[40.455,-236.594],[92.024,-236.594],[93.124,-232.655],[92.857,-231.507],[92.799,-226.598],[92.489,-224.536],[91.857,-220.477],[91.957,-217.073],[91.743,-215.778],[86.92,-213.108],[86.087,-211.827],[86.94,-210.588],[90.782,-209.638],[93.337,-207.46],[95.216,-206.436],[96.355,-206.699],[96.628,-204.325],[95.876,-201.028],[93.577,-196.609],[95.574,-194.516],[95.599,-186.663],[94.839,-184.66],[90.698,-178.967],[90.549,-178.714],[91.541,-176.739],[92.912,-174.184],[91.513,-172.31],[91.18,-170.935],[91.513,-167.227],[91.397,-161.947],[92.846,-157.93],[92.292,-157.925],[89.28,-158.346],[88.19,-157.144],[85.565,-156.689],[85.385,-156.92],[83.283,-157.281],[82.562,-155.623],[82.581,-152.966],[85.533,-146.843],[87.962,-143.027],[89.059,-135.622],[90.293,-133.507],[95.056,-130.139],[96.424,-130.66],[96.777,-133.445],[98.576,-128.396],[98.001,-126.599],[95.28,-121.163],[95.002,-118.478],[95.507,-117.421],[96.663,-116.404],[96.812,-117.701],[97.92,-120.748],[98.253,-119.276],[97.555,-105.739],[96.716,-88.058],[97.044,-87.162],[97.67,-88.117],[98.837,-85.165],[99.737,-81.612],[101.107,-81.119],[101.384,-82.419],[100.047,-88.051],[98.616,-89.914],[98.843,-96.186],[99.639,-96.413],[101.129,-97.701],[102.139,-99.502],[106.724,-106.566],[108.937,-116.107],[109.357,-117.222],[110.071,-116.269],[110.384,-112.302],[111.828,-105.418],[113.348,-102.046],[113.528,-93.584],[112.481,-92.526],[111.866,-93.746],[109.496,-101.801],[107.036,-102.073],[106.3,-100.97],[102.091,-91.703],[101.656,-86.146],[104.551,-78.908],[106.178,-73.704],[106.988,-72.418],[107.883,-73.608],[110.234,-76.902],[111.025,-75.67],[111.255,-73.465],[112.947,-72.204],[116.503,-73.219],[120.355,-77.121],[123.95,-84.028],[123.74,-88.863],[123.829,-91.855],[129.931,-94.464],[133.27,-93.473],[135.95,-93.07],[139.717,-93.739],[141.188,-94.612],[140.054,-96.306],[137.064,-95.963],[135.384,-95.465],[135.622,-97.401],[137.153,-98.362],[139.515,-98.493],[141.02,-100.771],[138.849,-103.454],[136.795,-106.909],[136.94,-110.294],[137.3,-115.461],[137.362,-119.415],[138.21,-123.16],[138.503,-139.103],[137.932,-140.741],[133.541,-143.986],[129.874,-141.788],[129.698,-133.952],[130.957,-131.667],[133.311,-130.421],[134.217,-129.14],[132.611,-128.777],[129.088,-129.878],[129.047,-136.372],[128.803,-142.692],[129.461,-153.082],[131.055,-158.355],[137.36,-156.814],[138.238,-158.337],[138.477,-160.76],[138.32,-163.384],[135.586,-166.401],[133.811,-166.359],[132.643,-165.244],[133.153,-163.279],[131.177,-160.094],[130.537,-164.617],[130.748,-183.407],[131.139,-209.008],[131.171,-210.781],[131.997,-213.497],[132.113,-212.77],[134.311,-210.425],[134.596,-213.361],[132.027,-214.065],[131.537,-214.562],[130.834,-218.76],[129.812,-221.829],[129.595,-223.313],[131.15,-231.425],[133.221,-236.594],[140.037,-236.594],[141.569,-235.995],[150.055,-234.813],[151.013,-232.759],[151.332,-228.967],[151.312,-227.008],[149.928,-223.483],[150.787,-222.037],[152.354,-221.279],[155.455,-221.054],[157.372,-220.726],[160.267,-219.631],[162.938,-218.917],[166.889,-219.622],[169.232,-223.167],[170.098,-224.882],[172.532,-225.337],[176.157,-222.849],[177.462,-223.357],[182.177,-225.85],[183.593,-224.059],[187.682,-213.557],[193.15,-210.732],[195.575,-208.234],[195.722,-202.324],[196.192,-196.232],[196.332,-194.617],[194.934,-193.458],[193.807,-193.136],[194.407,-192.231],[201.281,-186.41],[203.393,-180.875],[202.704,-179.845],[201.439,-180.395],[194.14,-186.135],[186.056,-189.635],[183.907,-189.282],[179.178,-191.617],[178.822,-192.9],[176.613,-196.696],[173.616,-201.517],[172.246,-204.471],[171.578,-204.915],[171.199,-204.326],[171.916,-199.913],[177.152,-192.04],[177.37,-190.87],[176.14,-191.015],[171.101,-194.388],[170.201,-194.715],[169.978,-193.904],[169.508,-192.667],[168.007,-193.407],[165.885,-193.953],[165.235,-192.18],[166.009,-191.099],[165.379,-187.467],[165.208,-184.971],[167.997,-183.718],[167.688,-182.738],[167.978,-180.712],[170.363,-180.489],[171.386,-182.623],[170.263,-184.443],[171.035,-185.402],[174.411,-185.596],[175.334,-184.5],[180.977,-177.872],[186.802,-170.578],[186.703,-168.98],[187.152,-162.146],[188.432,-158.378],[188.45,-157.797],[188.254,-155.631],[191.598,-153.425],[193.312,-154.051],[196.237,-155.738],[199.878,-153.347],[201.284,-151.697],[203.248,-149.578],[204.215,-146.552],[204.468,-144.3],[203.776,-138.113],[204.773,-136.866],[205.532,-138.079],[205.552,-138.671],[206.025,-139.427],[206.401,-138.723],[206.28,-135.391],[206.525,-134.004],[206.986,-131.599],[205.858,-130.602],[202.832,-129.794],[199.121,-129.013],[198.361,-128.582],[198.088,-127.32],[198.981,-127.288],[207.09,-128.72],[215.622,-126.377],[216.63,-124.556],[214.62,-123.715],[198.175,-120.567],[193.514,-120.407],[192.306,-119.53],[191.326,-118.653],[187.102,-118.244],[201.375,-117.661],[199.519,-118.746],[198.69,-119.263],[199.374,-120.116],[206.372,-121.846],[225.557,-117.805],[228.147,-116.095],[228.646,-115.311],[227.738,-114.909],[226.147,-115.057],[230.128,-110.189],[235.032,-100.869],[234.19,-98.407],[231.987,-99.161],[227.815,-107.37],[225.066,-110.984],[220.857,-113.996],[219.183,-114.494],[220.009,-112.852],[223.912,-109.007],[225.665,-106.63],[224.81,-105.025],[218.707,-107.089],[214.479,-111.238],[212.345,-112.04],[213.249,-110.263],[214.589,-107.806],[212.433,-105.495],[208.25,-106.257],[206.994,-107.049],[206.766,-106.569],[205.06,-104.575],[203.155,-105.943],[200.844,-111.544],[199.947,-110.29],[196.736,-105.321],[194.504,-105.505],[190.86,-110.284],[190.256,-111.49],[189.241,-110.226],[187.192,-106.155],[184.536,-105.598],[182.89,-106.216],[181.56,-103.835],[178.112,-98.938],[175.597,-99.025],[174.871,-101.229],[174.383,-103.233],[172.572,-102.495],[170.819,-101.146],[169.639,-100.836],[169.418,-102.097],[170.926,-105.104],[171.821,-107.684],[162.574,-100.54],[162.543,-100.57],[163.343,-104.423],[167.133,-108.548],[167.033,-110.356],[166.877,-111.817],[168.662,-113.594],[169.116,-114.528],[168.016,-114.626],[166.272,-113.812],[165.029,-113.364],[164,-113.788],[164.525,-114.71],[165.311,-115.119],[165.62,-115.555],[165.048,-115.831],[161.137,-114.533],[161.193,-111.706],[162.914,-106.7],[158.543,-94.128],[154.625,-86.041],[154.46,-83.198],[155.2,-77.718],[155.842,-75.844],[157.471,-77.421],[158.573,-83.626],[159.715,-85.303],[161.127,-83.792],[161.516,-76.904],[162.025,-75.037],[163.691,-75.473],[167.213,-76.175],[170.238,-77.328],[172.347,-83.745],[172.994,-89.172],[174.454,-89.875],[178.158,-89.492],[179.91,-93.538],[179.851,-95.295],[181.356,-95.662],[181.808,-94.833],[182.215,-92.502],[187.514,-88.044],[192.455,-81.754],[194.691,-72.492],[195.504,-65.027],[193.957,-62.545],[189.573,-54.631],[189.263,-47.096],[187.421,-42.32],[184.947,-42.36],[180.792,-45.245],[177.292,-44.263],[174.292,-43.031],[171.116,-42.281],[166.919,-41.331],[159.638,-40.946],[157.763,-40.515],[156.801,-39.955],[157.469,-38.886],[160.084,-36.488],[159.603,-34.862],[157.25,-34.896],[155.771,-33.628],[155.416,-32.043],[152.661,-32.938],[152.175,-33.854],[149.331,-35.202],[145.133,-34.402],[142.346,-30.764],[142.03,-24.774],[144.255,-22.056],[146.906,-18.589],[148.684,-13.751],[150.277,-11.825],[150.169,-10.372],[150.076,-7.996],[152.863,-5.45],[153.851,-6.38],[153.05,-8.609],[153.154,-10.315],[154.044,-11.221],[154.954,-10.404],[162.694,-2.517],[163.819,-0.217],[164.318,1.271],[165.773,0.267],[166.697,-2.232],[168.974,-3.768],[170.362,-2.17],[170.411,1.96],[169.344,3.627],[162.795,6.229],[160.167,5.093],[159.038,4.497],[153.768,4.172],[143.953,4.137],[136.676,5.411],[134.222,9.003],[132.994,10.98],[123.292,13.489],[121.485,12.615],[117.449,11.491],[113.262,12.438],[111.327,10.865],[111.322,5.684],[110.807,-0.765],[113.123,-0.912],[114.49,-1.325],[115.983,-2.916],[116.035,-4.235],[117.166,-4.961],[120.2,-6.303],[121.328,-7.816],[121.927,-9.422],[122.004,-13.68],[121.264,-16.414],[121.326,-17.304],[123.423,-18.787],[124.286,-25.33],[124.605,-27.118],[126.731,-28.123],[130.798,-29.848],[131.768,-32.872],[128.218,-38.109],[126.096,-40.675],[125.519,-41.874],[127.552,-46.775],[128.316,-51.004],[125.224,-58.264],[122.613,-60.314],[119.601,-61.048],[117.775,-60.759],[113.73,-59.97],[111.538,-60.253],[110.669,-67.975],[110.118,-69.302],[109.192,-68.185],[108.55,-65.907],[105.422,-58.97],[103.783,-52.616],[104.523,-49.494],[103.89,-48.759],[102.149,-49.986],[100.884,-51.798],[102.105,-54.121],[102.903,-55.845],[102.483,-56.88],[101.662,-56.277],[100.192,-54.062],[98.505,-52.855],[98.632,-54.886],[100.801,-59.474],[100.499,-69.202],[99.17,-77.339],[98.629,-78.118],[97.946,-77.451],[97.205,-75.412],[96.473,-76.207],[96.473,-61.698],[96.475,-60.902],[96.485,-56.244],[97.269,-54.933],[97.304,-54.339],[96.461,-53.43],[95.689,-50.798],[96.701,-47.206],[95.807,-39.15],[96.168,-37.382],[96.916,-38.702],[97.104,-38.928],[98.244,-36.242],[97.96,-34.513],[94.123,-32.94],[89.645,-33.887],[88.683,-34.385],[87.833,-32.907],[86.932,-30.754],[83.898,-30.58],[84.452,-33.235],[85.712,-34.26],[81.871,-32.88],[81.678,-32.389],[80.813,-29.702],[78.435,-26.144],[78.371,-25.214],[79.26,-25.474],[80.984,-27.09],[82.796,-26.33],[85.037,-23.454],[86.158,-22.584],[87.726,-18.444],[87.347,-15.494],[87.009,-17.504],[85.068,-22.027],[82.775,-23.884],[81.766,-26.61],[79.328,-24.501],[77.961,-24.456],[77.666,-25.946],[78.08,-26.731],[80.895,-32.981],[81.783,-33.911],[84.147,-34.737],[91.603,-35.851],[95.352,-39.977],[95.62,-47.075],[93.359,-49.9],[92.21,-52.043],[94.183,-53.712],[95.41,-55.287],[95.856,-65.026],[95.307,-80.092],[94.742,-81.579],[93.392,-90.821],[95.245,-94.351],[94.924,-95.537],[93.286,-97.599],[93.603,-103.502],[94.126,-104.279],[95.805,-106.275],[96.597,-110.746],[95.132,-115.778],[94.323,-121.903],[95.501,-124.833],[93.344,-127.64],[92.903,-128.034],[87.042,-132.963],[86.44,-134.52],[85.758,-140.173],[80.293,-148.046],[80.264,-148.064],[79.603,-149.962],[76.848,-155.28],[73.537,-158.114],[72.053,-157.136],[72.808,-155.945],[74.119,-155.264],[74.136,-154.142],[71.623,-152.896],[70.625,-151.448],[71.681,-150.219],[75.387,-149.406],[77.605,-145.972],[76.341,-145.038],[71.863,-148.006],[70.828,-147.986],[68.898,-149.141],[64.805,-155.165],[62.128,-157.218],[61.393,-157.657],[57.499,-159.569],[57.12,-161.484],[56.926,-162.615],[56.242,-161.942],[55.948,-161.563],[53.879,-163.417],[49.96,-166.566],[49.19,-167.25],[49.146,-171.345],[47.506,-171.722],[46.901,-170.505],[46.737,-166.69],[46.146,-163.342],[45.736,-161.489],[45.778,-140.961],[46.086,-139.396],[46.103,-138.775],[46.097,-137.92],[45.997,-136.779],[45.236,-139.996],[44.507,-145.352],[44.104,-155.465],[44.377,-158.678],[43.443,-163.221],[39.861,-163.683],[32.209,-169.341],[30.188,-169.725],[30.047,-167.827],[30.073,-167.239],[29.73,-165.866]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.16,0.309,0.193,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-77.23,-200.245],[-77.137,-200.289],[-77.229,-200.335]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.166,0.061],[0.008,-0.002],[0.132,-0.104],[-0.156,0.008]],"o":[[-0.05,-0.133],[-0.172,0.046],[-0.135,0.106],[0.167,-0.009]],"v":[[-72.72,-201.861],[-72.822,-202.131],[-73.323,-201.956],[-73.215,-201.691]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.13,0.12],[0.118,-0.129],[-0.049,0.021],[-0.149,0.095]],"o":[[-0.152,0.167],[0.077,0.044],[0.16,-0.069],[-0.08,-0.074]],"v":[[-74.492,-201.643],[-74.879,-201.218],[-74.653,-201.098],[-74.202,-201.373]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.007,0.587],[0.733,0.081],[-0.01,-0.567],[-0.764,-0.047]],"o":[[-0.098,-0.705],[-0.702,-0.078],[0.016,0.872],[0.611,0.037]],"v":[[27.427,-226.492],[26.186,-227.867],[25.146,-226.707],[26.65,-225.426]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.003,2.002],[1.938,0.01],[0.044,-1.513],[-1.737,-0.018]],"o":[[-0.003,-1.996],[-1.585,-0.008],[-0.046,1.598],[1.867,0.019]],"v":[[-8.714,-227.054],[-11.65,-230.088],[-14.952,-227.038],[-11.673,-223.904]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.006,2.176],[2.1,-0.003],[0.005,-1.917],[-1.985,0.001]],"o":[[-0.006,-2.057],[-1.964,0.003],[-0.006,1.976],[2.066,-0.001]],"v":[[-70.062,-225.052],[-73.406,-228.313],[-76.912,-224.895],[-73.464,-221.455]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[1.521,-0.095],[0.476,-0.089],[0.552,-1.392],[-1.008,-0.852],[-0.283,-0.34],[-1.263,0.646],[-1.051,0.221],[-0.208,1.286],[1.022,0.597]],"o":[[-0.492,0],[-1.44,0.27],[-0.54,1.362],[0.337,0.285],[0.946,1.138],[0.901,-0.461],[1.047,-0.22],[0.22,-1.354],[-1.305,-0.762]],"v":[[-103.274,-223.536],[-104.748,-223.522],[-107.887,-221.109],[-106.714,-217.904],[-105.783,-216.955],[-102.484,-216.397],[-99.655,-217.528],[-97.368,-219.793],[-99.042,-222.474]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0.06,-0.06],[0.08,-0.014],[-0.023,-0.043],[-0.059,0.055],[-0.085,0.019],[0.027,0.044]],"o":[[-0.08,0.014],[0.023,0.043],[0.059,-0.055],[0.085,-0.019],[-0.027,-0.044],[-0.06,0.06]],"v":[[-76.024,-200.737],[-76.264,-200.694],[-76.196,-200.565],[-76.018,-200.73],[-75.764,-200.785],[-75.844,-200.916]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.062,0.059],[0.104,0.26],[0.074,-0.056],[0.085,-0.019],[-0.028,-0.046]],"o":[[0.07,-0.06],[-0.074,0.056],[-0.085,0.019],[0.028,0.046],[0.062,-0.059]],"v":[[-71.57,-202.503],[-71.361,-202.685],[-71.583,-202.518],[-71.838,-202.462],[-71.755,-202.325]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0.265,0.219],[-6.422,0],[-1.326,-0.874],[-0.59,-0.587],[-0.443,-0.451],[0.243,-0.696],[-0.755,-0.601],[-0.344,-1.087],[-1.734,-0.786],[-0.577,-1.176],[0.488,-0.001],[1.203,-0.452],[0.348,-0.005],[0.244,-0.922],[1.59,1.356],[0.709,0.401],[0.652,-0.717],[-1.012,-0.727],[-0.604,-0.115],[0.498,-1.048],[-1.267,-0.769],[-1.787,-1.125],[-0.51,0.036],[-1.003,-1.752],[1.238,-0.054],[2.023,-0.03],[0.779,0.753],[0.822,1.328],[1.288,0.82],[3.295,1.219],[0.589,-0.594],[0.36,-0.137],[2.08,-1.308],[0.057,-0.743],[0.097,-1.343],[-0.965,0.233],[-1.317,0.126],[0.358,-1.566],[0.055,-0.822],[0.745,-0.091],[0.15,0.685],[0.705,-0.717],[1.145,-0.075],[0.59,-0.234],[2.674,-1.866],[-0.068,-0.4],[-0.357,-0.107],[-1.989,-0.335],[-0.143,-0.972],[0.866,-0.381],[0.262,-0.201],[-0.127,-2.643],[0.029,-0.04],[0.492,-0.224],[-0.066,-0.746],[-0.816,-0.286],[-1.044,-1.357],[0.679,-1.673],[-0.969,-0.613],[-2.156,-5.346],[-1.306,-0.517],[-0.294,0.589],[0.338,0.227],[0.287,0.445],[0.868,2.208],[1.348,0.876],[1.021,0.593],[1.618,0.617],[0.121,0.183],[-0.031,0.179],[-4.159,-0.234],[-0.135,-2.494],[-0.334,0.827],[-0.805,-0.779],[-1.541,-1.16],[0.2,-0.316],[0.252,0.079],[1.12,0.359],[0.949,-0.49],[-1.911,-1.022],[-0.46,-1.054],[-0.021,-0.885],[0.024,-0.588],[-0.026,-5.567],[-0.624,-0.116],[-0.152,0.445],[0.01,0.281],[-0.142,2.904],[-0.517,2.427],[0.613,1.31],[0.009,0.196],[-0.752,0.537],[-0.662,-0.259],[-2.616,-1.797],[0.376,-0.544],[0.033,0.122],[-0.002,-0.004],[-0.062,-0.103],[0.23,-6],[-0.153,-4.271],[0.242,-2.595],[-0.052,-1.765],[-0.706,0.011],[-0.063,0.459],[0.243,4.279],[-0.023,0.454],[0.12,5.153],[0.756,0.77],[-0.009,0.96],[-1.475,0.181],[0.141,-3.382],[0.022,-0.536],[-0.092,-3.395],[-0.099,-6.955],[-0.61,-0.824],[0.006,0.117],[0.006,5.965],[0.35,2.702],[-0.033,0.38],[0.197,0.287],[0.006,0.207],[-0.011,0.332],[0.004,2.993],[0.096,3.78],[-1.423,1.011],[-0.335,0.816],[-1.257,-1.112],[-0.201,-0.322],[-0.297,-1.974],[0.043,-1.378],[0.514,-5.573],[-0.118,-0.418],[-0.618,0.031],[-0.037,0.532],[0.077,2.328],[-0.66,-0.017],[-0.004,-0.418],[0.003,-3.801],[0.304,-0.372],[0.001,-1.172],[-0.003,-2.32],[0.097,-12.218],[-0.095,-3.742],[1.61,-1.639],[0.696,-0.546],[1.234,1.331],[0.341,-0.894],[0.618,0.385],[2.935,-2.171],[4.668,-1.001],[0.529,0.078],[0.433,-2.313],[1.75,0.255],[0.633,-0.002],[2.668,1.162],[1.092,0.171],[0.018,0.677],[-0.212,1.061],[0.43,0.195],[0.324,-0.271],[-1.212,-0.894],[-2.808,-0.242],[-3.632,-0.324],[-0.059,-2.606],[0.068,-0.686],[-0.02,-1.834],[0.074,-2.268],[1.538,0.385],[0.061,0.927],[0.864,4.668],[0.572,0.101],[2.437,-0.152],[0.509,-1.048],[0.365,0.274],[0.536,0.197],[1.146,0.444],[0.211,4.434],[0.05,0.635],[-0.917,1.03],[-0.805,-0.497],[-0.505,0.996],[-2.124,-0.23],[-0.41,0.062],[-0.247,3.021],[1.099,1.513],[1.432,0.248],[0.609,0.304],[1.803,-0.204],[0.698,1.131],[-0.482,0.047],[1.316,0.021],[0,0],[0.099,0.078],[2.227,1.085],[0.218,0.433],[1.546,-0.138],[0.739,-1.121],[0.268,-0.039],[-0.026,0.856],[0.002,1.176],[0.073,7.145],[0.7,5.939],[0.217,2.578],[0.148,-5.501],[0.506,-5.959],[0.46,-0.828],[0.485,0.255],[0.103,5.018],[0.031,8.138],[0.776,-0.174],[1.553,1.149],[0.349,0.004],[1.609,-0.057],[1.452,-0.691],[0.264,-0.025],[1.354,0.329],[0,0],[0.87,-0.28],[1.778,-1.572],[1.633,0.545],[-0.149,2.067],[0.646,0.485],[1.565,-3.043],[0.608,-1.449],[1.168,-0.648],[0.298,1.466],[0.083,0.678],[0.151,1.996],[-1.409,1.252],[-0.46,0.689],[1.63,0.066],[1.431,0.01],[-0.028,0.901],[1.38,0.721],[-0.04,0.232],[1.284,0.439],[2.682,-0.478],[0.402,-1.911],[0.801,-0.383],[1.107,-0.265],[-0.501,-0.756],[0.863,-0.696],[0.521,-0.452],[-0.164,-0.528],[-1.501,1.17],[-0.838,-2.101],[-0.101,-0.38],[0.921,0.136],[0.569,0.389],[0.327,-0.272],[-0.013,-0.279],[-0.051,-1.675],[-3.957,-0.957],[-0.193,-0.042],[-0.143,-1.245],[0.442,-1.321],[-0.497,-0.889],[0.407,-0.799],[-0.111,-2.109],[0.048,-0.125],[1.846,1.547],[0.264,0.289],[2.36,-1.243],[0.75,-0.371],[0.116,2.892],[-0.384,2.579],[2.744,-0.795],[0.056,1.412],[1.833,0.134],[0.258,0.388],[0.571,0.802],[0.202,2.1],[0.023,1.869],[0.012,3.942],[0.027,5.969],[-0.03,2.26],[0.365,0.494],[-1.096,0.019],[0.049,-0.701],[-0.242,-2.602],[0.079,-5.281],[-0.061,-0.183],[-0.021,0.092],[-0.798,0.786],[-1.61,1.32],[-0.785,1.155],[-1.346,0.84],[-2.352,1.98],[0.172,0.48],[0.314,0.11],[2.219,0.997],[0.383,-0.862],[2.352,0.606],[2.114,0.046],[0.042,2.261],[-0.807,0.494],[-0.335,2.71],[0.017,0.421],[1.553,1.544],[0.139,0.112],[1.824,2.393],[1.406,-0.203],[1.404,-0.809],[0.365,-0.097],[0.024,1.957],[0.713,0.708],[-0.019,1.536],[0.088,3.895],[-2.314,1.36],[-46.136,0],[0.202,-0.138],[-0.812,-1.079],[-0.982,0.829],[1.019,1.06]],"o":[[6.422,0],[0.522,1.46],[0.59,0.587],[0.192,0.65],[0.482,0.49],[-0.358,1.027],[0.79,0.629],[0.595,1.88],[1.055,0.478],[-0.488,0.001],[-1.218,-0.898],[-0.348,0.005],[-0.722,-0.119],[-0.536,2.03],[-0.423,-0.661],[-1.141,-1.124],[-0.664,0.731],[0.508,0.365],[1.132,0.215],[-0.601,1.266],[1.805,1.095],[0.427,0.269],[1.572,1.192],[0.246,0.429],[-2.022,0.089],[-1.061,0.016],[-1.092,-1.056],[-0.79,-1.277],[-3.04,-1.937],[-0.678,-0.251],[-0.272,0.274],[-2.33,0.888],[-0.413,0.259],[1.354,-0.092],[-0.084,1.161],[1.291,-0.312],[1.611,-0.154],[-0.187,0.816],[-0.062,0.918],[-0.724,0.088],[-0.376,-1.719],[-0.817,0.832],[-0.622,0.041],[-3.049,1.212],[-0.268,0.187],[0.077,0.451],[1.951,0.582],[0.931,0.157],[0.164,1.111],[-0.315,0.139],[-1.412,1.086],[0.002,0.039],[-0.49,0.229],[-0.629,0.286],[0.064,0.723],[1.58,0.555],[0.882,1.146],[1.308,-0.03],[4.556,2.881],[0.489,1.214],[0.45,0.178],[0.255,-0.511],[-0.405,-0.272],[-1.281,-1.987],[-0.61,-1.552],[-0.991,-0.644],[-1.479,-0.859],[-0.121,-0.183],[0.074,-0.172],[0.753,-4.307],[1.86,0.463],[1.12,-0.51],[0.377,-0.935],[1.375,1.33],[0.298,0.224],[-0.222,0.351],[-1.123,-0.351],[-0.618,-0.198],[1.96,1.453],[0.808,0.849],[0.021,0.885],[-0.077,0.585],[-0.228,5.567],[0.002,0.417],[0.728,0.135],[0.095,-0.277],[-0.105,-2.913],[0.12,-2.463],[0.302,-1.416],[-0.009,-0.196],[-0.029,-0.641],[0.762,-0.544],[3.064,1.199],[-0.062,0.594],[-0.033,-0.122],[-0.036,0.024],[0.056,0.106],[0.917,5.961],[-0.165,4.287],[0.094,2.608],[-0.167,1.787],[0.014,0.48],[0.612,-0.01],[0.584,-4.273],[0.439,-0.269],[0.256,-5.147],[-0.022,-0.946],[0.009,-0.96],[0.657,-0.861],[0.214,3.368],[-0.275,0.508],[-0.141,3.411],[0.189,6.952],[0.012,0.824],[0.094,-0.282],[-0.327,-5.966],[-0.003,-2.703],[0.033,-0.38],[0.202,-0.284],[-0.006,-0.207],[0.078,-0.33],[0.1,-2.993],[-0.005,-3.78],[-0.043,-1.693],[0.669,-0.475],[1.785,0.454],[0.119,0.372],[1.069,1.713],[0.208,1.38],[-0.173,5.572],[-0.04,0.435],[0.14,0.496],[0.672,-0.034],[0.161,-2.313],[-0.013,-0.397],[0.613,0.016],[0.038,3.801],[0,0.529],[-0.848,1.038],[-0.002,2.32],[0.013,12.218],[-0.03,3.732],[-2.281,0.34],[-0.619,0.63],[-1.43,1.122],[-0.745,-0.803],[-0.226,0.593],[-3.439,-2.145],[-3.985,2.948],[-0.516,0.111],[-2.319,-0.343],[-0.317,1.691],[-0.645,-0.094],[-2.777,0.008],[-0.933,-0.406],[-0.738,-0.116],[-0.029,-1.108],[0.063,-0.314],[-0.39,-0.176],[-1.141,0.958],[2.184,1.611],[3.634,0.314],[2.518,0.225],[0.016,0.687],[-0.179,1.812],[0.025,2.27],[-0.058,1.793],[0.007,-0.932],[-0.306,-4.68],[0.098,-0.757],[-2.429,-0.431],[-1.03,0.064],[-0.365,-0.274],[-0.086,-0.635],[-1.153,-0.424],[-4.087,-1.582],[-0.03,-0.638],[-0.104,-1.312],[0.951,-0.735],[0.819,1.158],[2,-0.693],[0.358,0.464],[3.001,-0.451],[0.126,-1.548],[-0.713,1.392],[-0.672,-0.117],[-1.65,-0.823],[-1.108,-0.147],[0.232,-0.023],[-1.504,-0.664],[0,0],[-0.099,-0.078],[-2.584,-0.297],[-0.19,-0.447],[-1.613,0],[-1.132,0.101],[-0.268,0.039],[-0.769,0.004],[0.036,-1.2],[-0.012,-7.146],[-0.061,-5.955],[-0.304,-2.58],[-0.335,5.499],[-0.16,5.948],[-0.078,0.917],[-0.748,-0.123],[-0.121,-5.016],[-0.167,-8.136],[-0.005,-1.185],[-2.046,0.46],[-0.06,-0.513],[-1.613,-0.016],[-1.494,0.053],[-0.264,0.025],[-0.002,-1.296],[0,0],[-0.025,-1.327],[-2.367,0.762],[-1.369,0.409],[-2.033,-0.676],[0.056,-0.772],[-2.727,-2.045],[-0.717,1.393],[-0.636,1.205],[-1.303,0.723],[-0.136,-0.667],[0.101,-1.996],[0.13,-1.858],[0.621,-0.552],[0.911,-1.363],[-1.428,-0.058],[-0.735,-0.005],[0.039,-1.261],[-0.104,-0.054],[0.262,-1.537],[-2.638,-0.903],[-1.727,0.308],[-0.185,0.881],[-1.028,0.491],[-0.603,0.144],[0.693,1.046],[-0.537,0.433],[-0.338,0.293],[0.577,1.864],[1.749,-1.363],[0.146,0.366],[0.28,1.054],[-0.705,-0.104],[-0.274,-0.187],[-0.169,0.141],[0.079,1.674],[0.127,4.173],[0.192,0.046],[1.206,0.262],[0.162,1.411],[-0.279,0.834],[0.457,0.818],[-0.919,1.806],[-0.105,0.104],[-0.802,2.084],[-0.301,-0.252],[-1.802,-1.975],[-0.741,0.39],[-2.598,1.285],[-0.106,-2.64],[0.438,-2.945],[-1.551,0.449],[-0.058,-1.464],[-0.458,-0.034],[-0.545,-0.819],[-1.176,-1.653],[-0.179,-1.862],[-0.048,-3.941],[-0.018,-5.969],[0.03,-2.26],[0.678,-0.262],[0.081,-0.642],[0.38,0.537],[-0.182,2.599],[-0.251,5.282],[-0.003,0.192],[0.077,0.231],[0.31,-1.395],[1.48,-1.457],[1.073,-0.879],[0.926,-1.362],[2.588,-1.615],[0.277,-0.233],[-0.086,-0.24],[-2.276,-0.797],[-1.128,-0.507],[-1.008,2.27],[-2.105,-0.542],[-0.005,-2.262],[-0.019,-1.007],[2.41,-1.475],[0.241,-0.355],[0.909,-1.169],[-0.092,-0.171],[-2.35,-1.899],[-0.847,-1.112],[-1.534,0.221],[-0.388,0.01],[-1.823,0.482],[-0.014,-1.143],[-1.372,-1.363],[0.047,-3.897],[-0.051,-2.25],[46.136,0],[-0.196,0.145],[-1.267,0.866],[0.858,1.14],[1.146,-0.968],[-0.237,-0.246]],"v":[[14.077,-236.594],[33.342,-236.594],[35.971,-232.988],[37.741,-231.227],[38.91,-229.739],[39.442,-228.022],[40.357,-225.774],[42.544,-223.669],[46.223,-219.895],[49.043,-217.9],[47.58,-217.898],[43.957,-217.857],[42.914,-217.843],[41.343,-217.036],[36.651,-215.591],[35.088,-217.307],[32.166,-217.972],[32.82,-214.836],[34.537,-214.03],[35.331,-212.363],[36.375,-209.227],[41.739,-205.857],[43.14,-205.483],[47.291,-201.342],[46.954,-200.174],[40.889,-199.934],[38.058,-201.039],[35.073,-204.474],[32.006,-207.793],[22.003,-211.057],[19.96,-210.502],[18.976,-209.856],[12.619,-206.125],[11.61,-204.888],[13.517,-203.054],[15.031,-202.007],[18.943,-202.762],[20.657,-200.729],[20.081,-198.291],[18.77,-197.024],[17.255,-197.912],[15.363,-198.278],[12.478,-196.995],[10.64,-196.482],[2.193,-191.62],[1.535,-190.903],[2.47,-190.324],[8.451,-189.394],[11.023,-188.422],[8.816,-186.878],[7.862,-186.493],[4.083,-182.756],[4.001,-182.635],[2.531,-181.949],[1.497,-180.496],[2.672,-179.028],[6.809,-176.298],[7.886,-172.235],[10.971,-170.685],[22.184,-159.536],[25.021,-156.843],[26.325,-156.931],[25.648,-157.912],[24.496,-158.796],[21.042,-164.971],[18.01,-168.486],[15.005,-170.368],[10.551,-172.918],[10.187,-173.466],[10.404,-173.981],[15.314,-178.055],[19.237,-174.723],[20.955,-176.903],[22.895,-177.527],[27.045,-173.565],[27.245,-172.634],[26.466,-172.681],[23.108,-173.767],[20.92,-173.776],[26.829,-170.492],[28.57,-167.543],[28.633,-164.889],[28.408,-163.132],[28.416,-146.432],[28.935,-145.36],[29.834,-146.283],[30.048,-147.133],[30.317,-155.854],[30.302,-163.223],[30.073,-167.239],[30.047,-167.827],[30.188,-169.725],[32.209,-169.341],[39.861,-163.683],[39.575,-161.917],[39.477,-162.282],[39.373,-162.211],[39.555,-161.901],[40.357,-143.93],[40.498,-131.099],[40.599,-123.284],[40.684,-117.981],[41.359,-116.707],[41.895,-117.913],[41.984,-130.744],[42.48,-131.901],[42.78,-147.351],[42.002,-150.089],[42.029,-152.969],[44.104,-155.465],[44.507,-145.352],[44.326,-143.754],[44.82,-133.569],[45.146,-112.706],[45.824,-110.251],[45.992,-110.772],[46.019,-128.668],[45.997,-136.779],[46.097,-137.92],[46.103,-138.775],[46.086,-139.396],[46.313,-140.385],[46.558,-149.365],[46.333,-160.706],[48.263,-164.769],[49.96,-166.566],[53.879,-163.417],[54.248,-162.306],[56.104,-156.734],[56.28,-152.598],[56.304,-135.882],[56.414,-134.564],[57.22,-133.302],[57.816,-134.631],[58.206,-141.575],[58.721,-142.593],[59.247,-141.548],[59.317,-130.145],[58.967,-128.582],[58.252,-125.2],[58.259,-118.239],[58.101,-81.586],[58.211,-70.359],[52.42,-67.33],[50.421,-65.579],[47.298,-65.778],[45.89,-65.513],[44.613,-64.999],[34.954,-64.137],[21.689,-59.137],[20.073,-59.141],[17.3,-57.169],[14.768,-55.404],[12.857,-55.351],[4.588,-56.092],[1.834,-57.443],[0.992,-58.994],[1.568,-62.188],[1.391,-63.104],[0.292,-62.873],[0.621,-56.974],[7.927,-54.151],[18.837,-53.537],[21.764,-50.649],[21.65,-48.584],[21.172,-43.141],[21.137,-36.331],[18.901,-34.44],[18.913,-37.234],[18.655,-51.284],[17.669,-52.258],[10.356,-52.445],[7.842,-50.906],[6.747,-51.727],[5.666,-52.797],[2.224,-54.117],[-2.228,-60.344],[-2.236,-62.262],[-1.276,-65.833],[1.279,-65.531],[3.188,-65.81],[9.356,-66.637],[10.591,-66.481],[17.283,-73.426],[16.559,-78.156],[14.079,-76.809],[12.117,-77.442],[6.937,-78.268],[3.948,-79.514],[4.893,-79.607],[0.733,-80.099],[0.733,-80.105],[0.435,-80.34],[-6.333,-83.403],[-5.996,-84.496],[-10.723,-84.461],[-13.826,-83.111],[-14.631,-82.993],[-16.1,-84.085],[-16.516,-87.578],[-16.553,-109.014],[-16.81,-126.878],[-17.177,-134.624],[-17.509,-118.118],[-17.589,-100.248],[-18.086,-97.581],[-19.223,-98.746],[-19.324,-113.797],[-19.481,-138.211],[-21.043,-140.548],[-26.226,-141.758],[-26.996,-142.164],[-31.832,-142.236],[-36.313,-141.942],[-37.105,-141.866],[-38.947,-144.442],[-38.95,-144.456],[-40.683,-145.4],[-46.392,-141.196],[-50.523,-140.053],[-53.185,-144.257],[-53.993,-146.22],[-61.121,-144.614],[-62.962,-140.276],[-65.718,-137.507],[-67.816,-138.512],[-68.073,-140.543],[-68.076,-146.53],[-65.803,-151.185],[-64.145,-153.064],[-65.181,-155.113],[-69.472,-155.111],[-70.948,-156.184],[-72.14,-159.383],[-72.166,-160.078],[-74.058,-162.824],[-82.099,-163.202],[-85.579,-159.998],[-87.176,-158.171],[-90.376,-157.031],[-90.937,-155.976],[-91.551,-153.419],[-93.153,-152.108],[-93.631,-150.965],[-88.897,-149.375],[-85.701,-148.465],[-85.324,-147.344],[-86.517,-146.109],[-88.313,-147.104],[-89.213,-147.375],[-89.38,-146.554],[-89.104,-141.535],[-85.036,-136.404],[-84.461,-136.263],[-82.45,-134.03],[-83.027,-129.973],[-83.17,-127.405],[-83.288,-125.015],[-84.957,-119.267],[-85.264,-118.953],[-87.91,-118.413],[-88.774,-119.213],[-96.836,-120.656],[-99.026,-119.424],[-103.625,-122.215],[-102.777,-129.985],[-106.154,-133.316],[-108.15,-134.678],[-110.392,-137.553],[-111.397,-138.357],[-113.103,-140.768],[-115.701,-146.171],[-116.033,-151.775],[-116.046,-163.601],[-116.126,-181.507],[-116.035,-188.287],[-115.773,-189.467],[-114.847,-190.974],[-114.402,-189.193],[-114.365,-181.385],[-114.216,-165.546],[-114.119,-164.97],[-113.661,-164.786],[-111.043,-166.648],[-106.175,-170.579],[-102.844,-172.946],[-99.296,-176.009],[-91.594,-180.948],[-90.912,-181.766],[-91.76,-182.268],[-98.627,-184.553],[-102.68,-183.286],[-107.045,-180.946],[-113.361,-181.47],[-113.387,-188.254],[-112.153,-190.441],[-108.311,-196.876],[-108.011,-198.048],[-108.999,-202.207],[-109.279,-202.711],[-115.41,-209.263],[-118.845,-210.931],[-123.387,-209.812],[-124.549,-209.77],[-126.7,-211.45],[-127.231,-214.737],[-128.188,-219.089],[-128.198,-230.78],[-126.109,-236.594],[12.299,-236.594],[11.709,-236.159],[10.943,-232.894],[14.625,-232.271],[14.868,-235.933]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.487,0.944,0.357,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.158,0.034],[0.059,-0.004],[0.124,-0.04],[-0.064,-0.001]],"o":[[-0.102,-0.081],[-0.127,0.01],[0.063,0.05],[0.126,0.002]],"v":[[186.141,-188.691],[185.914,-188.863],[185.54,-188.753],[185.729,-188.611]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.074,0.058],[0.081,-0.035],[-0.106,-0.022],[-0.082,0.034]],"o":[[-0.124,0.054],[0.098,0.058],[0.071,0.015],[-0.089,-0.07]],"v":[[184.068,-188.6],[183.782,-188.475],[184.079,-188.31],[184.322,-188.402]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.561],[0.04,0.014],[0,-0.575],[-0.04,0.001]],"o":[[-0.04,-0.014],[0,0.575],[0.04,-0.001],[0,-0.561]],"v":[[86.612,101.639],[86.491,101.598],[86.491,103.324],[86.612,103.321]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.856,0],[0,0.09],[1.7,0],[0.381,0],[-0.227,-0.001]],"o":[[0,-0.09],[-1.7,0],[-0.381,0],[0.221,0.23],[1.856,0.005]],"v":[[43.686,231.965],[43.686,231.695],[38.585,231.695],[37.443,231.695],[38.118,231.962]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.248,0.543],[0.449,0.054],[0.136,-0.538],[-0.502,-0.047]],"o":[[-0.068,-0.548],[-0.489,-0.058],[-0.155,0.613],[0.488,0.046]],"v":[[-50.468,202.023],[-51.378,201.226],[-52.623,201.717],[-51.697,202.571]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.077,0.582],[0.593,-0.05],[0.085,-0.717],[-0.555,-0.073]],"o":[[-0.016,-0.317],[-0.538,0.045],[-0.062,0.522],[0.769,0.101]],"v":[[95.957,103.405],[95.542,102.579],[94.219,103.466],[95.056,104.471]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.29,-0.019],[-0.029,0.573],[0.267,-0.026],[0.418,-0.756]],"o":[[0.57,0.04],[0.015,-0.307],[-1.033,0.1],[-0.157,0.285]],"v":[[159.912,-94.449],[161.764,-96.144],[161.361,-96.621],[159.555,-94.902]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.064,1.673],[0.994,-0.163],[-0.465,-0.63]],"o":[[-1.072,-0.449],[-0.611,0.1],[0.936,1.267]],"v":[[69.284,115.84],[66.296,115.259],[65.913,116.258]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.192,-0.692],[-1.113,-0.016],[-0.03,0.708],[0.957,0.016]],"o":[[0.295,0.694],[0.913,0.013],[0.031,-0.719],[-0.823,-0.014]],"v":[[-134.715,119.639],[-134.035,121.698],[-133.551,119.701],[-134.161,117.732]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.258,0.758],[0.794,-0.035],[-0.019,-0.876],[-0.72,0.009]],"o":[[-0.26,-0.698],[-0.72,0.031],[0.017,0.76],[0.731,-0.009]],"v":[[78.614,90.976],[77.154,89.758],[75.774,90.948],[77.053,92.061]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.783,0.053],[0.13,0.561],[0.89,0.351],[-0.008,-0.411]],"o":[[0.529,-0.072],[-0.264,-1.141],[-0.4,-0.158],[0.015,0.79]],"v":[[160.592,-6.682],[161.291,-7.701],[159.069,-9.416],[158.488,-8.786]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[0.78,0.066],[-0.007,-0.969],[-0.766,0.006],[0.004,0.865]],"o":[[-0.64,0.228],[0.005,0.802],[0.717,-0.005],[-0.004,-0.763]],"v":[[156.118,65.701],[154.438,66.866],[156.066,68.004],[157.456,66.837]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[0.022,0.825],[0.93,-0.128],[-0.005,-1.049],[-0.779,-0.017]],"o":[[-0.104,-0.394],[-0.707,0.097],[0.004,0.85],[0.984,0.022]],"v":[[-130.302,194.199],[-130.992,193.04],[-132.551,194.461],[-131.283,195.734]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.826,0.013],[0.007,0.956],[0.914,-0.017],[-0.001,-0.903]],"o":[[0.546,-0.089],[-0.005,-0.804],[-0.856,0.016],[0.001,0.835]],"v":[[-199.026,18.273],[-197.633,17.298],[-199.028,15.939],[-200.444,17.254]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.225,-0.03],[-0.207,0.599],[0.494,0.237],[1.121,-0.155],[-0.113,-0.2]],"o":[[0.548,-0.034],[0.239,-0.69],[-1.012,-0.487],[-0.229,0.032],[0.594,1.05]],"v":[[226.288,203.612],[227.726,203.109],[226.824,201.782],[223.579,201.261],[223.598,201.903]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[0.047,-0.649],[-0.931,-0.041],[-0.007,0.742],[0.966,0.014]],"o":[[0.019,0.842],[0.918,0.04],[0.007,-0.834],[-0.93,-0.014]],"v":[[107.734,-17.238],[108.79,-15.378],[109.759,-17.055],[108.604,-18.796]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[0.014,0.683],[1.108,0.022],[0.024,-0.424],[-0.829,-0.212]],"o":[[0.029,-1.062],[-1.055,-0.021],[-0.063,1.123],[0.669,0.171]],"v":[[174.391,53.16],[172.388,51.217],[171.65,52.499],[173.397,54.071]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.627,-0.129],[0.023,1.13],[0.784,0.022],[0.01,-0.913]],"o":[[0.862,-0.055],[-0.017,-0.857],[-0.821,-0.023],[-0.01,0.966]],"v":[[214.033,58.002],[216.008,56.996],[214.151,55.968],[212.378,57.095]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.059,1.019],[0.211,0.135],[0.303,-0.243],[0.544,-0.498],[-0.293,-0.495],[-0.538,0.027]],"o":[[0.102,-0.275],[-0.327,-0.209],[-0.576,0.463],[-0.263,0.241],[0.269,0.455],[0.846,-0.042]],"v":[[178.956,56.314],[178.636,55.765],[177.677,55.807],[175.972,57.22],[175.548,58.184],[176.767,58.846]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[0.288,0.052],[0.185,-1.051],[-0.72,-0.026],[-0.597,1.059],[0.429,0.174]],"o":[[-0.85,0.107],[-0.127,0.719],[0.967,0.035],[0.255,-0.453],[-0.397,-0.161]],"v":[[124.833,98.867],[122.909,99.769],[123.883,100.946],[126.531,100.147],[125.976,99.091]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[0.139,-0.934],[-0.105,-0.422],[-0.271,-0.005],[-0.085,0.237],[0.536,1.418],[0.383,-0.055],[0.048,-0.284]],"o":[[0.076,0.427],[0.06,0.24],[0.279,0.005],[0.49,-1.359],[-0.103,-0.273],[-0.34,0.049],[-0.155,0.913]],"v":[[134.379,118.006],[134.616,119.289],[135.12,119.753],[135.618,119.289],[135.849,115.141],[135.294,114.589],[134.799,115.241]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[1.1,-0.075],[-0.012,-1.148],[-0.814,-0.429],[-0.02,0.506]],"o":[[-0.889,0.036],[0.02,1.935],[0.77,0.406],[0.041,-1.019]],"v":[[90.523,87.924],[88.813,89.268],[91.286,90.444],[92.016,89.446]],"c":true}},"nm":"P"},{"ind":22,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.084,0.413],[0.522,0.244],[0.393,-0.262],[0.149,-0.639],[-0.863,-0.3],[-0.266,0.744]],"o":[[-0.123,-0.58],[-0.496,-0.232],[-0.555,0.37],[-0.179,0.766],[0.877,0.305],[0.178,-0.498]],"v":[[138.408,211.667],[138.054,210.214],[136.781,210.764],[135.764,212.326],[136.452,214.181],[138.096,213.122]],"c":true}},"nm":"P"},{"ind":23,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.687,-0.037],[-0.05,0.817],[0.732,-0.051],[0.029,-0.887]],"o":[[0.803,-0.034],[0.039,-0.63],[-0.809,0.057],[-0.025,0.773]],"v":[[-161.82,173.077],[-160.07,171.929],[-161.614,170.899],[-163.311,172.197]],"c":true}},"nm":"P"},{"ind":24,"ty":"sh","ks":{"a":0,"k":{"i":[[0.787,0.363],[-0.112,-0.836],[-0.995,-0.065],[-0.022,0.75]],"o":[[-0.84,0.149],[0.14,1.049],[0.847,0.055],[0.038,-1.282]],"v":[[71.984,96.534],[70.511,97.919],[72.574,99.47],[73.889,98.179]],"c":true}},"nm":"P"},{"ind":25,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.78,-0.107],[0.036,1.079],[0.922,-0.025],[-0.053,-1.115]],"o":[[0.841,-0.063],[-0.036,-1.082],[-0.892,0.024],[0.052,1.096]],"v":[[-178.961,138.033],[-177.224,136.866],[-179.048,135.659],[-180.842,136.878]],"c":true}},"nm":"P"},{"ind":26,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.766,-0.122],[-0.016,1.193],[0.821,0.063],[0.034,-0.968]],"o":[[0.935,-0.127],[0.015,-1.124],[-1.105,-0.084],[-0.034,0.956]],"v":[[-160.293,42.348],[-158.197,40.954],[-160.116,39.856],[-162.149,41.342]],"c":true}},"nm":"P"},{"ind":27,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.939,-0.203],[0.012,0.908],[1.052,-0.061],[-0.011,-1.043]],"o":[[0.643,-0.197],[-0.014,-1.019],[-0.756,0.044],[0.012,1.134]],"v":[[-174.019,-17.6],[-172.449,-18.635],[-174.234,-20.185],[-176.062,-19.159]],"c":true}},"nm":"P"},{"ind":28,"ty":"sh","ks":{"a":0,"k":{"i":[[0.789,0.132],[-0.053,-1.067],[-0.919,0.041],[-0.049,1.025]],"o":[[-0.886,0.165],[0.039,0.792],[1.041,-0.047],[0.044,-0.939]],"v":[[87.24,53.02],[85.576,54.533],[86.986,55.906],[88.937,54.285]],"c":true}},"nm":"P"},{"ind":29,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.882,-0.035],[-0.181,0.957],[0.918,0.038],[0.139,-1.057]],"o":[[0.874,-0.147],[0.175,-0.922],[-0.933,-0.039],[-0.13,0.989]],"v":[[59.362,166.781],[61.931,165.611],[59.746,164.441],[57.753,165.772]],"c":true}},"nm":"P"},{"ind":30,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.112,0.593],[1.227,-0.028],[-0.03,-0.975],[-1.113,-0.013]],"o":[[0.017,-0.98],[-1.06,0.025],[0.033,1.09],[1.268,0.015]],"v":[[-152.789,77.644],[-154.014,75.823],[-155.431,77.468],[-153.747,79.276]],"c":true}},"nm":"P"},{"ind":31,"ty":"sh","ks":{"a":0,"k":{"i":[[0.494,0.024],[0.536,-0.863],[-0.486,-0.451],[-0.335,0.303],[-0.512,-0.124],[0.042,0.949]],"o":[[-1.216,-0.028],[-0.342,0.551],[0.549,0.511],[0.335,-0.304],[0.815,0.198],[-0.042,-0.952]],"v":[[-216.957,128.24],[-219.53,129.446],[-219.381,131.065],[-218.181,130.67],[-217.027,130.198],[-215.661,129.229]],"c":true}},"nm":"P"},{"ind":32,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.084,-0.311],[0.11,1.111],[1.195,-0.089],[-0.05,-1.142]],"o":[[0.401,-0.442],[-0.108,-1.09],[-0.745,0.055],[0.055,1.259]],"v":[[177.7,4.106],[179.131,2.92],[177.172,1.187],[175.514,2.361]],"c":true}},"nm":"P"},{"ind":33,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.592],[-0.007,0],[-0.066,-0.733],[-0.511,0.436],[0.36,0.624],[0.575,-0.125],[0.01,-0.479]],"o":[[0.007,0],[0,0.739],[0.051,0.568],[0.534,-0.456],[-0.216,-0.374],[-0.516,0.112],[-0.013,0.591]],"v":[[177.681,-232.13],[177.701,-232.13],[177.717,-229.914],[178.622,-229.542],[179.335,-234.175],[178.373,-234.915],[177.684,-233.904]],"c":true}},"nm":"P"},{"ind":34,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.653,0.042],[-0.45,0.335],[0.365,0.314],[1.262,-0.31],[0.068,-0.713],[-0.5,-0.254]],"o":[[0.556,0.029],[0.323,-0.24],[-0.92,-0.792],[-0.636,0.156],[-0.06,0.624],[0.57,0.289]],"v":[[-180.797,177.776],[-179.264,177.366],[-179.203,176.523],[-182.395,175.425],[-184.009,176.475],[-182.645,177.376]],"c":true}},"nm":"P"},{"ind":35,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.377,1.008],[0.746,0.316],[0.444,-0.643],[-0.447,-0.603],[-0.515,0.383]],"o":[[-0.406,-0.899],[-0.648,-0.275],[-0.447,0.647],[0.38,0.513],[0.675,-0.501]],"v":[[-18.272,144.946],[-20.31,143.618],[-22.02,143.974],[-21.942,145.902],[-20.402,146.386]],"c":true}},"nm":"P"},{"ind":36,"ty":"sh","ks":{"a":0,"k":{"i":[[1.197,0.189],[-0.363,-0.695],[-1.23,-0.506],[-0.418,0.642],[0.435,0.461]],"o":[[-0.928,-0.002],[0.603,1.155],[0.57,0.234],[0.388,-0.596],[-0.913,-0.969]],"v":[[154.381,205.195],[153.6,206.131],[156.316,208.702],[157.877,208.398],[157.673,206.792]],"c":true}},"nm":"P"},{"ind":37,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.088,0.398],[0.527,0.665],[0.639,-0.374],[-0.238,-0.664],[-0.689,-0.819],[-0.145,0.535]],"o":[[0.013,-1.087],[-0.269,-0.34],[-0.654,0.383],[0.377,1.05],[0.323,0.384],[0.115,-0.425]],"v":[[-130.309,32.518],[-131.773,30.38],[-132.899,29.752],[-133.356,31.434],[-131.449,34.021],[-130.591,33.776]],"c":true}},"nm":"P"},{"ind":38,"ty":"sh","ks":{"a":0,"k":{"i":[[0.473,0.084],[1.153,-0.786],[-0.119,-0.454],[-0.455,-0.015],[-1.187,0.877],[0.169,0.573]],"o":[[-1.428,0.061],[-0.314,0.214],[0.13,0.499],[1.452,0.048],[0.434,-0.321],[-0.203,-0.689]],"v":[[226.418,195.659],[222.565,196.964],[222.002,197.902],[223.037,198.563],[227.044,197.43],[227.793,196.106]],"c":true}},"nm":"P"},{"ind":39,"ty":"sh","ks":{"a":0,"k":{"i":[[0.338,-0.011],[1.249,-0.451],[-0.28,-0.791],[-0.626,0.226],[-1.203,0.663],[0.101,0.344]],"o":[[-1.319,0.157],[-1.004,0.363],[0.263,0.745],[1.308,-0.472],[0.257,-0.141],[-0.13,-0.443]],"v":[[207.279,202.318],[203.4,203.156],[202.376,205.317],[204.201,205.486],[207.72,203.358],[208.137,202.663]],"c":true}},"nm":"P"},{"ind":40,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.065,-0.78],[-0.912,0.542],[-0.033,0.035],[0.333,0.461],[1.293,-0.061]],"o":[[0.041,0.9],[0.042,-0.025],[0.436,-0.46],[-0.767,-1.062],[-0.61,0.029]],"v":[[-105.469,117.089],[-101.665,118.894],[-101.546,118.81],[-101.424,117.331],[-104.593,115.839]],"c":true}},"nm":"P"},{"ind":41,"ty":"sh","ks":{"a":0,"k":{"i":[[0.986,0.128],[0.572,-0.131],[-0.084,-0.699],[-0.562,-0.044],[-1.462,0.445],[0.021,0.297],[0.289,0.038]],"o":[[-0.541,0.077],[-0.548,0.126],[0.086,0.708],[1.574,0.122],[0.237,-0.072],[-0.027,-0.385],[-0.927,-0.123]],"v":[[-179.333,6.974],[-181.037,7.228],[-182.033,8.302],[-180.804,9.097],[-176.327,8.225],[-175.824,7.773],[-176.493,7.345]],"c":true}},"nm":"P"},{"ind":42,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.072,0.481],[0.318,0.582],[0.469,0.007],[0.174,-0.342],[-0.386,-1.167],[-0.566,-0.044],[-0.136,0.604]],"o":[[-0.028,-0.65],[-0.188,-0.345],[-0.502,-0.008],[-0.524,1.032],[0.177,0.535],[0.645,0.05],[0.107,-0.474]],"v":[[163.499,-11.61],[163.12,-13.474],[162.289,-14.206],[161.517,-13.439],[161.094,-10.191],[162.106,-9.305],[163.276,-10.168]],"c":true}},"nm":"P"},{"ind":43,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.38,0],[-0.795,0.582],[0.682,0.316],[1.318,-0.429],[-0.083,-0.626],[-0.547,-0.025]],"o":[[0.928,0.089],[0.599,-0.439],[-1.254,-0.58],[-0.576,0.188],[0.08,0.602],[0.345,0.016]],"v":[[115.516,165.27],[118.155,164.626],[118.065,163.388],[114.176,163.146],[113.408,164.425],[114.446,165.267]],"c":true}},"nm":"P"},{"ind":44,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.488,-0.04],[-0.001,0.014],[-0.293,0.02],[-0.201,0.547],[0.336,0.355],[1.124,-0.266],[0.058,-0.663],[-0.478,-0.128]],"o":[[0.001,-0.014],[0.295,0],[0.486,-0.034],[0.196,-0.535],[-0.886,-0.937],[-0.747,0.177],[-0.064,0.732],[0.466,0.124]],"v":[[66.808,167.4],[66.811,167.359],[67.694,167.355],[68.957,166.802],[68.389,165.533],[65.242,164.823],[64.156,166.44],[65.348,167.261]],"c":true}},"nm":"P"},{"ind":45,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.851],[0.05,1.325],[0.441,0.026],[0.033,-0.4],[0.089,-1.272],[-0.345,-0.671],[-0.455,0.117],[-0.007,0.342]],"o":[[0.214,-1.083],[-0.013,-0.35],[-0.547,-0.032],[-0.105,1.271],[-0.053,0.75],[0.185,0.361],[0.408,-0.105],[0.012,-0.59]],"v":[[233.079,-217.741],[232.774,-221.44],[232.261,-222.212],[231.641,-221.395],[231.34,-217.582],[231.764,-215.437],[232.676,-214.846],[233.076,-215.71]],"c":true}},"nm":"P"},{"ind":46,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.389,-0.483],[2.179,-1.378]],"o":[[-2.502,-2.297],[2.232,1.706]],"v":[[-150.974,185.153],[-158.231,183.821]],"c":true}},"nm":"P"},{"ind":47,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.055,-0.222],[-0.257,0.387],[0.172,0.35],[1.409,-0.328],[-0.47,-0.551]],"o":[[0.7,0.105],[0.266,-0.401],[-0.627,-1.277],[-0.876,0.204],[0.879,1.032]],"v":[[129.569,57.998],[130.897,57.681],[130.788,56.581],[126.916,54.796],[126.511,56.074]],"c":true}},"nm":"P"},{"ind":48,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.345,0],[0,-0.002],[-0.591,0.011],[-0.138,0.397],[0.262,0.227],[1.145,0.041],[0.09,-0.936],[-0.701,-0.044]],"o":[[0,0.002],[0.591,0],[0.341,-0.006],[0.13,-0.373],[-0.883,-0.764],[-0.994,-0.035],[-0.109,1.128],[0.344,0.021]],"v":[[189.64,182.151],[189.64,182.156],[191.413,182.153],[192.299,181.78],[191.901,180.889],[188.825,179.593],[186.999,181.203],[188.605,182.147]],"c":true}},"nm":"P"},{"ind":49,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.127,-0.208],[-0.964,0.477],[0.016,0.311],[0.262,0.129],[1.602,-0.329],[-0.302,-0.409]],"o":[[0.914,-0.45],[0.213,-0.105],[-0.018,-0.357],[-1.561,-0.768],[-0.572,0.117],[0.585,0.793]],"v":[[93.485,175.087],[96.327,173.687],[96.818,173.215],[96.214,172.659],[91.446,172.456],[91.014,173.468]],"c":true}},"nm":"P"},{"ind":50,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.058,0.23],[0.143,1.103],[1.076,-0.031],[-0.151,-0.852]],"o":[[1.662,-0.057],[-0.142,-1.093],[-1.111,0.032],[0.184,1.037]],"v":[[228.009,60.777],[230.328,59.051],[228.387,57.474],[226.084,59.533]],"c":true}},"nm":"P"},{"ind":51,"ty":"sh","ks":{"a":0,"k":{"i":[[0.101,-0.57],[-0.66,-1.06],[-0.396,0.214],[0.22,0.386],[-0.43,0.657],[0.647,0.386],[0.905,-0.288]],"o":[[-0.343,1.475],[0.228,0.366],[0.437,-0.235],[-0.371,-0.651],[0.317,-0.484],[-0.648,-0.387],[-0.838,0.267]],"v":[[-131.411,160.552],[-130.033,164],[-128.977,164.212],[-128.733,163.203],[-128.77,161.26],[-128.84,159.863],[-130.881,158.898]],"c":true}},"nm":"P"},{"ind":52,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.012,0.631],[-0.122,1.07],[0.94,-0.086],[-0.018,-0.812],[-0.507,-1.018],[-0.666,0.16]],"o":[[0.152,-0.978],[0.084,-0.737],[-0.85,0.077],[0.025,1.135],[0.344,0.691],[0.677,-0.163]],"v":[[-119.902,53.309],[-120.792,50.649],[-121.85,49.258],[-123.098,50.819],[-122.264,54.064],[-120.621,54.666]],"c":true}},"nm":"P"},{"ind":53,"ty":"sh","ks":{"a":0,"k":{"i":[[1.301,-0.171],[0.531,-0.058],[0.127,-0.621],[-0.475,-0.04],[-1.414,-0.035],[0.409,0.765]],"o":[[-0.426,0],[-0.814,0.089],[-0.094,0.458],[1.411,0.119],[1.018,0.026],[-0.631,-1.179]],"v":[[20.583,183.454],[19.083,183.465],[18.038,184.872],[18.642,185.695],[22.88,185.991],[23.61,184.608]],"c":true}},"nm":"P"},{"ind":54,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.339,0.882],[0.183,0.28],[0.801,1.756],[0.57,-0.643],[-0.427,-0.42],[-0.529,-0.641],[-0.876,-0.558]],"o":[[-0.15,-0.272],[-0.988,-1.506],[-0.238,-0.522],[-0.572,0.645],[0.592,0.583],[0.658,0.797],[0.746,0.474]],"v":[[156.044,210.063],[155.566,209.206],[151.881,205.324],[150.074,205.297],[150.522,206.733],[152.205,208.576],[154.418,210.706]],"c":true}},"nm":"P"},{"ind":55,"ty":"sh","ks":{"a":0,"k":{"i":[[1.073,0.005],[-0.005,-0.912],[-0.857,0.018],[0.022,0.865]],"o":[[-0.933,-0.004],[0.004,0.776],[0.782,-0.017],[-0.026,-1.018]],"v":[[225.517,207.703],[223.519,209.656],[226.007,211.847],[227.771,209.8]],"c":true}},"nm":"P"},{"ind":56,"ty":"sh","ks":{"a":0,"k":{"i":[[0.166,-0.591],[-2.804,-0.335],[-0.223,0.098],[0.04,0.472],[0.36,0.036],[2.772,-0.616]],"o":[[2.861,0.719],[0.222,0.026],[0.355,-0.156],[-0.042,-0.495],[-2.79,-0.282],[-0.28,0.062]],"v":[[-17.14,174.077],[-8.604,174.699],[-7.906,174.487],[-7.121,173.725],[-8.044,173.155],[-16.399,173.33]],"c":true}},"nm":"P"},{"ind":57,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.508,-0.001],[-0.713,0.668],[0.399,0.575],[0.369,-0.173],[0.979,1.154],[0.645,0.608],[0.599,-0.459],[-0.215,-0.426],[-1.222,-1.088]],"o":[[1.1,-0.004],[0.318,-0.299],[-0.329,-0.474],[-1.329,0.623],[-0.573,-0.676],[-0.354,-0.334],[-0.454,0.347],[0.743,1.476],[0.383,0.341]],"v":[[151.852,218.185],[154.354,216.76],[155.003,215.639],[153.833,215.852],[150.387,215.163],[148.562,213.226],[147.27,212.616],[147.416,213.97],[150.475,217.735]],"c":true}},"nm":"P"},{"ind":58,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.495,0.014],[-0.646,0.402],[0.431,0.882],[0.922,-0.352],[0.756,-0.357],[0.007,-0.506],[-0.449,-0.23]],"o":[[0.76,0.048],[0.74,-0.46],[-0.426,-0.872],[-0.781,0.298],[-0.404,0.191],[-0.008,0.574],[0.452,0.232]],"v":[[120.552,174.444],[122.672,173.933],[123.447,171.963],[121.345,171.15],[119.044,172.148],[118.232,173.114],[119.116,174.186]],"c":true}},"nm":"P"},{"ind":59,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.316,0.011],[-0.281,1.627],[1.785,-0.068],[0.141,-2.007]],"o":[[0.871,-0.143],[0.169,-0.982],[-1.072,0.041],[-0.083,1.179]],"v":[[-107.688,219.195],[-105.14,217.928],[-107.819,216.332],[-110.651,217.669]],"c":true}},"nm":"P"},{"ind":60,"ty":"sh","ks":{"a":0,"k":{"i":[[0.945,0.037],[0.433,-0.056],[-0.214,-0.659],[-0.856,0.001],[-0.503,0.16],[0.183,1.257]],"o":[[-0.44,0],[-0.861,0.112],[0.306,0.943],[0.529,-0.001],[0.986,-0.313],[-0.186,-1.273]],"v":[[109.956,106.928],[108.638,106.938],[106.746,109.054],[108.78,110.154],[110.363,109.92],[112.37,107.968]],"c":true}},"nm":"P"},{"ind":61,"ty":"sh","ks":{"a":0,"k":{"i":[[0.016,1.812],[2.134,-1.041],[0.588,-0.551],[-0.235,-0.554],[-0.466,-0.06],[-0.733,-0.094]],"o":[[-0.022,-2.367],[-0.709,0.346],[-0.316,0.296],[0.192,0.452],[0.733,0.095],[1.821,0.233]],"v":[[-152.773,37.616],[-155.372,36.013],[-157.397,37.228],[-157.943,38.31],[-156.885,39.014],[-154.683,39.287]],"c":true}},"nm":"P"},{"ind":62,"ty":"sh","ks":{"a":0,"k":{"i":[[0.143,0.065],[-0.439,-0.863],[-1.593,-1.094],[-0.431,0.397],[0.206,0.412],[1.181,1.428]],"o":[[-0.963,-0.053],[0.89,1.751],[0.409,0.281],[0.455,-0.419],[-0.848,-1.699],[-0.139,-0.168]],"v":[[-122.654,160.103],[-123.654,161.72],[-119.772,165.856],[-118.419,165.988],[-118.503,164.631],[-122.08,160.378]],"c":true}},"nm":"P"},{"ind":63,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.11,0.793],[0.972,0.28],[0.393,-0.666],[0.284,-0.514],[-1.187,-0.584],[-0.599,1.082]],"o":[[-0.167,-0.8],[-1.01,-0.291],[-0.299,0.506],[-0.513,0.928],[1.169,0.575],[0.385,-0.695]],"v":[[154.211,83.892],[153.06,81.857],[151.35,83.122],[150.461,84.643],[151.03,86.919],[153.608,86.164]],"c":true}},"nm":"P"},{"ind":64,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.028,-1.519],[-1.01,-0.313],[-0.541,0.684],[-0.304,0.499],[0.704,0.714],[1.036,-0.281]],"o":[[0.158,0.518],[0.91,0.283],[0.365,-0.461],[0.336,-0.551],[-0.591,-0.599],[-1.741,0.472]],"v":[[233.477,-23.607],[233.986,-21.817],[236.103,-22.841],[237.169,-24.244],[237.412,-26.064],[235.276,-26.814]],"c":true}},"nm":"P"},{"ind":65,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.718,0.033],[-0.851,0.777],[1.223,0.616],[1.097,-0.283],[-0.181,-1.066]],"o":[[1.696,-0.032],[0.988,-0.902],[-1.118,-0.563],[-1.033,0.267],[0.191,1.125]],"v":[[-208.114,167.999],[-204.614,166.612],[-204.991,164.249],[-208.286,164.361],[-209.882,166.304]],"c":true}},"nm":"P"},{"ind":66,"ty":"sh","ks":{"a":0,"k":{"i":[[1.083,-0.008],[0.592,-0.005],[0.11,-0.685],[-0.698,-0.174],[-1.395,0.433],[-0.502,0.396],[0.94,0.408]],"o":[[-0.592,0],[-0.693,0.005],[-0.107,0.668],[1.36,0.339],[0.589,-0.183],[0.736,-0.581],[-1.036,-0.45]],"v":[[154.063,149.002],[152.286,149.003],[151.059,150.039],[151.675,151.693],[155.859,151.921],[157.467,150.881],[157.273,149.357]],"c":true}},"nm":"P"},{"ind":67,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.685,-0.003],[-2.12,0.937],[0.031,0.498],[0.4,0.034],[2.308,-0.559],[-0.098,-0.688]],"o":[[2.236,-0.302],[0.357,-0.158],[-0.031,-0.5],[-2.359,-0.203],[-0.576,0.14],[0.113,0.793]],"v":[[199.747,133.856],[206.398,132.637],[207.17,131.869],[206.308,131.228],[199.289,131.641],[198.282,132.93]],"c":true}},"nm":"P"},{"ind":68,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.39,0.931],[0.351,0.122],[0.304,-0.27],[1.302,-1.052],[0.49,-0.729],[-0.704,-0.473],[-0.468,0.483],[-1.094,1.268]],"o":[[0.059,-0.364],[-0.435,-0.152],[-1.255,1.111],[-0.712,0.575],[-0.347,0.516],[0.601,0.403],[1.167,-1.203],[0.671,-0.777]],"v":[[154.449,88.842],[154.13,88.064],[153.069,88.418],[149.29,91.731],[147.575,93.748],[147.537,95.453],[149.264,95.012],[152.699,91.339]],"c":true}},"nm":"P"},{"ind":69,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.7,-0.113],[-1.44,1.633],[0.397,0.493],[0.498,-0.363],[0.717,-0.064],[0.845,-0.714],[-0.273,-0.757]],"o":[[2.071,-0.094],[0.362,-0.411],[-0.379,-0.47],[-0.617,0.449],[-1.126,0.101],[-0.519,0.438],[0.269,0.746]],"v":[[206.696,125.309],[212.022,122.754],[212.112,121.448],[210.858,121.236],[208.78,121.914],[205.841,123.114],[204.893,124.787]],"c":true}},"nm":"P"},{"ind":70,"ty":"sh","ks":{"a":0,"k":{"i":[[0.367,-1.07],[-0.671,-0.39],[-0.746,0.75],[0.616,1.222],[0.927,-0.453],[0.685,0.45],[0.382,0.054],[0.061,-0.877],[-0.687,-0.044],[-0.225,0.075]],"o":[[0.018,0.696],[0.907,0.528],[0.831,-0.836],[-0.535,-1.062],[-0.76,0.371],[-0.319,-0.209],[-0.651,-0.091],[-0.057,0.817],[0.245,0.016],[0.951,-0.315]],"v":[[141.762,206.499],[142.27,208.312],[144.845,207.991],[145.687,204.955],[143.275,204.329],[141.206,204.197],[140.099,203.811],[138.617,204.574],[139.944,205.632],[140.679,205.595]],"c":true}},"nm":"P"},{"ind":71,"ty":"sh","ks":{"a":0,"k":{"i":[[1.353,-0.238],[0.491,0.011],[0.132,-0.703],[-0.456,0.01],[-1.97,0.071],[-0.091,0.571],[0.522,0.279]],"o":[[-0.721,0],[-0.619,-0.013],[-0.152,0.808],[1.986,-0.044],[0.481,-0.017],[0.09,-0.567],[-1.376,-0.734]],"v":[[-161.757,196.557],[-163.461,196.555],[-164.887,197.294],[-163.718,198.543],[-157.908,199.276],[-156.705,198.72],[-157.618,197.534]],"c":true}},"nm":"P"},{"ind":72,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.228,0.528],[1.87,-0.161],[-0.027,-0.725],[0.819,-0.511],[-0.353,-0.624],[-0.533,0.217],[-1.855,0.474]],"o":[[-1.386,-1.023],[-0.557,0.048],[0.044,1.156],[-0.451,0.282],[0.298,0.527],[1.778,-0.724],[0.402,-0.103]],"v":[[73.591,200.045],[68.96,198.182],[67.772,198.955],[66.263,201.068],[65.395,202.382],[67.027,202.489],[72.494,200.766]],"c":true}},"nm":"P"},{"ind":73,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.588,-0.47],[1.261,0.544],[1.89,-0.159],[0.08,-0.624],[-0.443,-0.25],[-0.377,-0.072]],"o":[[-0.447,-1.549],[-1.767,-0.763],[-0.481,0.041],[-0.068,0.528],[0.341,0.193],[2.451,0.469]],"v":[[189.81,217.909],[187.125,214.979],[181.604,214.269],[180.428,214.918],[181.233,216.065],[182.314,216.536]],"c":true}},"nm":"P"},{"ind":74,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.071,1.329],[0.722,1.959],[0.545,-0.248],[-0.223,-0.434],[0.013,-0.596],[-0.154,-2.602],[-0.434,0.006],[-0.118,0.314]],"o":[[0.073,-2.173],[-0.157,-0.425],[-0.593,0.27],[0.28,0.545],[-0.059,2.635],[0.02,0.333],[0.442,-0.006],[0.487,-1.296]],"v":[[136.129,93.941],[134.44,87.927],[133.291,87.249],[133.156,88.532],[133.537,90.239],[134.772,97.917],[135.354,98.649],[135.914,97.896]],"c":true}},"nm":"P"},{"ind":75,"ty":"sh","ks":{"a":0,"k":{"i":[[0.026,-0.929],[-0.284,-0.639],[-1.345,0.496],[0.502,1.357],[0.33,0.484],[1.157,-0.346]],"o":[[-0.059,0.706],[0.563,1.267],[1.051,-0.387],[-0.204,-0.55],[-0.57,-0.836],[-1.161,0.347]],"v":[[84.002,64.535],[84.343,66.56],[87.402,67.78],[88.29,65.064],[87.49,63.487],[85.074,62.203]],"c":true}},"nm":"P"},{"ind":76,"ty":"sh","ks":{"a":0,"k":{"i":[[0.008,1.371],[0.484,1.072],[1.258,-0.097],[0.286,-0.833],[0.029,-0.094],[-2.859,-0.808]],"o":[[-0.11,-1.073],[-0.384,-0.85],[-1.231,0.095],[-0.032,0.093],[-0.871,2.77],[1.205,0.34]],"v":[[146.923,216.2],[146.005,212.917],[144.189,210.904],[142.874,213.094],[142.784,213.375],[145.166,217.661]],"c":true}},"nm":"P"},{"ind":77,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.773,-0.06],[-0.788,0.61],[0.846,0.693],[1.206,-0.962],[-0.33,-1.097]],"o":[[1.273,0.002],[0.659,-0.509],[-1.235,-1.012],[-0.742,0.592],[0.33,1.097]],"v":[[236.177,111.053],[240.316,109.844],[240.522,108.048],[235.359,107.839],[233.881,110.176]],"c":true}},"nm":"P"},{"ind":78,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.048,-0.03],[1.078,0.303],[1.988,0.481],[1.039,-0.344],[-0.006,-0.521],[-0.361,-0.142],[-1.311,-0.143]],"o":[[-1.092,-1.018],[-2.017,-0.567],[-1.117,-0.27],[-0.355,0.117],[0.006,0.492],[1.255,0.494],[2.671,0.291]],"v":[[178.813,141.573],[175.794,139.742],[169.7,139.194],[166.525,139.371],[165.686,140.046],[166.509,140.764],[170.418,141.442]],"c":true}},"nm":"P"},{"ind":79,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.175,0.38],[1.296,-0.013],[2.662,-0.006],[0.343,-0.033],[0.152,-0.416],[-0.314,-0.318],[-0.803,0.085],[-3.467,0.392]],"o":[[-1.187,-0.721],[-2.662,0.026],[-0.345,0.001],[-0.398,0.038],[-0.175,0.48],[0.605,0.613],[3.47,-0.367],[0.231,-0.026]],"v":[[102.717,167.3],[98.992,166.443],[91.005,166.459],[89.972,166.509],[88.984,167.031],[89.452,168.196],[91.643,168.864],[102.046,167.709]],"c":true}},"nm":"P"},{"ind":80,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.68,-0.07],[-1.023,0.371],[0.224,1.145],[1.041,0.075],[1.468,-0.076],[0.032,-0.918],[-0.86,-0.23]],"o":[[1.101,0.019],[0.869,-0.315],[-0.217,-1.11],[-1.507,-0.109],[-0.836,0.043],[-0.031,0.87],[0.652,0.174]],"v":[[-215.849,81.762],[-212.665,81.22],[-211.217,79.338],[-213.27,77.845],[-217.626,78.457],[-219.112,79.739],[-217.882,81.531]],"c":true}},"nm":"P"},{"ind":81,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.574,0.197],[-1.438,0.536],[0.102,0.595],[0.412,0.069],[3.871,0.367],[0.34,-0.049],[0.049,-0.486],[-0.355,-0.162],[-0.331,0.016]],"o":[[1.467,-0.107],[0.472,-0.176],[-0.101,-0.59],[-3.863,-0.649],[-0.341,-0.032],[-0.386,0.056],[-0.044,0.441],[0.304,0.138],[2.571,-0.127]],"v":[[6.801,233.739],[11.206,233.451],[12.113,232.452],[11.003,232.002],[-0.63,231.701],[-1.663,231.737],[-2.569,232.336],[-1.88,233.209],[-0.881,233.42]],"c":true}},"nm":"P"},{"ind":82,"ty":"sh","ks":{"a":0,"k":{"i":[[4.628,-0.103],[-1.623,0.086],[-0.783,-0.609],[-1.967,0.932],[0.149,0.582],[0.42,0.083]],"o":[[1.566,1.168],[0.982,-0.052],[2.176,1.692],[0.356,-0.169],[-0.138,-0.542],[-4.433,-0.877]],"v":[[5.194,214.578],[9.978,215.768],[12.871,215.917],[18.942,215.616],[19.747,214.711],[18.621,214.21]],"c":true}},"nm":"P"},{"ind":83,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0.115],[-1.873,0.706],[-1.173,0.328],[-0.377,0.207],[0.227,0.73],[0.949,0.204],[0.211,-0.574],[0.903,0.513],[0.842,0.499],[-0.011,-0.751]],"o":[[0.054,3.185],[1.181,-0.445],[0.424,-0.119],[0.677,-0.372],[-0.244,-0.787],[-0.882,-0.19],[-0.397,1.083],[-0.851,-0.484],[-0.746,-0.442],[0.004,0.295]],"v":[[-132.027,117.679],[-129.416,120.999],[-125.843,120.224],[-124.584,119.837],[-123.852,118.082],[-125.302,116.192],[-126.51,117.39],[-128.472,118.01],[-131.069,116.635],[-132.028,117.204]],"c":true}},"nm":"P"},{"ind":84,"ty":"sh","ks":{"a":0,"k":{"i":[[1.996,-2.396],[-2.274,1.634]],"o":[[6.257,1.084],[-5.679,-1.833]],"v":[[-73.073,175.771],[-57.703,174.752]],"c":true}},"nm":"P"},{"ind":85,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.643,-0.645],[-0.803,0.223],[-0.065,0.712],[0.525,0.278],[2.185,0.295],[1.243,-0.677],[-0.813,-0.311]],"o":[[0.766,-0.192],[0.438,-0.121],[0.071,-0.783],[-1.993,-1.053],[-1.445,-0.195],[-0.769,0.419],[2.496,0.955]],"v":[[234.126,202.479],[236.506,201.876],[237.627,201.161],[236.553,199.961],[230.196,198.219],[226.174,199.333],[226.346,200.514]],"c":true}},"nm":"P"},{"ind":86,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.076,-0.013],[-1.641,1.232],[1.115,0.458],[2.866,-1.756],[-0.197,-0.59],[-0.674,-0.107]],"o":[[1.933,0.072],[0.983,-0.738],[-3.129,-1.284],[-0.359,0.22],[0.18,0.54],[1.079,0.171]],"v":[[157.733,148.377],[163.234,147.207],[163.034,145.41],[154.03,146.207],[153.412,147.228],[154.507,148.206]],"c":true}},"nm":"P"},{"ind":87,"ty":"sh","ks":{"a":0,"k":{"i":[[1.056,-0.177],[1.167,-0.337],[-0.057,-0.432],[-0.44,-0.061],[-0.559,-0.531],[-1.02,0.375],[-1.45,-0.586],[-0.302,0.36],[0.288,0.378],[0.6,0.106],[0.877,0.881]],"o":[[-1.207,-0.361],[-0.376,0.109],[0.047,0.356],[0.81,0.112],[0.959,0.91],[1.65,-0.607],[0.376,0.152],[0.306,-0.364],[-0.327,-0.43],[-1.21,-0.214],[-0.758,-0.761]],"v":[[-157.064,175.312],[-160.538,175.955],[-161.121,176.655],[-160.52,177.371],[-158.5,178.49],[-155.333,179.039],[-150.826,179.508],[-149.753,179.54],[-149.796,178.31],[-151.112,177.468],[-154.476,176.098]],"c":true}},"nm":"P"},{"ind":88,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.077,-1.469],[0.449,1.496],[0.955,1.661],[0.685,-0.115],[0.188,-0.512],[-0.312,-1.475],[-1.039,0.411],[-0.286,-0.455]],"o":[[0.625,-1.955],[-0.555,-1.851],[-0.275,-0.478],[-0.558,0.094],[-0.519,1.413],[0.183,0.867],[0.551,-0.218],[0.84,1.337]],"v":[[223.351,-20.639],[222.822,-25.522],[220.51,-30.766],[219.202,-31.78],[218.179,-30.606],[217.836,-26.258],[219.488,-25.175],[220.436,-24.683]],"c":true}},"nm":"P"},{"ind":89,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.021,-0.451],[-0.308,0.271],[-0.891,0.842],[0.265,0.744],[0.722,0.062],[2.058,-1.078],[-0.755,-0.424]],"o":[[0.732,0.061],[0.921,-0.81],[0.502,-0.475],[-0.296,-0.83],[-2.403,-0.207],[-0.731,0.383],[1.232,0.691]],"v":[[182.713,140.611],[184.112,140.262],[186.862,137.819],[187.607,136.015],[185.743,135.104],[179.154,136.871],[179.115,138.981]],"c":true}},"nm":"P"},{"ind":90,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.413,2.513],[0.109,0.425],[0.539,0.156],[0.305,-0.345],[0.751,-0.036],[0.058,-0.938],[-1.128,-1.846],[-0.46,0.876]],"o":[[-0.058,-0.413],[-0.12,-0.469],[-0.644,-0.186],[-0.455,0.515],[-1.224,0.059],[-0.136,2.202],[0.54,0.883],[1.194,-2.274]],"v":[[94.148,-19.542],[93.957,-20.826],[93.212,-22.024],[92.145,-21.201],[90.534,-19.997],[89.059,-18.184],[90.764,-12.168],[92.218,-12.261]],"c":true}},"nm":"P"},{"ind":91,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.231,0.251],[-1.297,0.974],[-0.9,-0.715],[-0.537,0.661],[0.554,0.167],[1.186,-0.919],[2.313,0.442],[-0.93,-0.727]],"o":[[1.654,0.009],[0.783,-0.588],[0.553,0.44],[0.37,-0.456],[-1.261,-0.381],[-1.59,1.231],[-0.734,-0.14],[0.919,0.718]],"v":[[-161.115,84.958],[-157.859,83.925],[-155.492,83.763],[-153.644,83.656],[-154.597,80.158],[-158.419,80.132],[-163.735,82.261],[-164.093,83.555]],"c":true}},"nm":"P"},{"ind":92,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.096,-1.221],[-0.033,-0.538],[-1.339,0.747],[0.007,1.921],[-0.071,0.632],[1.319,0.321],[0.474,-1.319]],"o":[[0,0.707],[0.094,1.532],[1.524,-0.851],[-0.002,-0.632],[0.168,-1.49],[-1.143,-0.278],[-0.472,1.313]],"v":[[236.951,-107.851],[236.957,-106.064],[239.08,-104.888],[241.732,-108.787],[241.928,-110.684],[240.165,-113.462],[237.472,-111.746]],"c":true}},"nm":"P"},{"ind":93,"ty":"sh","ks":{"a":0,"k":{"i":[[0.048,-1.264],[-0.002,-0.395],[-3.899,0.877],[1.145,1.166],[0.06,1.935],[0.307,0.476],[0.672,-0.038],[0.18,-0.557]],"o":[[0,0.604],[0.022,4.005],[1.615,-0.363],[-1.409,-1.435],[-0.017,-0.547],[-0.321,-0.498],[-0.732,0.042],[-0.466,1.443]],"v":[[-131.447,45.53],[-131.446,46.923],[-127.291,50.238],[-126.453,47.746],[-128.47,42.66],[-128.81,41.091],[-130.125,40.033],[-131.133,41.331]],"c":true}},"nm":"P"},{"ind":94,"ty":"sh","ks":{"a":0,"k":{"i":[[1.697,0.278],[0.122,-1],[0.883,-0.075],[1.406,-0.952],[-0.087,-0.367],[-0.343,0.02],[-0.734,0.056],[-2.246,-0.231],[0.796,1.548]],"o":[[-0.822,-0.004],[-0.12,0.984],[-1.709,0.145],[-0.233,0.158],[0.095,0.398],[0.734,-0.042],[2.289,-0.176],[1.8,0.185],[-0.769,-1.497]],"v":[[129.808,14.989],[128.165,16.092],[126.499,17.401],[121.87,19.2],[121.352,19.826],[122.179,20.295],[124.377,20.078],[131.111,20.811],[133.609,17.68]],"c":true}},"nm":"P"},{"ind":95,"ty":"sh","ks":{"a":0,"k":{"i":[[0.868,-0.676],[-0.177,-0.004],[-5.137,2.159],[0.094,0.774],[0.551,0.142],[0.246,0.002],[3.646,0.045],[-0.047,-0.568],[0.892,-0.287]],"o":[[0.42,0.11],[5.435,0.121],[0.445,-0.187],[-0.082,-0.673],[-0.234,-0.06],[-3.646,-0.026],[-0.548,-0.007],[0.099,1.191],[-0.736,0.237]],"v":[[167.738,131.917],[168.509,132.113],[184.5,130.043],[185.732,129.317],[184.272,128.561],[183.537,128.511],[172.598,128.428],[171.735,129.134],[170.139,130.886]],"c":true}},"nm":"P"},{"ind":96,"ty":"sh","ks":{"a":0,"k":{"i":[[0.013,2.146],[0.094,0.878],[1.044,0.103],[0.129,-0.963],[0.936,-0.176],[1.893,-0.12],[0.032,-0.611],[-0.437,-0.045],[-2.936,-0.215]],"o":[[0.09,-0.769],[-0.108,-1.007],[-1.09,-0.108],[-0.14,1.046],[-1.828,0.344],[-0.514,0.033],[-0.039,0.744],[2.929,0.3],[1.757,0.128]],"v":[[-168.788,10.156],[-169.076,7.651],[-170.709,5.876],[-172.546,7.392],[-174.182,8.917],[-179.633,10.147],[-180.766,11.157],[-179.666,11.802],[-170.873,12.631]],"c":true}},"nm":"P"},{"ind":97,"ty":"sh","ks":{"a":0,"k":{"i":[[4.243,-1.002],[2.682,-1.143],[-0.141,-0.698],[-0.574,0.061],[-0.559,0.178],[-3.853,-0.327],[-0.077,-0.619],[0.476,-0.27],[0.335,-0.078],[-0.1,-0.483],[-0.574,0.08],[-0.811,0.271],[-1.454,-0.354],[-0.097,0.397],[0.27,0.175]],"o":[[-3.172,-0.386],[-0.484,0.206],[0.159,0.787],[0.585,-0.062],[3.838,-1.224],[0.573,0.049],[0.092,0.744],[-0.291,0.165],[-0.454,0.106],[0.101,0.489],[0.827,-0.115],[1.294,-0.432],[0.355,0.086],[0.11,-0.453],[-3.505,-2.269]],"v":[[52.947,195.916],[44.298,197.091],[43.269,198.137],[44.73,198.727],[46.468,198.392],[58.019,198.242],[59.461,199.054],[58.166,200.002],[57.18,200.293],[56.574,201.132],[57.499,201.844],[59.969,201.436],[63.973,200.688],[64.784,200.22],[64.193,199.482]],"c":true}},"nm":"P"},{"ind":98,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.471,1.348],[0.846,0.05],[0,-0.925],[1.238,-1.031],[-0.442,-0.558],[-0.035,-1.731],[-0.152,-0.815],[-1.156,0.092],[0.029,0.879],[0.087,2.018],[0.486,0.312],[-0.545,0.412]],"o":[[-0.045,-0.837],[-0.999,-0.059],[0,1.599],[-0.557,0.464],[1.165,1.472],[0.017,0.837],[0.216,1.157],[1.176,-0.093],[-0.066,-2.018],[-0.026,-0.601],[-0.498,-0.319],[1.481,-1.121]],"v":[[95.873,52.384],[94.669,50.912],[92.958,52.367],[91.249,56.266],[91.075,58.015],[92.281,62.936],[92.408,65.441],[94.598,66.93],[95.868,65.138],[95.593,59.086],[94.793,57.75],[94.573,56.57]],"c":true}},"nm":"P"},{"ind":99,"ty":"sh","ks":{"a":0,"k":{"i":[[0.016,-0.928],[-3.904,-0.298],[-0.471,1.105],[0.692,0.652],[1.654,1.782],[0.841,-0.378]],"o":[[-0.05,4.311],[0.985,0.075],[0.454,-1.066],[-1.757,-1.656],[-0.616,-0.664],[-0.819,0.368]],"v":[[187.17,-220.334],[193.927,-213.215],[196.442,-214.361],[195.515,-216.807],[190.095,-221.612],[187.801,-222.907]],"c":true}},"nm":"P"},{"ind":100,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.54,-0.102],[-0.325,0.77],[0.541,0.397],[3.803,-0.456],[0.576,-2.847],[-1.185,-0.186],[-0.72,0.331],[-0.328,-0.352],[-1.637,-0.276]],"o":[[0.805,-0.017],[0.343,-0.811],[-2.929,-2.147],[-3.003,0.36],[-0.252,1.247],[0.825,0.129],[0.578,-0.266],[1.493,1.6],[0.726,0.122]],"v":[[-64.85,164.576],[-62.963,164.1],[-63.823,162.403],[-73.684,159.241],[-77.271,162.379],[-75.807,164.437],[-73.544,163.902],[-71.789,163.36],[-66.838,164.204]],"c":true}},"nm":"P"},{"ind":101,"ty":"sh","ks":{"a":0,"k":{"i":[[0.028,-1.584],[-2.478,-1.208],[-0.02,1.452],[-0.032,2.563],[1.01,0.247],[-0.103,1.308],[0.014,0.736],[0.361,0.038],[0.112,-0.277],[-0.212,-1.032],[0.377,-0.992]],"o":[[-0.372,2.252],[1.325,0.646],[0.036,-2.563],[0.013,-1.051],[-1.465,-0.358],[0.058,-0.734],[-0.006,-0.297],[-0.367,-0.038],[-0.404,0.997],[0.221,1.075],[-0.441,1.162]],"v":[[198.416,-193.966],[201.458,-188.577],[203.145,-189.463],[203.164,-197.153],[201.728,-199.083],[200.099,-201.805],[200.145,-204.015],[199.648,-204.65],[199.032,-204.123],[198.864,-201.069],[198.881,-197.854]],"c":true}},"nm":"P"},{"ind":102,"ty":"sh","ks":{"a":0,"k":{"i":[[0.534,1.105],[0.095,-0.492],[-0.371,-7.579],[-0.753,0.028],[-0.003,0.766],[0.004,0.296],[-0.045,2.423],[0.001,4.193]],"o":[[-0.652,0.371],[-1.451,7.519],[0.039,0.802],[0.666,-0.024],[0.001,-0.296],[-0.035,-2.413],[0.078,-4.192],[0,-1.175]],"v":[[220.29,-150.308],[219.617,-148.826],[218.9,-126.147],[220.208,-124.6],[221.249,-126.18],[221.248,-127.068],[220.925,-134.298],[220.952,-146.877]],"c":true}},"nm":"P"},{"ind":103,"ty":"sh","ks":{"a":0,"k":{"i":[[2.108,-0.054],[1.269,-0.59],[1.703,-1.215],[-0.085,-0.731],[-0.56,-0.213],[-2.417,1.2],[-0.824,1.853]],"o":[[-0.867,0.004],[-1.866,0.868],[-0.522,0.373],[0.08,0.686],[2.176,0.827],[2.053,-1.019],[0.659,-1.482]],"v":[[166.19,213.326],[162.755,214.227],[157.185,216.89],[156.106,218.334],[157.424,219.348],[163.986,219.447],[168.02,215.133]],"c":true}},"nm":"P"},{"ind":104,"ty":"sh","ks":{"a":0,"k":{"i":[[1.308,-0.318],[0.241,-0.755],[-0.499,-0.391],[-0.047,-0.749],[-1.019,0.114],[-1.294,1.114],[-0.355,-0.677],[0.474,-0.287],[0.317,-0.135],[-0.248,-0.533],[-0.286,0.298],[-1.685,0.355],[0.303,1.131],[1.004,-0.25],[0.828,1.039],[1.025,-1.126],[0.572,0.241]],"o":[[-0.743,-0.013],[-0.252,0.789],[0.442,0.347],[0.093,1.47],[1.553,-0.175],[0.442,-0.38],[0.398,0.759],[-0.29,0.176],[-0.347,0.148],[0.229,0.493],[1.31,-1.366],[0.934,-0.197],[-0.257,-0.96],[-1.268,0.315],[-0.938,-1.178],[-0.417,0.457],[-1.45,-0.61]],"v":[[-174.693,181.592],[-176.31,182.007],[-175.437,183.544],[-174.135,184.6],[-172.016,185.938],[-167.59,184.568],[-166.038,184.674],[-166.909,185.941],[-167.872,186.314],[-168.501,187.094],[-167.354,187.329],[-162.632,185.52],[-160.775,183.608],[-163.295,182.588],[-166.249,181.59],[-169.034,181.591],[-170.451,182.062]],"c":true}},"nm":"P"},{"ind":105,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.003,-0.099],[-0.065,-0.173],[-2.826,-0.196],[0.012,-0.114],[-1.337,-0.255],[-1.692,0.334],[-0.032,0.515],[0.325,0.11],[0.978,1.823],[1.766,0.018],[0.284,0.183],[0.725,-0.317],[0.115,-0.695]],"o":[[0,0.197],[0.529,1.402],[0.082,0.006],[-0.215,2.021],[1.635,0.311],[0.364,-0.072],[0.023,-0.37],[-2.206,-0.747],[-0.716,-1.334],[-0.303,-0.003],[-0.555,-0.358],[-0.795,0.348],[-0.016,0.096]],"v":[[205.821,-51.494],[205.829,-50.906],[207.92,-46.949],[208.131,-46.597],[210.777,-44.226],[215.732,-43.763],[216.597,-44.415],[216.085,-45.254],[212.102,-49.774],[208.77,-52.319],[207.869,-52.77],[206.241,-53.812],[205.82,-51.789]],"c":true}},"nm":"P"},{"ind":106,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.025,-1.547],[-0.383,-1.262],[-0.546,-0.031],[-0.069,0.401],[0.211,2.677],[0.198,3.001],[0.589,1.521],[-0.65,1.169],[0.435,0.187],[0.811,-0.218],[0.027,-0.457],[0.052,-1.558],[-0.409,-1.226],[1.024,-1.492],[-0.628,-0.571],[0.516,-0.705],[-0.105,-0.38]],"o":[[0.046,1.008],[0.152,0.503],[0.602,0.034],[0.452,-2.627],[-0.236,-2.989],[-0.111,-1.674],[-0.486,-1.257],[0.201,-0.361],[-0.765,-0.328],[-0.61,0.164],[-0.094,1.592],[-0.043,1.291],[0.541,1.621],[-0.538,0.784],[0.601,0.546],[-0.247,0.338],[0.35,1.261]],"v":[[135.621,84.729],[135.844,88.288],[136.734,89.338],[137.386,88.347],[137.855,80.41],[136.832,71.478],[136.607,66.508],[136.565,63.089],[136.3,62.059],[133.889,61.554],[133.687,62.852],[134.857,67.209],[135.511,70.915],[135.052,75.749],[135.235,77.683],[135.501,79.49],[135.358,80.635]],"c":true}},"nm":"P"},{"ind":107,"ty":"sh","ks":{"a":0,"k":{"i":[[3.283,0.526],[-0.202,-1.356],[-1.172,-0.969],[-0.94,-0.011],[-2.387,0.92],[-0.049,0.588],[0.428,0.311]],"o":[[-1.382,-0.044],[0.216,1.452],[0.587,0.485],[2.64,0.03],[0.506,-0.195],[0.056,-0.665],[-2.857,-2.076]],"v":[[150.308,15.47],[148.683,17.25],[150.579,20.995],[152.45,22.309],[159.835,20.376],[160.895,19.233],[159.863,18.114]],"c":true}},"nm":"P"},{"ind":108,"ty":"sh","ks":{"a":0,"k":{"i":[[1.756,-0.37],[-0.633,1.493],[0.833,0.524],[0.545,-0.402],[0.3,-0.326],[1.123,-0.345],[0.05,-0.74],[-0.585,-0.346],[-0.284,-0.023],[-2.566,0.534],[-1.94,-1.327],[-0.296,0.392],[0.344,0.295],[0.158,1.471],[0.267,0.058]],"o":[[-0.919,0.057],[0.25,-0.59],[-0.664,-0.418],[-0.353,0.26],[-0.782,0.849],[-0.598,0.184],[-0.053,0.777],[0.251,0.148],[2.604,0.215],[1.983,-0.413],[0.409,0.28],[0.389,-0.515],[-0.848,-0.728],[-0.038,-0.357],[-1.875,-0.411]],"v":[[177.278,210.507],[176.047,209.247],[176.151,207.427],[174.306,208.019],[173.355,208.947],[170.556,210.801],[169.097,211.85],[170.415,213.287],[171.243,213.595],[179.043,213.496],[184.856,213.611],[186.22,213.375],[185.727,212.161],[183.347,209.802],[182.572,209.621]],"c":true}},"nm":"P"},{"ind":109,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.078,1.167],[-0.566,-0.736],[-0.796,0.777],[0.614,0.577],[0.406,0.611],[2.256,-0.025],[0.85,-1.305],[0.111,-0.273],[-2.387,-0.659],[-0.339,0.851]],"o":[[0.601,0.884],[0.54,0.702],[0.776,-0.757],[-0.558,-0.525],[-1.353,-2.036],[-1.742,0.019],[-0.157,0.241],[-1.255,3.082],[0.785,0.217],[0.502,-1.26]],"v":[[217.695,202.901],[219.352,205.315],[222.372,205.163],[222.081,203.156],[220.899,201.297],[215.197,198.466],[211.893,201.532],[211.57,202.354],[214.5,207.598],[216.077,206.787]],"c":true}},"nm":"P"},{"ind":110,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.288,0.316],[-1.33,-0.257],[-1.583,0.269],[0.149,1.206],[0.858,0.013],[2.077,0.161],[1.567,-0.42],[1.656,0.13],[0.146,0.002],[0.975,0.246],[1.29,-0.808],[-0.399,-0.741],[-0.86,0.437],[-1.552,0.232]],"o":[[1.38,0],[1.663,0.321],[0.742,-0.126],[-0.14,-1.129],[-2.117,-0.032],[-1.826,-0.142],[-1.827,0.489],[-0.144,-0.011],[-1.033,-0.014],[-1.691,-0.427],[-0.939,0.588],[0.404,0.75],[1.334,-0.677],[3.326,-0.498]],"v":[[37.046,157.015],[41.176,157.067],[45.996,156.851],[47.698,155.422],[45.747,154.336],[39.417,154.482],[34.032,154.584],[29.031,154.526],[28.591,154.575],[25.503,154.478],[21.207,155.573],[20.845,157.965],[22.876,158.25],[27.168,156.906]],"c":true}},"nm":"P"},{"ind":111,"ty":"sh","ks":{"a":0,"k":{"i":[[0.334,2.756],[0.681,-0.896],[2.075,-2.878],[-0.408,-1.057],[-0.957,0.056],[-0.165,0.856],[-1.525,-0.74],[-0.39,1.612],[-0.053,0.978]],"o":[[-1.131,0.504],[-2.146,2.825],[-0.634,0.88],[0.392,1.017],[0.886,-0.052],[0.315,-1.63],[1.453,0.705],[0.231,-0.953],[0.143,-2.638]],"v":[[155.344,90.995],[152.603,93.056],[146.282,101.619],[145.89,104.579],[148.066,105.703],[149.515,104.326],[151.71,103.294],[154.579,101.933],[155.016,99.016]],"c":true}},"nm":"P"},{"ind":112,"ty":"sh","ks":{"a":0,"k":{"i":[[3.788,-1.713],[-2.727,1.666],[-0.781,-0.104],[-7.301,0.21],[-2.67,0.462],[-0.091,0.369],[0.244,0.156],[0.975,-0.087],[1.915,-0.144],[7.152,1.651]],"o":[[3.226,0.918],[0.703,-0.429],[7.212,0.963],[2.708,-0.078],[0.276,-0.048],[0.083,-0.335],[-0.796,-0.508],[-1.91,0.171],[-7.301,0.547],[-3.922,-0.906]],"v":[[-192.581,125.339],[-183.878,125.192],[-181.558,125.037],[-159.829,126.732],[-151.763,125.855],[-151.017,125.526],[-151.47,124.838],[-154.079,123.94],[-159.81,124.456],[-181.555,123.363]],"c":true}},"nm":"P"},{"ind":113,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.099,0],[0,0.003],[-0.246,0.005],[-0.16,0.767],[0.686,0.349],[0.493,0.12],[2.135,-0.002],[0.252,0.661],[-0.46,0.389],[-0.202,0.142],[0.843,0.303],[0.992,-0.582],[0.368,0.846],[1.497,-0.053],[0.191,-0.534],[-0.374,-0.292],[-1.701,-0.892],[0.208,-0.77],[-1.377,-0.688],[-0.949,-0.921],[-0.509,1.314],[-0.58,0.362],[-0.896,0.266]],"o":[[0,-0.003],[0.247,0],[0.609,-0.013],[0.148,-0.708],[-0.438,-0.223],[-2.064,-0.503],[-0.63,0],[-0.302,-0.792],[0.187,-0.158],[0.736,-0.517],[-1.204,-0.433],[-0.771,0.453],[-0.77,-1.77],[-0.513,0.018],[-0.213,0.598],[1.519,1.186],[0.566,0.297],[-0.464,1.719],[1.134,0.567],[1.046,1.016],[0.314,-0.809],[0.546,-0.342],[0.091,-0.027]],"v":[[-40.888,211.797],[-40.888,211.789],[-40.149,211.788],[-38.765,210.985],[-39.515,209.4],[-40.856,208.814],[-47.132,207.951],[-48.829,207.322],[-47.778,205.937],[-47.167,205.521],[-47.351,204.335],[-50.573,204.937],[-52.441,204.55],[-56.193,202.944],[-57.408,203.618],[-56.735,204.802],[-51.853,207.847],[-50.984,209.147],[-49.083,212.309],[-45.653,213.931],[-43.454,213.469],[-43.444,211.286],[-41.183,211.801]],"c":true}},"nm":"P"},{"ind":114,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.381,-0.035],[2.661,0.046],[5.373,0.111],[0.393,0.029],[3.649,-0.007],[0.097,-0.016],[0.055,-0.501],[-0.433,-0.086],[-0.957,-0.224],[-2.43,0.353],[-3.974,-0.206],[-6.707,-0.142],[-0.196,0.022],[0.079,0.58],[0.74,-0.101],[2.462,-0.133],[-0.1,-0.131]],"o":[[-2.676,0.04],[-5.374,-0.093],[-0.392,-0.008],[-3.646,-0.269],[-0.098,0],[-0.502,0.084],[-0.07,0.636],[0.966,0.191],[2.518,0.589],[3.995,-0.581],[6.719,0.348],[0.197,0.004],[0.745,-0.085],[-0.078,-0.573],[-2.457,0.336],[-0.15,0.008],[0.364,0.033]],"v":[[104.167,162.669],[96.194,163.201],[80.074,162.889],[78.9,162.757],[67.954,162.648],[67.66,162.684],[66.811,163.569],[67.669,164.353],[70.57,164.902],[78.193,165.418],[90.108,165.007],[110.201,164.393],[110.791,164.358],[111.537,163.163],[110.513,162.185],[103.122,162.362],[103.04,162.567]],"c":true}},"nm":"P"},{"ind":115,"ty":"sh","ks":{"a":0,"k":{"i":[[0.09,2.571],[0.481,1.314],[0.466,0.006],[0.166,-0.294],[0.922,-0.938],[0.552,0.27],[-0.2,0.516],[-0.206,1.262],[1.063,-0.308],[0.839,-0.285],[-0.587,-1.211],[-1.34,-3.113],[-1.272,-0.083],[-0.517,0.844]],"o":[[0.105,-1.247],[-0.135,-0.37],[-0.394,-0.005],[-0.628,1.109],[-0.341,0.347],[-0.633,-0.31],[0.467,-1.204],[0.172,-1.052],[-0.85,0.247],[-1.322,0.449],[1.496,3.083],[0.458,1.063],[1.177,0.077],[1.271,-2.076]],"v":[[-114.269,140.403],[-114.835,136.485],[-115.566,135.66],[-116.23,136.379],[-118.132,139.696],[-119.393,140.228],[-119.703,138.803],[-118.802,135.079],[-120.142,133.849],[-122.651,134.728],[-124.123,137.402],[-120.811,147.008],[-118.224,148.958],[-115.953,147.332]],"c":true}},"nm":"P"},{"ind":116,"ty":"sh","ks":{"a":0,"k":{"i":[[0.05,-2.585],[0.002,-1.184],[-3.353,1.115],[-0.803,0.735],[0.082,0.755],[0.415,-0.005],[-0.428,0.664],[0.831,1.198],[0.974,1.55],[1.25,-0.309],[0.198,-0.676],[0.048,-0.082]],"o":[[0,1.184],[-0.005,3.473],[0.973,-0.324],[0.624,-0.572],[-0.042,-0.388],[-1.956,0.025],[0.926,-1.437],[-1.108,-1.598],[-0.695,-1.106],[-1.192,0.295],[-0.028,0.095],[-1.406,2.422]],"v":[[-115.421,51.747],[-115.421,55.298],[-111.76,57.889],[-108.941,56.651],[-108.374,54.605],[-109.029,53.944],[-109.45,52.48],[-108.206,47.859],[-110.627,42.888],[-113.777,41.799],[-114.421,43.798],[-114.5,44.082]],"c":true}},"nm":"P"},{"ind":117,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.555,-0.889],[-0.171,0.539],[-0.685,2.624],[-0.129,3.57],[-0.073,0.061],[-3.603,1.025],[-0.907,0.489],[0.141,0.648],[0.498,-0.054],[0.168,1.044],[1.11,-0.12],[0.345,-0.364],[1.565,0.27],[0.598,-0.528],[1.44,-3.903],[0.691,-3.919]],"o":[[0.659,-0.353],[0.821,-2.587],[0.848,-3.25],[0.003,-0.084],[2.685,-2.264],[0.986,-0.281],[0.541,-0.292],[-0.134,-0.612],[-1.176,0.128],[0.206,1.37],[-0.535,0.058],[-0.925,0.979],[-0.802,-0.138],[-3.089,2.73],[-1.408,3.817],[-0.153,0.867]],"v":[[212.7,-163.748],[213.605,-165.265],[215.999,-173.048],[220.221,-181.952],[220.383,-182.194],[228.889,-188.373],[231.727,-189.613],[232.398,-191.14],[231.231,-191.809],[229.616,-193.462],[228.03,-191.498],[226.865,-190.66],[223.419,-189.079],[221.304,-188.158],[214.549,-178.247],[212.399,-166.494]],"c":true}},"nm":"P"},{"ind":118,"ty":"sh","ks":{"a":0,"k":{"i":[[0.406,1.442],[-0.525,-0.217],[-0.632,0.789],[0.512,0.732],[0.258,0.115],[2.168,-0.82],[1.154,-0.273],[1.363,-0.758],[1.618,-2.07],[-0.738,-0.471],[-0.526,1.19],[-0.217,0.497],[-0.852,-0.628],[-0.856,0.64],[-0.562,0.548],[-0.713,-1.129],[-0.877,-0.769],[-0.365,1.903]],"o":[[0.798,-0.044],[0.827,0.342],[0.751,-0.938],[-0.164,-0.235],[-1.954,-0.87],[-1.11,0.42],[-1.553,0.367],[-2.292,1.274],[-0.611,0.782],[0.735,0.469],[0.219,-0.496],[0.323,-0.737],[0.937,0.69],[0.631,-0.472],[0.863,-0.841],[0.624,0.988],[1.458,1.278],[0.269,-1.401]],"v":[[167.311,48.318],[169.046,48.989],[171.505,49.105],[170.68,46.694],[170.02,46.112],[163.91,45.324],[160.506,46.299],[155.933,47.69],[150.251,53.001],[150.488,55.058],[152.7,54.615],[153.372,53.134],[154.925,52.576],[157.653,52.372],[159.485,50.879],[161.676,51.116],[163.951,53.816],[167.289,52.559]],"c":true}},"nm":"P"},{"ind":119,"ty":"sh","ks":{"a":0,"k":{"i":[[3.837,0.489],[0.397,-0.945],[1.959,-0.887],[1.382,-0.397],[-0.14,-0.68],[-0.559,0.03],[-0.444,0.187],[-1.543,1.555],[-0.291,-0.997],[-1.468,-0.71],[-0.483,1.062],[-0.882,-1.256],[-0.212,-0.331],[-1.261,0.828],[0.665,0.995],[0.672,0.91]],"o":[[-0.9,0.001],[-0.853,2.031],[-1.301,0.589],[-0.699,0.201],[0.136,0.661],[0.484,-0.026],[1.882,-0.793],[0.485,-0.489],[0.511,1.749],[0.963,0.466],[0.618,-1.359],[0.226,0.322],[0.812,1.268],[0.92,-0.605],[-0.63,-0.941],[-2.356,-3.193]],"v":[[172.661,214.274],[170.571,215.357],[166.178,219.516],[162.218,221.12],[161.05,222.636],[162.594,223.059],[164.029,222.752],[169.575,220.137],[171.022,220.436],[174.458,223.63],[176.591,222.839],[178.451,222.752],[179.133,223.717],[183.47,224.668],[184.041,222.287],[182.134,219.476]],"c":true}},"nm":"P"},{"ind":120,"ty":"sh","ks":{"a":0,"k":{"i":[[2.36,0.039],[0.24,-0.039],[0.111,-0.783],[-0.96,-0.493],[-0.339,-0.534],[0.317,-0.678],[-1.115,-0.25],[-0.626,0.205],[-0.387,0.059],[-0.177,-0.47],[0.221,-0.297],[0.352,0.099],[0.172,-0.827],[-0.741,-0.139],[-2.478,-0.033],[-1.596,1.22],[0.508,0.426],[3.02,1.051],[0.65,0.798]],"o":[[-0.678,0],[-1.097,0.177],[-0.14,0.987],[0.692,0.356],[0.401,0.632],[-0.596,1.273],[0.647,0.145],[0.374,-0.122],[0.503,-0.076],[0.12,0.317],[-0.322,0.433],[-0.799,-0.225],[-0.194,0.932],[2.416,0.455],[1.862,0.024],[0.302,-0.231],[-2.268,-1.901],[-0.971,-0.338],[-1.964,-2.411]],"v":[[-201.96,161.718],[-203.13,161.724],[-206.209,162.451],[-203.62,164.113],[-201.524,165.039],[-202.369,167.065],[-201.325,169.004],[-199.434,168.924],[-198.295,168.618],[-197.262,169.264],[-197.122,170.246],[-198.188,170.189],[-199.787,171.013],[-198.533,172.549],[-191.303,173.97],[-185.949,172.69],[-185.606,171.824],[-192.321,166.011],[-194.949,164.422]],"c":true}},"nm":"P"},{"ind":121,"ty":"sh","ks":{"a":0,"k":{"i":[[0.663,4.926],[-0.013,-1.093],[0.264,-2.241],[1.006,-2.689],[-0.532,-0.196],[-0.366,0.387],[-1.217,2.723],[-1.022,2.8],[0.663,0.333],[0.276,-0.387],[0.754,0.43],[-0.261,0.497],[-0.35,1.396],[-1.422,2.266],[-2.222,0.945],[0.759,0.297],[-0.627,0.759],[0.016,0.402],[1.009,-0.006],[-0.027,-0.95],[0.122,-0.726],[0.686,-2.573],[-0.639,-4.387],[1.147,-0.699],[0.134,0.868],[0.313,0.041],[0.066,-0.239],[-0.472,-1.85],[1.029,-1.685]],"o":[[-1.025,1.175],[0.027,2.271],[-0.32,2.718],[-0.143,0.382],[0.525,0.193],[2.005,-2.12],[1.2,-2.683],[0.233,-0.639],[-0.655,-0.329],[-0.313,0.439],[-0.604,-0.345],[0.672,-1.28],[0.601,-2.396],[1.018,-1.622],[0.418,-0.178],[-1.388,-0.544],[0.266,-0.322],[-0.028,-0.709],[-0.912,0.005],[0.021,0.731],[-0.443,2.64],[-1.104,4.137],[0.137,0.942],[-0.157,-1.036],[-0.037,-0.237],[-0.29,-0.038],[-0.524,1.899],[0.469,1.839],[-0.052,-4.978]],"v":[[140.545,77.757],[139.165,80.928],[139.115,87.737],[138.912,95.87],[139.349,97.004],[140.667,96.565],[145.681,89.493],[149.822,81.684],[149.441,80.162],[148.349,80.838],[147.145,81.762],[147.148,80.142],[148.512,76.109],[149.676,68.844],[152.634,63.894],[152.712,62.774],[152.436,60.8],[152.755,59.685],[151.707,58.243],[150.416,59.628],[150.203,61.828],[148.015,69.507],[146.252,82.127],[145.178,84.769],[144.757,81.996],[144.423,81.412],[143.926,81.862],[142.875,87.612],[141.571,92.188]],"c":true}},"nm":"P"},{"ind":122,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.416,-0.872],[0.503,0.297],[1.665,0.171],[0.417,-0.827],[-0.501,-0.593],[-0.549,-0.566],[2.601,-0.744],[1.662,-1.233],[-1.295,-0.664],[-0.939,0.368],[-2.531,0.966],[-2.075,0.883],[0.59,2.548],[0.724,0.188],[0.428,-0.547],[0.266,-0.85],[0.806,0.279],[-0.221,0.512],[1.163,1.441],[0.829,-0.53],[-0.465,-0.767]],"o":[[-0.855,0.062],[-1.491,-0.88],[-0.92,-0.094],[-0.385,0.764],[0.509,0.603],[1.864,1.922],[-2.029,0.581],[-1.174,0.872],[0.981,0.503],[2.523,-0.988],[2.109,-0.805],[2.526,-1.074],[-0.146,-0.632],[-0.807,-0.209],[-0.557,0.711],[-0.157,0.501],[-0.801,-0.277],[0.77,-1.782],[-0.716,-0.887],[-0.836,0.535],[0.428,0.705]],"v":[[214.139,191.275],[212.304,190.659],[207.477,189.446],[205.384,190.545],[205.862,192.575],[207.418,194.359],[206.711,197.1],[201.248,199.911],[201.478,202.227],[204.337,202.121],[211.905,199.155],[218.254,196.798],[221.5,190.497],[220.467,188.993],[218.766,189.93],[217.652,192.336],[216.673,193.278],[216.502,191.965],[215.651,187.137],[213.13,186.839],[212.994,188.917]],"c":true}},"nm":"P"},{"ind":123,"ty":"sh","ks":{"a":0,"k":{"i":[[0.938,0],[0,-0.005],[1.229,-0.076],[-0.068,-0.598],[-0.803,-0.154],[-0.066,-0.658],[0.436,-0.111],[2.39,-2.795],[-0.51,-0.757],[-0.682,0.319],[0.148,-0.697],[-0.637,-0.455],[-0.645,0.386],[-1.262,1.496],[-0.353,-0.926],[-0.393,0.231],[-0.766,0.798],[-0.773,0.186],[-0.058,-1.562],[-0.339,-0.582],[-0.217,-0.029],[-0.094,0.299],[-1.78,-0.751],[-0.369,0.837],[-1.168,-0.692],[-0.363,-0.154],[-0.503,0.726],[0.421,0.485],[2.097,1.285],[2.907,-0.375]],"o":[[0,0.005],[-1.234,0],[-0.789,0.049],[0.117,1.03],[0.516,0.099],[0.062,0.617],[-3.532,0.899],[-0.549,0.642],[0.448,0.665],[0.59,-0.276],[-0.117,0.55],[0.684,0.488],[1.648,-0.985],[0.498,-0.59],[0.155,0.406],[0.851,-0.5],[0.538,-0.56],[1.51,-0.364],[0.024,0.639],[0.142,0.243],[0.473,0.064],[0.547,-1.73],[0.729,0.308],[0.806,-1.83],[0.339,0.201],[0.645,0.274],[0.477,-0.689],[-1.647,-1.897],[-2.31,-1.416],[-0.922,0.119]],"v":[[204.786,-43.36],[204.786,-43.344],[201.087,-43.324],[198.862,-43.01],[201.122,-42.477],[202.467,-41.882],[201.325,-41.24],[192.31,-35.897],[191.255,-33.662],[193.318,-34.185],[194.02,-33.65],[194.079,-32.016],[196.175,-32.158],[200.769,-35.594],[202.01,-35.508],[202.879,-34.932],[205.589,-35.992],[207.679,-37.055],[209.978,-35.278],[210.253,-33.398],[210.825,-32.782],[211.359,-33.519],[213.684,-34.512],[215.646,-34.769],[218.681,-35.308],[219.742,-34.782],[221.614,-34.917],[221.068,-36.57],[215.188,-41.017],[207.597,-43.378]],"c":true}},"nm":"P"},{"ind":124,"ty":"sh","ks":{"a":0,"k":{"i":[[0.219,0.47],[-0.515,-2.254],[1.399,-0.964],[-0.314,-0.637],[-0.459,0.116],[0.225,-1.248],[-0.853,-0.606],[1.607,-0.968],[1.016,0.184],[1.716,-0.668],[-0.087,-0.63],[-0.532,0.033],[-0.249,-1.283],[-1.224,0.572],[-1.941,0.553],[-1.017,0.627],[0.5,1.225],[0.599,2.124],[0.979,-0.625],[0.603,0.837],[-1.165,1.602],[2.178,1.055],[0.879,0.323]],"o":[[-1.084,2.231],[0.413,1.807],[-0.412,0.284],[0.23,0.467],[1.274,-0.321],[-0.159,0.882],[1.309,0.931],[-0.223,-0.574],[-1.763,-0.319],[-0.501,0.195],[0.081,0.584],[1.602,-0.098],[0.262,1.345],[1.86,-0.87],[1.141,-0.325],[1,-0.616],[-0.845,-2.071],[-0.281,-0.997],[-1.2,0.766],[-0.977,-1.355],[1.406,-1.934],[-0.842,-0.408],[-0.533,-0.196]],"v":[[111.228,20.051],[110.765,26.869],[109.195,30.773],[108.37,31.965],[109.74,32.138],[111.123,33.51],[111.989,35.859],[111.568,38.547],[110.843,36.869],[105.599,37.06],[104.654,38.245],[105.797,39.247],[107.994,41.395],[111.31,43.146],[117.121,41.434],[120.444,40.21],[122.003,37.489],[120.129,31.137],[118.062,30.252],[115.625,29.498],[115.897,25.606],[114.999,22.075],[112.405,20.99]],"c":true}},"nm":"P"},{"ind":125,"ty":"sh","ks":{"a":0,"k":{"i":[[0.962,0.188],[0.162,-0.862],[-0.705,-0.146],[-0.621,-0.16],[-0.427,-0.453],[0.156,-0.73],[-1.938,0.496],[-0.293,0.169],[-0.345,-0.705],[-0.329,-0.36],[-1.001,1.104],[-0.586,0.849],[-0.754,-0.543],[-1.295,-0.51],[-0.311,1.21],[-0.819,-0.577],[-1.287,-0.346],[-0.189,0.899],[-0.875,0.638],[-0.63,0.497],[0.472,0.214],[1.042,0.221],[2.617,0.411],[0.295,0.966],[0.766,-0.476],[1.851,0.664],[1.894,0.542],[0.144,-1.08]],"o":[[-0.588,-0.11],[-0.155,0.826],[0.627,0.13],[0.71,0.184],[0.616,0.653],[-0.433,2.021],[0.332,-0.085],[0.747,-0.433],[0.214,0.437],[1.012,1.106],[0.694,-0.765],[0.549,-0.795],[1.113,0.802],[0.974,0.383],[0.343,-1.334],[1.105,0.778],[0.89,0.24],[0.188,-0.896],[0.442,-0.322],[0.436,-0.343],[-1.11,-0.504],[-2.583,-0.547],[-1.128,-0.177],[-0.639,-2.088],[-1.489,0.926],[-1.852,-0.664],[-1.355,-0.388],[-0.158,1.186]],"v":[[-131.29,197.286],[-132.703,197.837],[-131.6,199.104],[-129.735,199.57],[-127.662,200.18],[-128.104,202.312],[-125.533,204.971],[-124.562,204.625],[-123.053,205.171],[-122.214,206.383],[-119.234,206.4],[-117.287,203.985],[-115.462,203.692],[-111.966,205.858],[-109.682,205.089],[-107.897,204.521],[-104.262,206.093],[-102.383,205.172],[-101.208,202.96],[-99.853,201.209],[-100.071,200.334],[-103.322,198.738],[-111.096,197.127],[-114.227,196.051],[-116.334,195.714],[-121.158,196.672],[-126.814,194.963],[-129.544,196.129]],"c":true}},"nm":"P"},{"ind":126,"ty":"sh","ks":{"a":0,"k":{"i":[[1.077,0.028],[1.056,-0.79],[-1.158,-0.404],[-0.533,-0.089],[-0.149,-0.647],[-2.51,0.033],[-0.213,-1.062],[-0.754,0.415],[-0.928,-1.108],[-0.426,1.426],[-0.885,-0.55],[-1.138,-0.067],[-1.994,0.452],[0.063,0.328],[0.287,0.009],[0.542,0.025],[0.009,0.479],[-0.319,0.013],[-0.638,-0.041],[-0.242,0.475],[0.307,0.261],[-1.046,0.738],[0.618,0.218],[0.494,1.89],[0.525,-0.043],[1.613,-1.136],[0.819,0.622],[1.79,0.469],[0.636,-1.835],[0.434,0.113]],"o":[[-1.482,0.011],[-0.974,0.73],[0.505,0.176],[0.623,0.104],[0.635,2.763],[0.901,-0.012],[0.192,0.959],[1.243,-0.684],[1.169,1.396],[0.407,-1.362],[0.928,0.577],[2.241,0.133],[0.305,-0.069],[-0.074,-0.388],[-0.542,-0.017],[-0.335,-0.015],[-0.009,-0.452],[0.636,-0.025],[0.428,0.028],[0.261,-0.513],[-0.674,-0.572],[0.46,-0.325],[-1.369,-0.482],[-0.113,-0.433],[-1.943,0.16],[-0.82,0.578],[-1.453,-1.104],[-1.298,-0.34],[-0.2,0.576],[-1.194,-0.309]],"v":[[-181.005,157.21],[-184.77,158.362],[-184.417,160.463],[-182.829,160.781],[-181.487,161.775],[-176.375,165.216],[-174.545,166.541],[-172.841,167.296],[-169.911,167.968],[-166.601,167.761],[-164.666,167.13],[-161.643,168.105],[-155.881,166.085],[-155.484,165.377],[-156.185,165.006],[-157.812,164.982],[-158.583,164.503],[-157.844,163.938],[-155.931,164.022],[-154.719,163.823],[-155.339,162.789],[-155.472,161.011],[-155.755,160.079],[-159.297,157.703],[-160.617,157.262],[-166.06,158.952],[-168.268,158.933],[-173.099,156.434],[-176.396,157.5],[-177.531,157.803]],"c":true}},"nm":"P"},{"ind":127,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.053,-3.35],[-0.294,-3.929],[-2.531,-2.194],[-0.008,1.305],[2.322,1.625],[-1.137,0.181],[-0.038,1.46],[-0.147,0.245],[-0.328,-0.104],[0.06,-0.297],[-0.076,-2.308],[-3.416,1.446],[0.379,0.809],[0.102,3.46],[0.53,6.163],[-0.251,2.409],[0.098,0.089],[0.168,0.006],[-0.049,-0.184],[-0.411,-1.474],[-0.024,-2.558],[0.71,0.021],[0.059,0.539],[0.155,1.221],[0.808,0.12],[0.246,-0.672],[-0.251,-1.991],[0.582,-2.124],[0.54,0.001],[0.008,0.45],[-0.005,2.665],[0.325,0.789],[1.438,-0.053],[0.29,-1.147]],"o":[[-0.231,3.613],[0.253,3.38],[1.085,0.941],[0.014,-2.252],[-1.151,-0.806],[1.331,-0.212],[0.007,-0.278],[0.153,-0.255],[0.36,0.114],[-0.465,2.315],[0.123,3.723],[0.812,-0.344],[-1.516,-3.24],[-0.182,-6.16],[-0.202,-2.353],[0.013,-0.128],[-0.132,-0.12],[-0.247,-0.009],[0.39,1.477],[0.702,2.52],[0.005,0.513],[-0.606,-0.018],[-0.134,-1.223],[-0.091,-0.716],[-0.886,-0.132],[-0.695,1.901],[0.263,2.091],[-0.111,0.405],[-0.614,-0.001],[-0.048,-2.665],[0.002,-0.848],[-0.443,-1.075],[-1.549,0.057],[-0.745,2.948]],"v":[[209.397,-69.115],[209.995,-57.657],[214.256,-49.335],[216.327,-49.965],[214.45,-56.276],[214.915,-57.768],[217.132,-60.081],[217.416,-60.902],[218.16,-61.252],[218.464,-60.516],[218.544,-53.595],[222.52,-51.016],[223.264,-52.569],[221.801,-62.723],[221.86,-81.196],[220.892,-88.188],[220.727,-88.584],[220.239,-88.828],[219.957,-88.402],[219.893,-83.995],[220.324,-76.338],[219.659,-75.071],[218.912,-76.365],[218.546,-80.039],[217.342,-81.534],[215.923,-80.311],[215.44,-74.475],[215.66,-68.168],[215.13,-67.084],[214.491,-68.247],[214.445,-76.242],[214.064,-78.711],[211.924,-81.205],[209.982,-78.433]],"c":true}},"nm":"P"},{"ind":128,"ty":"sh","ks":{"a":0,"k":{"i":[[0.385,-13.023],[-0.003,-3.258],[-2.282,-0.059],[-0.03,-0.536],[-1.103,0.003],[-6.269,0.012],[-0.479,0.098],[0.353,0.379],[0.931,-0.146],[1.035,-0.016],[0.368,0.407],[1.536,-1.596],[0.303,0.893],[0.929,-0.205],[2.103,-0.862],[0.216,0.653],[-0.557,0.105],[-2.678,-0.072],[-0.38,0.702],[-0.212,1.426],[0.771,0.481],[0.432,-0.344],[0.8,0.765],[-0.437,0.691],[0.07,0.939],[-1.173,0.866],[-0.879,0.469],[0.466,3.184],[-0.154,1.689],[-0.03,3.992],[1.81,1.253],[1.032,0.576],[3.527,0.6],[0.003,-2.145]],"o":[[0,3.258],[0.002,2.241],[0.569,0.015],[0.076,1.347],[6.269,-0.015],[0.487,-0.001],[0.424,-0.087],[-0.496,-0.533],[-1.014,0.16],[-0.507,0.008],[-1.523,-1.685],[-0.662,0.687],[-0.368,-1.085],[-2.119,0.466],[-0.433,0.177],[-0.226,-0.683],[2.506,-0.474],[0.78,0.021],[0.684,-1.264],[0.127,-0.855],[-0.906,-0.566],[-0.865,0.688],[-0.893,-0.854],[0.518,-0.819],[-0.117,-1.568],[0.792,-0.585],[2.842,-1.516],[-0.248,-1.699],[0.365,-3.997],[0.016,-2.124],[-0.97,-0.671],[-3.236,-1.805],[-2.103,-0.358],[-0.015,13.026]],"v":[[204.671,15.723],[204.672,25.497],[207.312,28.192],[208.197,28.9],[210.255,30.433],[229.063,30.417],[230.522,30.23],[230.791,29.504],[228.934,28.562],[225.833,28.665],[224.502,28.151],[220.788,28.032],[219.219,27.829],[217.152,26.633],[210.73,27.133],[209.152,27.06],[210.373,25.837],[217.618,23.578],[219.425,22.461],[220.874,18.443],[220.054,16.197],[218.685,17.116],[215.53,17.086],[215.844,14.902],[216.483,12.209],[218.288,8.702],[220.757,7.082],[223.496,1.488],[223.114,-3.651],[223.284,-15.63],[220.707,-20.861],[217.63,-22.621],[207.264,-25.267],[204.95,-23.353]],"c":true}},"nm":"P"},{"ind":129,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.015,0.06],[-0.097,0.153],[0.025,0.083],[0.596,0.474],[0.606,0.958],[2.524,-0.012],[3.996,-0.043],[0.139,-0.337],[1.457,-0.997],[-1.59,0.575],[0.448,1.445],[0.257,0.09],[1.08,-0.945],[0.911,-0.693],[-0.152,0.586],[1.618,0.407],[0.188,-1.014],[0.493,-0.06],[0.261,0.289],[1.368,0.175],[-0.534,-0.857],[1.381,-0.512],[-1.392,-1.122],[-0.623,-0.545],[0.116,-0.489],[0.426,-0.031],[0.66,-0.344],[-1.029,-1.38],[-0.815,-0.989],[-0.884,0.947],[-0.597,0.585],[-0.889,-1.082],[-0.43,-0.54],[-1.072,0.778],[-0.416,0.343],[0.744,1.141],[0.83,1.688],[-0.275,-0.117],[-2.718,-0.167],[-3.673,-1.513]],"o":[[0.12,0.106],[0.03,-0.048],[-0.232,-0.896],[-0.842,-0.669],[-1.451,-2.294],[-3.996,0.019],[-0.356,0.004],[-0.981,2.377],[1.299,-1.17],[1.432,-0.518],[-0.079,-0.255],[-1.142,-0.398],[-0.792,0.693],[-0.324,-0.812],[0.364,-1.403],[-1.478,-0.371],[-0.048,0.258],[-0.24,-0.264],[-0.929,-1.026],[-1.151,-0.147],[0.858,1.376],[-1.612,0.597],[0.647,0.522],[0.303,0.265],[-0.127,0.537],[-0.749,0.054],[-1.531,0.797],[0.767,1.028],[0.754,0.915],[0.572,-0.613],[0.997,-0.977],[0.438,0.533],[0.828,1.04],[0.439,-0.318],[0.875,-0.721],[-1.14,-1.748],[-0.051,-0.103],[2.546,1.089],[3.887,0.238],[0.905,0.373]],"v":[[160.078,206.018],[160.429,206.013],[160.362,205.77],[158.629,204.279],[155.999,202.422],[149.819,199.456],[137.832,199.584],[136.909,199.927],[132.14,201.593],[136.485,199.016],[138.737,194.654],[138.284,194.127],[134.952,194.351],[132.374,196.332],[132.719,194.41],[130.713,191.522],[128.907,193.191],[128.447,193.878],[127.683,193.037],[124.236,191.193],[122.831,192.725],[121.884,195.129],[121.615,197.832],[123.639,199.292],[124.438,200.235],[123.29,200.653],[121.175,201.259],[120.358,204.803],[122.699,207.856],[125.211,208.005],[126.88,206.123],[129.391,206.298],[130.727,207.88],[133.557,208.259],[134.911,207.357],[135.507,204.686],[137.018,201.933],[137.789,201.953],[145.753,203.363],[157.204,205.403]],"c":true}},"nm":"P"},{"ind":130,"ty":"sh","ks":{"a":0,"k":{"i":[[1.06,-0.404],[0.146,0.022],[1.519,-0.603],[0.414,-0.841],[0.024,-0.043],[-0.604,-0.551],[-0.794,0.37],[-1.337,0.256],[-0.107,-0.528],[-0.563,0.095],[-0.554,-0.513],[-0.641,0.091],[-0.348,3.341],[-1.486,-1.175],[-1.662,-0.511],[-0.752,0.812],[0.283,0.694],[0.041,0.142],[0,0],[-0.744,-0.262],[1.162,-1.042],[-0.741,-0.139],[-0.326,-0.111],[0.099,-0.458],[0.294,-0.065],[0.209,-0.703],[-0.413,-0.432],[-0.971,1.454],[0.129,1.765],[0.834,0.159],[0.412,0.817],[-1.471,0.005],[0.644,1.017],[0.554,0.453],[3.214,0.517],[-0.771,1.793],[0.225,0.325],[0.279,-0.123],[1.104,-2.481],[-0.746,-0.786],[-0.731,0.244],[-1.666,-0.155],[-0.05,-0.61],[0.451,-0.129],[1.787,0.284],[2.289,-1.017]],"o":[[-0.145,-0.026],[-1.636,-0.248],[-1.215,0.482],[-0.022,0.044],[-0.34,0.606],[0.594,0.542],[1.321,-0.616],[0.128,0.524],[0.101,0.501],[0.838,-0.142],[0.441,0.408],[3.16,-0.447],[0.195,-1.865],[1.306,1.033],[0.992,0.305],[0.719,-0.776],[-0.055,-0.136],[0,0],[0.751,0.24],[1.072,0.378],[-0.66,0.592],[0.339,0.063],[0.318,0.109],[-0.073,0.337],[-0.436,0.097],[-0.184,0.618],[1.132,1.184],[0.95,-1.422],[-0.059,-0.801],[-0.848,-0.161],[-0.337,-0.669],[1.206,-0.004],[-0.367,-0.579],[-2.472,-2.02],[-1.955,-0.315],[0.141,-0.329],[-0.192,-0.278],[-2.26,0.999],[-0.366,0.822],[0.687,0.723],[1.552,-0.518],[0.44,0.041],[0.046,0.561],[-1.715,0.49],[-2.337,-0.372],[-1.035,0.46]],"v":[[-188.065,-2.446],[-188.502,-2.524],[-193.26,-1.971],[-194.186,0.645],[-194.241,0.782],[-194.44,2.661],[-192.155,3.403],[-188.112,2.748],[-187.733,4.32],[-186.844,5.069],[-184.883,5.893],[-183.327,6.62],[-178.515,2.624],[-175.792,1.631],[-171.696,4.481],[-168.941,3.968],[-169.26,1.823],[-169.385,1.398],[-169.377,1.39],[-167.124,2.113],[-166.553,4.059],[-166.223,5.067],[-165.221,5.324],[-164.597,5.996],[-165.309,6.413],[-166.597,6.676],[-165.912,8.229],[-162.444,7.832],[-161.077,3.087],[-162.223,1.63],[-164.258,0.303],[-163.623,-1.081],[-162.625,-3.134],[-163.951,-4.702],[-172.324,-8.718],[-173.493,-10.96],[-173.419,-11.934],[-174.221,-12.126],[-179.914,-7.72],[-179.863,-5.228],[-177.653,-5.179],[-172.878,-6.002],[-171.869,-5.385],[-172.713,-4.531],[-177.955,-3.922],[-184.891,-3.669]],"c":true}},"nm":"P"},{"ind":131,"ty":"sh","ks":{"a":0,"k":{"i":[[3.658,-0.678],[3.027,-0.232],[0.362,-0.29],[1.16,-0.222],[2.831,-0.95],[0.101,-0.529],[0.079,-0.476],[-0.396,-0.175],[-0.893,-0.025],[-0.78,-0.543],[0.533,-0.499],[-1.007,-0.156],[-1.244,0.015],[-2.564,-0.032],[-0.171,-0.356],[0.302,-0.206],[-0.841,-0.29],[-1.709,0.867],[-1.251,0.689],[-0.287,-0.457],[0.321,-0.233],[0.448,-0.38],[-0.243,-0.62],[-0.516,0.077],[-0.772,0.026],[-3.075,0.831],[-1.512,-0.314],[-1.42,-1.614],[-0.417,-0.112],[-0.39,0.741],[0.695,0.511],[0.584,0.449],[-0.359,0.642],[-0.561,-0.21],[-0.244,-0.163],[-1.634,-0.213],[-1.415,-0.033],[-4.038,-0.142],[0.62,1.613],[1,0.836],[3.433,0.086],[1.081,0.409],[2.724,-0.277],[2.851,0.082],[1.009,0.572],[1.737,0.204]],"o":[[-3.021,-0.436],[-0.469,0.036],[-0.96,0.768],[-2.961,0.565],[-0.505,0.169],[-0.389,0.043],[-0.092,0.557],[0.832,0.369],[0.73,0.02],[-0.643,0.567],[-0.758,0.709],[1.215,0.188],[2.564,-0.032],[0.387,0.005],[0.218,0.453],[-0.897,0.61],[1.814,0.625],[1.272,-0.645],[0.359,-0.198],[0.336,0.534],[-0.478,0.347],[-0.391,0.331],[0.24,0.612],[0.785,-0.116],[3.07,-0.105],[1.663,-0.449],[1.758,0.365],[0.274,0.312],[0.514,0.138],[0.359,-0.68],[-0.594,-0.437],[-0.391,-0.301],[0.354,-0.633],[0.274,0.103],[1.4,0.931],[1.412,0.184],[4.04,0.094],[1.802,0.063],[1.19,-0.639],[-2.689,-2.247],[-1.157,-0.029],[-2.453,-0.927],[-2.855,0.29],[-1.094,-0.031],[-1.564,-0.887],[-3.476,-0.408]],"v":[[-184.205,39.664],[-193.284,39.559],[-194.646,40.066],[-197.877,41.396],[-206.384,44.207],[-207.299,45.267],[-208.269,45.757],[-207.427,46.632],[-204.816,47.029],[-202.513,47.343],[-204.249,48.879],[-203.842,50.238],[-200.169,50.597],[-192.476,50.633],[-191.412,51.037],[-191.993,51.93],[-191.768,53.159],[-186.454,52.876],[-182.732,50.755],[-181.56,50.543],[-182.272,51.423],[-183.738,52.419],[-184.536,53.696],[-183.088,54.1],[-180.754,54.044],[-171.532,53.659],[-166.354,53.306],[-161,55.436],[-159.837,56.056],[-158.267,56.062],[-158.742,54.073],[-160.595,52.859],[-161.37,51.641],[-159.765,51.478],[-158.98,51.885],[-154.367,53.287],[-150.426,52.602],[-138.31,52.966],[-137.126,51.361],[-136.849,49.478],[-146.16,46.253],[-149.442,45.565],[-157.069,43.811],[-165.633,43.904],[-168.946,43.334],[-173.918,41.53]],"c":true}},"nm":"P"},{"ind":132,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.295,-0.74],[1.46,-0.567],[0.004,0.157],[1.509,0.958],[-0.214,-0.664],[-0.478,-0.218],[-0.374,-0.626],[0.285,0.199],[1.843,-0.193],[2.326,-1.965],[0.141,0.148],[-0.009,-0.872],[0.385,-0.411],[-0.24,-0.774],[-0.817,0.126],[0.267,0.714],[-1.958,-1.137],[-0.811,-0.705],[0.083,-0.684],[0.608,-0.387],[0.333,-0.002],[3.151,-0.078],[0.028,-0.436],[-0.349,0.006],[-4.274,1.042],[-1.322,0.244],[0.747,1.672],[-1.299,-0.196],[-0.009,0.376],[0.322,0.034],[0.899,0.572],[-1.668,0.008],[-0.531,0.918],[-0.071,0.263],[0.734,0.581],[0.313,-0.277]],"o":[[-1.456,0.637],[-0.038,0.015],[-0.063,-2.525],[-0.572,-0.363],[0.166,0.516],[0.588,0.268],[-0.424,0.412],[-1.72,-1.2],[-2.581,0.27],[-0.177,0.149],[-0.946,-0.99],[0.006,0.586],[-0.754,0.205],[0.292,0.943],[1.012,-0.157],[2.092,0.084],[0.925,0.537],[0.479,0.416],[-0.084,0.692],[-0.275,0.175],[-3.158,0.023],[-0.326,0.008],[-0.037,0.587],[4.322,-0.072],[1.174,0.777],[1.757,-0.325],[1.092,-0.052],[0.268,0.04],[0.012,-0.486],[-0.928,-0.098],[1.67,-0.221],[0.888,-0.004],[0.159,-0.24],[0.258,-0.961],[-0.315,-0.249],[-0.735,0.651]],"v":[[-151.787,114.897],[-155.867,114.377],[-156.155,113.935],[-160.046,110.284],[-160.717,111.063],[-159.708,112.061],[-158.052,113.117],[-159.237,113.335],[-164.788,112.494],[-172.513,113.678],[-173.024,113.544],[-174.111,114.086],[-174.707,115.548],[-176.027,116.984],[-173.879,117.637],[-173.243,116.092],[-167.133,117.274],[-164.443,118.987],[-162.91,119.839],[-164.723,120.848],[-165.71,121.107],[-175.096,122.038],[-175.947,122.409],[-175.067,122.885],[-162.12,122.244],[-158.32,122.861],[-156.8,119.774],[-154.601,118.143],[-153.917,117.768],[-154.679,117.311],[-157.474,116.893],[-152.469,116.67],[-150.149,115.754],[-149.686,115.031],[-150.558,112.718],[-151.653,112.747]],"c":true}},"nm":"P"},{"ind":133,"ty":"sh","ks":{"a":0,"k":{"i":[[0.418,1.206],[0.91,0.133],[0.927,0.074],[5.405,-0.964],[1.761,-1.337],[1.093,-1.966],[-1.081,-0.175],[-3.922,1.564],[-0.154,-0.324],[0.242,-0.128],[0.6,-0.713],[-0.23,-0.368],[-0.375,0.088],[-0.613,0.404],[-2.432,-2.299],[-1.206,0.387],[-0.74,1.643],[-1.037,0.241]],"o":[[0.098,-0.977],[-0.923,-0.135],[-5.435,-0.435],[-2.139,0.381],[-1.924,0.615],[-0.668,1.201],[4.227,0.685],[0.296,-0.118],[0.173,0.363],[-0.86,0.456],[-0.219,0.26],[0.251,0.403],[0.741,-0.173],[3.099,-2.044],[0.948,0.896],[1.653,-0.53],[0.438,-0.972],[1.191,-0.277]],"v":[[133.952,79.491],[132.63,77.914],[129.862,77.511],[113.589,77.867],[107.65,80.229],[102.765,83.438],[103.631,84.978],[115.804,83.383],[116.575,83.517],[116.147,84.177],[114.158,86.129],[113.874,87.039],[114.947,87.293],[116.817,86.152],[123.446,85.955],[126.765,86.574],[130.547,83.504],[132.698,81.655]],"c":true}},"nm":"P"},{"ind":134,"ty":"sh","ks":{"a":0,"k":{"i":[[0.917,-0.93],[0.594,-1.172],[-0.182,-1.649],[-0.945,-0.158],[-0.114,0.741],[-0.609,0.135],[-0.347,-0.492],[-1.252,-0.79],[-0.84,0.458],[-0.239,0.797],[-0.653,-0.355],[-0.458,0.342],[0.136,0.474],[0.839,0.831],[-0.291,0.67],[-1.075,0.318],[-0.423,-0.744],[-0.916,0.523],[0.61,0.863],[2.108,0.936],[0.823,-0.817]],"o":[[-1.348,-0.335],[-1.733,0.622],[0.11,0.993],[0.871,0.146],[0.089,-0.581],[0.692,-0.154],[0.824,1.168],[0.721,0.455],[0.923,-0.504],[0.859,0.124],[0.364,0.198],[0.431,-0.322],[-0.343,-1.197],[-0.608,-0.602],[0.435,-1.002],[1.017,-0.301],[0.466,0.82],[0.735,-0.42],[-1.384,-1.959],[-0.746,-0.331],[-0.903,0.897]],"v":[[-110.768,122.435],[-113.599,123.852],[-116.282,127.757],[-114.642,129.604],[-113.383,128.287],[-112.409,127.123],[-110.932,127.889],[-108.09,131.054],[-105.781,131.623],[-105.653,129.506],[-103.724,130.753],[-102.612,131.231],[-102.502,129.846],[-104.594,127.032],[-105.701,124.924],[-103.057,122.978],[-101.216,124.331],[-99.299,126.067],[-99.777,123.321],[-105.291,119.259],[-107.803,119.92]],"c":true}},"nm":"P"},{"ind":135,"ty":"sh","ks":{"a":0,"k":{"i":[[1.172,0.01],[0.442,-0.217],[1.379,-1.575],[-0.263,-0.357],[-0.358,0.068],[-0.383,0.565],[-0.511,-0.02],[-1.79,0.678],[-0.333,-0.626],[0.361,-0.487],[-0.274,-0.463],[-0.285,0.119],[-1.916,-0.334],[-0.331,0.085],[0.072,0.234],[-0.639,0.021],[-1.594,-0.309],[-1.186,1.843],[-0.459,0.127],[-0.613,0.507],[1.232,0.394],[1.998,-1.864],[3.248,1.536],[1.12,0.265],[0.059,-1.061]],"o":[[-0.428,-0.337],[-1.876,0.921],[-0.283,0.323],[0.226,0.307],[0.649,-0.123],[0.259,-0.382],[1.882,0.073],[0.565,-0.214],[0.33,0.621],[-0.221,0.298],[0.201,0.339],[1.87,-0.783],[0.319,0.056],[0.241,-0.062],[-0.507,-1.653],[1.655,-0.055],[2.223,0.431],[0.257,-0.4],[0.77,-0.214],[1,-0.827],[-2.419,-0.773],[-3.365,0.544],[-0.778,-1.181],[-1.113,-0.263],[-1.236,-0.225]],"v":[[107.731,124.677],[106.33,124.472],[101.441,128.229],[101.413,129.326],[102.348,129.626],[103.956,128.667],[105.005,127.965],[110.499,127.156],[112.41,127.366],[111.416,128.814],[110.979,129.789],[111.927,129.989],[117.605,129.73],[118.616,129.571],[119.1,129.09],[120.524,127.991],[125.275,129.018],[129.772,127.203],[130.785,126.419],[132.855,125.303],[132.509,123.07],[125.757,124.216],[115.785,123.658],[112.59,122.48],[110.949,123.713]],"c":true}},"nm":"P"},{"ind":136,"ty":"sh","ks":{"a":0,"k":{"i":[[1.515,-0.073],[1.509,0.011],[1.917,1.07],[1.639,0.285],[0.614,0.108],[1.355,2.957],[0.579,1.303],[0.724,-0.323],[-0.186,-0.793],[-0.583,-0.924],[-1.084,-2.894],[0.408,-0.849],[-1.412,-0.199],[-0.537,-0.015],[-0.233,-0.393],[-0.621,-0.146],[-0.396,0.603],[-0.289,0.029],[0.043,-0.188],[-1.252,-0.855],[-1.421,0.773],[-0.824,1.726],[-0.429,-0.04],[-0.154,0.455],[-3.839,0.214],[-0.972,0.077],[-1.911,-1.289],[0.109,-0.441],[0.367,-0.014],[3.438,0.769],[0.576,-1.026],[2.235,-1.551],[0.097,0.002],[0.625,-0.43],[0.915,-1.494],[-0.347,-0.457],[-0.482,0.118],[-0.518,0.01],[-1.976,-2.012],[-0.889,0.154],[-1.412,2.53],[-0.136,0.056],[-0.728,-0.006],[-4.396,0.457],[-4.056,-0.797],[-2.808,-0.109],[-0.526,-0.713],[3.35,0.479],[4.829,0.152],[-0.089,-0.908],[-0.934,-0.082],[-0.874,0],[0.466,-0.036],[4.541,0.068],[0.316,0.458],[2.176,-0.97],[1.081,0.768],[0.359,-0.277],[-0.125,-1.099],[-0.868,-0.129],[-0.245,0.032],[-2.194,-0.106],[-6.449,0.612],[-1.458,-1.052],[0.463,-0.006],[2.024,-0.038],[-0.533,-2.5],[-1.556,0.106],[-0.542,-0.809],[-0.969,0.023],[-1.927,-0.868],[-0.477,0.099],[-1.165,-0.737],[-0.796,-0.015],[-0.985,-0.004],[-2.742,0.017],[-3.848,-1.44],[-0.643,0.086],[-0.669,-0.086],[-3.54,-0.247],[-1.675,-0.137],[-5.212,-0.175],[-5.379,-0.15],[-2.043,-0.364],[0.097,-0.559],[0.365,0.036],[1.866,-0.02],[5.033,0.006],[1.486,-1.071],[0.643,-0.008],[2.608,-0.153],[3.632,-0.227],[2.677,0.298],[5.861,-0.01],[0.152,-0.569],[-0.393,-0.241],[-1.905,-0.242],[-4.877,-0.331],[-0.177,0.131],[-1.733,-0.729],[-0.256,0.14],[-0.776,-1.257],[-0.51,-0.004],[-0.934,0.176],[-0.896,-0.886],[2.358,-0.683],[-0.324,0.036],[-2.408,-0.57],[-0.031,-0.818],[0.615,-0.055],[0.79,-0.016],[0.424,-0.322],[1.91,-0.001],[2.994,0.272],[1.531,-0.896],[1.941,-0.475],[0.047,-0.638],[-0.419,-0.246],[-1.354,-1.096],[1.189,-0.865],[-0.091,-1.931],[-1.2,-0.168],[-2.32,-0.655],[-4.306,-0.052],[-1.778,-0.008],[-0.368,-0.516],[-1.904,0.272],[-1.331,0.001],[-4.347,0.002],[-0.393,0.031],[0.165,0.202],[0.256,1.042],[1.618,0.043],[4.198,0.352],[2.741,-0.233],[1.982,0.112],[0.968,1.069],[-0.998,-0.101],[-0.73,1.101],[-1.434,1.126],[-2.918,-0.112],[-7.107,0.265],[-0.965,1.806],[-5.159,2.576],[-0.652,0.783],[0.331,-0.006],[3.142,0.374],[2.977,0.141],[2.358,-0.087],[4.916,0.048],[5.387,-0.55],[5.375,0.173],[2.554,0.199],[0.095,0.352],[-0.293,0.162],[-0.363,0.154],[-1.958,0.117],[-0.745,-0.629],[-1.282,1.243],[-0.639,-0.023],[-0.688,0.058],[-3.024,-1.812],[-0.529,0.347],[0.087,0.353],[0.483,-0.055],[1.421,1.382],[0.246,0.02],[4,-0.166],[4.634,0.344],[4.494,-0.013],[1.551,0.286],[-0.239,0.67],[-0.369,-0.221],[-1.192,-0.004],[-3.549,0.36],[-3.195,0.184],[-2.578,-0.66],[-3.126,0.68],[0,0.507],[0.372,0.012],[4.424,0.256],[0.898,-0.426],[0.883,0.428],[1.684,0.404],[-1.483,0.236],[0.347,-0.564],[-0.88,-0.24],[-2.149,-0.699],[-1.437,0.392],[-0.281,0.872],[0.36,0.557],[0,0.2],[-4.055,-0.64],[-2.059,1.185],[-2.535,-0.964],[-1.342,-0.33],[-0.439,0.004],[-0.144,0.35],[0.26,0.217],[2.035,0.309],[2.927,-1.863],[1.638,0.131],[4.882,0.034],[13.121,-0.535],[1.591,2.341],[0.448,0.121],[3.051,-0.085],[0.655,-0.671],[0.41,0.01]],"o":[[-1.508,-0.133],[-2.225,-0.016],[-1.403,-0.783],[-0.614,-0.108],[-2.705,-2.025],[-0.594,-1.296],[-0.232,-0.522],[-0.671,0.3],[0.25,1.064],[1.627,2.578],[0.063,0.873],[-0.609,1.268],[0.528,0.074],[0.233,0.393],[0.011,0.558],[0.764,0.18],[0.289,-0.029],[-0.007,0.196],[-0.272,1.18],[1.272,0.869],[1.533,-0.835],[0.21,-0.44],[0.423,0.039],[3.854,0.357],[0.99,0.192],[2.107,-0.167],[0.306,0.206],[-0.109,0.44],[-3.498,0.137],[-1.007,-0.225],[-2.28,-0.59],[-0.064,0.044],[-0.765,-0.408],[-1.428,0.982],[-0.213,0.348],[0.327,0.43],[0.524,-0.128],[1.855,-0.037],[0.653,0.665],[2.126,-0.369],[0.056,-0.101],[0.703,0.291],[4.411,0.034],[4.035,0.583],[2.723,0.535],[0.401,0.016],[-3.627,-0.045],[-4.827,-0.69],[-0.93,-0.029],[0.108,1.1],[0.867,0.076],[-0.423,0.404],[-4.53,0.353],[-0.505,-0.008],[-1.487,-2.16],[-1.164,0.519],[-0.343,-0.244],[-0.947,0.732],[0.111,0.976],[0.236,0.035],[2.203,-0.285],[6.464,0.312],[1.49,-0.141],[-0.487,0.49],[-2.025,0.027],[-2.613,0.049],[0.284,1.331],[1.081,-0.073],[0.576,0.86],[2.017,-0.048],[0.493,0.222],[1.184,-0.247],[0.726,0.46],[0.985,0.018],[2.742,0.011],[3.959,-0.024],[0.617,0.231],[0.682,-0.091],[3.545,0.458],[1.724,0.12],[5.203,0.427],[5.384,0.181],[2.068,0.057],[0.461,0.082],[-0.087,0.502],[-1.867,-0.182],[-5.033,0.054],[-1.671,-0.002],[-0.531,0.383],[-2.59,0.033],[-3.634,0.213],[-2.643,0.165],[-5.862,-0.652],[-0.427,0.001],[-0.149,0.556],[1.629,0.996],[4.886,0.62],[0.238,0.016],[1.271,-0.945],[0.2,0.084],[1.058,-0.582],[0.282,0.457],[0.938,0.007],[1.939,-0.365],[-2.353,1.015],[0.128,0.52],[2.49,-0.279],[0.504,0.119],[0.023,0.621],[-0.785,0.071],[-0.494,0.01],[-1.578,1.2],[-3.011,0.002],[-1.803,-0.164],[-1.724,1.009],[-0.518,0.127],[-0.043,0.59],[1.487,0.873],[0.971,0.786],[-1.689,1.228],[0.055,1.162],[2.407,0.338],[4.253,1.2],[1.778,0.021],[0.595,0.003],[1.425,2.002],[1.332,-0.19],[4.347,-0.005],[0.395,0],[0.244,-0.02],[-0.827,-1.009],[-0.379,-1.545],[-4.191,-0.112],[-2.695,-0.226],[-1.962,0.167],[-0.942,-0.053],[1.369,0],[1.385,0.141],[1.036,-1.561],[2.291,-1.798],[7.096,0.273],[2.237,-0.083],[2.732,-5.114],[0.902,-0.45],[-0.383,-0.345],[-3.163,0.061],[-2.931,-0.349],[-2.381,-0.112],[-4.944,0.182],[-5.358,-0.053],[-5.345,0.545],[-2.557,-0.083],[-0.285,-0.022],[-0.112,-0.413],[0.343,-0.19],[1.899,-0.805],[0.932,-0.056],[1.383,1.167],[0.465,-0.451],[0.688,0.025],[3.241,-0.271],[0.594,0.356],[0.358,-0.235],[-0.163,-0.663],[-1.717,0.196],[-0.134,-0.13],[-3.975,-0.315],[-4.629,0.192],[-4.469,-0.332],[-1.589,0.004],[-0.374,-0.069],[0.185,-0.518],[1.079,0.646],[3.543,0.013],[3.184,-0.323],[2.601,-0.15],[3.284,0.841],[0.243,-0.053],[-0.355,-0.107],[-4.439,-0.149],[-0.913,-0.053],[-0.951,0.451],[-1.358,-0.659],[1.155,-1.285],[0.36,-0.057],[-1.014,1.647],[2.167,0.592],[1.394,0.453],[0.671,-0.183],[0.259,-0.803],[-0.043,-0.066],[4.065,-0.994],[2.435,0.384],[2.228,-1.282],[1.285,0.489],[0.424,0.104],[0.358,-0.003],[0.178,-0.43],[-1.664,-1.391],[-3.29,-0.499],[-1.502,0.956],[-4.869,-0.388],[-13.128,-0.091],[-2.681,0.109],[-0.279,-0.41],[-3.011,-0.817],[-0.782,0.022],[-0.41,-0.011],[-1.455,-0.807]],"v":[[-94.774,173.725],[-99.298,173.348],[-105.442,171.628],[-109.802,169.582],[-111.645,169.258],[-117.135,161.356],[-118.74,157.387],[-120.089,156.565],[-120.966,158.255],[-119.687,161.232],[-115.086,169.129],[-115.375,171.698],[-114.16,173.856],[-112.551,173.91],[-111.851,175.089],[-111.165,176.412],[-109.495,175.478],[-108.629,175.39],[-108.656,175.976],[-107.877,179.118],[-103.898,179.626],[-99.842,176.406],[-98.893,175.919],[-97.958,175.391],[-86.433,175.081],[-83.518,174.891],[-77.352,175.715],[-76.693,176.61],[-77.689,177.085],[-88.121,176.441],[-90.556,177.184],[-97.357,177.336],[-97.642,177.335],[-99.706,177.649],[-103.328,181.269],[-103.719,182.417],[-102.342,182.652],[-100.794,182.193],[-95.183,182.121],[-92.464,182.127],[-86.358,180.076],[-85.959,179.902],[-83.783,180.128],[-70.565,179.725],[-58.381,180.604],[-49.971,180.988],[-48.574,181.582],[-58.938,181.401],[-73.43,181.026],[-75.401,183.248],[-73.522,184.784],[-70.902,184.801],[-72.245,185.431],[-85.855,185.748],[-87.186,185.25],[-92.799,183.997],[-96.166,183.793],[-97.265,183.673],[-98.697,186.585],[-96.54,187.745],[-95.806,187.675],[-89.186,187.591],[-69.827,187.299],[-65.287,187.793],[-66.758,188.11],[-72.833,188.14],[-75.223,191.16],[-72.899,193.201],[-70.521,194.755],[-68.278,195.843],[-62.297,196.486],[-60.871,196.29],[-57.289,196.136],[-55.052,196.71],[-52.097,196.822],[-43.871,196.807],[-32.072,197.72],[-30.168,197.763],[-28.11,197.622],[-17.461,197.909],[-12.52,197.32],[3.113,197.888],[19.242,197.598],[25.42,198.172],[26.278,198.977],[25.283,199.365],[19.688,199.356],[4.588,199.381],[-0.247,200.288],[-2.126,200.576],[-9.881,200.25],[-20.798,200.61],[-28.727,201.198],[-46.311,201.189],[-47.422,201.686],[-46.73,202.666],[-41.448,204.429],[-26.818,204.368],[-26.102,204.234],[-21.848,203.102],[-21.029,202.821],[-18.23,203.275],[-16.909,203.805],[-14.109,203.612],[-9.398,204.495],[-16.667,205.526],[-15.804,206.275],[-8.493,206.951],[-7.045,207.272],[-8.661,207.945],[-11.03,207.995],[-12.445,208.327],[-17.766,209.775],[-26.763,209.228],[-31.932,210.193],[-37.32,212.563],[-38.467,213.571],[-37.527,214.595],[-33.089,217.255],[-32.935,219.78],[-34.825,224.619],[-33.192,226.358],[-25.975,226.851],[-13.104,227.772],[-7.77,227.8],[-6.107,228.237],[-0.772,229.503],[3.211,229.282],[16.251,229.279],[17.435,229.243],[17.91,228.849],[17.39,225.61],[11.754,221.621],[-0.826,221.394],[-8.921,220.728],[-14.826,221.05],[-17.608,219.797],[-14.224,219.817],[-11.045,218.355],[-7.059,214.724],[0.461,212.562],[21.773,212.959],[27.016,209.818],[38.709,198.278],[41.02,196.377],[39.944,196.126],[30.503,195.566],[21.703,194.493],[14.625,194.614],[-0.13,193.837],[-16.229,193.945],[-32.351,193.705],[-40.013,193.134],[-40.77,192.823],[-40.221,192.05],[-39.138,191.576],[-33.278,191.07],[-30.852,191.89],[-26.686,191.724],[-25.13,191.079],[-23.06,191.01],[-13.542,192.058],[-11.733,191.751],[-11.601,190.639],[-12.928,189.952],[-17.755,189.042],[-18.479,188.981],[-30.422,188.633],[-44.311,188.202],[-57.789,188.144],[-62.482,187.579],[-63.351,186.923],[-62.185,186.865],[-58.741,187.495],[-48.111,187.504],[-38.54,186.73],[-30.766,186.189],[-21.282,185.558],[-20.652,184.999],[-21.744,184.682],[-34.979,183.433],[-37.743,183.384],[-40.436,183.244],[-44.773,181.381],[-40.841,179.249],[-40.175,179.835],[-38.949,181.607],[-32.34,182.228],[-28.127,182.496],[-26.154,181.999],[-27.425,180.565],[-27.431,180.183],[-15.124,179.722],[-8.649,178.773],[-1.55,177.972],[2.449,179.056],[3.765,179.178],[4.595,178.651],[4.145,177.829],[-1.556,175.198],[-11.159,176.776],[-15.813,177.749],[-30.442,177.187],[-69.815,177.714],[-76.451,174.524],[-77.544,173.869],[-86.677,173.387],[-89.035,174.062],[-90.265,174.03]],"c":true}},"nm":"P"},{"ind":137,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.571,-0.324],[-0.605,0.165],[-0.635,-0.586],[-0.759,1.107],[-0.143,1.098],[0.626,-0.017],[1.839,-2.27],[0.001,0.651],[0.009,1.324],[0.556,0.603],[0.08,-0.36],[-0.783,-2.719]],"o":[[0.536,0.899],[0.711,-0.194],[1.3,1.201],[0.622,-0.906],[0.06,-0.462],[-2.323,0.063],[-0.698,-0.347],[-0.001,-1.324],[-0.005,-0.779],[-0.534,0.193],[-0.62,2.785],[0.158,0.548]],"v":[[90.202,110.515],[92.02,110.657],[94.115,110.645],[96.928,110.013],[98.163,107.058],[97.644,106.069],[90.939,107.548],[90.224,105.906],[90.218,101.934],[89.581,99.79],[88.934,100.781],[89.308,109.042]],"c":true}},"nm":"P"},{"ind":138,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.107,-0.006],[-0.836,-0.515],[0.821,-0.342],[-0.037,-0.427],[-0.31,-0.045],[-2.532,1.595],[0.96,0.8],[0.743,0.105],[3.702,-0.459],[-0.317,-1.46],[-0.671,0.591]],"o":[[0.882,0.076],[-0.67,0.594],[-0.305,0.127],[0.038,0.433],[2.88,0.421],[0.807,-0.508],[-0.566,-0.524],[-3.675,-0.52],[-1.647,0.752],[0.2,0.923],[1.477,-1.3]],"v":[[14.06,142.527],[16.701,142.801],[14.433,144.151],[13.722,144.773],[14.537,145.258],[22.743,143.882],[22.998,141.877],[20.994,141],[9.933,140.708],[7.69,144.55],[8.944,145.002]],"c":true}},"nm":"P"},{"ind":139,"ty":"sh","ks":{"a":0,"k":{"i":[[0.929,3.214],[2.91,0.024],[0.126,-0.76],[-0.906,-0.519],[-0.698,-0.448],[-0.456,-0.801],[-1.089,-2.796],[-0.471,0.016],[-0.096,0.398],[0.053,0.283]],"o":[[0.113,-2.441],[-0.522,-0.004],[-0.126,0.76],[0.719,0.412],[0.121,0.987],[1.51,2.651],[0.133,0.34],[0.595,-0.02],[0.067,-0.277],[-0.613,-3.294]],"v":[[132.288,63.269],[127.685,59.17],[126.194,59.607],[126.958,61.798],[129.055,63.136],[130.396,65.57],[133.549,74.007],[134.182,74.904],[134.767,73.861],[134.778,72.987]],"c":true}},"nm":"P"},{"ind":140,"ty":"sh","ks":{"a":0,"k":{"i":[[0.83,-1.976],[1.279,-1.908],[-1.101,-0.719],[-0.543,0.682],[0.215,-0.516],[-0.479,-0.262],[-1.542,0.786],[-0.456,-0.327],[-1.12,0.872],[-1.334,4.007],[-0.849,0.61],[0.109,0.609],[1.658,0.286],[1.342,0.589],[1.068,1.977],[1.131,1.139],[0.225,0.269],[0.42,1.61],[0.439,0.081],[0.126,-0.297],[0.914,0.388],[0.467,-1.24],[0.012,-0.478],[1.412,0.08],[1.038,-0.432],[1.562,-0.007],[0.189,0.024],[0.125,-1.161],[-0.773,-0.146],[0,0],[0.467,-0.451],[1.081,0.017],[1.128,-0.714],[-0.093,-0.707],[-0.627,0.17],[-2.592,1.053],[0.093,-0.303],[-1.355,-0.219],[-1.398,0.815],[-0.73,-1.983],[-0.779,1.538],[-1.128,-0.517],[-0.439,-0.215],[0.115,-0.38],[1.646,-1.624]],"o":[[-1.135,2.009],[-0.503,0.75],[1.124,0.733],[0.77,0.27],[-0.21,0.504],[1.252,0.684],[0.461,-0.235],[1.312,0.941],[3.232,-2.517],[0.311,-0.934],[0.574,-0.412],[-0.286,-1.595],[-0.691,-1.354],[1.43,-1.636],[-0.806,-1.491],[-0.225,-0.269],[1.716,-1.176],[-0.098,-0.375],[-0.409,-0.075],[-0.313,0.739],[-1.176,-0.499],[-0.171,0.454],[-0.038,1.463],[-1.058,-0.06],[-1.562,0.007],[-0.183,-0.068],[-1.067,-0.138],[-0.152,1.414],[0,0],[-0.095,0.756],[-1.006,0.349],[-1.426,-0.224],[-0.959,0.608],[0.099,0.754],[2.666,-0.723],[0.193,0.403],[-0.646,1.501],[1.823,0.57],[1.954,-1.139],[0.619,1.682],[0.857,-1.691],[0.445,0.204],[-0.115,0.38],[-1.718,1.551],[-1.421,1.403]],"v":[[136.33,122.963],[132.384,128.611],[132.072,130.995],[134.127,129.738],[134.478,131.068],[134.87,132.163],[138.864,132.931],[140.265,133.02],[143.943,132.702],[151.266,123.28],[152.796,120.801],[153.301,119.214],[149.48,115.532],[146.273,112.804],[146.739,107.562],[143.627,103.896],[142.953,103.09],[145.305,98.059],[144.688,97.134],[144.005,97.791],[142.465,98.444],[139.797,99.795],[139.459,101.218],[137.289,103.068],[134.088,103.309],[129.402,103.329],[128.852,103.132],[126.554,104.372],[128.491,105.417],[128.485,105.41],[127.257,106.903],[124.154,107.538],[120.463,108.709],[120.231,110.838],[121.582,111.569],[129.635,109.602],[129.326,110.506],[130.808,112.819],[135.432,111.508],[138.218,112.371],[141.769,112.873],[144.668,112.203],[145.988,112.847],[145.644,113.987],[140.507,118.659]],"c":true}},"nm":"P"},{"ind":141,"ty":"sh","ks":{"a":0,"k":{"i":[[0.361,-0.615],[-0.372,-0.854],[-1.331,-0.054],[-0.134,2.302],[-0.375,-0.318],[-0.413,0.297],[0.183,0.454],[1.559,-0.053],[1.527,-0.003]],"o":[[-0.543,0.846],[0.784,1.8],[2.371,0.096],[0.37,0.324],[0.303,0.256],[0.402,-0.289],[-0.476,-1.183],[-1.525,0.052],[-0.596,0.001]],"v":[[-72.169,166.168],[-72.115,168.667],[-68.413,169.949],[-65.903,167.692],[-64.792,168.662],[-63.751,168.923],[-63.421,167.734],[-66.026,165.552],[-70.607,165.565]],"c":true}},"nm":"P"},{"ind":142,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.58,0.928],[-1.087,0.537],[-0.071,-0.595],[-0.403,-1.029],[-4.92,-0.611],[-1.491,-1.014],[-0.521,0.465],[0.213,0.506],[0.207,0.335],[0.329,1.57],[-0.306,-0.529],[-1.294,-2.213],[-0.474,0.153],[0.039,0.376],[1.812,2.078],[1.651,0.33],[1.599,1.292],[2.876,-0.011],[0.052,-0.493],[-0.088,-0.262],[0.503,-0.021],[0.159,1.678],[0.703,0.205],[0.324,-0.432],[0.296,-0.453],[-0.59,-1.161],[-1.395,0.25],[0.005,-0.119],[0.509,-1.169],[-0.795,0.054]],"o":[[1.087,-0.537],[0.727,0.028],[0.133,1.123],[1.69,4.318],[1.816,0.226],[0.404,0.274],[0.38,-0.338],[-0.151,-0.36],[-0.763,-1.238],[0.853,0.389],[1.285,2.219],[0.186,0.317],[0.511,-0.165],[-0.288,-2.798],[-0.936,-1.073],[-0.649,-1.889],[-2.41,-1.948],[-0.581,0.002],[-0.479,0.07],[-0.503,0.021],[-1.039,-1.23],[-0.016,-0.517],[-0.611,-0.178],[-0.323,0.432],[-0.67,1.026],[0.606,1.192],[-0.005,0.119],[-0.993,0.896],[-0.397,0.912],[1.242,-0.084]],"v":[[-121.645,155.645],[-118.385,154.032],[-117.492,155.144],[-116.94,158.486],[-111.145,163.483],[-106.248,165.412],[-104.92,165.948],[-104.971,164.406],[-105.564,163.385],[-106.781,159.175],[-105.417,160.721],[-101.571,167.382],[-100.721,168.05],[-100.493,167.025],[-103.769,159.713],[-106.928,156.767],[-110.147,151.948],[-118.245,149.896],[-119.062,150.725],[-119.274,151.35],[-120.781,151.414],[-122.914,147.223],[-123.391,145.835],[-124.711,146.598],[-125.583,147.968],[-126.153,151.281],[-123.069,152.787],[-123.086,153.144],[-124.964,156.459],[-124.059,157.587]],"c":true}},"nm":"P"},{"ind":143,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.501,0.133],[1.344,-1.135],[0.562,0.002],[0.086,0.767],[-0.469,0.287],[-1.442,0.938],[0.294,0.821],[0.859,-0.099],[3.092,-0.986],[-0.155,-0.74],[-0.652,-2.266],[-1.117,-0.961],[-0.018,-0.189],[-0.483,-0.196],[-0.476,-1.679],[-0.963,0.647],[-1.527,1.235],[1.369,0.626],[0.577,0.854],[-4.213,-0.441],[-0.178,1.078],[0.705,0.3],[0.285,-0.564],[0.237,-0.7],[0.677,0.154]],"o":[[-0.066,-0.652],[-1.607,-0.426],[-0.562,-0.002],[-0.427,-0.257],[-0.064,-0.571],[1.468,-0.899],[0.721,-0.469],[-0.357,-0.997],[-3.254,0.373],[-0.665,0.212],[0.481,2.295],[0.342,1.189],[0.018,0.189],[-0.349,0.421],[0.052,1.716],[0.251,0.887],[1.631,-1.095],[1.2,-0.971],[-0.831,-0.38],[2.287,-3.17],[1.069,0.112],[0.11,-0.664],[-0.775,-0.33],[-0.317,0.627],[-0.684,-0.353],[0,0]],"v":[[-226.931,6.482],[-228.013,5.453],[-232.509,6.246],[-234.195,6.241],[-235.523,5.641],[-234.603,4.393],[-230.189,1.713],[-228.597,-0.18],[-231.106,-0.609],[-240.472,2.015],[-241.227,3.359],[-240.117,10.301],[-239.081,13.866],[-239.026,14.434],[-238.78,15.347],[-238.259,20.459],[-236.8,21.082],[-232.025,17.642],[-232.289,15.436],[-234.704,14.137],[-225.406,9.309],[-222.475,6.493],[-223.13,4.849],[-224.635,5.678],[-225.346,7.713],[-226.93,6.475]],"c":true}},"nm":"P"},{"ind":144,"ty":"sh","ks":{"a":0,"k":{"i":[[1.288,0.622],[0,0],[-1.004,-1.231],[-1.511,0.975],[0.385,0.852],[0.794,-0.28],[0.552,0.98]],"o":[[0,0],[0.095,1.643],[1.321,1.62],[0.62,-0.401],[-0.365,-0.809],[-0.822,0.29],[-0.749,-1.33]],"v":[[-127.888,168.847],[-127.886,168.845],[-126.041,173.099],[-121.352,174.125],[-120.362,172.386],[-122.26,171.968],[-124.627,171.468]],"c":true}},"nm":"P"},{"ind":145,"ty":"sh","ks":{"a":0,"k":{"i":[[0.574,-0.003],[0.917,-1.178],[0.209,-0.193],[-0.32,-0.663],[-0.536,0.061],[-0.746,-0.15],[-1.295,0.403],[-0.236,-0.23],[-1.237,0.557],[-1.641,-0.915],[-0.698,0.113],[-2.785,-0.503],[-3.575,0.394],[-0.54,-0.037],[-0.045,-0.6],[0.4,-0.122],[0.807,-0.228],[0.435,-0.774],[-0.378,0.049],[-3.01,0.062],[-6.808,0.187],[-3.013,0.551],[0.023,0.547],[0.353,0.112],[0.839,0.007],[4.824,0.777],[1.568,-0.256],[2.217,0.009],[0.855,0.766],[-0.18,0.009],[-6.353,0.195],[-4.493,-0.001],[-0.675,-0.264],[-0.675,1.243],[0.131,0.006],[4.678,0.024],[5.777,-0.251],[6.468,-0.005],[0,0],[2.833,0.124],[3.289,0.311],[1.642,-0.784],[0.191,0.045],[0.121,0.072]],"o":[[-1.058,-1.046],[-0.254,0.145],[-0.486,0.447],[0.304,0.628],[0.767,-0.087],[1.398,0.281],[0.303,0.162],[1.139,1.112],[1.697,-0.764],[0.619,0.345],[2.661,-0.429],[3.48,0.629],[0.537,-0.059],[0.4,0.028],[0.039,0.524],[-0.802,0.244],[-0.754,0.213],[0.455,0.319],[2.985,-0.388],[6.813,-0.141],[3.049,-0.084],[0.356,-0.065],[-0.021,-0.502],[-0.815,-0.258],[-4.823,-0.042],[-1.563,-0.252],[-2.215,0.362],[-0.9,-0.004],[0.392,-0.112],[6.349,-0.306],[4.489,-0.138],[0.689,0],[1.206,0.472],[-0.134,-0.051],[-4.677,-0.204],[-5.77,-0.029],[-6.456,0.281],[0,0],[-2.813,-0.453],[-3.283,-0.144],[-1.663,-0.157],[-0.191,-0.045],[-0.121,-0.072],[-0.574,0.003]],"v":[[56.154,152.327],[52.329,152.581],[51.575,153.024],[51.032,154.697],[52.449,154.981],[54.771,154.984],[58.747,154.526],[59.646,155.021],[63.365,155.45],[68.281,155.512],[70.307,155.753],[78.331,155.472],[88.994,155.858],[90.622,155.838],[91.722,156.223],[90.69,156.874],[88.257,157.516],[86.371,158.813],[87.601,159.018],[96.592,158.443],[117.013,158.736],[126.127,157.895],[127.045,157.411],[126.082,156.928],[123.585,156.708],[109.115,156.704],[104.402,156.492],[97.753,156.698],[95.113,155.725],[95.862,155.517],[114.912,154.639],[128.391,154.613],[130.412,154.932],[133.404,153.624],[133.011,153.479],[118.978,152.917],[101.663,153.085],[82.26,153.164],[82.219,153.111],[73.727,152.612],[63.87,152.373],[58.812,152.672],[58.239,152.537],[57.875,152.32]],"c":true}},"nm":"P"},{"ind":146,"ty":"sh","ks":{"a":0,"k":{"i":[[0.431,0.336],[0.94,-0.285],[-0.133,-0.977],[-1.056,-0.236],[0.09,-0.707],[-1.073,0.018],[0.077,1.073],[1.174,0.664]],"o":[[-0.348,-0.654],[-1.105,0.336],[0.192,1.411],[0.345,0.077],[-0.173,1.353],[1.228,-0.021],[-0.084,-1.164],[-0.431,-0.336]],"v":[[145.393,58.446],[143.777,57.316],[141.555,60.403],[143.979,62.143],[144.698,62.757],[146.54,64.47],[148.244,62.469],[146.685,59.454]],"c":true}},"nm":"P"},{"ind":147,"ty":"sh","ks":{"a":0,"k":{"i":[[0.55,-0.954],[0.185,-0.158],[-0.377,-0.677],[-0.537,0.175],[-1.2,0.426],[-1.065,0.018],[-3.809,0.873],[-2.51,0.059],[0.034,0.872],[0.533,-0.025],[1.274,0.105],[1.479,-0.397],[1.212,0.074],[1.916,-0.072],[2.015,0.048]],"o":[[-0.203,0.137],[-0.584,0.498],[0.379,0.681],[1.21,-0.394],[1.065,-0.018],[3.747,0.211],[2.463,-0.564],[0.564,-0.013],[-0.028,-0.721],[-1.295,0.061],[-1.499,-0.124],[-1.227,0.329],[-1.922,-0.118],[-1.993,-0.361],[-1.098,-0.026]],"v":[[54.725,158.492],[54.119,158.906],[53.637,160.743],[55.23,160.902],[58.832,159.634],[62.027,159.58],[73.284,159.97],[80.803,159.644],[82.113,158.864],[80.854,158.162],[77.033,157.807],[72.575,157.313],[68.951,157.573],[63.202,157.681],[57.181,157.295]],"c":true}},"nm":"P"},{"ind":148,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.722,2.733],[-1.507,0.962],[-2.33,1.247],[0.58,1.681],[0.031,0.586],[-0.26,0.293],[0.591,0.631],[0.691,-0.429],[0.196,-0.149],[1.851,-2.678],[0.213,-1.276],[0.757,-1.675],[1.381,-1.586],[-0.078,-0.512],[-0.549,0.329]],"o":[[1.391,-1.084],[2.456,-0.976],[1.401,-0.75],[-0.184,-0.534],[0.293,-0.263],[0.518,-0.583],[-0.531,-0.567],[-0.209,0.13],[-2.605,1.972],[-0.806,0.947],[-2.112,-0.012],[-1.406,1.564],[-0.318,0.365],[0.059,0.387],[2.204,-1.321]],"v":[[161.117,75.56],[164.94,71.939],[172.128,68.618],[173.665,65.134],[173.547,63.384],[174.421,62.589],[174.779,60.615],[172.721,60.608],[172.108,61.022],[165.501,68.07],[163.73,71.27],[159.898,74.349],[155.69,79.05],[155.231,80.417],[155.993,80.953]],"c":true}},"nm":"P"},{"ind":149,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.032,-0.11],[1.016,-0.976],[0.809,-1.806],[0.771,-0.088],[0.121,-1.114],[-0.726,0.07],[-0.561,1.002],[-1.035,2.289],[-0.4,1.173],[0.578,0.874],[0.945,1.857],[1.733,0.939],[0.295,0.462],[-0.364,0.991],[0.594,0.275],[0.349,-0.463],[0.077,-1.295],[-0.23,-2.355],[0.004,-0.263],[0.006,-0.215],[-0.128,-0.704],[-0.929,0.608],[0.481,0.952],[-0.011,0.697],[-0.407,0.379],[0.053,-0.544],[0.114,-1.222],[-1.464,-0.244],[-0.745,0.923]],"o":[[-0.158,1.276],[-1.725,0.937],[-0.284,0.635],[-1.73,0.196],[-0.087,0.8],[1.292,-0.124],[1.224,-2.186],[0.722,-0.949],[0.711,-1.101],[-1.151,-1.741],[-0.56,-1.84],[-0.484,-0.262],[0.03,-1.039],[0.166,-0.451],[-0.576,-0.266],[-0.806,1.07],[-0.141,2.375],[-0.004,0.263],[-0.006,0.215],[0.005,0.727],[0.084,0.459],[0.71,-0.635],[0.011,-0.697],[0.605,-0.241],[0.394,0.482],[-0.118,1.221],[-0.139,1.489],[1.579,0.263],[0.032,0.11]],"v":[[-126.626,141.012],[-127.874,144.57],[-131.748,148.625],[-133.022,150.119],[-134.666,152.762],[-133.477,153.916],[-130.08,152.411],[-126.111,146.068],[-124.069,143.133],[-124.522,140.23],[-127.641,134.822],[-130.926,130.532],[-132.093,129.454],[-131.595,126.403],[-131.867,125.104],[-133.285,125.598],[-134.381,129.226],[-134.005,136.309],[-134.017,137.099],[-134.034,137.745],[-133.987,139.919],[-132.894,140.656],[-132.279,138.347],[-132.245,136.255],[-131.541,134.901],[-131.188,136.46],[-131.55,140.123],[-129.585,142.476],[-126.724,140.683]],"c":true}},"nm":"P"},{"ind":150,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.104,-0.03],[-1.501,-0.319],[-0.123,0.651],[1.302,0.634],[1.063,0.122],[2.914,-0.453],[-0.278,-0.32],[-1.886,-0.972],[-0.074,1.233],[-0.66,0.498]],"o":[[0.604,1.553],[0.575,0.122],[0.25,-1.32],[-0.796,-1.082],[-2.967,-1.42],[-0.654,0.102],[1.414,1.629],[1.04,0.536],[0.041,-0.676],[0.383,1.152]],"v":[[143.267,17.769],[146.669,20.233],[147.734,19.576],[145.469,15.289],[142.415,14.441],[133.627,14.682],[133.564,15.546],[138.649,19.291],[140.338,18.139],[140.883,16.236]],"c":true}},"nm":"P"},{"ind":151,"ty":"sh","ks":{"a":0,"k":{"i":[[0.235,-2.146],[0.101,-1.367],[-0.768,-0.208],[-0.318,0.567],[-0.156,0.239],[-0.548,1.28],[1.05,2.049],[0.465,-0.167],[0.002,-0.322]],"o":[[-0.151,1.364],[-0.039,0.521],[0.567,0.154],[0.142,-0.252],[0.818,-1.255],[0.498,-2.205],[-0.163,-0.318],[-0.38,0.137],[-0.013,2.153]],"v":[[97.462,32.303],[97.025,36.396],[97.16,37.92],[98.541,36.767],[98.86,35.952],[99.353,31.964],[98.737,25.554],[97.876,24.927],[97.647,25.85]],"c":true}},"nm":"P"},{"ind":152,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.245,-0.012],[-0.538,-0.413],[-0.852,1.469],[1.211,0.078],[1.363,0.502],[0.025,0.145],[0.832,-0.178],[-0.04,-0.683],[-0.814,0.01]],"o":[[0.73,0.149],[1.462,1.122],[0.61,-1.05],[-1.363,-0.087],[-0.022,-0.145],[-0.223,-1.283],[-0.793,0.17],[0.062,1.063],[0.244,-0.003]],"v":[[-169.416,40.189],[-167.771,41.386],[-163.393,40.727],[-164.167,39.306],[-168.25,39.326],[-168.316,38.889],[-170.373,37.908],[-172.18,39.352],[-170.149,40.156]],"c":true}},"nm":"P"},{"ind":153,"ty":"sh","ks":{"a":0,"k":{"i":[[0.868,-0.72],[0.091,-0.059],[0.727,-0.786],[0.035,-2.974],[-0.085,-0.427],[-0.539,-0.117],[-0.22,0.412],[0.355,1.124],[-0.205,0.539],[-2.101,1.142],[-0.706,-0.436],[-1.308,-0.128],[-0.321,1.179],[-0.094,2.208],[1.145,0.145],[1.349,-0.413],[-2.311,-1.187],[0.079,0.608],[-0.147,1.056],[0.794,0.484],[-0.341,0.332],[0.395,0.411],[-0.48,1.186],[-0.048,0.292],[-0.136,2.409],[0.02,2.124],[0.544,5.17],[0.902,0.011],[1.305,-0.438],[1.008,1.059],[-0.556,0.16],[-0.624,1.013],[0.63,0.609],[0.968,-0.672],[0.615,0.717],[1.172,-2.056],[0.121,-0.154],[0.702,1.065],[1.347,0.303],[0.614,-0.922],[-0.448,-0.477],[0.288,-0.416],[0.27,0.198],[1.57,-0.138],[0.296,-0.717],[-0.379,-0.403],[0.465,-0.346],[0.282,0.315],[-0.255,0.94],[0.302,0.748],[0.971,-0.822],[0.462,0.038],[1.199,-1.689],[0.882,0.518],[1.191,-0.159],[0.659,-3.302],[0.807,0.656],[-0.003,0.84],[0.31,0.578],[0.486,-0.641],[-2.625,-0.856],[-1.415,-0.416],[-0.326,1.282],[-0.91,-0.034],[-0.352,0.787],[-0.507,-0.106],[-0.072,-0.452],[-0.009,-0.197],[-2.158,0.803],[-1.805,0.072],[-0.454,-0.677],[0.266,-0.078],[2.095,-2.954],[-0.278,-0.548],[-0.539,-0.026],[-0.331,0.08],[-3.056,1.469],[-0.31,-0.208],[0.097,-0.231],[-0.81,-0.09],[-0.962,0.736],[-0.195,-1.264],[-0.433,-0.098],[-0.145,0.385],[-0.604,0.441],[-0.701,-0.335],[-0.049,-0.565],[-0.282,-0.552],[-0.798,0.458],[-0.772,2.876],[-0.092,-0.513],[0.138,-7.632],[0.707,-0.061],[0.959,-1.311],[1.04,0.632],[0.98,0.461],[0.186,-0.872],[1.567,0.43],[1.931,-0.455],[-0.538,-0.858],[-1.319,-0.288],[1.03,-1],[-0.748,-0.346],[0.127,-0.511],[0.337,-0.073],[0.586,-0.064],[2.326,-0.721],[2.176,-1.524],[-0.079,-0.503],[-0.474,-0.152],[-0.095,-0.025],[1.333,-1.355],[0.803,-0.871],[-0.261,-0.463],[-0.42,0.062],[-1.099,0.594],[-2.473,1.34],[-0.008,-2.427],[-1.08,-0.1],[-1.11,0.734],[-2.207,0.281],[-1.364,1.311],[-0.378,-0.308],[-0.36,-0.82],[0.264,-0.282],[0.297,-0.003]],"o":[[-0.091,0.059],[-0.903,0.593],[-2.064,1.822],[-0.321,0.38],[0.095,0.477],[0.597,0.129],[0.516,-0.963],[0.073,-0.626],[2.199,-0.35],[0.716,-0.389],[1.237,0.764],[1.414,0.139],[0.594,-2.18],[0.048,-1.128],[-1.397,-0.124],[1.102,-1.484],[0.912,0.468],[-0.132,-1.023],[0.108,-0.776],[-0.576,-0.351],[0.473,-0.46],[-1.441,-1.498],[0.11,-0.271],[0.394,-2.385],[0.121,-2.133],[-0.049,-5.179],[-0.056,-0.535],[-1.425,-0.017],[-1.675,0.562],[0.762,-0.196],[1.131,-0.325],[0.411,-0.668],[-0.63,-0.609],[-0.909,0.631],[-1.495,-1.744],[-0.098,0.171],[-0.802,1.023],[-0.8,-1.213],[-0.815,-0.183],[-0.68,1.021],[0.261,0.278],[-0.236,0.34],[-1.404,-1.028],[-0.579,0.051],[-0.26,0.63],[0.28,0.298],[-0.386,0.287],[-0.695,-0.776],[0.221,-0.816],[-0.423,-1.05],[-0.341,0.289],[-1.82,-0.151],[-0.028,-1.422],[-1.147,-0.673],[-3.482,0.466],[-0.206,1.032],[-0.651,-0.529],[0.003,-0.649],[-0.409,-0.762],[-1.649,2.174],[1.399,0.456],[1.323,0.389],[0.247,-0.974],[0.601,0.022],[0.18,-0.401],[0.641,0.134],[0.031,0.193],[0.11,2.311],[1.65,-0.613],[0.673,-0.027],[-0.2,0.429],[-3.403,0.994],[-0.303,0.427],[0.265,0.522],[0.341,0.016],[3.327,-0.804],[0.259,-0.125],[0.267,0.179],[-0.452,1.071],[1.009,0.112],[0.983,-0.752],[0.051,0.329],[0.476,0.108],[0.269,-0.717],[0.543,-0.396],[0.623,0.297],[0.05,0.586],[0.397,0.776],[1.904,-1.093],[0.625,0.425],[1.368,7.594],[-0.01,0.581],[-1.752,0.151],[-0.684,0.934],[-0.927,-0.563],[-1.354,-0.637],[-0.397,1.867],[-1.72,-0.473],[-1.09,0.257],[0.793,1.264],[1.42,0.31],[-0.517,0.501],[0.292,0.135],[-0.095,0.38],[-0.578,0.125],[-2.4,0.262],[-2.505,0.776],[-0.353,0.247],[0.087,0.553],[0.093,0.03],[1.795,0.468],[-0.831,0.845],[-0.291,0.316],[0.265,0.47],[1.226,-0.181],[2.474,-1.338],[2.215,-1.2],[0.004,1.062],[1.543,0.143],[1.859,-1.23],[1.765,-0.225],[0.313,-0.301],[-0.426,0.629],[-0.355,0.028],[-0.297,0.003],[-1.177,-0.294]],"v":[[186.841,36.137],[186.567,36.314],[184.198,38.466],[180.343,45.26],[180.142,46.522],[180.912,47.681],[181.963,46.826],[182.504,43.732],[183.43,42.316],[190.035,41.242],[192.477,41.288],[196.334,41.973],[198.58,40.195],[199.034,33.583],[197.507,31.645],[193.382,32.017],[197.798,30.134],[198.653,29.158],[198.156,26.107],[197.514,24.175],[197.598,23.095],[198.351,21.475],[198.746,17.775],[198.94,16.91],[199.586,9.708],[199.253,3.361],[199.013,-12.175],[198.344,-13.556],[194.089,-13.278],[190.798,-14.742],[192.68,-15.229],[195.377,-17.18],[195.363,-19.229],[193.019,-19.794],[190.859,-20.264],[188.184,-19.944],[187.878,-19.438],[185.34,-19.396],[182.104,-21.514],[179.838,-21.139],[180.663,-19.481],[180.985,-18.45],[180.041,-18.384],[175.5,-19.071],[173.983,-18.434],[174.491,-17.009],[174.607,-16.02],[173.563,-16.259],[173.056,-18.906],[172.849,-21.215],[170.824,-21.812],[169.686,-21.18],[165.124,-19.162],[163.289,-21.427],[159.869,-21.776],[155.723,-18.041],[154.039,-17.398],[153.085,-19.479],[152.719,-21.351],[150.901,-21.568],[153.213,-14.049],[157.523,-13.028],[160.001,-14.327],[161.731,-15.512],[163.415,-16.075],[164.228,-16.982],[164.633,-15.714],[164.644,-15.123],[168.085,-12.847],[173.162,-14.241],[174.973,-13.777],[174.164,-13.365],[165.709,-7.747],[165.203,-6.286],[166.657,-5.742],[167.685,-5.828],[177.087,-9.666],[177.869,-9.874],[177.895,-9.214],[178.958,-7.797],[181.881,-8.302],[183.606,-7.426],[183.979,-6.554],[184.821,-7.217],[186.153,-8.959],[187.992,-9.631],[188.343,-8],[188.562,-6.253],[190.425,-4.943],[195.979,-8.467],[196.65,-6.957],[197.23,15.914],[196.402,17.106],[192.632,19.684],[190.05,20.186],[187.199,18.617],[183.062,19.012],[180.692,20.003],[174.87,20.279],[174.263,22.052],[177.671,23.866],[178.206,25.661],[178.287,26.856],[178.932,27.47],[178.113,28.011],[176.37,28.335],[169.25,29.572],[162.077,32.661],[161.324,33.672],[162.423,34.529],[162.713,34.585],[163.256,36.729],[160.775,39.274],[160.417,40.466],[161.628,40.759],[165.142,39.651],[172.558,35.628],[174.996,36.947],[176.435,38.492],[180.227,37.071],[186.249,34.788],[191.126,32.87],[192.193,32.797],[191.687,34.871],[190.717,35.22],[189.826,35.227]],"c":true}},"nm":"P"},{"ind":154,"ty":"sh","ks":{"a":0,"k":{"i":[[0.865,0.248],[1.643,-0.219],[0.07,-0.179],[-0.232,-0.15],[-1.384,0.089],[-1.094,-0.494],[-0.534,0.658],[0.234,0.645],[0.678,0.013]],"o":[[-1.505,-1.103],[-0.209,0.028],[-0.135,0.348],[1.136,0.735],[1.223,-0.12],[0.413,0.187],[0.337,-0.415],[-0.268,-0.737],[-0.883,-0.017]],"v":[[-205.188,82.385],[-210.004,81.876],[-210.57,82.261],[-210.114,82.916],[-206.374,84.03],[-202.965,84.8],[-201.542,84.943],[-201.034,83.511],[-202.551,82.589]],"c":true}},"nm":"P"},{"ind":155,"ty":"sh","ks":{"a":0,"k":{"i":[[0.381,-0.052],[0.443,-0.03],[0.537,-0.003],[1.022,0.14],[3.013,-0.301],[0.123,0.63],[-0.473,0.051],[0.175,0.619],[1.758,-1.519],[0.48,-1.283],[0.73,-0.032],[1.688,0.073],[4.332,1.389],[0.853,0.9],[2.458,-0.731],[0.846,0.248],[1.394,-0.427],[1.757,-0.999],[0.009,-0.689],[-0.564,-0.203],[-0.977,-0.271],[-0.274,-0.843],[-0.77,-0.024],[-0.548,-0.453],[-1.38,1.009],[-1.126,-1.636],[-1.106,1.765],[-0.708,-0.483],[-0.732,0.619],[-0.948,0.408],[-1.163,0.553],[-0.567,-0.386],[0.041,-0.286],[0.204,-0.443],[1.49,-2.498],[1.043,-2.157],[-0.305,0.357],[-1.521,0.642],[0.263,-1.136],[0.272,-0.633],[-0.373,-0.26],[-0.272,0.24],[-0.355,0.726],[-0.649,0.016],[0.149,0.96],[0.062,3.002],[-0.515,0.021],[-0.202,0.056],[-0.303,0.027],[-0.063,-1.201],[-0.503,-1.044],[-0.338,0.054],[-0.011,0.287],[-0.104,0.927],[-1.749,-0.108],[-0.205,0.58],[0,0],[-1.015,-0.022],[-5.151,-0.892],[-0.8,0.916],[-0.117,1.586],[0.133,0.259]],"o":[[-0.443,0.03],[-0.537,-0.057],[-0.985,0.005],[-2.973,-0.409],[-0.293,0.029],[0.462,-0.113],[0.873,-0.094],[-0.628,-2.221],[-1.022,0.883],[-0.221,0.592],[-1.673,0.073],[-4.411,-0.191],[-1.086,-0.464],[-2.288,-2.414],[-0.86,0.256],[-1.357,-0.398],[-1.908,0.585],[-0.662,0.376],[-0.01,0.765],[0.837,0.301],[-0.741,0.652],[0.276,0.849],[0.737,0.023],[1.657,1.37],[1.554,-1.137],[1.183,1.718],[0.406,-0.648],[0.863,0.589],[0.815,-0.689],[1.279,-0.169],[0.569,-0.271],[-0.041,0.286],[-0.487,0.236],[-1.222,2.649],[-1.066,1.786],[0.88,-0.264],[1.065,-1.247],[1.079,-0.455],[-0.154,0.664],[-0.143,0.332],[0.344,0.239],[0.594,-0.525],[0.238,-0.487],[1.404,-0.035],[-0.466,-2.996],[0.46,-0.263],[0.202,-0.056],[0.303,-0.027],[1.055,0.449],[0.058,1.109],[0.128,0.265],[0.365,-0.058],[0.035,-0.935],[0.164,-1.466],[0.62,0.038],[0,0],[0.912,-0.37],[5.168,0.114],[0.891,0.154],[1.071,-0.099],[0.227,-0.118],[-0.228,-0.445]],"v":[[23.213,136.056],[21.883,136.146],[20.27,135.985],[17.362,136.416],[8.401,135.946],[7.56,135.454],[8.956,135.126],[9.689,133.847],[4.521,132.343],[2.177,135.531],[0.912,136.567],[-4.103,136.866],[-17.314,135.992],[-20.675,135.036],[-27.934,134.458],[-30.354,134.495],[-34.486,133.637],[-40.114,135.757],[-41.238,137.58],[-39.744,138.52],[-37.054,139.283],[-38.539,141.185],[-36.438,141.837],[-34.264,142.038],[-29.919,141.62],[-27.113,142.164],[-24.053,142.115],[-22.491,141.643],[-20.056,141.468],[-17.32,140.031],[-13.648,138.96],[-11.975,138.922],[-12.099,139.78],[-12.97,140.936],[-17.258,148.527],[-20.15,154.425],[-18.762,153.346],[-14.966,150.36],[-13.568,151.56],[-14.313,153.485],[-14.252,154.404],[-13.318,154.228],[-11.826,152.41],[-10.709,151.353],[-9.406,149.381],[-9.661,140.374],[-8.178,140.036],[-7.572,139.869],[-6.664,139.787],[-5.082,142.177],[-4.385,145.484],[-3.78,146.038],[-3.44,145.312],[-3.343,142.507],[-0.829,140.054],[0.401,139.196],[0.417,139.154],[3.235,138.321],[18.738,138.823],[21.509,138.4],[23.921,136.852],[24.256,136.299]],"c":true}},"nm":"P"},{"ind":156,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.698,0.863],[-0.1,0.113],[0.011,0.087],[-1.04,-0.012],[-0.339,0.062],[-2.86,-0.423],[-1.393,0.1],[0.009,0.729],[-0.866,0.056],[-2.73,0.659],[-0.197,0.497],[1.368,1.67],[0.734,0.056],[0.168,-0.539],[0.924,0.396],[1.306,-0.252],[-0.52,-0.898],[1.367,0.116],[0.34,0.029],[0.131,-1.379],[1.424,0.451],[2.151,-0.03],[2.266,0.319],[1.823,0.026],[2.956,0.323],[0.326,0.566],[1.906,-0.331],[-0.297,-0.687],[0.37,0.034],[2.979,0.684],[0.335,-0.081],[1.558,-0.42],[0.987,0.048],[3.135,0.795],[0.243,0.016],[2.485,0.364],[0.604,-1.68],[0.753,0.159],[2.82,0.183],[0.229,-0.281],[1.302,-1.405],[0.276,-0.387],[3.197,0.463],[0.053,-0.75],[0.417,0.128],[2.749,-0.487],[0.879,-0.754],[-0.728,-1.366],[0.285,-0.325],[-0.186,-1.546],[0.247,-0.082],[0.22,-2.858],[-0.744,-0.241],[-0.266,0.419],[-2.378,0.309],[-0.433,0.929],[0.627,0.164],[-1.082,0.096],[-0.265,0.877],[0.608,0.493],[0.179,0.083],[0.048,0.585],[-0.298,0.234],[-0.172,0.483],[-0.984,-0.502],[0.242,-0.508],[-0.431,-0.597],[-0.709,0.181],[-0.416,0.969],[-0.507,-0.226],[-1.008,0.865],[-0.395,-0.143],[-0.523,1.258],[-1.553,-0.891],[-0.843,1.387],[-1.189,0.094],[-0.722,-0.014],[-0.008,-1.072],[-0.078,-1.031],[-1.003,0.142],[0.16,0.815],[0.106,0.431],[-1.493,1.153],[-0.295,0.009],[-0.016,-0.611],[-0.775,-0.321],[-0.477,0.502],[-0.93,1.08],[-1.255,-0.431],[-0.467,1.659],[-0.631,-0.094],[0.639,-1.823],[-0.793,-0.316],[-0.276,0.515],[-0.969,0.232],[-2.257,-0.345],[-2.159,-0.003],[-3.212,0.191],[-2.902,0.031],[-4.042,-0.036],[-0.377,-1.404],[0.05,-0.057],[-0.434,-0.061]],"o":[[0.1,-0.113],[0.159,-0.109],[-0.218,-1.645],[0.34,0.004],[2.838,-0.519],[1.363,0.202],[0.591,-0.042],[-0.016,-1.295],[2.833,-0.184],[0.416,-0.1],[0.633,-1.599],[-0.419,-0.511],[-0.808,-0.062],[-0.317,1.015],[-1.06,-0.454],[-0.878,0.169],[0.622,1.072],[-0.34,-0.029],[-1.248,-0.106],[-0.149,1.564],[-2.129,-0.675],[-2.265,0.032],[-1.818,-0.256],[-2.953,-0.041],[-0.588,-0.064],[-1.331,-2.315],[-0.399,0.069],[0.552,1.275],[-2.96,-0.269],[-0.301,-0.069],[-1.507,-0.135],[-0.982,0.264],[-3.194,-0.157],[-0.225,-0.057],[-2.479,-0.159],[-1.781,-0.261],[-0.721,0.086],[-2.822,-0.597],[-0.352,-0.023],[-1.705,-0.059],[-0.59,0.123],[-1.476,2.075],[-0.788,-0.114],[-0.413,-0.142],[-2.725,-0.835],[-1.565,-0.282],[-0.731,0.627],[0.245,0.46],[-0.771,0.878],[0.034,0.279],[-3.061,1.016],[-0.044,0.569],[0.803,0.26],[1.074,-1.688],[0.813,-0.106],[-0.537,-0.14],[1.257,-0.582],[1.142,-0.101],[0.292,-0.968],[-0.147,-0.119],[-0.431,-0.2],[-0.038,-0.462],[0.399,-0.312],[0.286,-0.803],[1.106,0.565],[-0.3,0.632],[0.405,0.561],[0.85,-0.217],[0.257,-0.6],[1.419,0.634],[0.317,-0.272],[1.536,0.555],[0.818,-1.968],[0.583,-1.529],[1.189,-0.094],[0.719,0.163],[1.149,0.022],[0.007,1.034],[0.051,0.676],[0.921,-0.131],[-0.086,-0.436],[-0.388,-1.577],[0.295,-0.009],[0.576,0.378],[0.014,0.541],[0.732,0.303],[0.982,-1.033],[0.884,-1.027],[1.639,0.562],[0.645,-0.115],[1.968,0.294],[-0.215,0.615],[0.697,0.278],[0.385,-0.719],[2.137,-0.512],[2.157,0.33],[3.205,0.556],[2.908,-0.173],[4.042,-0.043],[1.063,0.01],[0.014,0.076],[-0.047,0.34],[0.732,0.103]],"v":[[74.214,151.396],[74.514,151.056],[74.969,150.731],[76.901,149.253],[77.924,149.103],[86.463,148.947],[90.586,149.28],[91.713,148.412],[93.534,146.96],[101.787,145.276],[102.895,144.648],[102.948,139.816],[101.52,138.699],[100.358,139.82],[98.594,140.533],[95.263,139.531],[94.481,140.908],[93.564,142.433],[92.531,142.484],[90.504,144.175],[85.956,147.33],[79.519,146.908],[72.73,147.153],[67.274,146.895],[58.418,146.956],[56.787,146.459],[51.53,145.233],[50.612,146.079],[49.748,146.886],[40.922,147.269],[39.922,147.491],[35.416,146.981],[32.496,147.043],[22.96,146.163],[22.227,146.211],[14.908,146.907],[11.364,148.975],[9.205,149.258],[0.754,149.344],[-0.131,149.787],[-4.841,151.083],[-5.744,152.169],[-11.695,156.142],[-12.897,157.316],[-14.137,156.893],[-22.357,156.745],[-25.258,158.655],[-26.361,161.152],[-27.017,162.184],[-28.991,165.075],[-29.46,165.57],[-33.586,171.911],[-33.027,173.432],[-31.995,172.478],[-27.643,168.668],[-25.597,166.962],[-27.18,166.549],[-23.765,165.838],[-21.195,164.108],[-23.049,162.897],[-23.592,162.667],[-24.727,161.876],[-23.844,161.205],[-22.96,160.046],[-21.26,158.961],[-21.45,160.622],[-21.468,162.426],[-19.808,163.138],[-17.613,161.839],[-16.278,161.198],[-12.821,160.352],[-11.727,160.044],[-9.136,158.48],[-4.769,156.608],[-2.509,152.3],[1.056,152.019],[3.214,152.479],[4.785,154.108],[4.923,157.209],[5.966,158.636],[6.855,156.907],[6.593,155.602],[7.545,151.353],[8.43,151.325],[9.045,152.893],[9.325,154.473],[11.156,153.797],[14.007,150.609],[17.197,149.799],[19.733,148.462],[21.633,148.601],[22.963,150.713],[23.248,152.372],[24.537,151.437],[26.012,149.543],[32.497,148.451],[38.969,148.68],[48.646,149.2],[57.353,149.005],[69.48,149.009],[72.104,150.38],[72.051,150.58],[71.918,151.537]],"c":true}},"nm":"P"},{"ind":157,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.24,0.257],[0,-0.889],[1.36,0.133],[1.829,-1.231],[0.381,-0.083],[0.126,-0.062],[0.292,-0.109],[0.844,0.031],[3.826,-0.332],[0.583,-1.009],[0.501,-0.03],[1.242,0.084],[0.915,0.184],[1.132,-0.033],[-0.521,-1.427],[0.002,-1.035],[0.072,-1.913],[-1.315,0.339],[-1.63,-0.779],[-2.353,0.888],[-2.439,0.351],[0.494,1.226],[-0.362,0.069],[-0.857,1.189],[-0.871,-0.215],[-0.591,0.152],[-0.246,0.006],[-3.147,0.424],[0,-22.821],[1.448,0.593],[0.458,-0.212],[2.151,-0.983],[-0.236,-0.667],[-0.492,0.103],[-0.551,0.208],[-3.355,-1.111],[0,-29.539],[1.92,-1.285],[0.089,0.039],[1.653,-1.788],[-0.359,-0.517],[-1.679,1.003],[-0.299,-0.206],[0.238,-0.231],[-0.389,-0.117],[-1.071,-0.583],[-0.233,0.271],[-0.746,1.035],[0,-0.889],[0.535,-0.04],[0.343,-1.262],[0.606,-0.634],[0.553,0.271],[2.034,-1.814],[-0.678,-0.718],[-1.567,1.959],[-0.78,-1.31],[-0.356,-0.588],[-1.133,0.591],[0.398,0.954],[-0.265,0.267],[-0.277,-0.106],[-0.689,-0.263],[0,-9.78],[0.641,0],[68.728,0.005],[4.936,0.019],[0.81,0.069],[1.76,-0.283],[2.508,-0.112],[1.574,-0.103],[0.162,-0.762],[0.493,0],[79.72,-0.036],[-0.003,1.215],[-0.008,16.448],[-0.015,6.568],[-0.83,0.762],[1.455,0.502],[0.848,-0.071],[0,2.19],[-1.739,0.812],[-0.316,-0.403],[0.29,-0.33],[-1.053,-0.86],[-1.36,-1.053],[-2.457,0.206],[-1.258,0.248],[2.053,-1.093],[-0.076,-0.569],[-0.51,-0.123],[-0.49,0.1],[-1.503,0.62],[-3.687,1.068],[-3.096,-0.022],[-0.191,0.862],[0.676,0.191],[0.628,0.57],[1.03,2.224],[0.729,0.165],[3.018,0.72],[3.296,0.756],[2.362,0.384],[0.792,0.505],[1.608,0.042],[-0.002,7.106],[-0.011,13.769],[-0.404,0.295],[-1.583,0.031],[0.717,-0.335],[0.865,-0.47],[-0.519,-0.514],[-4.349,0.736],[0.559,-0.366],[-0.154,-0.62],[-0.58,-0.074],[-1.894,1.34],[-0.516,0.377],[-0.49,-0.566],[0.322,-0.318],[0.599,-0.512],[-0.208,-0.618],[-0.814,0.203],[-1.051,-1.585],[-0.418,0.461],[-1.178,0.942],[-1.981,0.077],[0.518,-0.675],[-0.46,-0.079],[-0.554,0.719],[-1.545,-1.333],[-0.74,0.565],[0.479,0.752],[2.921,1.662],[2.471,0.442],[1.396,-1.623],[0.166,0.94],[0.534,0.487],[0.844,0.998],[3.434,0.301],[3.194,0.082],[1.156,0.043],[0.004,4.158],[-0.997,0.826],[0.092,0.505],[0.394,0.142],[0.965,-0.279],[0.002,6.823],[-3.934,-0.31],[-2.705,-1.682],[-0.372,0.436],[0.304,0.283],[2.786,0.908],[0.202,0.175],[-0.148,0.11],[0.209,0.588],[0.53,0.011],[1.012,-0.198],[0.265,-0.07],[0.993,0.234],[0.095,0.079],[1.555,-0.113],[0.154,0.007],[0.292,-0.042],[0.345,0.01],[0.506,-0.021],[-0.001,9],[-2.181,0.988],[-1.794,0.135],[-2.966,0.085],[-0.965,1.588],[-0.404,-0.039],[-0.971,1.115],[-0.466,-0.166],[0.157,0.923],[0.207,0.365],[1.224,2.306],[-1.077,0.139],[0.06,1.255],[-0.959,0.479],[-0.715,-0.654],[-1.453,0.504],[-2.036,-1.114],[-0.5,0.657],[0.546,0.504],[-1.33,1.102],[0.775,0.708],[-0.539,0.931],[0.553,1.004],[-0.588,0.685],[0.501,0.897],[0.695,-1.035],[0.609,0.313],[0.771,-0.769],[0.9,-0.686],[0.942,1.212],[-0.918,0.921],[-0.036,0.033],[0.78,0.536],[-0.556,0.726],[-0.835,0.247],[-0.495,0.67],[-2.841,0.427],[-0.06,2.415],[0.317,1.467],[-0.509,0.091],[-0.044,-0.489],[-0.027,-0.641],[-0.553,0.046],[-0.595,1.326],[-1.671,-1.055],[-0.597,1.518],[-0.15,0.672],[-0.463,0.182],[-0.258,2.006],[-0.384,0.594],[-0.396,-0.073],[-0.024,-0.281],[-1.215,-0.021],[-1.11,-3.313],[1.311,-0.638],[-0.996,-1.848],[-0.23,-1.645],[-0.415,-0.365],[0.791,-0.74],[-0.88,-0.322],[-1.216,-0.406],[-0.045,-0.518],[0.315,-0.21],[0.915,-0.584],[0.357,-1.013],[-1.901,0.221],[-1.183,0.514],[-0.88,-0.178],[-0.139,-0.607],[0.368,-0.217],[-0.079,-0.522],[-0.367,-0.136],[-0.986,0.089],[-0.128,-0.778],[0.48,-0.175],[3.171,1.095],[0.277,-0.682],[-0.437,-0.292],[-3.6,-0.048],[0.275,-2.222],[2.195,-0.031],[0.249,-0.387],[0.67,0.312],[1.307,-0.345],[-0.194,-0.259],[0.412,-0.565],[-0.312,-0.47],[-0.797,0.081],[0.027,0.542],[-0.74,-0.149],[-2.221,1.166],[-0.742,-0.888],[0.493,-0.771],[1.14,-1.095],[1.059,-1.688],[-0.498,-0.8],[-0.434,0.064],[-0.692,0.456],[-0.73,-0.979],[1.161,-0.876],[0.674,-0.259],[0.028,-0.586],[-0.719,-0.254],[-2.086,0.293],[0,0],[-1.513,-2.512],[0,0],[0.673,-1.468],[-1.299,-0.081],[-0.983,-0.86],[1.67,-1.595],[0.301,-0.145],[-0.604,-0.608],[-1.063,-0.509],[0.746,-0.608],[-0.166,-0.739],[-1.124,-0.236],[-1.168,0.208],[-0.134,-0.699],[2.097,1.713],[-0.28,0.263],[0.128,0.48],[0.325,0.052],[1.149,0.811],[5.031,-0.233],[0.5,-0.229],[0.484,-0.001],[3.947,-0.015],[1.969,-0.779],[0.7,0.389],[0.557,-0.023],[0.522,-0.057],[0.17,-0.632],[-0.448,-0.311],[-0.43,-0.709],[1.616,-0.208],[0.049,-0.779],[-0.547,-0.164],[-0.362,0.075],[-3.351,-0.513],[-0.867,-0.128],[0.768,-0.005],[1.085,-0.005],[0.357,-0.5],[0.749,0.041],[1.175,-0.403],[-0.587,-1.172],[-2.126,0.538],[-0.195,-0.747],[-0.683,0.408],[-0.473,-1.54],[-0.746,0.132],[-0.42,1.138],[0.731,0.543],[0.345,0.913],[-1.089,-0.42],[-1.193,1.676],[-1.27,0.185],[-0.949,0.255],[-0.692,0.712],[-0.389,0.035],[-0.248,-0.169],[-0.033,-0.375],[0.112,-0.053],[1.299,-1.853],[-0.705,-0.174],[-0.892,-1.697],[-0.413,-0.608],[-2.146,0.352],[-2.688,-0.377],[-0.176,0.736],[-2.525,0.354],[-2.82,1.183],[0.861,1.215],[-0.44,-0.028],[-1.563,0.737],[-0.644,4.109],[0.489,1.769],[0.715,-2.291],[0.64,-1.758],[-1.511,-0.444],[0.3,-0.724],[-2.356,-0.195],[-0.296,-0.01],[-4.912,1.775],[-2.176,-0.83],[-1.897,-0.734],[-0.012,-1.603],[0.486,0.663],[2.075,0.396],[2.419,-0.997],[3.741,0.157],[2.323,-1.05],[-0.807,-1.682],[-0.952,0.573],[-0.652,1.26],[-0.436,-0.332],[0.249,-0.288],[0.489,-0.489],[-0.535,-1.326],[-1.34,-0.043],[-0.525,1.271],[-0.168,0.463],[-1.488,-1.085],[-0.412,0.711],[-0.708,-0.445],[-0.792,0.308],[-0.035,0.817],[0.014,0.542],[-0.472,0.335],[-0.381,-0.379],[-2.015,-0.509],[-0.619,0.798],[-1.531,-0.514],[-2.018,0.123],[0.544,0.784],[0.968,0.75],[-0.316,0.511],[-0.371,-0.308],[-0.788,-2.057],[0.667,-0.392],[1.35,0.715],[0.632,0.275],[0.143,-0.548],[0.94,0.009],[1.64,-1.576],[0.151,0.328],[0.17,0.355],[0.429,-0.046],[0.146,-0.309],[-1.167,-1.191],[-0.964,-0.921],[1.196,-0.325],[0.582,-1.715],[2.425,-0.932],[0.876,-0.451],[-0.09,-0.626],[-0.46,-0.114],[-1.918,-0.099],[-1.022,-1.344],[0.784,0.147],[2.757,0.219],[3.1,-0.025],[1.631,-1.082],[0.325,-0.105],[-0.764,-1.75],[-2.192,0.04],[-0.775,-0.618],[-2.893,-0.694],[-4.138,0.527],[-0.96,2.257],[-0.794,-0.377],[0.311,-0.742],[0.601,0.078],[-0.535,-1.095],[-0.457,-0.761],[1.103,-0.702],[-0.045,-0.576],[1.314,-0.536],[0.261,-0.341],[-0.263,-1.025],[-0.757,-0.191],[-0.385,0.016],[-0.26,-1.167],[-1.29,0.156],[1.654,-2.847],[0.423,-2.37],[-0.092,-0.089],[0.008,-1.233],[-0.412,-0.342],[0.037,-1.462],[-1.603,-1.083],[0.112,-0.409],[0.337,-0.026],[0.886,0.022],[-0.461,-1.085],[-1.149,-0.844],[0.767,-1.092],[1.456,0.925],[0.405,-1.159],[0.783,0.031],[0.272,0.68],[0.203,0.557],[1.168,-0.839],[0.773,-0.347],[0.673,-1.166],[1.272,-0.371],[0.166,-1.222],[0.506,-1.612],[-1.301,-1.484],[-1.582,-5.021],[-0.982,-1.583],[-0.48,0.65],[-1.136,1.957],[-2.454,-0.169],[0.874,-0.699],[-0.681,-0.611],[-0.55,0.772],[-0.792,-0.704],[-0.632,-0.543],[-0.57,2.422],[-0.383,0.012],[-0.123,-0.57],[-0.752,0.468],[-1.145,-0.3],[-0.422,0.111],[0.256,0.446],[0.98,0.09],[1.047,0.414],[0.858,0.896],[-2.727,0.719],[-0.191,-0.002],[-1.495,0.001],[-1.513,-0.834],[-0.659,0.621],[-1.33,0.219],[-0.951,-1.308],[-0.19,-1.972],[-0.33,0.165],[-0.405,0.021],[0.512,1.365],[0.147,0.412],[-0.487,0.445],[-0.609,-0.159],[-0.017,-0.861],[-0.043,-0.489],[-0.469,-0.01],[-0.027,0.416],[0.164,0.779],[-0.654,0.083],[-0.202,-0.353],[-0.733,0.193],[-0.073,0.456],[0.154,1.415],[-0.28,-0.086],[-1.357,0.762],[1.196,0.752],[1.709,-0.813],[-1.149,-1.665],[0.779,0.031],[-0.286,0.645],[1.306,0.885],[-0.693,-0.026],[-0.27,0.73],[-1.7,-1.783],[-0.435,0.528],[-0.917,-0.643],[-0.612,0.586],[0.497,0.93],[-0.939,0.568],[1.045,0.222],[0.969,0.133],[0.198,1.197],[-0.002,0.259],[0.003,0.139],[1.191,0.481],[-0.59,0.411],[-0.148,0.524],[2.373,0.444],[1.691,1.062],[0.339,0.202],[-0.156,0.584],[-0.78,0.17],[-1.605,0.237],[-0.138,1.527],[-0.163,0.025],[-2.42,-0.534],[1.342,-0.253],[0.301,-0.49],[0.182,-0.69],[0.615,0.152],[1.991,-0.735],[0.062,-0.514],[-0.331,-0.232],[-0.269,-0.044],[-0.405,-1.277],[-0.729,-0.043],[-0.364,0.586],[-0.055,0.137],[-1.16,0.053],[-1.488,-1.449],[-0.767,0.394],[0.226,0.851],[-0.537,0.003],[-2.572,0],[-0.208,-0.72],[-0.491,0.077],[-2.347,0.009],[-0.852,-0.464],[-0.722,0.468],[-0.384,0.307],[-0.532,0.35],[-0.401,-0.579],[0.28,-0.412],[0.123,-0.153],[-0.287,-0.647],[-0.604,-0.057],[-1.099,2.378],[-1.68,-0.082],[-4.309,0.046],[-1.614,-0.057],[-2.987,0.643],[-0.239,-0.307],[0.265,-0.145],[-0.474,-0.774],[-0.67,0.091],[-1.022,0.146],[-0.253,-0.662],[-1.165,0.412],[-0.833,0.039],[-0.436,0.57],[-0.187,0.532],[-0.504,-0.29],[-1.121,0.364],[-0.202,-0.064],[-0.487,0.423],[-0.809,-0.085],[-1.613,-0.313],[-0.641,-0.846],[0.394,-0.036],[3.376,-0.302],[2.709,-0.658],[1.138,-0.341],[0.423,0.024],[0.843,-0.051],[1.015,-0.068],[0.27,-1.606],[0.375,-1.558],[-0.318,-0.192],[-0.253,0.135],[-1.061,1.467],[-0.193,0.105],[-1.293,0.325],[-0.581,-0.014],[-0.231,0.01],[-0.147,0.017],[0.823,-0.935],[-0.757,-0.711],[-0.702,0.712],[-1.674,0.836],[-0.15,-0.61],[-0.904,0.163],[-0.395,-0.756],[0.314,-0.53],[0.116,-0.091],[-0.179,-0.523],[-0.587,-0.06],[-0.673,0.833],[-1.339,-0.199],[-0.533,0.648],[-0.877,-0.439],[-1.16,0.004],[-4.879,-0.37],[-1.941,0.484],[-0.143,0.604],[0.386,0.229],[1.932,-0.121],[7.38,0.089],[-0.897,0.135],[-1.427,0.519],[-0.421,1.684],[-1.781,-0.251],[-2.037,0.808],[-1.867,0.069],[-3.037,-0.249],[-1.821,0.543],[1.734,0.067],[1.855,-0.267],[10.035,-0.045],[0.492,0.924],[-0.481,0.034],[-1.223,-0.034],[-6.97,0.989],[-0.671,-0.116],[-2.325,0.538],[-0.028,0.672],[0.5,0.121],[0.487,-0.022],[1.669,-0.101],[3.156,-0.044],[3.22,0.335],[3.119,-0.181],[0.459,-0.321],[0.514,0.41],[-0.753,-0.012],[-1.684,2.15],[-0.948,-0.003],[-0.704,-0.255],[-0.883,-0.258],[-3.765,0.278],[-0.607,0.176],[0.017,0.422],[0.306,0.096],[0.79,-0.004],[2.786,-0.415],[1.657,0.068],[0.802,0.607],[-0.824,0.556],[0.63,0.644],[1.915,-2.184],[1.853,0.017],[-1.355,0.153],[1.216,3.407],[0.014,0.097],[-0.513,0.743],[-1.544,-0.513],[-0.844,0.576],[0.092,0.513],[0.454,0.059],[0.589,0.115],[-0.029,1.702],[-0.333,-0.198],[-0.456,0.643],[0.458,0.41],[0.823,0.096],[-0.444,1.063],[1.359,0.166],[0.492,0.004],[0.261,-0.01],[-0.264,0.238],[-1.403,1.825],[-0.004,0.998],[0.648,0.351],[0.543,-0.437],[0.345,-0.278],[0.326,0.823],[0.367,1.019],[0.727,0.01],[0.22,-0.768],[0.859,-0.229],[0.548,0.594],[0.472,-0.613],[0.078,-0.744],[0.252,1.312],[-0.037,0.258],[-0.722,0.623],[-1.107,0.384],[-4.363,0.714],[-0.039,-0.553],[0.994,-0.319],[0.437,-1.067],[0.002,-0.737],[-0.776,0.254],[-1.137,-0.302],[-0.276,0.389],[-1.303,-0.839],[-1.185,1.15],[-0.253,-0.372],[-1.33,0.314],[-0.013,-2.134],[-0.242,-3.985],[0.016,-0.539],[0.531,-2.018],[0.964,-2.38],[0.426,-1.21],[-0.463,-0.22],[-0.246,0.3],[-0.598,1.616],[-0.379,-0.029],[-0.13,-0.298],[-0.936,-1.915],[-0.926,0.139],[0.04,0.716],[0.113,0.371],[-0.097,2.228],[-0.359,5.629],[0.026,0.294],[-0.001,3.107],[-0.233,0.431],[-0.349,-0.257],[-0.678,1.784],[-0.807,-0.213],[-0.433,1.112],[1.792,1.908],[-0.467,-0.211],[0.101,-1.387],[-0.842,-0.245],[0.269,1.968],[-0.128,0.486],[-1.831,1.987],[-0.254,-0.578],[-0.925,-0.98],[-0.044,1.004],[-0.03,5.672],[1.603,-0.208],[0.278,0.556],[-0.26,0.361],[-1.318,0.933],[-0.457,-0.392],[-1.619,1.225],[-0.94,-0.396],[-0.477,-0.109],[0.271,1.333],[-1.003,0.151],[-1.276,0.646],[-2.359,-0.127],[0.412,-0.262],[0.707,-0.817],[-0.294,-0.44],[-0.456,0.092],[-1.705,1.408],[-0.175,0.076],[-0.333,-0.914],[-1.271,-0.595],[-0.15,-0.646],[-0.861,0.163],[-0.122,0.673],[0.179,0.41],[0.113,0.574],[-0.398,0.3],[-0.376,-0.203],[-1.033,-0.23],[-0.384,0.501],[0.274,0.574],[0.364,0.693],[-0.419,0.376],[-0.337,-0.317],[-0.429,-0.476],[-1.862,0.314],[-0.128,0.48],[0.305,0.25],[0.546,0.42],[-0.655,0.307],[0.169,0.725],[0.671,0.139],[2.029,-0.73],[0.282,0.382],[-0.931,1.05],[0.145,0.582],[0.534,-0.011],[-0.139,0.701],[0.63,0.35],[0.519,-0.358],[0.95,-2.167],[0.847,0.313],[2.922,-0.099],[1.257,0.364],[0.167,-0.92],[-0.902,-0.055],[-0.74,-0.016],[-0.583,-0.974],[1.341,-0.04],[1.122,-0.782],[-0.809,-0.31],[0.384,-0.52],[2.604,-0.293],[1.418,-0.376],[1.52,-2.838],[0.345,-0.139],[0.462,-3.105],[0.298,-0.003],[0.053,0.232],[-0.026,0.386],[-0.228,2.746],[-0.617,-0.253],[0.086,-0.283],[-0.326,-1.057],[-0.878,0.725],[-0.696,0.766],[0.943,0.368],[0.885,1.299],[-1.033,0.771],[-0.449,0.301],[0.184,0.671],[0.555,0.007],[0.836,-1.423],[1.28,-0.228],[0.04,-0.589],[-0.109,-2.346],[0.706,-2.473],[-0.265,-0.398],[0.137,-0.692],[-0.116,-3.25],[-0.723,-0.326],[-0.647,0.064],[0.167,-0.473],[1.479,0.383],[0.578,0.115],[0.106,-0.361],[-0.294,-0.087],[-1.366,-0.423],[0.22,-0.571],[0.962,-0.33],[0.141,0.637],[0.516,0.157],[0.549,0.184],[0.173,0.04],[0.214,-0.01],[0.678,-0.167],[0.707,-0.185],[0.324,-0.001],[2.17,-1.376],[1.064,0.478],[-0.29,0.117],[0.799,3.365],[0.368,1.276],[-0.46,0.32],[-0.45,-0.218],[-0.526,0.531],[0.332,0.459],[0.222,1.189],[0.886,-0.893],[0.688,0.486],[-0.432,0.75],[0.424,0.805],[-0.951,0.639],[-1.773,1.153],[0.458,2.519],[-1.172,2.276],[-0.281,-1.02],[-1.087,-0.3],[0.018,-0.778],[0.518,-0.083],[-1.133,-2.329],[0.703,-0.201],[0.73,-0.291],[0.745,-1.028],[-0.241,-0.613],[-0.596,-0.034],[-0.861,0.265],[-2.386,-0.907],[-0.167,1.047],[0.567,2.13],[-0.11,1.919],[0.588,2.566],[-0.005,0.09],[-0.021,0.134],[-0.009,0.324],[0.067,0.534],[0.706,1.749],[1.916,1.517],[0.339,0.888],[-0.227,0.014],[-0.746,1.509],[-1.286,1.019],[-0.375,-1.114],[-0.097,-0.379],[1.242,-1.38],[-0.461,-0.494],[-0.597,0.383],[-0.476,0.35],[-0.338,-1.199],[-1.956,-0.248],[-0.155,-0.281],[-1.13,-0.548],[-0.047,1.411],[0.127,1.321],[0.877,0.054],[0.173,-0.702],[0.812,0.065],[0.162,0.713],[0.41,2.124],[-2.649,2.248],[-0.465,1.338],[0.476,0.18],[0.254,-0.305],[0.366,-0.675],[0.151,0.899],[0.151,0.972],[0.602,-0.071],[0.065,-0.594],[-0.029,-0.092],[0.867,-1.909],[0.786,0.155],[0.048,0.56],[0.561,1.321],[1.749,-2.211],[-0.004,1.091],[0.017,3.111],[1.034,0.868],[1.017,-5.684],[-0.142,2.098],[0.632,1.368],[0.367,-0.069],[-0.004,-0.299],[-0.048,-0.785],[0.355,-2.86],[0.96,2.829],[2.611,-0.162],[-0.3,2.38],[0.329,1.004],[0.515,1.383],[0.466,0.132],[0.057,1.586],[0.978,-0.756],[0.581,-0.533],[0.355,0.288],[-0.185,0.271],[-0.929,1.108],[1.091,1.338],[-0.184,0.075],[-1.399,0.127],[0.409,-0.332],[-0.719,-0.76],[-0.846,0.914],[-0.133,0.78],[-0.561,0.336],[-0.037,-0.712],[-1.329,-0.449],[0.959,-0.944],[-0.391,-2.623],[-0.846,0.465],[-3.309,1.409],[1.959,3.022],[-0.012,0.269],[-1.789,-0.914],[-1.484,-0.345],[-0.152,0.562],[0.37,0.197],[2.41,0.873],[1.097,-0.773],[0.651,-0.377],[0.584,-0.03],[-0.095,0.576],[-0.078,-0.001],[-0.894,-0.35],[-0.172,0.364],[0.234,0.192],[0.05,0.746],[0.023,1.191],[0.576,3.234],[-0.288,0.143],[-0.322,-0.684],[-0.762,-0.117],[0.431,0.407],[0.231,1.038],[-1.464,1.819],[-0.642,2.493],[-0.217,0.758],[-0.713,-0.09],[0.032,-0.493],[-0.62,-2.537],[0.01,-1.419],[-0.067,-2.433],[0.06,-3.512],[-1.117,0.011],[-0.488,0.006],[0.964,-0.048],[0.247,-0.888],[-0.608,-0.383],[-0.366,-0.139],[-0.291,-0.805],[-0.339,-0.703],[2.661,-2.169],[0.204,-2.471],[0.14,-4.433],[-0.223,-0.379],[-0.011,-0.298],[-0.013,-0.443],[0.182,-2.195],[0.056,-1.726],[-1.238,0.248],[-1.383,0.365],[-1.122,-1.199],[-0.725,0.116],[-3.051,1.53],[0.119,1.02],[-2.307,0.672],[-2.437,0.356],[-3.261,-0.885],[-1.782,0.33],[-0.198,-0.646],[-1.778,0.856],[-2.491,0.164],[0.168,0.915],[-0.203,1.363],[0.934,0.058],[0.397,-1.038],[0.344,-0.818],[0.744,0.176],[-0.116,0.533],[0.965,0.425],[1.944,3.25],[0.575,-0.059],[0.222,-0.379],[-0.228,-0.591],[-0.214,-0.758],[0.933,0.322],[0.732,1.07],[-0.833,0.765],[0.383,0.501],[0.668,0.429],[-0.111,1.825],[2.636,0.419],[-0.3,1.023],[-0.018,1.986],[-1.965,0.702],[-1.408,0.234],[-0.665,-1.033],[-0.156,-0.309],[-0.929,0.077],[0.008,0.566],[-1.007,-0.189],[-0.776,0.183],[0.791,0.827],[0.997,0.667],[-0.101,0.505],[-0.366,0.099],[-0.633,0.076],[-2.406,0.497],[-1.29,0.449],[-1.128,-0.086],[-0.811,0.948],[-1.381,-0.3],[-1.07,-1.423],[-0.937,1.294],[-0.191,1.777],[-0.096,2.512],[-3.409,1.493],[-0.105,1.206],[-0.769,2.782],[0.794,3.088],[2.201,1.721],[1.504,1.787],[-1.14,1.054],[0.376,0.135],[0.407,-0.397],[-0.29,-0.588],[2.215,-0.655],[1.136,0.781],[0.222,-0.872],[0.354,-1.794],[1.324,-1.914],[1.151,0.763],[1.003,-1.145],[0.669,0.505],[-0.319,0.676],[0.748,2.249],[0.905,-0.039],[0.1,-0.702],[-0.253,-2.206],[1.148,0.225],[-0.351,0.793],[1.01,1.702],[-0.703,0.981],[-0.953,2.89],[-2.061,3.994],[2.338,1.383],[-1.323,0.89],[-1.329,0.352],[-0.027,-0.329],[0.143,-0.097],[0.246,-0.161],[-0.218,-0.467],[-0.398,0.079],[-0.404,0.177],[-0.592,0.246],[-0.256,-0.362],[0.26,-0.261],[0.58,-0.607],[-0.697,-0.37],[0.731,-0.629],[1.141,-1.494],[-0.548,-1.454],[0,0],[0,0],[-3.095,2.583],[0.418,-0.712],[0.202,-1.142],[-0.377,-0.306],[-0.343,0.236],[-0.574,0.463],[-0.59,-0.303],[0.179,-0.733],[-0.828,-0.536],[-0.804,0.547],[0.093,2.535],[-0.721,0.575],[-0.552,-0.226],[-0.541,0.901],[-0.328,1.53],[-0.679,-0.018],[-0.048,-0.434],[-1.63,-1.261],[-0.823,0.363],[0.042,1.822],[-0.923,0.253],[-1.156,-1.69],[-1.013,0.217],[-0.105,1.071],[-0.076,0.154],[-0.585,0.098],[-1.39,-0.266],[0.518,1.706],[0.531,0.783],[-0.549,0.51],[-0.581,-0.525],[-1.372,-1.42],[-2.296,0.117],[0.545,0.939],[0.722,0.694],[1.243,1.335],[-0.555,0.678],[-0.493,-0.336],[-1.471,-0.891],[-0.431,-1.688],[-2.351,-2.243],[-0.903,0.499],[0.201,1.018],[2.277,2.77],[1.248,1.892],[-0.432,0.005],[-0.153,0.327],[0.251,0.209],[0.938,0.457],[6.75,-0.507],[2.195,-1.119],[-0.088,-0.483],[-0.314,-0.099],[-0.466,-0.706],[1.371,0.868],[-1.364,0.13],[0.247,0.839],[-0.758,-0.384],[-1.612,0.615],[-5.909,-1.145],[-0.292,0.912],[0.616,0.394],[2.993,0.045],[2.601,-1.07],[0.119,0.429],[-0.128,0.418],[-0.434,-0.223],[-1.137,0.654],[-1.21,-0.345],[-0.028,0.704],[0.605,0.727],[-0.264,0.456],[0.002,1.109],[0.369,0.021],[0.041,-0.324],[0.015,-0.197],[0.746,0],[0.053,0.635],[-1.097,1.987],[0.442,0.733],[-0.054,1.155],[1.282,0.116],[0.009,1.055],[1.979,-0.774],[0.817,-0.856],[0.743,0.044],[0.951,0.979],[-0.136,0.716],[0.057,0.178],[0.566,1.19],[-1.342,2.404],[0.059,0.529],[2.936,1.599],[0.367,3.498],[0.72,-0.02],[1.147,0.108],[0.086,-0.466],[0.583,-0.78],[0.79,0.699],[-0.933,0.669],[1.358,1.907],[0.21,0.386],[-0.873,0.316],[-0.501,-1.113],[-0.586,0.094],[-0.064,0.453],[-0.292,0.167],[-0.253,-0.218],[-1.726,-1.054],[-0.393,0.364],[0.186,0.367],[2.035,2.393],[-0.153,1.527],[-0.257,0.076],[-0.128,-0.266],[-0.411,-1.003],[-1.718,-1.061],[-0.324,-1.504],[-0.132,-0.424],[-2.442,0.927],[-0.761,-0.244],[-2.608,-1.335],[-2.124,-2.31],[-0.58,0.224],[0.121,0.446],[1.574,1.404],[2.61,1.561],[-0.148,0.466],[-0.43,-0.097],[0.014,0.942],[0.139,0.514],[0.055,2.037],[0.165,1.978],[1.528,0.205],[1.048,1.992],[-0.146,4.082],[0.944,0.268],[0.74,-2.195],[0.891,0.458],[1.123,0.941],[0.631,-0.979],[0.182,-0.605],[0.999,-1.032],[1.802,0.83],[0.937,-0.229],[0.729,1.124],[0.705,-0.62],[0.999,1.531],[0.558,0.167],[-0.096,0.769],[-0.836,1.037],[0.767,0.606],[-0.772,1.356],[1.66,0.373],[2.857,0.191],[0.308,0.719],[-33.852,0.026],[0.004,-1.151],[0,-14.31],[0.183,-0.217],[0.592,-2.114],[-2.096,-0.006],[-0.717,-0.95],[0,-41.097],[0.907,-1.558],[0.552,-0.091],[0.24,0.403],[0.642,0.927],[0.735,-0.229],[-0.076,-0.807],[-0.114,-0.526],[0.255,-0.599],[1.809,-1.335],[1.06,0.595],[0.654,-0.92],[-0.745,-0.6],[-0.281,-0.601],[-0.093,-0.042],[0,0],[-1.71,0.293],[-1.092,-0.508],[-1.462,0.471],[-1.773,0.604],[0,-0.889],[1.134,-0.5],[0.294,-0.029],[0.145,-0.018],[5.297,0.03],[1.052,-1.523],[-0.311,-0.31],[-0.262,0.117],[-2.45,0.512],[-0.199,-0.29],[0.155,-0.299],[0.769,-1.542],[-0.507,-0.495],[-0.608,0.234],[-0.275,0.207],[-0.794,0.581],[0.063,-0.848],[-0.89,-0.359],[-0.601,0.412],[-1.411,1.444],[-0.503,-0.775],[-0.332,-0.489],[-1.526,0.148],[0,-15.016],[0.448,0.151],[1.61,-0.436],[0.85,-0.106],[2.826,-2.802],[0.847,-0.468],[-0.099,-0.357],[-0.276,-0.046],[-0.442,-0.013],[-2.269,-0.263],[-2.237,0.188],[-0.232,1.49],[-0.931,0.083],[-0.615,0.18],[0,-7.212],[0.341,0.146],[3.436,-0.857],[-0.496,-0.16]],"o":[[0,0.889],[-1.357,-0.163],[-1.906,-0.187],[-0.381,0.083],[-0.126,0.062],[-0.292,0.11],[-0.827,-0.028],[-3.827,-0.14],[-1.032,0.09],[-0.501,0.03],[0.428,-1.01],[-0.918,-0.062],[-1.057,-0.213],[-1.552,0.045],[0.369,1.011],[-0.003,1.916],[-0.047,1.245],[1.589,-0.409],[2.06,0.985],[2.251,-0.849],[1.285,-0.185],[-0.143,-0.354],[1.691,-0.321],[0.433,-0.601],[0.585,0.144],[0.246,-0.006],[3.002,1.414],[0,22.821],[-1.602,-0.218],[-0.441,-0.181],[-2.147,0.991],[-0.449,0.205],[0.214,0.604],[0.575,-0.12],[3.214,-1.214],[0,29.539],[-1.88,0.482],[-0.036,0.024],[-2.276,-0.99],[-0.373,0.403],[1.138,1.641],[0.256,-0.153],[0.333,0.229],[-0.256,0.248],[1.218,0.367],[0.247,0.135],[0.817,-0.95],[0,0.889],[-0.529,0.112],[-0.956,0.072],[-0.197,0.726],[-0.357,0.373],[-2.66,-1.306],[-0.779,0.694],[1.505,1.595],[0.959,-1.199],[0.352,0.591],[0.795,1.311],[1.351,-0.705],[-0.108,-0.259],[0.242,-0.244],[0.689,0.263],[0,9.78],[-0.641,-0.01],[-68.728,-0.003],[-4.936,0],[-0.305,-0.632],[-1.767,-0.151],[-2.511,0.403],[-1.575,0.07],[-0.698,0.046],[-0.493,0.022],[-79.72,0.006],[-1.251,0.001],[0.046,-16.448],[0.003,-6.568],[0.968,-0.443],[1.118,-1.027],[-0.779,-0.269],[0,-2.19],[1.732,-0.827],[0.38,-0.177],[0.427,0.545],[-1.044,1.189],[1.345,1.099],[1.941,1.503],[1.27,-0.106],[-1.781,1.654],[-0.386,0.205],[0.074,0.553],[0.491,0.119],[1.61,-0.33],[3.555,-1.466],[2.933,-0.85],[0.565,0.004],[0.175,-0.792],[-0.177,-1.12],[-1.815,-1.647],[-0.245,-0.529],[-3.026,-0.686],[-3.289,-0.784],[-2.096,-1.141],[-0.951,-0.155],[-1.506,-0.961],[-0.011,-7.106],[0.003,-13.77],[0.419,0.059],[1.397,-1.02],[-0.005,0.863],[-0.893,0.417],[-0.4,0.217],[2.168,2.144],[-0.366,0.929],[-0.486,0.318],[0.152,0.613],[2.245,0.285],[0.522,-0.369],[0.359,-0.263],[0.444,0.512],[-0.559,0.553],[-0.442,0.378],[0.272,0.809],[2.027,-0.506],[0.286,0.431],[1.055,-1.164],[1.509,-1.207],[0.342,-0.013],[-1.122,1.463],[1.022,0.176],[1.247,-1.617],[0.576,0.497],[0.755,-0.577],[-1.754,-2.757],[-2.119,-1.295],[-1.87,-0.335],[-0.886,1.03],[-0.126,-0.712],[-0.028,-1.232],[-1.855,-2.195],[-3.161,-0.277],[-1.11,-0.566],[-0.004,-4.158],[1.355,-0.052],[0.346,-0.287],[-0.11,-0.601],[-1.13,-0.408],[-0.002,-6.823],[3.941,0.165],[3.012,0.237],[0.369,0.23],[0.412,-0.483],[-1.995,-1.859],[-0.163,-0.053],[0.191,-0.175],[0.402,-0.298],[-0.233,-0.655],[-1.061,-0.023],[-0.265,0.07],[-1.02,0.047],[-0.095,-0.079],[-0.705,-1.638],[-0.154,-0.007],[-0.198,-0.227],[-0.345,-0.01],[-0.388,-0.427],[0.001,-9],[1.816,-1.621],[1.705,-0.772],[2.946,-0.222],[1.494,-0.043],[0.216,-0.356],[1.297,0.124],[0.322,-0.369],[1.132,0.404],[-0.074,-0.434],[-1.278,-2.256],[-0.576,-1.084],[1.288,-0.167],[-0.068,-1.427],[0.934,-0.466],[1.064,0.973],[2.026,-0.702],[0.64,0.35],[0.467,-0.613],[-1.476,-1.363],[0.773,-0.64],[-0.96,-0.878],[0.678,-1.172],[-0.431,-0.782],[0.695,-0.81],[-0.616,-1.104],[-0.437,0.651],[-1.078,-0.554],[-0.801,0.799],[-1.312,0.999],[-1.225,-1.577],[0.035,-0.035],[0.694,-0.631],[-1.027,-0.706],[0.556,-0.726],[0.884,-0.262],[1.836,-2.485],[2.368,-0.356],[0.037,-1.479],[-0.082,-0.38],[0.558,-0.1],[0.058,0.638],[0.017,0.409],[1.122,-0.094],[0.809,-1.804],[1.388,0.876],[0.251,-0.639],[0.106,-0.475],[1.968,-0.773],[0.088,-0.681],[0.182,-0.282],[0.374,0.07],[0.102,1.208],[3.453,0.059],[0.441,1.318],[-2.002,0.974],[0.78,1.447],[0.075,0.536],[0.881,0.776],[-0.823,0.77],[1.203,0.44],[0.347,0.116],[0.038,0.436],[-0.904,0.602],[-0.904,0.577],[-0.635,1.8],[1.288,-0.15],[0.853,-0.37],[0.641,0.13],[0.14,0.61],[-0.317,0.186],[0.067,0.445],[0.97,0.36],[0.612,-0.055],[0.116,0.706],[-3.208,1.169],[-0.53,-0.183],[-0.223,0.549],[3.078,2.059],[2.244,0.03],[-2.206,0],[-0.444,0.006],[-0.449,0.697],[-1.28,-0.597],[-0.309,0.082],[0.785,1.046],[-0.326,0.448],[0.462,0.696],[0.473,-0.048],[-0.063,-1.273],[2.23,0.45],[1,-0.525],[0.752,0.9],[-0.855,1.339],[-1.427,1.371],[-0.439,0.699],[0.237,0.381],[0.887,-0.13],[0.695,-0.458],[0.683,0.916],[-0.362,-0.722],[-0.482,0.185],[-0.038,0.805],[1.3,2.257],[0,0],[-1.668,1.03],[0,0],[-1.684,-1.171],[-0.538,1.172],[0.631,0.039],[-3.081,0.127],[-0.248,0.236],[-0.969,0.465],[0.862,0.868],[1.302,0.624],[-1.117,0.91],[0.214,0.953],[1.141,0.239],[-0.104,0.738],[-2.506,0.001],[0.264,-0.28],[0.269,-0.252],[-0.094,-0.352],[-1.424,-0.23],[-0.952,-5.054],[-0.501,-0.307],[-0.425,-0.352],[-3.947,0.008],[-1.915,0.063],[-0.712,0.282],[-0.485,-0.27],[-0.529,-0.009],[-0.485,0.053],[-0.132,0.491],[-0.03,0.911],[0.848,1.398],[-0.425,0.055],[-0.039,0.624],[0.37,0.111],[3.383,-0.703],[0.867,0.128],[-0.48,0.675],[-1.085,0.006],[-0.546,0.002],[-0.511,0.716],[-1.25,-0.068],[-0.543,0.186],[0.427,0.852],[0.525,-0.133],[0.443,1.698],[1.388,-0.828],[0.175,0.571],[1.161,-0.205],[0.386,-1.046],[-0.578,-0.429],[1.418,0.129],[1.903,0.734],[0.721,-1.013],[0.972,-0.142],[0.834,-0.224],[0.389,-0.034],[0.248,0.169],[-0.317,0.245],[-0.112,0.053],[-2.307,0.605],[-0.245,0.349],[1.918,-0.089],[0.342,0.651],[0.99,1.458],[2.59,-0.424],[0.642,0.09],[2.543,-0.224],[3.02,-0.424],[1.19,-0.499],[0.438,0.069],[1.55,0.1],[3.732,-1.76],[0.286,-1.827],[1.906,1.398],[-0.556,1.784],[-0.521,1.433],[0.309,0.736],[-0.91,2.196],[0.295,0.024],[5.228,0.179],[2.12,-0.766],[1.867,0.712],[2.127,0.823],[-0.834,-0.227],[-1.384,-1.89],[-2.404,-0.459],[-3.505,1.444],[-2.549,-0.107],[-1.7,0.768],[0.46,0.958],[1.135,-0.684],[0.186,-0.36],[0.432,0.329],[-0.451,0.522],[-0.887,0.887],[0.555,1.374],[1.338,0.043],[0.188,-0.454],[0.656,-1.804],[0.459,0.334],[1.041,-1.796],[0.508,0.32],[0.847,-0.33],[0.023,-0.54],[-0.011,-0.419],[0.506,-0.359],[1.542,1.536],[0.864,0.218],[1.17,-1.508],[1.8,0.605],[0.972,-0.059],[-0.734,-1.059],[-0.27,-0.209],[0.235,-0.38],[1.579,1.31],[0.18,0.471],[-1.2,0.706],[-0.61,-0.323],[-0.459,-0.2],[-0.371,1.421],[-1.881,-0.018],[-0.333,0.321],[-0.165,-0.358],[-0.145,-0.302],[-0.391,0.042],[-0.672,1.423],[0.933,0.953],[0.867,0.828],[-1.72,0.468],[-0.75,2.209],[-0.92,0.354],[-0.466,0.24],[0.085,0.588],[1.9,0.469],[1.572,0.081],[-0.761,0.375],[-2.717,-0.51],[-3.118,-0.248],[-2.03,-0.516],[-0.338,0.067],[-1.844,0.598],[0.843,1.93],[1.07,-0.02],[2.332,1.861],[4.014,0.962],[1.744,-0.222],[0.422,1.137],[0.613,0.291],[-0.293,0.699],[-1.183,-0.154],[0.388,0.795],[0.582,0.969],[-0.466,0.297],[0.122,1.558],[-0.393,0.16],[-0.595,0.777],[0.284,1.109],[0.382,0.096],[1.411,-0.057],[0.272,1.22],[3.595,-0.436],[-1.219,2.097],[-0.023,0.126],[1.01,0.978],[-0.004,0.549],[1.359,1.128],[-0.047,1.842],[0.291,0.197],[-0.107,0.389],[-0.885,0.067],[-1.317,-0.033],[0.549,1.294],[1.683,1.236],[-1.001,1.425],[-0.915,-0.581],[-0.242,0.692],[-0.813,-0.032],[-0.219,-0.549],[-0.487,-1.339],[-0.637,0.458],[-1.187,0.533],[-0.511,0.885],[-1.238,0.361],[-0.232,1.705],[-0.669,2.131],[3.342,3.813],[0.181,1.75],[0.4,0.645],[1.341,-1.814],[1.504,-0.985],[-0.794,1.081],[-0.628,0.503],[0.531,0.477],[0.654,-0.919],[0.623,0.553],[1.78,1.529],[0.383,-0.012],[0.029,0.59],[0.198,0.914],[1.152,-0.718],[0.399,0.105],[0.442,-0.116],[-0.471,-0.822],[-1.176,-0.108],[-0.338,-1.557],[1.399,-2.364],[0.191,0.002],[1.495,-0.001],[1.811,-0.224],[0.818,0.451],[0.333,0.646],[1.149,0.183],[-0.907,2.031],[0.037,0.38],[0.294,-0.147],[1.44,-0.074],[-0.154,-0.41],[-0.173,-0.484],[0.437,-0.399],[0.822,0.214],[0.01,0.492],[0.038,0.435],[0.527,0.012],[0.051,-0.79],[-0.094,-0.448],[0.564,-0.072],[0.212,0.371],[0.548,-0.144],[0.252,-1.58],[0.281,0.084],[1.395,0.429],[1.256,-0.705],[-1.304,-0.82],[-1.769,0.841],[-1.024,0.083],[-2.101,-0.084],[1.556,-1.633],[0.65,-0.29],[0.697,0.026],[2.066,-0.133],[0.44,0.462],[0.778,-0.945],[0.665,0.467],[0.594,-0.569],[-0.408,-0.765],[0.907,-0.549],[-0.955,-0.202],[-1.056,-0.986],[0.002,-0.259],[-0.003,-0.139],[0.271,-1.596],[-1.163,-0.47],[1.554,0.173],[0.643,-2.275],[0.815,-1.728],[-0.334,-0.21],[-0.45,-0.268],[0.163,-0.613],[1.588,-0.347],[1.017,-0.15],[0.012,-0.129],[2.267,-0.35],[-0.564,1.67],[-0.514,0.097],[-0.406,0.662],[-0.613,0.401],[-2.192,-0.542],[-0.365,0.135],[-0.055,0.456],[0.241,0.169],[1.537,0.249],[0.179,0.565],[0.683,0.04],[0.078,-0.125],[0.444,-1.107],[1.929,-0.088],[0.541,0.527],[0.76,-0.391],[-0.143,-0.537],[2.422,-0.015],[-0.464,0.599],[0.189,0.652],[2.319,-0.364],[0.258,0.579],[0.816,0.444],[0.41,-0.266],[0.499,-0.4],[0.473,-0.311],[0.407,0.588],[-0.109,0.16],[-0.37,0.459],[0.273,0.616],[2.636,0.247],[1.664,-0.543],[4.317,0.21],[1.611,0.155],[3.037,0.107],[0.38,-0.082],[0.17,0.218],[-0.463,0.253],[0.381,0.623],[1.023,-0.138],[0.575,-0.082],[0.572,1.495],[0.813,-0.287],[0.572,-0.027],[0.696,-0.045],[0.187,-0.534],[0.932,1.536],[0.202,0.064],[0.547,0.785],[0.566,-0.492],[1.471,0.872],[-0.388,0.603],[0.393,0.519],[-3.376,0.307],[-2.711,0.031],[-1.155,0.041],[-0.422,-0.026],[-0.833,-0.218],[-1.02,-0.011],[-2.105,0.141],[-0.911,1.423],[-0.065,0.272],[0.31,0.188],[1.764,-0.942],[0.193,-0.105],[1.293,-0.325],[0.581,0.014],[0.231,-0.01],[0.147,-0.017],[0.666,0.149],[-0.647,0.734],[0.838,0.787],[1.344,-1.363],[0.46,-0.23],[0.316,1.281],[0.579,-0.105],[0.309,0.592],[-0.073,0.123],[-0.438,0.346],[0.2,0.585],[1.163,0.12],[0.797,-0.987],[0.847,0.126],[0.856,0.228],[1.124,0.563],[4.875,-0.019],[1.939,0.147],[0.463,-0.054],[0.157,-0.667],[-1.809,-1.075],[-7.379,-0.681],[0.391,-1.245],[1.505,-0.227],[1.448,-0.527],[1.761,-0.22],[0.879,2.012],[1.761,-0.699],[3.051,-0.113],[1.7,0.14],[-1.267,-0.831],[-1.87,-0.073],[-10.033,-0.601],[-1.238,-0.382],[-0.259,-0.487],[1.226,-0.087],[6.985,0.196],[0.674,-0.096],[2.372,0.409],[0.437,-0.101],[0.029,-0.699],[-0.472,-0.114],[-1.67,0.076],[-3.158,0.19],[-3.254,0.046],[-3.18,-0.331],[-0.557,0.032],[-0.585,-0.171],[-0.422,-1.109],[2.301,0.037],[0.948,0.003],[0.409,0.701],[0.913,0.33],[3.749,1.096],[0.632,-0.047],[0.38,-0.11],[-0.019,-0.477],[-0.765,-0.239],[-2.743,0.014],[0.539,-1.716],[-0.78,-0.032],[0.933,-0.671],[0.707,-0.477],[-2.004,-2.049],[-1.851,0.209],[0.944,-1.066],[3.663,-0.413],[-0.032,-0.09],[0.847,-0.354],[0.821,-1.189],[0.987,0.328],[0.372,-0.254],[-0.096,-0.535],[-0.558,-0.375],[0.946,-0.823],[0.328,0.207],[0.38,0.226],[0.352,-0.497],[-0.579,-0.518],[-0.464,-0.791],[0.528,-1.264],[-0.485,-0.059],[-0.261,0.01],[0.03,-0.36],[1.747,-1.576],[0.614,-0.798],[0.003,-0.707],[-0.722,-0.392],[-0.345,0.278],[-0.744,0.598],[-0.4,-1.007],[-0.216,-0.6],[-0.692,-0.009],[-0.262,0.915],[-0.711,-0.095],[-0.856,-0.928],[-0.444,0.578],[-1.061,-0.971],[0.037,-0.258],[0.916,0.451],[0.907,-0.782],[4.184,-1.452],[0.577,-0.094],[-0.886,0.523],[-0.967,0.31],[-0.479,0.629],[-0.002,0.838],[1.094,-0.358],[0.452,0.12],[1.041,-0.406],[1.468,0.946],[0.544,0.022],[0.615,0.905],[2.023,-0.477],[0.025,3.983],[0.032,0.532],[-0.066,2.206],[-0.655,2.49],[-0.481,1.188],[-0.158,0.45],[0.458,0.218],[1.06,-1.289],[0.113,-0.306],[0.441,0.034],[0.836,1.917],[0.407,0.833],[0.761,-0.114],[-0.022,-0.393],[-0.656,-2.149],[0.245,-5.625],[0.018,-0.288],[-0.279,-3.103],[0,-0.522],[0.385,0.208],[1.548,1.142],[0.863,-0.023],[0.904,0.239],[0.999,-1.446],[0.299,-0.467],[1.108,0.501],[-0.046,0.634],[1.947,0.566],[-0.068,-0.499],[0.726,-2.757],[0.586,-0.635],[0.38,0.864],[0.18,-1.269],[0.248,-5.673],[0.009,-1.615],[-0.491,0.064],[-0.232,-0.464],[0.987,-1.373],[0.458,-0.324],[1.532,1.314],[0.871,-0.659],[0.454,0.191],[1.056,0.242],[-0.235,-1.157],[1.353,-0.204],[2.271,0.166],[-0.285,0.474],[-0.932,0.591],[-0.268,0.31],[0.27,0.404],[2.097,-0.421],[0.152,-0.125],[0.706,-0.309],[0.506,1.387],[0.491,0.23],[0.187,0.807],[1.003,-0.19],[0.082,-0.449],[-0.234,-0.536],[-0.084,-0.427],[0.439,-0.331],[0.91,0.491],[0.604,0.135],[0.396,-0.516],[-0.354,-0.743],[-0.227,-0.433],[0.477,-0.428],[0.465,0.438],[1.246,1.384],[0.443,-0.075],[0.109,-0.409],[-0.532,-0.437],[-0.323,-0.248],[0.512,-0.241],[-0.168,-0.724],[-1.904,-0.394],[-0.252,0.091],[0.7,-1.255],[0.328,-0.371],[-0.14,-0.562],[-0.621,0.013],[0.116,-0.581],[-0.666,-0.37],[-1.949,1.345],[-0.354,0.806],[-2.769,-1.024],[-0.11,-1.236],[-1.04,-0.302],[-0.156,0.857],[0.739,0.045],[-0.257,1.283],[-1.485,0.299],[-1.348,0.04],[-0.515,0.359],[2.145,0.822],[-2.529,-0.384],[-1.517,0.17],[-2.707,0.717],[-0.168,0.313],[-2.563,1.035],[-0.036,0.24],[-0.287,0.003],[-0.087,-0.38],[0.187,-2.749],[0.058,-0.703],[0.537,0.22],[-0.325,1.071],[0.341,1.105],[0.795,-0.656],[0.708,-0.779],[-1.597,-0.624],[-0.751,-1.101],[0.431,-0.322],[0.374,-0.251],[-0.17,-0.62],[-1.906,-0.024],[-0.594,1.01],[-0.698,0.124],[-0.158,2.354],[0.116,2.516],[-0.128,0.449],[0.423,0.636],[-0.638,3.222],[0.023,0.638],[0.689,0.311],[0.285,0.48],[-0.503,1.423],[-0.572,-0.148],[-0.352,-0.07],[-0.153,0.522],[1.371,0.406],[0.45,0.139],[-0.419,1.088],[-0.819,0.281],[-0.115,-0.517],[-0.294,-0.542],[-0.173,-0.04],[-0.214,0.01],[-0.391,-0.638],[-0.71,0.175],[-0.324,0.001],[-2.225,-1.828],[-1.082,-0.363],[0.118,-0.295],[3.162,-1.278],[-0.307,-1.291],[-0.129,-0.448],[0.388,-0.27],[0.399,0.193],[0.45,-0.454],[-0.779,-1.077],[-0.226,-1.207],[-0.818,0.824],[-0.693,-0.489],[0.395,-0.687],[-0.687,-1.304],[1.755,-1.179],[2.134,-1.389],[-0.41,-2.252],[1.343,0.291],[0.294,1.069],[0.367,0.101],[-0.015,0.63],[-2.44,0.392],[0.254,0.623],[-0.754,0.216],[-1.163,0.464],[-0.355,0.49],[0.263,0.667],[0.894,0.052],[2.271,-0.699],[1.012,0.385],[0.341,-2.13],[-0.019,-1.919],[0.146,-2.531],[0.028,-0.085],[0.021,-0.134],[0.009,-0.324],[0.495,-0.391],[-0.232,-1.849],[-0.025,-2.739],[-0.695,-0.55],[0.204,-0.384],[2.34,-0.146],[0.695,-1.405],[0.87,-0.689],[0.125,0.37],[-0.569,1.897],[-0.309,0.343],[0.422,0.452],[0.496,-0.318],[0.726,0.999],[0.508,1.802],[0.282,0.036],[0.679,1.232],[1.27,0.615],[0.044,-1.33],[-0.059,-0.615],[-0.803,-0.049],[-0.164,0.663],[-0.732,-0.059],[-0.48,-2.112],[-0.579,-3.003],[1.152,-0.977],[0.164,-0.472],[-0.474,-0.179],[-0.428,0.514],[-0.686,-0.823],[-0.163,-0.97],[-0.09,-0.58],[-0.799,0.094],[-0.011,0.097],[0.669,2.135],[-0.238,0.525],[-0.607,-0.12],[-0.113,-1.327],[-0.983,2.165],[-0.317,-1.334],[0.012,-3.111],[-0.005,-0.817],[-0.253,6.039],[-1.134,-1.997],[0.103,-1.517],[-0.124,-0.269],[-0.342,0.064],[0.011,0.786],[0.175,2.838],[-0.001,-2.982],[-0.853,-2.514],[-1.671,-2.083],[0.727,-0.905],[-0.458,-1.401],[-0.2,-0.538],[-1.466,-0.415],[-0.044,-1.231],[-0.62,0.48],[-0.247,0.227],[-0.352,-0.286],[0.802,-1.177],[0.603,-0.719],[-0.135,-0.166],[1.258,-0.514],[-0.383,0.435],[-1.075,0.872],[0.769,0.814],[0.558,-0.604],[0.104,-0.611],[0.595,-0.357],[-0.151,0.661],[1.451,0.491],[-1.805,1.777],[0.148,0.995],[3.173,-1.743],[3.32,-1.414],[-0.042,-0.065],[1.865,0.391],[1.334,0.681],[0.499,0.116],[0.133,-0.491],[-2.271,-1.206],[-0.579,-1.009],[-0.67,0.254],[-0.584,0.03],[0.095,-0.576],[0.039,-0.068],[0.922,0.151],[0.26,0.102],[0.15,-0.317],[-0.442,-0.362],[-0.079,-1.177],[-0.063,-3.249],[0.288,-0.143],[0.451,0.584],[0.337,0.714],[0.531,0.081],[-1.002,-0.946],[-0.547,-2.454],[1.663,-2.066],[0.197,-0.764],[0.147,-0.512],[0.761,0.096],[-0.172,2.63],[-0.139,1.418],[-0.018,2.433],[-0.638,3.511],[-0.02,1.164],[0.488,-0.005],[0.693,1.87],[-0.77,0.038],[-0.189,0.68],[0.324,0.204],[0.577,0.562],[-0.071,0.813],[1.47,3.044],[-1.696,1.383],[-0.368,4.459],[-0.015,0.475],[0.011,0.298],[-0.249,0.323],[0.017,2.16],[-0.142,1.715],[-0.047,1.466],[1.403,-0.281],[1.587,-0.419],[0.485,0.518],[3.31,-0.53],[0.792,-0.397],[-0.278,-2.386],[2.383,-0.695],[3.271,-0.478],[1.745,0.473],[0.547,-0.101],[0.58,1.893],[2.119,-1.021],[0.749,-0.049],[-0.252,-1.371],[0.177,-1.195],[-1.109,-0.069],[-0.317,0.83],[-0.261,0.62],[-0.807,-0.191],[0.241,-1.108],[-3.638,-1.601],[-0.226,-0.377],[-0.523,0.053],[-0.324,0.553],[0.284,0.737],[0.242,0.858],[-1.298,-0.448],[-0.566,-0.827],[0.484,-0.445],[-0.508,-0.666],[-1.869,-1.2],[0.166,-2.736],[-1.154,-0.184],[0.584,-1.989],[0.018,-2.032],[1.357,-0.485],[1.358,-0.225],[0.186,0.29],[0.611,1.212],[0.977,-0.081],[-0.015,-1.045],[0.785,0.147],[1.108,-0.261],[-0.817,-0.855],[-0.362,-0.242],[0.094,-0.471],[0.619,-0.168],[2.418,-0.289],[1.412,-0.292],[1.063,-0.37],[1.235,0.094],[0.923,-1.08],[1.808,0.393],[0.971,1.292],[1.024,-1.414],[0.27,-2.509],[0.128,-3.342],[1.231,-0.539],[0.222,-2.539],[0.889,-3.218],[-0.657,-2.557],[-1.813,-1.418],[-0.556,-0.66],[0.433,-0.4],[-0.567,-0.204],[-0.593,0.579],[1.028,2.085],[-1.282,0.379],[-1.001,-0.688],[-0.454,1.784],[-0.441,2.229],[-0.705,1.019],[-1.602,-1.062],[-0.438,0.5],[-0.605,-0.457],[1.125,-2.383],[-0.224,-0.674],[-0.962,0.042],[-0.297,2.078],[0.109,0.946],[-1.103,-0.216],[0.879,-1.987],[-0.615,-1.035],[1.765,-2.462],[1.388,-4.211],[1.189,-2.305],[-1.374,-0.813],[1.191,-0.801],[0.235,-0.062],[0.011,0.139],[-0.242,0.165],[-0.326,0.213],[0.182,0.391],[0.428,-0.085],[0.587,-0.258],[0.368,-0.153],[0.326,0.461],[-0.593,0.595],[-0.506,0.53],[1.085,0.576],[-1.426,1.227],[-0.901,1.18],[0,0],[0,0],[3.467,-1.752],[0.092,1.226],[-0.569,0.969],[-0.075,0.422],[0.451,0.367],[0.606,-0.418],[0.543,-0.438],[0.669,0.343],[-0.224,0.916],[0.817,0.529],[1.748,-1.189],[-0.037,-1.003],[0.681,-0.543],[1.03,0.422],[0.776,-1.293],[0.13,-0.608],[0.606,0.016],[0.257,2.342],[0.661,0.512],[1.637,-0.722],[-0.011,-0.492],[-0.115,2.263],[0.459,0.671],[0.989,-0.212],[0.017,-0.169],[0.585,0.116],[1.491,-0.25],[1.738,0.332],[-0.273,-0.899],[-0.385,-0.567],[0.661,-0.615],[1.464,1.323],[1.69,1.75],[1.089,-0.055],[-0.495,-0.852],[-1.317,-1.266],[-0.413,-0.444],[0.434,-0.53],[1.426,0.972],[1.436,0.87],[0.771,3.017],[0.614,0.586],[0.94,-0.519],[-0.712,-3.598],[-1.279,-1.555],[0.725,0.073],[0.341,-0.004],[0.198,-0.423],[-0.8,-0.666],[-6.058,-2.95],[-2.375,0.178],[-0.338,0.172],[0.073,0.405],[0.685,0.215],[-3.005,0.648],[1.497,-0.145],[0.548,-0.052],[-0.447,-1.52],[1.616,0.818],[5.28,-2.013],[0.758,0.147],[0.258,-0.808],[-2.592,-1.66],[-2.751,-0.041],[-0.282,0.116],[-0.102,-0.368],[0.111,-0.361],[1.453,0.747],[0.949,-0.546],[0.733,0.209],[0.034,-0.832],[-0.331,-0.398],[0.642,-1.109],[0,-0.288],[-0.495,-0.028],[-0.025,0.195],[-0.04,0.541],[-0.73,0],[-0.177,-2.105],[0.398,-0.72],[-0.557,-0.923],[0.061,-1.304],[-1.023,-0.092],[-0.017,-2.107],[-1.049,0.41],[-0.444,0.465],[-1.597,-0.094],[-0.787,-0.81],[0.035,-0.187],[-0.407,-1.264],[-1.069,-2.245],[0.236,-0.422],[-0.409,-3.643],[-2.758,-1.502],[-0.062,-0.588],[-1.125,0.032],[-0.458,-0.043],[-0.834,-0.005],[-1.08,-0.084],[-0.858,-0.76],[1.928,-1.384],[-0.257,-0.361],[-0.441,-0.812],[0.8,-0.29],[0.271,0.602],[0.674,-0.108],[0.04,-0.285],[0.379,-0.216],[1.543,1.33],[0.371,0.226],[0.46,-0.426],[-1.435,-2.83],[-1.272,-1.496],[0.026,-0.254],[0.361,-0.107],[0.469,0.979],[0.731,1.785],[1.506,0.93],[0.093,0.434],[0.783,2.523],[0.691,-0.262],[2.808,0.901],[2.776,1.421],[0.328,0.356],[0.455,-0.176],[-0.522,-1.917],[-2.238,-1.996],[-0.346,-0.207],[0.187,-0.59],[0.976,0.22],[-0.008,-0.54],[-0.543,-2.006],[-0.053,-1.969],[-0.143,-1.709],[-2.147,-0.288],[-1.748,-3.322],[0.035,-0.988],[-2.156,-0.611],[-0.269,0.797],[-1.332,-0.685],[-1.055,-0.884],[-0.346,0.537],[-0.43,1.43],[-1.361,1.405],[-0.854,-0.394],[-1.29,0.315],[-0.447,-0.689],[-1.144,1.006],[-0.273,-0.419],[-0.78,-0.234],[0.163,-1.305],[0.501,-0.621],[-1.487,-1.176],[0.811,-1.424],[-2.794,-0.628],[-0.574,-0.038],[33.852,0],[0.986,-0.001],[-0.055,14.31],[-0.323,0.099],[-1.388,1.649],[-0.556,1.987],[0.817,0.002],[0,41.097],[-1.714,0.836],[-0.255,0.438],[-0.686,0.113],[-0.579,-0.97],[-0.34,-0.491],[-0.854,0.267],[0.05,0.532],[0.102,0.47],[-2.655,-1.905],[-1.296,-0.069],[-1.1,-0.617],[-0.601,0.846],[0.491,0.395],[0.034,0.097],[0,0],[1.138,1.659],[1.136,-0.195],[1.41,0.656],[1.783,-0.574],[0,0.889],[-1.215,-0.062],[-0.294,0.029],[-0.148,-0.005],[-5.226,0.642],[-1.706,-0.01],[-0.191,0.276],[0.256,0.255],[2.354,-1.052],[0.288,-0.06],[0.242,0.353],[-0.793,1.53],[-0.279,0.56],[0.589,0.575],[0.314,-0.121],[0.787,-0.591],[0.393,-0.288],[-0.05,0.671],[0.807,0.325],[1.679,-1.152],[0.654,-0.669],[0.322,0.495],[0.791,1.168],[0,15.016],[-0.509,0.005],[-1.445,-0.488],[-0.811,-0.205],[-3.735,0.467],[-1.086,-0.001],[-0.244,0.135],[0.088,0.318],[0.435,0.073],[2.262,0.066],[2.193,0.254],[1.298,-0.109],[0.153,-0.985],[0.626,-0.056],[0,7.212],[-0.39,-0.032],[-3.482,-1.496],[0.548,0.51],[3.28,1.06]],"v":[[242.88,28.365],[242.88,31.032],[238.809,30.549],[233.13,30.867],[231.988,31.116],[231.609,31.301],[230.735,31.629],[228.253,31.719],[216.765,31.69],[214.142,33.123],[212.639,33.213],[211.639,31.587],[208.914,30.95],[205.784,30.157],[204.256,32.158],[204.671,35.205],[204.652,40.951],[206.26,42.329],[210.892,42.881],[217.761,43.54],[224.577,41.19],[225.745,38.864],[225.667,37.805],[228.759,34.935],[231.109,34.398],[232.86,34.465],[233.597,34.447],[242.88,35.181],[242.88,103.644],[238.55,101.833],[237.322,101.719],[230.866,104.658],[230.142,105.731],[231.37,106.258],[233.058,105.731],[242.88,105.126],[242.88,193.742],[237.305,193.503],[237.056,193.369],[230.593,194.691],[230.417,195.995],[235.176,197.097],[235.979,196.954],[235.984,197.693],[235.987,198.373],[239.114,200.279],[239.932,200.327],[242.88,198.187],[242.88,200.854],[241.292,201.178],[239.206,202.532],[237.354,204.293],[235.588,203.874],[228.726,205.25],[228.649,207.231],[233.518,206.674],[235.811,206.806],[236.762,208.64],[239.726,209.737],[240.085,207.086],[239.989,206.29],[240.814,206.289],[242.88,207.078],[242.88,236.419],[240.956,236.392],[34.772,236.384],[19.963,236.33],[18.534,234.98],[13.23,234.681],[5.699,234.958],[0.977,235.256],[-0.432,236.316],[-1.91,236.379],[-241.069,236.421],[-242.586,234.88],[-242.549,185.537],[-242.505,165.831],[-239.601,164.501],[-240.072,162.179],[-242.505,161.753],[-242.505,155.184],[-237.306,152.71],[-236.109,152.469],[-236.695,153.623],[-236.793,156.837],[-233.04,160.401],[-226.364,162.383],[-222.586,161.664],[-228.521,165.426],[-229.347,166.325],[-228.326,167.27],[-226.862,167.199],[-222.301,165.51],[-211.352,161.947],[-202.366,160.303],[-200.906,159.824],[-201.979,158.491],[-203.954,156.917],[-208.241,151.138],[-209.43,149.98],[-218.471,147.763],[-228.356,145.488],[-235.046,143.295],[-237.77,143.25],[-242.506,142.496],[-242.537,121.178],[-242.506,79.87],[-241.247,79.913],[-236.653,79.015],[-237.899,80.683],[-240.562,81.968],[-241.117,83.077],[-233.834,88.47],[-235.51,89.887],[-236.22,91.218],[-234.981,92.085],[-228.72,90.752],[-227.191,89.592],[-226,89.189],[-226.533,90.377],[-228.298,91.947],[-228.829,93.359],[-225.322,95.804],[-220.971,97.766],[-219.634,98.318],[-215.807,96.155],[-210.48,94.192],[-209.792,94.812],[-209.003,95.91],[-206.839,94.633],[-203.036,94.213],[-201.15,94.849],[-200.948,92.553],[-207.571,85.543],[-214.384,82.781],[-219.385,84.039],[-220.907,83.464],[-221.793,81.655],[-222.584,78.122],[-229.523,73.438],[-239.033,72.541],[-242.485,72.241],[-242.497,59.766],[-239.082,58.197],[-238.511,57.075],[-239.555,56.479],[-242.499,57.118],[-242.504,36.65],[-230.703,36.384],[-221.901,38.369],[-220.695,38.436],[-221.051,37.324],[-227.349,32.116],[-227.836,31.705],[-227.369,31.282],[-226.709,30.101],[-228.097,29.538],[-231.105,30.247],[-231.9,30.456],[-234.92,30.165],[-235.204,29.928],[-238.848,28.16],[-239.311,28.139],[-240.052,27.88],[-241.088,27.85],[-242.492,27.479],[-242.489,0.479],[-236.289,-3.069],[-230.945,-4.444],[-222.109,-5.213],[-217.95,-6.996],[-216.911,-7.466],[-213.433,-8.468],[-212.014,-8.592],[-210.87,-9.664],[-211.149,-10.951],[-215.234,-17.574],[-214.648,-19.106],[-212.68,-21.244],[-210.794,-23.576],[-208.399,-22.969],[-204.617,-21.816],[-198.628,-21.805],[-196.617,-22.344],[-196.71,-24.252],[-196.393,-27.763],[-196.144,-30.103],[-196.448,-32.727],[-196.595,-36.123],[-196.555,-38.041],[-196.467,-40.667],[-198.417,-40.835],[-199.899,-40.421],[-202.524,-39.761],[-205.083,-37.523],[-209.992,-37.987],[-208.924,-41.288],[-208.82,-41.393],[-208.852,-43.247],[-208.938,-45.334],[-206.837,-46.913],[-204.863,-48.368],[-197.495,-52.194],[-193.676,-56.216],[-193.904,-60.642],[-193.434,-61.588],[-192.564,-60.812],[-192.505,-58.888],[-191.88,-58.079],[-189.026,-59.48],[-186.298,-60.255],[-183.571,-61.115],[-182.999,-63.103],[-182.224,-64.095],[-179.134,-68.429],[-178.554,-70.401],[-177.745,-70.944],[-177.393,-70.214],[-175.436,-68.516],[-170.28,-64.607],[-171.382,-61.891],[-173.842,-55.052],[-172.113,-50.538],[-171.394,-49.1],[-171.401,-46.85],[-171.026,-45.221],[-167.372,-44.025],[-166.406,-43.551],[-167.206,-42.759],[-169.954,-41.011],[-171.873,-38.634],[-169.572,-35.813],[-165.868,-36.807],[-163.254,-37.032],[-162.126,-35.778],[-162.911,-34.88],[-163.7,-34.149],[-162.788,-33.5],[-159.863,-33.432],[-158.306,-32.643],[-159.447,-31.726],[-169.007,-31.914],[-170.575,-31.742],[-169.633,-30.579],[-159.471,-27.937],[-157.347,-25.519],[-163.943,-25.505],[-165.076,-24.873],[-166.726,-24.515],[-170.632,-24.596],[-171.38,-24.089],[-172.02,-22.16],[-172.079,-20.786],[-170.149,-19.958],[-169.2,-20.689],[-167.736,-21.595],[-161.11,-21.866],[-158.141,-21.096],[-158.598,-18.533],[-161.739,-15],[-165.593,-10.522],[-165.84,-8.315],[-160.55,-5.755],[-158.427,-7.044],[-156.262,-7.268],[-156.445,-4.422],[-158.053,-4.926],[-158.96,-3.909],[-157.852,-2.384],[-153.37,0.215],[-153.381,0.205],[-155.456,4.658],[-155.447,4.65],[-158.811,5.844],[-157.626,7.638],[-155.307,8.271],[-161.166,12.294],[-161.97,12.933],[-162.093,14.481],[-159.062,16.265],[-157.759,18.917],[-157.77,21.205],[-156.016,23.13],[-152.592,23.102],[-153.391,24.753],[-160.503,23.054],[-159.706,22.218],[-159.046,21.379],[-159.899,20.904],[-163.664,19.155],[-170.251,13.848],[-171.752,13.849],[-173.173,13.594],[-185.015,13.636],[-190.768,13.507],[-193.026,13.073],[-194.558,12.647],[-196.143,12.636],[-197.533,12.978],[-196.68,14.216],[-195.682,16.467],[-196.998,19.17],[-198.155,19.686],[-197.17,20.823],[-196.012,20.966],[-185.928,21.195],[-183.327,21.579],[-185.279,22.427],[-188.535,22.432],[-190.021,22.916],[-192.008,23.616],[-195.649,24.13],[-196.739,25.294],[-194.884,27.476],[-193.311,27.662],[-191.468,27.983],[-189.181,28.853],[-188.081,30.011],[-185.497,28.027],[-186.694,25.9],[-188.396,24.303],[-184.922,25.598],[-180.536,24.332],[-177.723,22.413],[-174.833,21.816],[-172.34,21.099],[-171.173,20.995],[-170.429,21.502],[-170.786,22.458],[-171.121,22.617],[-176.225,26.704],[-175.944,27.732],[-171.749,30.158],[-170.634,32.064],[-166.474,34.355],[-158.606,33.629],[-157.21,32.548],[-149.585,31.85],[-140.801,29.437],[-139.978,26.888],[-138.665,27.09],[-134.01,27.123],[-127.287,18.408],[-127.877,13.007],[-126.041,18.439],[-127.96,23.712],[-126.722,26.045],[-126.865,28.178],[-125.305,30.723],[-124.416,30.742],[-109.138,28.514],[-102.986,28.3],[-97.146,29.903],[-93.5,34.01],[-95.663,32.794],[-101.176,30.007],[-108.462,29.673],[-119.314,31.333],[-126.626,32.942],[-128.47,37.974],[-126.291,38.717],[-123.313,36.128],[-122.395,35.706],[-122.541,36.73],[-123.976,38.226],[-124.923,41.391],[-121.901,43.401],[-119.036,41.438],[-118.567,40.035],[-116.322,39.309],[-114.756,39.895],[-112.416,40.049],[-110.876,40.937],[-109.82,38.972],[-109.856,37.347],[-110.039,36.151],[-108.605,36.587],[-103.06,39.222],[-100.566,38.786],[-96.621,38.157],[-91.091,39.658],[-90.498,38.486],[-93.396,36.228],[-93.96,35.386],[-92.786,35.07],[-88.543,39.488],[-88.775,40.931],[-92.548,41.329],[-94.398,40.396],[-95.705,40.587],[-98.066,41.698],[-103.551,42.601],[-104.325,42.199],[-104.776,41.104],[-105.469,40.443],[-106.121,41.183],[-105.252,45.813],[-102.427,48.645],[-102.823,50.351],[-106.087,53.638],[-110.327,58.866],[-113.02,60.094],[-114.011,61.246],[-112.806,61.91],[-107.051,62.153],[-102.997,63.919],[-105.311,63.992],[-113.529,63.009],[-122.831,63.173],[-128.199,64.516],[-129.21,64.721],[-130.726,67.974],[-126.273,71.039],[-123.289,71.726],[-115.453,74.977],[-103.426,76.363],[-98.872,73.991],[-97.094,76.068],[-96.307,77.61],[-97.854,78.063],[-98.858,79.479],[-97.496,81.767],[-97.924,84.311],[-98.796,85.613],[-100.823,88.496],[-101.851,89.318],[-102.889,91.968],[-100.726,92.765],[-99.561,92.96],[-97.171,94.943],[-95.136,96.358],[-89.834,103.253],[-90.987,110.351],[-90.855,110.758],[-89.968,114.227],[-89.616,115.778],[-88.492,119.873],[-86.461,124.373],[-85.979,125.2],[-86.793,125.741],[-89.454,125.84],[-90.549,127.512],[-88.035,130.728],[-86.448,134.892],[-92.133,136.143],[-94.012,136.701],[-95.677,137.696],[-97.196,136.486],[-97.775,134.806],[-100.107,134.123],[-101.872,135.666],[-104.572,138.265],[-106.327,140.842],[-108.383,143.297],[-109.031,148.407],[-107.611,153.466],[-99.073,165.936],[-97.935,171.055],[-96.784,171.131],[-92.901,165.592],[-88.06,162.74],[-90.582,165.225],[-90.701,166.971],[-89.138,166.867],[-86.866,166.785],[-84.971,168.415],[-81.63,167.145],[-80.48,167.109],[-80.376,168.876],[-78.645,169.949],[-75.338,169.709],[-74.032,169.578],[-73.608,168.67],[-75.615,166.851],[-78.836,165.85],[-81.733,163.575],[-75.728,158.727],[-75.155,158.732],[-70.671,158.73],[-65.77,160.049],[-63.635,159.844],[-62.247,161.444],[-58.81,162.048],[-58.486,167.978],[-57.835,168.272],[-56.931,167.863],[-55.42,165.474],[-56.027,164.299],[-56.149,162.797],[-54.469,162.541],[-53.186,164.109],[-53.133,165.583],[-52.393,166.353],[-51.744,165.546],[-51.927,163.201],[-51.576,161.971],[-51.012,163.009],[-50.322,164.04],[-50.054,162.731],[-51.427,158.79],[-50.585,159.041],[-46.458,158.877],[-46.352,156.648],[-50.56,155.969],[-51.439,158.777],[-53.626,157.556],[-54.085,155.963],[-53.835,153.445],[-51.801,153.153],[-50.253,152.296],[-44.389,153.538],[-42.827,153.261],[-40.231,152.97],[-38.235,153.142],[-37.735,150.89],[-37.177,148.971],[-37.665,146.949],[-40.57,146.534],[-41.434,143.01],[-41.429,142.232],[-41.437,141.816],[-43.432,139.023],[-43.462,137.828],[-42.574,136.179],[-44.639,133.058],[-45.546,130.166],[-46.571,129.573],[-47.231,128.383],[-46.177,126.917],[-41.404,125.923],[-39.111,124.51],[-38.68,124.17],[-31.905,122.98],[-35.303,124.82],[-36.809,125.275],[-36.12,126.524],[-38.101,126.723],[-44.259,127.581],[-45.133,128.218],[-44.562,129.181],[-43.808,129.634],[-41.401,132.303],[-40.614,133.878],[-39.202,132.498],[-38.994,132.106],[-36.55,130.568],[-31.335,132.08],[-29.286,132.469],[-28.506,130.615],[-27.781,129.747],[-20.364,129.741],[-21.527,131.014],[-20.11,131.467],[-13.113,131.254],[-12.972,133.092],[-10.609,132.681],[-9.458,131.762],[-7.95,130.578],[-6.397,130.262],[-7.266,131.391],[-7.676,131.815],[-8.235,133.388],[-6.731,134.147],[-1.021,130.89],[4.072,130.497],[17.002,130.416],[21.835,130.863],[30.891,130.207],[31.811,130.476],[31.766,131.106],[31.101,132.232],[32.773,132.931],[35.829,132.431],[37.421,132.819],[40.171,133.773],[42.66,133.558],[44.301,133.134],[45.464,132.023],[46.393,131.606],[49.616,131.926],[50.223,132.116],[51.821,132.082],[53.747,131.222],[58.518,132.435],[58.208,134.394],[57.619,135.05],[47.491,135.959],[39.357,135.992],[35.896,136.185],[34.628,136.111],[32.108,136.014],[29.048,135.995],[25.578,138.601],[24.406,143.264],[24.531,144.063],[25.317,143.833],[28.579,139.489],[29.157,139.174],[33.034,138.199],[34.777,138.242],[35.47,138.212],[35.91,138.163],[36.439,139.303],[36.485,141.701],[38.789,141.332],[43.554,138.403],[44.593,138.766],[46.706,139.622],[48.419,139.563],[47.544,141.133],[47.229,141.442],[46.814,142.755],[48.072,143.619],[50.753,142.33],[53.793,140.953],[55.849,140.004],[58.257,139.644],[61.721,139.899],[76.347,139.985],[82.216,139.792],[83.47,139.325],[82.513,138.442],[76.813,137.866],[54.671,137.799],[57.113,136.594],[61.556,135.649],[64.76,132.701],[70.062,132.478],[73.104,133.726],[78.595,132.71],[87.719,133.198],[92.936,132.8],[89.509,130.304],[83.927,130.449],[53.823,130.355],[51.976,127.832],[52.527,127.072],[56.205,126.837],[77.145,126.542],[79.208,126.569],[86.246,126.288],[87.427,125.672],[86.239,124.794],[84.773,124.67],[79.766,124.961],[70.318,124.665],[60.56,124.598],[51.188,124.958],[49.659,125.434],[47.907,124.912],[48.963,123.808],[55.329,122.009],[58.173,122.018],[59.995,123.171],[62.758,123.418],[74.039,123.619],[75.918,123.296],[76.588,122.402],[75.785,121.942],[73.443,121.703],[65.168,122.012],[64.05,120.22],[61.701,119.542],[64.553,118.609],[64.772,117.116],[59.359,117.286],[53.802,117.332],[57.351,115.775],[59.797,111.944],[59.753,111.653],[61.704,109.926],[65.088,108.611],[67.869,108.008],[68.509,106.943],[67.507,106.25],[65.725,106.039],[68.317,103.335],[69.302,103.955],[70.512,104.122],[70.313,102.678],[68.319,101.548],[67.604,98.984],[66.184,96.55],[64.709,96.529],[63.926,96.56],[64.367,95.648],[68.391,90.044],[69.189,87.242],[68.341,85.449],[66.498,86.029],[65.458,86.854],[63.868,86.403],[62.714,83.365],[61.479,82.298],[59.962,83.176],[58.171,84.755],[56.074,84.344],[54.205,84.671],[53.449,86.707],[51.926,83.093],[52.038,82.32],[54.487,81.907],[57.534,80.146],[70.404,77.098],[71.28,77.77],[68.488,79.04],[66.117,80.896],[65.652,82.997],[66.857,83.966],[70.154,83.746],[71.279,83.208],[74.521,82.597],[78.493,82.019],[79.391,82.85],[82.05,84.206],[84.326,86.081],[84.297,98.031],[84.133,99.643],[82.018,105.548],[79.576,112.836],[78.238,116.443],[78.594,117.609],[79.524,117.076],[82.368,112.974],[83.055,112.287],[83.519,113.116],[85.179,119.116],[86.824,120.874],[87.289,118.933],[87.143,117.761],[86.376,111.183],[85.765,94.357],[85.634,93.482],[85.519,84.163],[86.11,82.825],[87.26,83.456],[90.335,82.582],[92.767,83.166],[94.976,82.378],[94.104,78.691],[95.259,78.429],[97.093,80.985],[97.876,82.532],[102.152,79.003],[102.25,77.539],[106.821,70.927],[107.993,71.336],[109.325,74.208],[109.774,70.94],[109.468,53.934],[107.5,52.296],[106.187,51.939],[106.556,50.738],[110.433,47.828],[111.934,48.091],[115.754,48.265],[118.364,47.938],[119.757,48.433],[121.333,47.136],[122.667,45.535],[126.716,44.825],[133.196,43.401],[132.098,44.39],[129.811,46.687],[129.49,47.878],[130.707,48.179],[136.573,45.846],[137.039,45.485],[138.679,46.045],[141.586,48.805],[142.756,49.807],[144.311,51.06],[145.108,49.217],[144.736,47.966],[144.212,46.283],[144.511,45.051],[145.735,45.267],[148.52,46.618],[150.163,46.228],[149.99,44.604],[148.585,42.73],[148.479,41.359],[149.732,41.758],[151.016,43.188],[155.654,44.876],[156.726,44.215],[156.188,43.222],[154.543,41.97],[154.465,41.129],[155.336,39.983],[153.959,38.814],[148.184,38.207],[147.315,37.939],[150.352,35.062],[151.008,33.857],[149.885,33.088],[149.104,32.232],[148.657,30.64],[146.882,31.045],[142.472,36.305],[140.932,37.024],[132.35,35.913],[130.462,33.359],[128.631,34.565],[129.896,36.028],[132.117,36.081],[133.79,38.632],[129.606,38.793],[125.842,39.845],[125.678,41.221],[125.549,42.895],[117.918,42.488],[113.447,43.271],[106.317,47.495],[105.567,48.166],[100.235,53.6],[99.776,54.094],[99.267,53.63],[99.14,52.463],[99.753,44.218],[102.545,42.489],[102.628,43.354],[102.621,46.558],[104.645,47.223],[106.846,45.033],[106.426,43.167],[103.149,39.877],[103.661,37.049],[105.047,36.207],[105.968,35.261],[104.609,34.607],[100.837,37.292],[98.418,39.446],[97.499,40.825],[97.164,47.892],[96.882,55.373],[97.033,56.651],[97.212,58.65],[96.842,68.382],[97.553,70.214],[98.926,69.338],[99.034,70.775],[94.891,72.935],[93.181,72.469],[92.321,72.893],[92.976,73.472],[97.097,74.662],[98.033,75.592],[95.482,77.138],[94.333,76.209],[93.358,75.191],[92.004,74.228],[91.486,74.109],[90.843,74.139],[89.192,73.537],[87.069,74.09],[86.098,74.093],[80.837,73.552],[77.503,73.035],[78.138,72.465],[81.732,65.443],[80.671,61.603],[80.892,60.41],[82.145,60.278],[83.399,60.614],[83.633,58.958],[82.678,55.453],[81.035,54.898],[78.369,55.242],[78.603,52.957],[79.048,50.748],[80.031,48.045],[85.352,44.59],[87.078,40.502],[86.996,33.716],[88.749,36.202],[90.685,38.379],[91.641,38.834],[90.586,39.644],[88.764,43.451],[88.173,44.662],[85.959,45.472],[83.032,47.637],[82.649,49.289],[84.14,50.008],[86.756,49.663],[93.683,49.292],[95.653,48.108],[95.587,41.7],[95.757,35.951],[96.139,28.35],[96.187,28.087],[96.25,27.685],[96.278,26.712],[96.723,25.225],[95.55,19.774],[91.791,13.919],[89.971,12.04],[90.586,10.938],[93.866,7.274],[96.42,3.381],[98.308,3.87],[98.602,5.007],[95.221,9.404],[94.915,10.688],[96.519,10.962],[97.951,9.92],[100.441,12.586],[103.758,15.835],[104.519,16.49],[107.591,18.701],[109.776,17.316],[109.712,13.324],[108.756,11.696],[107.487,13.116],[106.251,14.33],[105.04,13.048],[103.516,6.732],[105.585,-1.409],[107.284,-5.29],[106.735,-6.365],[105.782,-5.851],[105.154,-3.953],[104.209,-6.61],[103.833,-9.539],[102.982,-10.917],[102.433,-9.313],[102.454,-9.018],[101.61,-3.011],[100.627,-1.617],[100.308,-3.21],[99.932,-7.224],[98.143,-0.195],[97.642,-3.671],[97.625,-13.003],[96.579,-15.524],[95.68,1.978],[94.799,-4.228],[94.014,-8.538],[93.387,-9.047],[92.932,-8.37],[93.035,-6.012],[93.326,2.515],[91.952,-6.205],[88.379,-8.645],[87.347,-15.494],[87.726,-18.444],[86.158,-22.584],[85.037,-23.454],[82.796,-26.33],[80.984,-27.09],[79.26,-25.474],[78.371,-25.214],[78.435,-26.144],[80.813,-29.702],[81.678,-32.389],[81.871,-32.88],[85.712,-34.26],[84.452,-33.235],[83.898,-30.58],[86.932,-30.754],[87.833,-32.907],[88.683,-34.385],[89.645,-33.887],[89.876,-31.993],[90.177,-30],[87.803,-23.449],[89.327,-22.554],[99.28,-26.725],[100.911,-31.986],[100.927,-32.44],[106.458,-31.184],[110.836,-29.892],[112.223,-30.487],[111.299,-31.277],[104.204,-34.222],[101.791,-34.924],[99.712,-34.603],[97.96,-34.513],[98.244,-36.242],[98.42,-36.342],[101.189,-35.902],[101.962,-36.032],[101.67,-36.798],[100.6,-38.095],[100.294,-41.624],[100.018,-51.369],[100.883,-51.799],[102.149,-49.986],[103.89,-48.759],[104.523,-49.494],[103.783,-52.616],[105.422,-58.97],[108.55,-65.907],[109.192,-68.185],[110.118,-69.302],[110.669,-67.975],[111.538,-60.253],[111.145,-55.998],[111.322,-48.697],[111.308,-38.16],[113.053,-36.502],[114.518,-36.519],[112.85,-34.992],[111.093,-33.981],[111.707,-32.312],[112.797,-31.884],[114.358,-30.055],[114.873,-27.779],[113.667,-22.541],[110.339,-17.227],[110.752,-3.945],[111.271,-2.743],[111.306,-1.85],[110.808,-0.766],[111.322,5.684],[111.327,10.865],[113.262,12.438],[117.449,11.491],[121.485,12.615],[123.292,13.489],[132.994,10.98],[134.222,9.003],[136.676,5.411],[143.953,4.137],[153.768,4.172],[159.038,4.497],[160.167,5.093],[162.795,6.229],[169.344,3.627],[170.411,1.96],[170.362,-2.17],[168.974,-3.768],[166.697,-2.232],[165.773,0.267],[164.318,1.271],[163.819,-0.217],[162.694,-2.517],[154.954,-10.404],[154.044,-11.221],[153.154,-10.315],[153.05,-8.609],[153.851,-6.38],[152.863,-5.45],[150.076,-7.996],[150.169,-10.372],[150.277,-11.825],[148.684,-13.751],[146.906,-18.589],[144.255,-22.056],[142.03,-24.774],[142.346,-30.764],[145.133,-34.402],[149.331,-35.202],[152.175,-33.854],[152.661,-32.938],[155.416,-32.043],[155.771,-33.628],[157.25,-34.896],[159.603,-34.862],[160.084,-36.488],[157.469,-38.886],[156.801,-39.955],[157.763,-40.515],[159.638,-40.946],[166.919,-41.331],[171.116,-42.281],[174.292,-43.031],[177.292,-44.263],[180.792,-45.245],[184.947,-42.36],[187.421,-42.32],[189.263,-47.096],[189.573,-54.631],[193.957,-62.545],[195.504,-65.027],[194.691,-72.492],[192.455,-81.754],[187.514,-88.044],[182.215,-92.502],[181.808,-94.833],[181.356,-95.662],[179.851,-95.295],[179.91,-93.538],[178.158,-89.492],[174.454,-89.875],[172.994,-89.172],[172.347,-83.745],[170.238,-77.328],[167.213,-76.175],[163.691,-75.473],[162.025,-75.037],[161.516,-76.904],[161.127,-83.792],[159.715,-85.303],[158.573,-83.626],[157.471,-77.421],[155.842,-75.844],[155.2,-77.718],[154.46,-83.198],[154.625,-86.041],[158.543,-94.128],[162.914,-106.7],[161.193,-111.706],[161.137,-114.533],[165.048,-115.831],[165.62,-115.555],[165.311,-115.119],[164.525,-114.71],[164,-113.788],[165.029,-113.364],[166.272,-113.812],[168.016,-114.626],[169.116,-114.528],[168.662,-113.594],[166.877,-111.817],[167.033,-110.356],[167.133,-108.548],[163.343,-104.423],[162.544,-100.57],[162.501,-100.497],[162.574,-100.54],[171.821,-107.684],[170.926,-105.104],[169.418,-102.097],[169.639,-100.836],[170.819,-101.146],[172.572,-102.495],[174.383,-103.233],[174.871,-101.229],[175.597,-99.025],[178.112,-98.938],[181.56,-103.835],[182.89,-106.216],[184.536,-105.598],[187.192,-106.155],[189.241,-110.226],[190.256,-111.49],[190.86,-110.284],[194.504,-105.505],[196.736,-105.321],[199.947,-110.29],[200.844,-111.544],[203.155,-105.943],[205.06,-104.575],[206.766,-106.569],[206.994,-107.049],[208.25,-106.257],[212.433,-105.495],[214.589,-107.806],[213.249,-110.263],[212.345,-112.04],[214.479,-111.238],[218.707,-107.089],[224.81,-105.025],[225.665,-106.63],[223.912,-109.007],[220.009,-112.852],[219.183,-114.494],[220.857,-113.996],[225.066,-110.984],[227.815,-107.37],[231.987,-99.161],[234.19,-98.407],[235.032,-100.869],[230.128,-110.189],[226.147,-115.057],[227.738,-114.909],[228.646,-115.311],[228.147,-116.095],[225.557,-117.805],[206.372,-121.846],[199.374,-120.116],[198.69,-119.263],[199.519,-118.746],[201.375,-117.661],[187.102,-118.244],[191.326,-118.653],[192.306,-119.53],[193.514,-120.407],[198.175,-120.567],[214.62,-123.715],[216.63,-124.556],[215.622,-126.377],[207.091,-128.72],[198.981,-127.288],[198.088,-127.32],[198.361,-128.582],[199.121,-129.013],[202.832,-129.794],[205.858,-130.602],[206.986,-131.599],[206.525,-134.004],[206.28,-135.391],[206.401,-138.723],[206.025,-139.427],[205.552,-138.671],[205.532,-138.079],[204.773,-136.866],[203.776,-138.113],[204.468,-144.3],[204.215,-146.552],[203.248,-149.578],[201.284,-151.697],[199.878,-153.347],[196.237,-155.738],[193.312,-154.051],[191.598,-153.425],[188.254,-155.631],[188.45,-157.797],[188.432,-158.378],[187.152,-162.146],[186.703,-168.98],[186.802,-170.578],[180.977,-177.872],[175.334,-184.5],[174.411,-185.596],[171.035,-185.402],[170.263,-184.443],[167.997,-183.717],[165.208,-184.971],[165.379,-187.467],[166.009,-191.099],[165.235,-192.18],[165.885,-193.953],[168.007,-193.407],[169.508,-192.667],[169.978,-193.904],[170.201,-194.715],[171.102,-194.388],[176.14,-191.015],[177.37,-190.87],[177.152,-192.04],[171.916,-199.913],[171.199,-204.326],[171.578,-204.915],[172.246,-204.471],[173.616,-201.517],[176.613,-196.696],[178.822,-192.9],[179.178,-191.617],[183.906,-189.282],[186.056,-189.635],[194.14,-186.135],[201.439,-180.395],[202.704,-179.845],[203.393,-180.875],[201.281,-186.41],[194.407,-192.231],[193.807,-193.136],[194.934,-193.458],[196.332,-194.617],[196.192,-196.232],[195.722,-202.324],[195.575,-208.234],[193.15,-210.732],[187.682,-213.557],[183.593,-224.059],[182.177,-225.85],[177.462,-223.357],[176.157,-222.849],[172.532,-225.337],[170.098,-224.882],[169.232,-223.167],[166.889,-219.622],[162.938,-218.917],[160.267,-219.631],[157.372,-220.726],[155.455,-221.054],[152.354,-221.279],[150.787,-222.037],[149.928,-223.483],[151.312,-227.008],[151.332,-228.967],[151.013,-232.759],[150.055,-234.813],[141.569,-235.995],[140.037,-236.594],[241.592,-236.616],[242.916,-235.365],[242.88,-192.434],[241.931,-192.12],[238.53,-186.687],[240.417,-184.415],[242.88,-184.136],[242.88,-60.844],[239.311,-56.906],[238.333,-55.912],[237.361,-56.812],[235.576,-59.691],[234.262,-60.868],[233.417,-58.863],[233.754,-57.285],[234.062,-55.804],[229.21,-56.42],[225.919,-57.922],[222.999,-57.307],[223.854,-55.088],[225.133,-53.678],[225.324,-53.471],[225.385,-53.394],[229.895,-52.032],[233.229,-51.864],[237.559,-51.628],[242.88,-53.435],[242.88,-50.767],[239.335,-50.257],[238.452,-50.169],[238.009,-50.182],[222.276,-48.911],[217.996,-46.029],[217.941,-45.084],[218.767,-45.108],[226.155,-46.434],[226.973,-46.318],[226.758,-45.377],[224.395,-40.78],[224.113,-39.006],[225.979,-39.375],[226.846,-39.932],[229.195,-41.722],[230.008,-41.411],[230.473,-39.619],[232.478,-40.296],[236.937,-44.391],[238.56,-44.279],[239.587,-42.832],[242.88,-40.987],[242.88,4.062],[241.536,3.584],[237.065,2.804],[234.606,2.349],[224.401,6.337],[221.814,7.656],[221.32,8.302],[222.051,8.708],[223.374,8.811],[230.162,9.054],[236.765,9.698],[239.542,7.77],[241.034,6.358],[242.88,5.84],[242.88,27.476],[241.718,27.363],[231.538,28.01],[233.146,28.648]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.102,0.152,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[-0.012,-1.367]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":-57,"op":1365,"st":-57}]},{"id":"comp_1","layers":[{"ind":1,"ty":5,"nm":"P","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[466.297,366.634,0]},"a":{"a":0,"k":[-0.536,-10.001,0]},"s":{"a":0,"k":[126.218,126.218,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":67,"f":"I-pixel-u","t":"PIXEL PULSE","j":0,"tr":-10,"lh":80.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":73,"st":0},{"ind":2,"ty":5,"nm":"O","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-52.637,38.445,0]},"a":{"a":0,"k":[0.363,-13.091,0]},"s":{"a":0,"k":[50.893,50.893,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":30,"f":"CompixsRegular","t":"OR","j":2,"tr":-10,"lh":36,"ls":0,"fc":[0.31,0.31,0.31]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":73,"st":0},{"ind":3,"ty":4,"nm":"C","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-53.431,37.507,0]},"a":{"a":0,"k":[669.643,600.303,0]},"s":{"a":0,"k":[66.383,66.383,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[613.063,72.653],[740.063,72.653]],"c":false}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.082,0.365,0.29,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[436.063,72.653],[563.063,72.653]],"c":false}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.31,0.31,0.31,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[669.643,601.435]},"a":{"a":0,"k":[588.063,73.335]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-126},{"ind":4,"ty":5,"nm":"C","parent":6,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":5,"s":[0]},{"t":9,"s":[100]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[592.925,702.014,0]},"a":{"a":0,"k":[0.588,-19.109,0]},"s":{"a":0,"k":[76.666,76.666,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":37,"f":"CompixsRegular","t":"Connect a wallet","j":0,"tr":-10,"lh":44.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":5,"op":78,"st":5},{"ind":5,"ty":4,"nm":"C","parent":19,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":5,"s":[0]},{"t":9,"s":[100]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-53.431,83.465,0]},"a":{"a":0,"k":[669.643,672.225,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":3,"s":[54.479,54.479,100]},{"t":18,"s":[66.383,66.383,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.191,0],[0,0],[0,-0.205],[0,0],[0.191,0],[0,0],[0,0.205],[0,0]],"o":[[0,0],[0.191,0],[0,0],[0,0.206],[0,0],[-0.191,0],[0,0],[0,-0.205]],"v":[[536.865,135.519],[539.189,135.519],[539.535,135.891],[539.535,138.163],[539.189,138.535],[536.865,138.535],[536.519,138.163],[536.519,135.891]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0,0.322,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.607,0],[0,-2.607],[2.607,0],[0,2.606]],"o":[[2.607,0],[0,2.606],[-2.607,0],[0,-2.607]],"v":[[538.027,132.308],[542.747,137.027],[538.027,141.746],[533.308,137.027]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.468,0],[0,0],[0,-1.468],[0,0],[1.468,0],[0,0],[0,1.468],[0,0]],"o":[[0,0],[1.468,0],[0,0],[0,1.468],[0,0],[-1.468,0],[0,0],[0,-1.468]],"v":[[532.712,129.055],[543.342,129.055],[546,131.712],[546,142.342],[543.342,145],[532.712,145],[530.055,142.342],[530.055,131.712]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.02,0.333,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[-16.215,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[518.505,137.283],[518.627,135.172],[519.183,133.671],[516.707,133.671],[517.263,135.172],[517.385,137.283],[517.432,137.945],[517.436,139.584],[518.454,139.584],[518.458,137.945]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[515.905,136.318],[513.988,136.876],[513.349,138.856],[515.05,138.856],[516.19,138.871],[515.328,137.189]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[521.902,136.876],[519.985,136.318],[520.563,137.189],[519.7,138.871],[520.841,138.856],[522.545,138.856]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[513.273,133.948],[513.584,135.439],[513.385,135.587],[513.681,135.81],[513.457,135.983],[513.75,136.249],[513.566,136.382],[513.988,136.876],[515.905,136.318],[517.263,135.172],[513.735,132.562]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.463,0.243,0.102,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.463,0.243,0.102,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[522.31,135.439],[522.617,133.948],[522.155,132.562],[518.628,135.172],[519.985,136.318],[521.902,136.876],[522.325,136.382],[522.14,136.249],[522.433,135.983],[522.209,135.81],[522.501,135.587]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.463,0.243,0.102,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.463,0.243,0.102,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[518.627,139.706],[518.454,139.584],[517.436,139.584],[517.263,139.706],[517.165,140.513],[517.255,140.434],[518.635,140.434],[518.729,140.513]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.086,0.086,0.086,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.086,0.086,0.086,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[518.718,140.855],[518.729,140.513],[518.635,140.434],[517.256,140.434],[517.165,140.513],[517.172,140.855],[516.017,140.308],[516.422,140.639],[517.241,141.204],[518.646,141.204],[519.469,140.639],[519.869,140.308]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.745,0.667,0.608,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.745,0.667,0.608,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[516.162,138.035],[516.19,138.871],[517.263,139.706],[517.436,139.584],[517.194,138.338]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[518.696,138.338],[518.454,139.584],[518.628,139.706],[519.7,138.871],[519.732,138.035]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.953,0.51,0.122,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[518.505,137.283],[518.404,137.938],[518.454,139.584],[518.696,138.338]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[517.386,137.283],[517.194,138.338],[517.436,139.584],[517.49,137.942]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[519.732,138.035],[519.7,138.871],[520.563,137.189]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[515.328,137.189],[516.19,138.871],[516.162,138.035]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.459,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[516.162,138.035],[516.891,137.7],[517.194,138.338],[517.385,137.283],[515.328,137.189]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[520.563,137.189],[518.505,137.283],[518.696,138.338],[518.999,137.7],[519.732,138.035]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[519.693,138.824],[519.869,140.308],[520.841,138.856]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[516.017,140.308],[516.198,138.824],[515.05,138.856]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.792,0.384,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[518.696,138.338],[518.999,137.7],[519.732,138.035]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.137,0.204,0.278,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.137,0.204,0.278,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[517.194,138.338],[516.162,138.035],[516.891,137.7]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.137,0.204,0.278,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.137,0.204,0.278,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[516.017,140.308],[517.172,140.855],[517.165,140.513],[517.263,139.706]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.827,0.741,0.69,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.827,0.741,0.69,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[519.869,140.308],[518.628,139.706],[518.729,140.513],[518.718,140.855]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.827,0.741,0.69,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.827,0.741,0.69,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[518.628,139.706],[519.869,140.308],[519.7,138.871]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[516.017,140.308],[517.263,139.706],[516.19,138.871]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[519.985,136.318],[518.552,135.043],[518.505,137.283],[520.563,137.189]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[515.905,136.318],[515.328,137.189],[517.385,137.283],[517.317,135.068]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[513.349,138.856],[513.941,140.88],[516.017,140.308],[515.05,138.824]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[520.841,138.824],[519.869,140.308],[521.949,140.88],[522.545,138.856]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[513.735,132.562],[517.353,135.288],[516.707,133.671]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.878,0.463,0.145,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[522.155,132.562],[518.505,135.262],[519.183,133.671]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.875,0.467,0.149,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.069},"lc":2,"lj":2,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.875,0.467,0.149,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.637,0],[0,0],[0,-1.637],[0,0],[1.637,0],[0,0],[0,1.637],[0,0]],"o":[[0,0],[1.637,0],[0,0],[0,1.637],[0,0],[-1.637,0],[0,0],[0,-1.637]],"v":[[512.899,128.947],[523.024,128.947],[525.988,131.911],[525.988,142.036],[523.024,145],[512.899,145],[509.935,142.036],[509.935,131.911]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.957,0.91,0.843,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[-16.215,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.812,0.812,0.812,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.5},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[669.643,707.309]},"a":{"a":0,"k":[588.063,137.153]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"C"},{"ty":"tr","p":{"a":0,"k":[669.643,707.309]},"a":{"a":0,"k":[669.643,707.309]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"C"}],"ip":5,"op":73,"st":-126},{"ind":6,"ty":4,"nm":"C","parent":19,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":5,"s":[0]},{"t":9,"s":[100]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-53.431,83.465,0]},"a":{"a":0,"k":[669.643,672.225,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":3,"s":[54.479,54.479,100]},{"t":18,"s":[66.383,66.383,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"tr","p":{"a":0,"k":[-16.215,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-6.351,0],[0,0],[0,-6.351],[0,0],[6.351,0],[0,0],[0,6.351],[0,0]],"o":[[0,0],[6.351,0],[0,0],[0,6.351],[0,0],[-6.351,0],[0,0],[0,-6.351]],"v":[[448.063,109.653],[728.063,109.653],[739.563,121.153],[739.563,153.153],[728.063,164.653],[448.063,164.653],[436.563,153.153],[436.563,121.153]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.082,0.365,0.29,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[669.643,707.309]},"a":{"a":0,"k":[588.063,137.153]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"C"},{"ty":"tr","p":{"a":0,"k":[669.643,707.309]},"a":{"a":0,"k":[669.643,707.309]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"C"}],"ip":5,"op":73,"st":-126},{"ind":7,"ty":5,"nm":"S","parent":8,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":3,"s":[0]},{"t":7,"s":[100]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[588.098,10.554,0]},"a":{"a":0,"k":[-0.536,-10.001,0]},"s":{"a":0,"k":[46.212,46.212,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":37,"f":"CompixsRegular","t":"Sign in","j":2,"tr":-10,"lh":44.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":3,"op":73,"st":0},{"ind":8,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":3,"s":[0]},{"t":7,"s":[100]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-53.431,-25.811,0]},"a":{"a":0,"k":[588.063,9.153,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.013,0.013,0]},"t":1,"s":[92.273,92.273,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":15,"s":[110.13,110.13,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":44,"s":[110.13,110.13,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":46,"s":[107.13,107.13,100]},{"t":48,"s":[110.13,110.13,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-6.351,0],[0,0],[0,-6.351],[0,0],[6.351,0],[0,0],[0,6.351],[0,0]],"o":[[0,0],[6.351,0],[0,0],[0,6.351],[0,0],[-6.351,0],[0,0],[0,-6.351]],"v":[[448.063,-18.347],[728.063,-18.347],[739.563,-6.847],[739.563,25.153],[728.063,36.653],[448.063,36.653],[436.563,25.153],[436.563,-6.847]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[0.043,0.584,0.459,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[0.021,0.368,0.288,1]},{"t":48,"s":[0.043,0.584,0.459,1]}]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":3,"op":73,"st":0},{"ind":9,"ty":5,"nm":"c","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[452.077,-65.607,0]},"a":{"a":0,"k":[0.588,-19.109,0]},"s":{"a":0,"k":[46.212,46.212,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":36,"f":"Inter-Regular","t":"c","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":20},{"s":{"s":36,"f":"Inter-Regular","t":"ca","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":21},{"s":{"s":36,"f":"Inter-Regular","t":"cat","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":22},{"s":{"s":36,"f":"Inter-Regular","t":"catt","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":23},{"s":{"s":36,"f":"Inter-Regular","t":"catty","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":24},{"s":{"s":36,"f":"Inter-Regular","t":"catty@","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":25},{"s":{"s":36,"f":"Inter-Regular","t":"catty@t","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":26},{"s":{"s":36,"f":"Inter-Regular","t":"catty@th","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":27},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thi","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":28},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thir","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":29},{"s":{"s":36,"f":"Inter-Regular","t":"catty@third","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":30},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thirdw","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":31},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thirdwe","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":33},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thirdweb.","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":35},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thirdweb.c","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":37},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thirdweb.co","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":39},{"s":{"s":36,"f":"Inter-Regular","t":"catty@thirdweb.com","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[1,1,1]},"t":40}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":20,"op":80,"st":7},{"ind":10,"ty":5,"nm":"E","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[452.077,-65.607,0]},"a":{"a":0,"k":[0.588,-19.109,0]},"s":{"a":0,"k":[46.212,46.212,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":36,"f":"Inter-Regular","t":"Enter your email address","j":0,"tr":-10,"lh":43.2,"ls":0,"fc":[0.431,0.467,0.514]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":20,"st":0},{"ind":11,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-53.431,-100.938,0]},"a":{"a":0,"k":[588.063,-62.847,0]},"s":{"a":0,"k":[110.13,110.13,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.142,0],[0,0],[0,-4.142],[0,0],[4.142,0],[0,0],[0,4.142],[0,0]],"o":[[0,0],[4.142,0],[0,0],[0,4.142],[0,0],[-4.142,0],[0,0],[0,-4.142]],"v":[[444.063,-90.347],[732.063,-90.347],[739.563,-82.847],[739.563,-42.847],[732.063,-35.347],[444.063,-35.347],[436.563,-42.847],[436.563,-82.847]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.082,0.365,0.29,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":73,"st":0},{"ind":12,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-52.874,-183.923,0]},"a":{"a":0,"k":[848.497,250.153,0]},"s":{"a":0,"k":[57.388,57.388,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.064,1.309],[0,1.638],[0.041,0.186],[1.169,-1.347],[0,-1.661],[-0.019,-0.08],[-0.168,0]],"o":[[1.002,-1.181],[0,-0.227],[-1.631,0.061],[-0.919,1.037],[0,0.249],[0.103,0.019],[1.462,0]],"v":[[712.918,-157.746],[714.629,-162.204],[714.568,-162.847],[709.828,-160.422],[708.052,-156.085],[708.113,-155.506],[708.552,-155.465]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.172,-3.091],[0,-4.106],[-0.126,-0.041],[1.547,-2.24],[2.191,0],[2.529,0],[2.004,0],[1.608,2.24],[0,3.878],[-4.009,0],[-1.337,0],[-2.423,0]],"o":[[-0.187,0.144],[0,4.749],[-0.02,0.103],[-1.379,1.971],[-2.191,0],[-2.465,0],[-2.004,0],[-1.862,-2.631],[0,-6.221],[2.129,0],[1.273,0],[0.918,0]],"v":[[720.458,-151.938],[716.971,-145.842],[721.296,-139.372],[719.082,-134.831],[714.071,-130.892],[708.787,-132.156],[703.441,-130.85],[698.43,-134.914],[695.063,-145.509],[703.145,-155.029],[708.387,-153.641],[714.068,-155.113]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[-13.129,-0.625]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[868.723,250.153]},"a":{"a":0,"k":[708.063,-146.847]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-126},{"ind":13,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-52.874,-183.923,0]},"a":{"a":0,"k":[848.497,250.153,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.016,0.016,0]},"t":0,"s":[46.388,46.389,100]},{"t":5,"s":[57.388,57.388,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.142,0],[0,0],[0,-4.142],[0,0],[4.142,0],[0,0],[0,4.142],[0,0]],"o":[[0,0],[4.142,0],[0,0],[0,4.142],[0,0],[-4.142,0],[0,0],[0,-4.142]],"v":[[650.927,-178.347],[738.315,-178.347],[745.815,-170.847],[745.815,-122.847],[738.315,-115.347],[650.927,-115.347],[643.427,-122.847],[643.427,-170.847]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0.082,0.365,0.29,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0.31,0.31,0.31,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[0.031,0.4,1,1]},{"t":61,"s":[0.31,0.31,0.31,1]}]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.082,0.365,0.29,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[868.723,250.153]},"a":{"a":0,"k":[708.063,-146.847]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-126},{"ind":15,"ty":4,"nm":"L","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[470.563,250.153,0]},"a":{"a":0,"k":[470.563,250.153,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":62,"s":[99.98,99.98,100]},{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[1,1,1],"y":[0.01,0.01,0]},"t":67,"s":[83.906,83.906,100]},{"t":72,"s":[99.98,99.98,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,5.143],[0.215,0.932],[0,0],[0,0],[0,0],[1.647,-1.039],[0,0]],"o":[[0,-0.932],[0,0],[0,0],[0,0],[-0.424,2.078],[0,0],[2.896,-2.692]],"v":[[482.993,-147.776],[482.634,-150.644],[467.934,-150.644],[467.934,-144.549],[476.396,-144.549],[473.173,-139.834],[478.207,-135.936]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.259,0.522,0.957,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-6.237,0],[0,10.039],[0.215,0.932],[0,0],[0,0],[0,0],[4.375,0],[1.22,3.726],[0,0]],"o":[[7.888,0],[0,-0.932],[0,0],[0,0],[0,0],[-0.789,3.872],[-4.143,0],[0,0],[2.565,5.221]],"v":[[467.934,-132],[482.993,-147.776],[482.634,-150.644],[467.934,-150.644],[467.934,-144.549],[476.396,-144.549],[467.934,-138.454],[459.08,-144.86],[453.786,-140.801]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.204,0.659,0.325,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.138,0],[-1.578,-1.291],[0,0],[4.016,0],[2.566,-5.218],[0,0]],"o":[[2.223,0],[0,0],[-2.797,-2.438],[-6.235,0],[0,0],[1.224,-3.719]],"v":[[467.934,-157.098],[473.742,-155.018],[478.332,-159.608],[467.934,-163.552],[453.788,-154.755],[459.084,-150.704]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.918,0.263,0.208,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,1.025],[-0.303,0.921],[0,0],[0,-2.513],[-1.034,-2.103],[0,0]],"o":[[0,-1.025],[0,0],[-1.034,2.103],[0,2.513],[0,0],[-0.303,-0.921]],"v":[[458.611,-147.776],[459.084,-150.704],[453.788,-154.755],[452.158,-147.776],[453.788,-140.797],[459.084,-144.847]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.984,0.737,0.02,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[17.818,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[470.563,250.153]},"a":{"a":0,"k":[468.063,-146.847]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-126},{"ind":16,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-189.027,-183.923,0]},"a":{"a":0,"k":[470.563,250.153,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.016,0.016,0]},"t":0,"s":[46.388,46.389,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":5,"s":[57.4,57.4,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":62,"s":[57.388,57.388,100]},{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[1,1,1],"y":[0.01,0.01,0]},"t":67,"s":[48.162,48.162,100]},{"t":72,"s":[57.388,57.388,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"tr","p":{"a":0,"k":[17.818,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.142,0],[0,0],[0,-4.142],[0,0],[4.142,0],[0,0],[0,4.142],[0,0]],"o":[[0,0],[4.142,0],[0,0],[0,4.142],[0,0],[-4.142,0],[0,0],[0,-4.142]],"v":[[444.063,-178.347],[527.387,-178.283],[534.887,-170.783],[534.887,-122.783],[527.387,-115.283],[444.063,-115.347],[436.563,-122.847],[436.563,-170.847]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0.082,0.365,0.29,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[0.31,0.31,0.31,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0.031,0.4,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0.031,0.4,1,1]},{"t":68,"s":[0.31,0.31,0.31,1]}]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[470.563,250.153]},"a":{"a":0,"k":[468.063,-146.847]},"s":{"a":0,"k":[165.9,165.9]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-126},{"ind":17,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[80.785,-183.923,0]},"a":{"a":0,"k":[1946.094,570.462,0]},"s":{"a":0,"k":[29.762,29.762,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-41.73,0],[-6.01,-0.63],[0,0],[16.13,0],[0,-86.62],[0,0],[0,0],[0,0],[0,0],[0,0],[-21.2,0],[-10.11,1.22],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,-41.1],[12.96,0],[0,0],[-11.38,-3.16],[-85.04,0],[0,0],[0,0],[0,0],[0,0],[0,0],[19.69,4.88],[10.44,0],[0,0],[0,0],[0,0]],"v":[[99.68,77.77],[113.96,0],[30.83,0],[30.83,-27.5],[88.69,-84.41],[118.09,-83.46],[118.09,-153.96],[62.76,-160.29],[-61.48,-33.51],[-61.48,0],[-113.96,0],[-113.96,77.77],[-61.48,77.77],[-61.48,247.01],[0,254.5],[30.83,252.64],[30.83,77.77],[99.68,77.77]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,130.12],[140.56,0],[0,-140.56],[-110.85,-27.51],[0,0],[0,0],[0,0],[0,0],[0,0],[-85.04,0],[-11.38,-3.16],[0,0],[12.96,0],[0,-41.1],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,-140.56],[-140.56,0],[0,119.36],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-86.63],[16.13,0],[0,0],[-6.01,-0.63],[-41.73,0],[0,0],[0,0],[0,0],[0,0],[0,0],[126.02,-15.22]],"v":[[254.5,0],[0,-254.5],[-254.5,0],[-61.48,247.01],[-61.48,77.77],[-113.96,77.77],[-113.96,0],[-61.48,0],[-61.48,-33.51],[62.76,-160.29],[118.09,-153.96],[118.09,-83.46],[88.69,-84.41],[30.83,-27.5],[30.83,0],[113.96,0],[99.68,77.77],[30.83,77.77],[30.83,252.64]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.031,0.4,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[1886,572.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[22,22]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":-1,"s":[0]},{"t":0,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-194},{"ind":18,"ty":4,"nm":"L","parent":19,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[80.785,-183.923,0]},"a":{"a":0,"k":[1946.094,570.462,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.016,0.016,0]},"t":0,"s":[18.762,18.762,100]},{"t":5,"s":[29.762,29.762,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.142,-0.014],[0,0],[0.014,-4.142],[0,0],[4.142,0.014],[0,0],[-0.015,4.142],[0,0]],"o":[[0,0],[4.142,0.014],[0,0],[-0.015,4.142],[0,0],[-4.142,-0.014],[0,0],[0.014,-4.142]],"v":[[566.901,-178.431],[652.173,-178.263],[659.647,-170.737],[659.479,-122.737],[651.952,-115.263],[566.68,-115.431],[559.206,-122.958],[559.374,-170.957]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0.082,0.365,0.29,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0.31,0.31,0.31,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":39,"s":[0.031,0.4,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0.031,0.4,1,1]},{"t":49,"s":[0.31,0.31,0.31,1]}]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[737.563,250.153]},"a":{"a":0,"k":[628.063,-146.847]},"s":{"a":0,"k":[166,166]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"},{"ty":"tr","p":{"a":0,"k":[1946.094,570.462]},"a":{"a":0,"k":[737.563,250.153]},"s":{"a":0,"k":[192.825,192.825]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"L"}],"ip":0,"op":73,"st":-194},{"ind":19,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":0,"k":95},"r":{"a":0,"k":0},"p":{"a":0,"k":[950.756,1064.16,0]},"a":{"a":0,"k":[-53.244,-11.84,0]},"s":{"a":0,"k":[296,296,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.382,0],[0,0],[0,-14.382],[0,0],[14.382,0],[0,0],[0,14.382],[0,0]],"o":[[0,0],[14.382,0],[0,0],[0,14.382],[0,0],[-14.382,0],[0,0],[0,-14.382]],"v":[[-226.965,-297.532],[120.477,-297.532],[146.518,-271.491],[146.518,147.811],[120.477,173.851],[-226.965,173.851],[-253.006,147.811],[-253.006,-271.491]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.053,0.095,0.08,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":73,"st":0}]},{"id":"comp_2","layers":[{"ind":1,"ty":4,"nm":"r","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.99]},"o":{"x":[0.81],"y":[0.01]},"t":0,"s":[-54]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.008]},"t":14,"s":[47]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":42,"s":[32]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":52,"s":[-2]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[32]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[0]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":98,"s":[32]},{"i":{"x":[0.608],"y":[1]},"o":{"x":[0.27],"y":[0]},"t":111,"s":[-2]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.75],"y":[-0.01]},"t":113,"s":[-2]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[1],"y":[0.01]},"t":125,"s":[-59]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[-2]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":138,"s":[-2]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[1],"y":[0.01]},"t":147,"s":[-59]},{"t":156,"s":[-2]}]},"p":{"a":0,"k":[37.935,78.9,0]},"a":{"a":0,"k":[37.935,78.9,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,-0.401],[0.333,0.401]],"o":[[-0.297,-0.172],[0.286,0.183]],"v":[[43.339,90.008],[42.409,89.136]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.585,0.379],[-0.598,-0.367]],"o":[[0.539,0.138],[-0.517,-0.15]],"v":[[44.926,82.075],[46.602,82.845]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.057,0.299],[-0.218,-0.297],[0.31,0]],"o":[[-0.104,-0.183],[0.229,0.057],[-0.15,0.115],[0,0]],"v":[[62.183,93.259],[62.16,92.616],[62.815,93.144],[62.183,93.271]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.269,0.675,0.252,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.161,0.011],[-0.711,0.942],[-0.012,-0.426],[0.609,-0.585]],"o":[[-0.127,0.104],[0.528,-0.884],[0.138,0.24],[-0.575,0.585],[0,0]],"v":[[62.149,91.018],[61.804,91.098],[63.664,88.4],[63.871,89.376],[62.137,91.029]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.367,0.369],[0.369,-0.333]],"o":[[-0.172,0.345],[0.184,-0.367]],"v":[[59.116,79.501],[58.3,80.557]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.126],[-0.023,1.103]],"o":[[-0.102,-0.861],[0.127,0.884]],"v":[[58.162,68.105],[58.014,65.13]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.057,-1.01],[0.081,-0.77],[-0.012,0.115],[-0.299,1.584]],"o":[[-0.091,0.815],[-0.184,-0.011],[0.149,-1.504],[0.138,0.768]],"v":[[58.279,72.682],[57.981,74.932],[57.396,74.656],[58.038,70.064]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.423,1.815],[-0.104,-0.448],[0.379,-1.561]],"o":[[0.195,0.242],[-0.287,1.597],[-0.482,-1.826]],"v":[[62.034,53.737],[62.425,54.712],[61.46,59.317]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.104,-1.447],[0.39,-0.621],[0.276,-0.023],[0.045,0.149],[-0.115,0.666],[-0.195,0.632],[-0.288,0.711]],"o":[[0.125,1.378],[-0.046,0.585],[-0.263,0.057],[-0.115,0.011],[0.068,-0.816],[0.218,-0.62],[0.195,-0.632],[0,0]],"v":[[59.576,68.989],[59.691,73.284],[58.783,75.053],[58.083,75.144],[57.992,74.972],[58.302,72.836],[58.945,70.976],[59.576,68.978]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.047,0.063,0.074,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.252,-0.138],[0.161,0.276],[0.104,0.621],[-0.045,0.585],[0.012,1.457],[-2.17,0.322],[0.127,-2.297],[0.125,-1.413]],"o":[[-0.161,0.252],[-0.184,-0.161],[-0.263,-0.528],[0.369,-0.747],[0.104,-1.447],[-0.263,-1.171],[0.034,2.284],[-0.068,1.262],[0,0]],"v":[[60.346,76.907],[59.773,77.401],[59.347,76.769],[58.796,75.172],[59.68,73.278],[59.68,68.915],[60.863,66.09],[60.702,72.968],[60.335,76.907]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.16,-0.15],[0.161,0.149]],"o":[[0,0],[0.046,0]],"v":[[42.755,76.956],[42.434,76.738]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.39,-0.068],[-0.379,0.081]],"o":[[0.161,-0.091],[-0.161,0.091]],"v":[[41.779,75.905],[42.606,75.652]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,-0.242],[0.231,0.242]],"o":[[-0.172,-0.057],[0.173,0.057]],"v":[[44.431,78.37],[43.833,77.923]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.412,-0.206],[0.401,0.218]],"o":[[-0.287,-0.022],[0.286,0.022]],"v":[[45.591,78.959],[44.547,78.604]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.31,0.39],[0.311,-0.424]],"o":[[-0.138,0.39],[0.138,-0.356]],"v":[[41.963,76.568],[41.285,77.738]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.999,0.768],[-0.07,-0.414]],"o":[[0.161,0.24],[-0.655,0]],"v":[[51.207,84.795],[51.506,85.724]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.448,0.104],[-0.424,-0.104]],"o":[[0.276,-0.068],[-0.299,0.068]],"v":[[53.387,86.156],[54.478,86.203]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.609,0.149],[-0.011,-0.138],[0.609,-0.011]],"o":[[0.138,0.034],[-0.505,0.161],[0.39,-0.195]],"v":[[45.039,75.222],[45.199,75.463],[43.557,75.703]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.07,-0.643],[0.161,0.39],[-0.081,0.286]],"o":[[-0.184,-0.172],[0.012,-0.286],[0.172,0.414]],"v":[[60.495,103.021],[60.012,102.183],[60.139,101.426]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.023,0.252],[-0.62,0.104],[0.643,-0.333]],"o":[[0.539,-0.276],[-0.424,0.403],[-0.116,-0.15]],"v":[[39.207,76.462],[40.882,75.922],[39.287,77.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.689,-0.206],[-0.702,0.231]],"o":[[0.426,-0.299],[-0.426,0.288]],"v":[[56.107,86.317],[57.784,85.548]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.516,-0.011],[0.206,-0.356],[0.276,0.426]],"o":[[0.367,-0.115],[-0.068,0.379],[-0.265,-0.299],[0,0]],"v":[[58.955,85.637],[60.23,85.544],[59.748,86.647],[58.955,85.625]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.585,0.437],[-0.333,0.437],[-0.344,-0.15],[-0.057,-0.011],[0,-0.632],[0.023,-0.161],[0.068,0]],"o":[[-0.528,-0.448],[0.115,-0.367],[0.263,0.034],[0.242,0.057],[0.034,0.369],[-0.057,0.437],[0,0],[0,0]],"v":[[61.839,93.262],[60.266,91.93],[60.955,90.759],[61.723,91.058],[62.092,91.126],[62.16,92.482],[62.056,93.251],[61.839,93.251]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.07,0.804],[-0.7,-0.609],[0.895,-0.195]],"o":[[0.7,0.39],[-0.734,0.24],[-1.482,-0.908]],"v":[[41.355,79.25],[43.421,80.743],[41.022,81.329]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.022,-0.172],[0.184,0.07],[0.607,0.263],[-0.7,0.184],[-0.138,-0.276]],"o":[[0.034,0.091],[-0.217,0.138],[-0.62,-0.218],[0.55,-0.276],[0.299,0.379],[0,0]],"v":[[60.438,103.128],[60.529,103.495],[59.875,103.724],[58.062,102.933],[59.852,102.197],[60.427,103.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.367,-0.263],[0.161,-0.493],[0.333,1.62],[-0.712,0.16]],"o":[[0.367,0.125],[-0.023,0.449],[-1.103,-0.068],[0.62,-0.206],[0,0]],"v":[[48.955,82.743],[49.977,83.339],[49.678,84.671],[46.98,83.167],[48.944,82.732]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.046,0.378],[-1.849,-0.252],[-0.023,-0.367],[1.022,-0.138],[0.585,0.184],[0.288,0.195]],"o":[[-0.023,-0.252],[1.677,0.125],[0.16,0.254],[-0.874,0.206],[-0.528,-0.057],[-0.494,-0.286],[0,0]],"v":[[49.037,82.657],[48.944,81.762],[54.17,82.393],[54.365,83.266],[51.597,83.691],[50.093,83.357],[49.024,82.668]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.012,0.39],[-1.09,-0.988],[-1.275,-1.824],[0.333,-0.345],[0.7,0.908],[0.379,0.344],[0.104,0.195],[0.815,0.39]],"o":[[0,-0.263],[0.954,-1.436],[1.619,1.459],[-0.081,0.437],[-0.861,-0.804],[-0.333,-0.401],[-0.149,-0.127],[-0.85,-0.505],[0,0]],"v":[[39.495,87.273],[39.482,86.367],[42.307,86.263],[46.178,91.407],[45.603,92.533],[43.353,90.017],[42.33,88.984],[41.997,88.571],[39.518,87.285]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.047,0.063,0.074,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.091,-0.448],[-0.011,-0.07],[0.322,0.104],[-0.011,0.195],[0.115,0.539],[-0.115,3.169],[-0.46,-0.448],[0.068,-3.008]],"o":[[-0.081,0.516],[-0.011,0.104],[-0.184,0.057],[-0.138,-0.183],[-0.07,-0.643],[-0.034,-3.02],[0.609,0.286],[-0.057,2.847],[0,0]],"v":[[61.585,101.951],[61.333,103.247],[61.333,103.569],[60.62,103.5],[60.472,103.018],[60.173,101.296],[60.219,92.087],[61.746,93.27],[61.574,101.962]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.52,0.624,0.311,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.541,0.276],[0.562,0.493],[0.666,0.493],[-0.023,0.551],[-0.229,0.367],[-0.138,-0.104],[-0.102,-0.068],[-0.401,-0.379],[-0.195,-0.149],[-0.057,-0.125],[-0.356,-0.115],[-0.345,-0.333],[-0.827,-0.702],[0.057,-0.333],[0.632,-0.068],[0.138,0.115]],"o":[[-0.424,-0.322],[-0.793,-0.666],[-0.081,-0.369],[0.321,-0.539],[0,0],[0.242,0.172],[0.276,0.231],[0.322,0.287],[0,0],[0.414,0.229],[0.263,0.24],[0.768,0.63],[0.16,0.412],[-0.712,0.149],[0,0],[-0.677,-0.379]],"v":[[44.923,81.947],[43.512,80.81],[41.398,79.145],[41.273,77.858],[42.064,76.595],[42.363,76.71],[42.811,77.031],[43.752,77.87],[44.465,78.466],[44.545,78.604],[45.659,79.064],[46.543,79.868],[48.84,81.751],[48.955,82.75],[46.978,83.048],[46.692,82.865]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.466,0.468,0.161,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.929,0.068],[-0.598,0.034],[0.023,-0.757],[0.505,-0.116],[0.564,-0.242],[0.575,0.081],[0.39,0.011],[0.632,0.229],[0.07,0.276],[-0.195,0.424],[-0.884,0.081]],"o":[[0.931,-0.079],[0.598,-0.046],[0.022,0.655],[-0.286,0.184],[-0.816,0.263],[-0.401,0.011],[-0.551,-0.104],[-0.506,-0.034],[-0.184,-0.458],[0.046,-0.252],[1.022,-0.265],[0,0]],"v":[[54.363,83.398],[57.142,83.158],[58.934,83.054],[58.955,85.132],[57.911,85.512],[55.982,86.269],[54.592,86.212],[53.273,86.074],[51.619,85.775],[51.286,84.765],[51.572,83.824],[54.352,83.398]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.32,0.505,0.183,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.356,-0.093],[1.724,1.4],[0.551,0.369],[0.068,0.39],[-0.184,0.712],[-0.874,0.081],[-0.437,-0.458],[-0.666,-0.265],[-0.012,-0.127],[-1.056,-0.184]],"o":[[-0.286,0.333],[-1.883,0.528],[-0.516,-0.414],[-0.344,-0.229],[-0.081,-0.482],[0.883,-0.344],[0.516,0.39],[0.585,0.369],[0.081,0.023],[0.333,1.618],[0,0]],"v":[[49.632,84.789],[48.77,85.764],[43.281,85.179],[41.468,84.282],[40.71,83.215],[41.009,81.48],[43.535,80.918],[44.912,82.089],[46.738,82.963],[46.98,83.181],[49.632,84.799]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.133,0.328,0.154,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.057,-0.46],[0.712,-0.838],[0.161,0.104],[0.127,0.218],[-1.241,0.252],[-0.483,0.218],[-0.195,-0.011]],"o":[[0.104,0.263],[-0.702,1.067],[-0.252,-0.138],[-0.034,-0.276],[-0.757,-1.194],[0.379,-0.081],[0.229,-0.046],[0,0]],"v":[[63.596,87.288],[63.665,88.264],[61.632,91.043],[61.059,90.686],[60.932,89.859],[61.873,87.851],[63.08,87.322],[63.608,87.299]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.033,-0.367],[-0.15,-1.022],[0.161,-0.057],[0.379,0.011],[-0.036,0.184],[0.036,0.666],[0.596,-0.046],[0.929,0.034],[0.012,0.24],[-0.953,0.414]],"o":[[0.999,0.322],[0.229,0.884],[0.057,0.138],[-0.528,0.046],[0,0],[0.011,-0.838],[-0.596,0.036],[-0.931,0.068],[-0.012,-0.369],[0.839,-0.356],[0,0]],"v":[[56.948,81.279],[59.875,82.335],[60.335,85.126],[60.232,85.47],[58.934,85.506],[58.946,85.184],[58.91,83.025],[57.12,83.128],[54.341,83.255],[54.306,82.394],[56.936,81.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.401,0],[-0.356,-0.138],[0.218,-0.034],[0.102,-1.653],[0.897,0.367],[-0.505,0.195],[-0.276,0.379],[-0.263,0.747],[-0.172,0.104]],"o":[[0.39,0.102],[-0.046,0.437],[-2.043,0.392],[-1.045,-0.218],[0.311,-0.229],[0.482,-0.344],[0.115,-0.598],[0.31,-0.252],[0.265,0]],"v":[[61.286,77.094],[62.274,77.449],[61.929,78.643],[59.886,82.191],[57.049,81.239],[58.175,80.573],[59.208,79.459],[59.702,77.519],[60.345,77.071]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.023,-0.068],[0.85,0.403],[-0.908,-0.276]],"o":[[0.127,0.046],[-0.827,-0.218],[0.712,0.127],[0,0]],"v":[[62.124,50.96],[62.194,51.235],[59.736,50.328],[62.137,50.96]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.471,0.861],[0.104,0.286],[-0.034,0.906],[0,0],[-0.299,0.297],[-0.012,-0.426],[0.046,-1.894]],"o":[[-0.401,-0.437],[-0.172,-0.551],[0.023,-0.7],[0,-0.208],[0.299,-0.31],[0.252,0.414],[0.045,1.733],[0,0]],"v":[[63.766,56.709],[62.491,54.815],[62.124,53.689],[62.205,51.37],[62.239,51.014],[63.136,50.095],[63.859,51.347],[63.766,56.72]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.52,0.624,0.311,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.07,2.628],[-0.034,0.804],[-0.598,-0.125],[-0.711,-1.262],[-0.059,-0.609],[-0.276,-0.712],[0.046,-0.505],[0.952,-0.403],[0.252,0.115]],"o":[[1.962,-2.274],[0.022,-0.644],[0.494,-0.07],[-0.369,1.172],[0.254,0.448],[0.057,0.655],[0.081,0.424],[-0.827,0.437],[-0.403,-0.012],[0,0]],"v":[[61.426,77.085],[62.838,69.438],[62.872,67.36],[64.446,67.519],[64.387,71.034],[64.308,72.871],[64.881,74.881],[64.904,76.177],[62.321,77.326],[61.413,77.085]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.195,2.376],[-0.369,1.344],[-0.39,-0.596],[0.138,-1.597],[0.07,-2.055],[0.022,-0.632],[2.1,-2.274],[0.276,0.172],[-0.068,1.264],[-0.091,2.297]],"o":[[0.125,-2.1],[0.379,-1.722],[0.471,0.7],[-0.231,1.597],[-0.149,1.733],[-0.011,0.965],[-0.07,2.617],[-0.403,0],[0.125,-1.412],[0.127,-2.297],[0,0]],"v":[[61.001,66.079],[61.449,59.489],[62.494,54.976],[63.746,56.87],[63.067,61.659],[62.849,67.193],[62.827,69.432],[61.277,77.08],[60.335,76.896],[60.702,72.957],[60.989,66.068]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.218,-0.034],[0.011,-0.46],[0.276,0.15],[-0.07,0.344]],"o":[[0.091,0],[0.127,0.369],[-0.172,0.102],[-0.034,-0.471],[0,0]],"v":[[61.587,102.127],[61.988,102.185],[62.092,103.334],[61.471,103.264],[61.587,102.117]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.102,-1.896],[0.356,-1.114],[0.081,0.183],[-0.125,2.836],[-0.138,0],[-0.172,0.012]],"o":[[-0.034,1.894],[-0.059,1.021],[-0.299,0.081],[0.057,-3.009],[0.07,0],[0.299,0],[0,0]],"v":[[62.826,93.245],[62.689,98.929],[62.058,102.075],[61.587,101.96],[61.827,93.268],[62.183,93.268],[62.826,93.256]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.104,1.459],[-0.115,0.011],[-0.023,-1.687],[-2.664,0.011],[-1.676,0.458],[-0.138,0.53],[-0.125,-0.022],[-0.172,-0.023],[0.734,-0.827],[1.574,0.791],[-0.297,1.527]],"o":[[0.034,-1.423],[0.195,-0.195],[0.034,1.688],[0.022,2.435],[-1.194,-1.563],[0.265,-0.07],[-0.057,-0.183],[0.299,0.046],[0.85,1.217],[-0.977,1.103],[-1.71,-0.861],[0,0]],"v":[[56.431,104.65],[56.592,100.47],[57.016,100.241],[57.12,105.304],[59.795,107.728],[60.851,104.869],[61.368,103.696],[61.437,103.387],[62.068,103.48],[62.31,107.9],[57.394,108.474],[56.418,104.661]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.161,0.345],[-1.527,-0.218],[-2.021,0],[-0.07,-1.343],[-0.161,-0.494],[0.127,-0.322],[0.643,-1.045],[0.081,1.366],[1.608,-0.585],[1.457,0.333],[0.206,-0.356]],"o":[[0.24,-0.437],[0.942,-1.273],[1.986,0.288],[1.137,0],[0.023,0.482],[0.115,0.356],[-0.414,1.01],[-0.184,-1.321],[-0.104,-1.79],[-1.642,0.596],[-0.655,-0.15],[0,0]],"v":[[45.705,92.579],[46.268,91.453],[49.92,90.282],[55.971,90.42],[57.946,92.051],[58.554,93.463],[58.646,94.6],[57.061,97.631],[56.809,93.555],[54.075,91.328],[49.678,91.041],[47.646,91.281]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.609,0.482],[-0.172,-0.102],[-0.195,-0.448],[0.712,-1.16],[0.322,0.598],[-0.023,0.494]],"o":[[0.448,-0.482],[0.321,-0.138],[0.208,0.575],[-0.541,0.874],[-0.378,-0.632],[-0.011,-0.471],[0,0]],"v":[[56.522,76.574],[58.028,75.265],[58.681,75.219],[59.279,76.688],[57.498,79.583],[56.511,77.882],[56.535,76.563]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.52,0.624,0.311,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.057,-2.261],[-0.081,-1.022],[0.104,-0.7],[0.15,-1.516],[-0.229,-0.172],[0.057,-0.116],[0.448,-0.344],[-0.252,5.43],[-0.297,0.516]],"o":[[0.161,1.975],[-0.034,1.264],[0,0.482],[-0.299,1.722],[0,0.102],[0.012,0.034],[-0.494,0.471],[0.229,-5.43],[0.023,-0.471],[0,0]],"v":[[57.867,58.708],[58.015,64.965],[58.13,68.261],[58.038,69.926],[57.383,74.669],[58.015,75.093],[57.901,75.277],[56.511,76.436],[57.211,60.155],[57.854,58.708]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.265,0.424],[-1.814,-0.688],[-0.036,1.975],[-0.403,0.401],[-0.379,-0.632],[-0.596,0.782],[-0.034,-0.311],[0.218,-0.643],[0.378,-0.333],[0.414,-0.287],[0.999,-0.345],[1.814,0.287],[0.7,0.539]],"o":[[0.242,-0.299],[1.767,0.747],[1.907,0.723],[0,-0.483],[0.448,0.551],[0.712,-1.16],[0.161,0.276],[-0.172,0.711],[-0.367,0.367],[-0.437,0.252],[-0.942,0.403],[-1.848,-0.254],[-0.815,-0.575],[0,0]],"v":[[46.601,79.944],[47.359,78.922],[52.628,81.378],[55.523,79.278],[56.384,77.923],[57.498,79.588],[59.346,76.774],[59.621,77.556],[59.116,79.507],[58.107,80.529],[56.957,81.298],[54.179,82.413],[48.817,81.62],[46.613,79.955]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.218,0.62],[-0.585,0.299],[-0.815,-0.424],[0.125,-0.757],[-0.39,-2.102],[0.252,-2.114],[-0.149,-1.241],[0.195,-0.632],[0.242,-0.458],[0.036,0.987],[-0.012,0.643],[0.012,1.126],[0.057,2.021],[-0.023,1.79]],"o":[[0.046,-0.838],[0.172,-0.471],[0.999,0.401],[0,0.838],[-1.413,1.826],[-0.127,2.274],[-2.17,0.321],[-0.286,0.712],[-0.195,0.62],[-0.068,-0.999],[0,-0.62],[0,-1.126],[-0.034,-2.181],[0.046,-1.618],[0,0]],"v":[[58.083,53.627],[58.302,51.434],[59.587,50.32],[62.183,51.434],[62.034,53.73],[61.379,59.586],[60.874,66.074],[59.576,68.968],[58.945,70.966],[58.279,72.665],[58.141,69.829],[58.153,68.083],[58.107,64.868],[57.969,58.632],[58.073,53.593]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.062,0.091,0.09,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.115,-0.321],[0.379,-0.081],[-0.757,-1.194],[0.057,-0.344],[0.265,-0.528],[0.012,-3.147],[0.172,-0.183],[0.551,-0.286],[-0.62,-0.217],[-0.321,0.046],[-0.242,-0.127],[0.265,-0.068],[-1.182,-1.561],[0.023,2.446],[0.011,1.837],[-0.068,0.816],[-0.414,1.022],[0.115,0.356],[0.023,0.482],[1.148,0],[1.986,0.288],[1.022,-1.183],[1.619,1.457],[1.08,-1.262],[-1.321,2.295],[0.678,0.963],[-0.263,0.011],[-0.63,0.367],[-0.276,0],[-0.39,0.081],[-0.263,-0.046],[-0.632,0.057],[-0.161,-0.149],[-0.102,-0.643],[-0.39,-0.483],[0.321,-0.218],[0.333,0.321],[0.356,0.125],[0.023,0.093],[0.297,0.195],[0.322,0.311],[0.195,0.091],[0.093,0.036],[0.242,-0.528],[-0.023,-0.482],[-1.377,-1.114],[-0.093,-0.494],[-0.344,-0.229],[-0.505,-0.414],[-1.883,0.528],[-0.333,0.449],[-0.231,0.356],[-0.367,-0.229],[0.138,-0.286],[-0.768,-0.195],[-0.621,-0.115],[-0.46,-0.022],[-0.528,-0.046],[-0.677,0.321],[-0.263,0.011],[-0.011,-0.127],[-0.265,-0.299],[-0.218,0.437],[0,0],[-0.401,0],[-0.596,-0.437]],"o":[[0.102,0.206],[-0.483,0.333],[-1.239,0.263],[0.138,0.218],[-0.333,0.437],[0,3.181],[-0.081,0.297],[-0.689,0.288],[0.596,0.276],[0.184,0.07],[0.311,0.036],[-0.161,0.458],[-1.676,0.46],[-2.664,0.023],[-0.012,-1.688],[0.023,-0.838],[0.551,-1.114],[0.127,-0.322],[-0.15,-0.483],[-0.07,-1.344],[-2.021,0],[-1.527,-0.218],[-1.275,-1.826],[-1.092,-0.988],[-0.906,-1.952],[0.539,-1.08],[0.242,-0.046],[0.644,-0.345],[0.276,-0.023],[0.39,-0.068],[0.286,0],[0.621,0],[0.276,0.034],[0.104,0.77],[0.345,0.276],[-0.195,0.505],[-0.345,-0.322],[-0.403,-0.218],[0,-0.012],[-0.218,-0.24],[-0.369,-0.286],[-0.161,-0.16],[-0.079,-0.023],[-0.31,0.39],[0.057,0.482],[-0.068,0.816],[-0.068,0.655],[0.068,0.39],[0.551,0.379],[1.722,1.4],[0.345,-0.093],[0.161,-0.505],[0.505,0.115],[-0.057,0.392],[-0.999,0.757],[0.632,0.081],[0.448,0.093],[0.528,0],[0.689,-0.218],[0.379,-0.127],[0,0.068],[0.276,0.414],[0.206,-0.369],[0,-0.07],[0.265,0],[0.632,0.401],[0,0]],"v":[[63.067,86.52],[63.067,87.197],[61.861,87.841],[60.919,89.85],[60.955,90.745],[60.115,92.077],[60.139,101.413],[59.852,102.067],[58.073,102.917],[59.886,103.709],[60.644,103.571],[61.402,103.744],[60.862,104.846],[59.806,107.705],[57.131,105.282],[57.05,100.069],[57.142,97.715],[58.635,94.616],[58.543,93.479],[57.935,92.066],[55.96,90.436],[49.909,90.298],[46.176,91.377],[42.307,86.234],[39.355,86.164],[38.506,80.068],[38.632,77.071],[39.275,76.99],[41.077,75.934],[41.779,75.898],[42.835,75.658],[43.546,75.692],[45.315,75.555],[45.9,75.761],[46.21,77.805],[47.279,78.827],[46.522,79.849],[45.58,78.965],[44.477,78.494],[44.42,78.367],[43.697,77.782],[42.732,76.955],[42.272,76.634],[41.939,76.564],[41.158,77.909],[41.319,79.252],[40.882,81.536],[40.7,83.213],[41.457,84.281],[43.271,85.177],[48.76,85.763],[49.667,84.671],[50.161,83.419],[51.423,83.867],[51.182,84.798],[51.595,85.911],[53.353,86.141],[54.605,86.279],[56.075,86.314],[58.003,85.51],[58.887,85.292],[58.921,85.625],[59.714,86.647],[60.346,85.487],[60.357,85.269],[61.299,85.269],[63.032,86.497]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.252,-0.252],[0.252,0.252]],"o":[[-0.172,-0.068],[0.172,0.057]],"v":[[64.192,49.445],[63.56,48.974]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.261,0.648,0.256,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.184,0],[0.023,-0.585],[0.231,-0.31],[0.116,0.127],[0.011,0.16],[-0.206,0.609]],"o":[[0.115,0.367],[-0.184,0.528],[-0.195,-0.012],[0,-0.263],[0.161,-0.506],[0.127,-0.104]],"v":[[64.077,84.821],[64.169,86.141],[63.594,87.29],[63.18,87.14],[63.17,86.567],[63.698,84.936]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.493,0.39],[-2.182,-0.435],[0,-0.747],[0.265,-0.46]],"o":[[0.63,-0.781],[0.161,0.551],[-0.208,0.736],[-0.598,-0.437]],"v":[[61.471,85.295],[63.503,83.009],[63.698,84.812],[63.066,86.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.218,-1.124],[0.011,-0.895],[0.208,-0.551],[0.068,0.655],[0.254,0.448],[-0.483,1.137],[-0.023,0.023]],"o":[[0.229,0.965],[0,0.759],[-0.104,0.908],[-0.263,-0.711],[-0.057,-0.609],[-0.711,-1.264],[0,0],[0,0]],"v":[[64.629,67.49],[65.295,70.555],[65.284,72.806],[64.881,74.884],[64.308,72.875],[64.387,71.038],[64.56,67.558],[64.618,67.501]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.195,-0.172],[0.023,-0.494],[0.184,-1.527],[0.768,-0.768],[0.321,0.149],[0.079,1.033],[-2.043,0.39],[-0.195,0.528],[-0.747,0.218]],"o":[[-0.149,0.494],[-0.057,1.436],[-2.24,-0.31],[-0.403,0],[-0.15,-1.022],[-0.036,-1.653],[0.218,-0.045],[0.861,-0.426],[-0.252,0.252]],"v":[[64.204,76.997],[63.767,78.466],[63.561,82.876],[61.334,85.275],[60.335,85.126],[60.026,82.187],[61.931,78.638],[62.425,77.342],[64.836,76.388]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-2.837,0.07],[-1.033,0.011],[-0.034,-0.091],[-0.218,-0.149],[0,-0.723],[0.184,-4.055],[0.07,-1.321],[0.125,0.034],[0.482,0.265],[-0.15,1.722],[-0.24,1.758],[0.045,1.733],[0.252,0.424],[0.414,-0.252],[0.931,0.229],[0.173,-0.471],[0.068,-0.689]],"o":[[-1.378,-2.573],[0.861,-0.023],[0.161,0],[0.252,0.252],[0.333,0.723],[0,3.767],[-0.115,1.595],[-0.022,0.023],[-0.598,-0.127],[0.057,-1.905],[0.136,-1.608],[0.046,-1.894],[0,-0.426],[-0.299,0.31],[-0.895,-0.276],[-0.516,0.403],[-0.229,0.62],[0,0]],"v":[[58.06,53.459],[60.599,48.878],[63.365,48.867],[63.56,48.959],[64.238,49.521],[65.202,51.68],[64.858,63.266],[64.616,67.492],[64.433,67.515],[62.872,67.032],[63.067,61.659],[63.755,56.709],[63.848,51.336],[63.125,50.085],[62.113,50.957],[59.507,50.21],[58.289,51.427],[58.049,53.459]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":521,"st":0},{"ind":2,"ty":4,"nm":"b","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.009},"t":14,"s":[354.524,505.745,0],"to":[0,-5,0],"ti":[0,5,0]},{"t":27,"s":[354.524,475.745,0]}]},"a":{"a":0,"k":[32.024,113.245,0]},"s":{"a":0,"k":[515,515,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.023,0.274],[-0.999,-0.356],[0.286,-0.55],[0.7,0.632]],"o":[[0.918,0.195],[-0.263,0.494],[-0.644,-0.493],[-0.115,-0.195]],"v":[[26.771,84.503],[29.583,85.375],[28.792,86.855],[26.862,85.133]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.589,0.357,0.19,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.31,-0.034],[-0.838,-0.596],[0.091,-0.596],[1.687,0.081],[0.023,0.333],[-0.265,0.494],[0.897,0.322],[-0.011,0.023]],"o":[[0.392,-0.723],[1.011,0.116],[0.344,0.254],[-0.173,1.08],[-0.184,-0.127],[0.265,-0.643],[-0.988,-0.356],[0,0],[0,0]],"v":[[26.828,84.329],[27.988,82.331],[30.894,83.525],[31.135,85.328],[29.08,87.534],[28.826,86.948],[29.585,85.375],[26.794,84.376],[26.828,84.318]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.908,0.468,0.251,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.24,-0.369],[0.263,0.367]],"o":[[-0.263,-0.184],[0.24,0.184]],"v":[[40.55,96.291],[39.782,95.464]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.63,-0.023],[0.632,0.023]],"o":[[-0.424,0.104],[0.424,-0.102]],"v":[[37.921,95.282],[36.349,95.397]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.747,-0.081],[-0.757,0.091]],"o":[[0.505,-0.172],[-0.494,0.149]],"v":[[37.772,97.877],[39.655,97.509]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.149,-1.54],[1.332,0.263]],"o":[[-1.172,-0.07],[1.207,-0.449]],"v":[[40.414,100.178],[36.716,99.65]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.561,0.012],[-1.561,-0.023]],"o":[[1.309,-0.115],[-1.309,0.115]],"v":[[31.457,97.897],[35.774,97.748]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-2.113,0.263],[-0.872,0.252],[-0.976,-0.057],[-1.206,-0.195],[-0.012,-0.62],[0.575,-0.034],[1.688,0],[0.458,-0.208],[1.584,2.562],[0.711,-0.437],[0,0.745]],"o":[[2.113,-0.392],[0.781,-0.104],[0.793,-0.115],[1.481,0.265],[0,0.482],[-0.564,0.414],[-1.676,0.068],[-0.505,0],[-3.009,1.32],[-0.575,0.437],[-0.138,-0.596],[0,0]],"v":[[25.347,101.141],[31.687,100.257],[34.109,99.729],[36.578,99.659],[40.459,100.314],[40.482,101.886],[38.805,102.817],[33.753,102.76],[32.238,103.059],[27.358,101.749],[25.498,103.07],[25.36,101.141]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.191,0.202,0.152,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.125,0.321],[0.125,-0.322]],"o":[[0.036,0.184],[-0.034,-0.184]],"v":[[21.799,108.319],[21.674,109.088]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.138,0.609],[0.116,-0.621]],"o":[[0.036,0.46],[-0.022,-0.437]],"v":[[22.039,94.333],[21.901,95.93]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.424,0.999],[-0.263,-0.609]],"o":[[0.31,0.39],[-0.895,0]],"v":[[21.754,103.178],[22.569,104.66]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.275,0.183],[-0.414,-0.494],[0.242,-0.104],[0.39,-0.242],[-0.367,-0.011],[-2.401,-0.138],[0.781,-0.091],[2.113,-0.242],[0.299,0.127],[0.711,0.356],[-0.104,0.643]],"o":[[1.217,-0.448],[0.322,-0.046],[-0.252,0.068],[-0.414,0.149],[0.356,0.287],[2.308,0.091],[-0.689,0.254],[-2.114,0.265],[-0.195,-0.104],[-0.723,-0.322],[0.045,-0.598],[0,0]],"v":[[22.902,97.88],[26.633,96.813],[27.793,98.007],[26.978,98.007],[25.818,98.707],[26.898,99.511],[33.914,99.717],[31.663,100.245],[25.324,100.98],[24.635,100.647],[22.592,99.672],[22.879,97.88]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.908,0.414],[-0.62,-0.757],[-2.102,0.918],[-1.09,-0.057],[-0.517,0.034],[-0.654,-0.115],[-0.242,-0.276],[0.414,-0.39],[0.62,-0.104],[0.77,0.07],[1.447,-0.057],[1.239,0.011],[0.322,-0.046],[1.251,-0.345],[0.287,0.734],[-0.07,0.505],[0,0.012]],"o":[[0.999,-0.218],[1.021,-0.458],[1.309,1.618],[0.931,-0.081],[0.781,0.023],[0.482,0],[0.414,0.379],[-0.172,0.345],[-0.861,0.15],[-0.494,0],[-1.71,-0.022],[-1.069,0.091],[-0.551,-0.483],[-1.273,0.184],[-0.345,-0.494],[0.115,-0.759],[0,0],[0,0]],"v":[[22.144,94.263],[25.131,93.585],[27.415,94.136],[33.328,95.434],[36.187,95.411],[38.013,95.354],[39.632,95.468],[40.516,96.387],[39.759,97.466],[37.657,97.822],[35.912,97.753],[31.32,97.846],[27.932,98.007],[26.622,96.823],[22.857,97.788],[21.892,96.066],[22.134,94.286],[22.134,94.274]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.528,0.448],[0.528,-0.458]],"o":[[-0.297,0.414],[0.299,-0.412]],"v":[[40.411,109.144],[39.183,110.44]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.062,0.091,0.09,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.102,-0.195],[0.356,-0.747],[-0.276,0.906]],"o":[[0.127,0],[-0.195,0.804],[0.081,-0.77],[0,0]],"v":[[23.292,110.123],[23.568,110.386],[22.764,112.626],[23.305,110.123]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.195,0.528],[-0.081,-0.046],[1.527,-0.242],[0.046,0.079]],"o":[[0.093,-0.104],[0.757,0.791],[-0.218,-0.184],[0.115,-0.426]],"v":[[23.808,108.647],[24.13,108.647],[23.682,110.369],[23.383,110.036]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.011,-0.494],[0.587,0.023],[0.115,0.424],[-0.677,0.034]],"o":[[-0.471,0.138],[-0.229,-0.299],[0.528,-0.127],[0.161,0.299]],"v":[[24.544,105.827],[23.027,105.918],[22.592,104.885],[24.348,104.713]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.287,0],[-0.102,1.08],[-0.195,-0.254],[-0.011,-0.585],[0.012,-0.287]],"o":[[-0.149,-0.952],[0.311,-0.023],[0,0.734],[0,0.16],[-0.172,0.127]],"v":[[24.715,103.779],[24.646,100.805],[25.347,101.128],[25.358,103.045],[25.335,103.664]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.632,0.46],[-0.424,0.458],[-0.46,-0.034],[0.184,-0.908],[0,0]],"o":[[-0.528,-0.414],[0.104,-0.424],[0.666,-0.057],[-0.093,0.804],[-0.102,0.104],[0,0]],"v":[[23.901,108.545],[22.213,107.258],[22.959,105.995],[24.533,105.995],[24.164,108.521],[23.912,108.556]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.252,0.494],[-0.356,1.137],[-0.596,-0.448],[-0.023,-0.942],[0.172,-0.369],[0.551,-0.012],[0,0.115]],"o":[[0.172,-1.09],[0.791,0.263],[0,1.103],[-0.034,0.218],[-0.689,0.149],[0,0],[-0.252,-0.609]],"v":[[21.822,103.079],[22.535,99.761],[24.544,100.771],[24.601,103.768],[24.361,104.584],[22.569,104.756],[22.569,104.665]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.32,0.505,0.183,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.999,-0.39],[4.146,0.757],[0.539,-0.057],[0.127,0.39],[-0.138,0.161],[-0.573,0.435],[-3.02,1.32],[-0.505,0],[-1.676,0.07],[-0.551,0.276]],"o":[[0.621,1.159],[-4.055,1.55],[-0.39,-0.07],[-0.218,-0.16],[-0.034,-0.378],[0.702,-0.437],[1.586,2.571],[0.46,-0.208],[1.688,0],[0.575,-0.023],[0,0]],"v":[[40.47,102.02],[39.449,103.821],[27.15,104.361],[25.807,104.487],[25.371,103.764],[25.485,103.064],[27.345,101.744],[32.226,103.053],[33.742,102.754],[38.794,102.811],[40.47,102.03]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,-0.401],[0.333,0.401]],"o":[[-0.297,-0.172],[0.286,0.183]],"v":[[43.546,89.976],[42.617,89.104]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.344,0.208],[-0.333,0.575],[-0.149,-0.034],[0.183,-0.781]],"o":[[-0.356,0],[0.276,-0.654],[0.149,0.036],[-0.115,0.643],[0,0]],"v":[[24.842,83.027],[23.854,82.67],[24.796,80.868],[25.254,80.971],[24.842,83.039]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.299,0.161],[-1.493,-0.355],[-0.506,-1.241],[0.505,-1.32],[0.311,-0.265],[0.195,0.414],[-0.172,1.092],[0.345,0.254],[1.01,0.116],[0.379,-0.689]],"o":[[-0.265,-0.104],[0.494,-1.286],[1.366,0.322],[0.39,0.988],[-0.091,0.242],[-0.412,-0.208],[1.71,-0.045],[0.091,-0.596],[-0.838,-0.607],[-0.299,-0.034],[0,0]],"v":[[26.83,84.304],[26.003,83.936],[28.471,81.191],[31.986,83.982],[30.745,87.898],[30.009,88.553],[29.069,87.656],[31.135,85.325],[30.894,83.522],[27.99,82.328],[26.84,84.304]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.589,0.357,0.19,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-2.365,-0.46],[-0.827,-0.712],[-0.471,-0.104],[-0.367,1.561],[-0.023,-0.838],[0.081,-0.585],[1.309,1.618],[1.01,-0.46],[0.999,-0.206],[0.954,0.678],[0.632,0.654]],"o":[[2.365,0.127],[0.815,0.16],[0.471,0.643],[1.08,0.242],[1.194,-0.53],[-0.036,0.539],[-2.055,0.999],[-0.62,-0.77],[-0.918,0.401],[0.528,-1.378],[-0.643,-0.458],[0,0]],"v":[[18.997,89.848],[26.162,90.526],[28.447,92.443],[29.664,94.142],[32.305,92.662],[33.431,93.809],[33.293,95.347],[27.424,94.142],[25.14,93.591],[22.154,94.257],[20.822,91.57],[19.008,89.86]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.965,-0.31],[0.046,0.551],[-0.149,0.138],[-0.849,-0.322]],"o":[[-0.747,0.437],[-0.149,-0.414],[0.07,-0.217],[0.827,0.161],[0,0]],"v":[[22.798,82.367],[20.26,83.446],[20.041,82.091],[20.34,81.667],[22.786,82.356]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.49,-1.504],[-0.7,0.906],[-0.827,0.333],[-0.401,-0.115],[-0.288,-0.149],[-0.471,-0.321],[-0.265,-0.127],[0.023,-0.115],[0,-0.161],[0.517,-0.345]],"o":[[-1.745,-1.493],[0.367,-0.815],[1.058,-0.379],[0.229,0.036],[0.471,0.218],[0.31,0.184],[0.424,0.231],[0,0.023],[-0.023,0.288],[-0.39,0.333],[0,0]],"v":[[25.45,86.112],[18.607,86.089],[20.156,83.518],[22.866,82.483],[23.727,82.667],[24.773,83.172],[25.876,83.872],[26.828,84.332],[26.771,84.504],[26.747,85.113],[25.45,86.124]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.61,0.851,0.27,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.081,-0.598],[-1.103,0.172],[0.437,-0.046],[0.987,1.86],[0.138,-0.356],[0.414,-0.102],[0.562,0.379],[0.39,0.494],[-0.287,0.288],[-1.618,-1.504]],"o":[[0.081,0.585],[0.516,-0.081],[-0.575,0.861],[-2.365,0.263],[-0.07,0.39],[-0.252,0.62],[-0.551,0.127],[-0.403,-0.276],[0,-0.252],[2.583,-1.55],[0,0]],"v":[[25.337,86.118],[25.578,87.887],[27.714,87.554],[26.37,89.471],[22.191,86.084],[21.96,87.232],[21.065,88.931],[19.171,88.197],[18.159,86.875],[18.539,86.152],[25.347,86.129]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.401,0.229],[0.356,0.516],[-0.138,0.471],[-0.401,-0.276],[-0.551,0.125],[-0.252,0.621],[-0.068,0.379],[-2.367,0.265],[-0.575,0.85],[0.517,-0.081],[-0.046,0.598],[-0.505,0.299],[-0.621,-0.689],[-0.046,-0.242],[-0.322,-0.288],[0.757,-0.827],[0.712,-0.551],[0.815,0.149]],"o":[[-0.299,-0.424],[-0.034,-0.494],[0.414,0.344],[0.564,0.39],[0.412,-0.093],[0.149,-0.355],[0.988,1.86],[0.435,-0.046],[-1.09,0.172],[-0.081,-0.585],[0.517,-0.344],[0.7,0.632],[0.079,0.229],[0.321,0.401],[1.045,0.528],[-0.505,0.562],[-0.895,-0.632],[-2.367,-0.458]],"v":[[18.963,89.734],[18.011,88.368],[18.125,87.013],[19.158,88.184],[21.054,88.92],[21.949,87.219],[22.178,86.072],[26.359,89.459],[27.702,87.541],[25.566,87.874],[25.451,86.106],[26.864,85.13],[28.77,87.047],[28.942,87.645],[29.918,88.621],[30.274,90.699],[28.516,92.341],[26.164,90.515]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.641,-0.263],[-2.653,0.276]],"o":[[2.376,-0.39],[-2.367,0.379]],"v":[[24.739,72.111],[32.26,71.135]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.011,0.367],[-1.321,-0.263],[0.367,-0.458],[0.62,-0.023],[0.379,0.39]],"o":[[-0.102,-0.276],[1.217,0.057],[-0.208,0.448],[-0.562,0.161],[-0.379,-0.401],[0,0]],"v":[[35.669,74.2],[35.577,73.316],[39.321,73.821],[38.413,75.095],[36.714,75.348],[35.669,74.188]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.318,0.228,0.153,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.755,-0.414],[0.31,0.091],[0.367,0.218],[-0.355,0.034],[-3.192,0.104],[0,-0.242]],"o":[[-2.744,0.401],[-0.344,0.045],[-0.403,-0.115],[0.321,-0.333],[3.033,-0.299],[0.161,0.379],[0,0]],"v":[[35.566,74.177],[27.322,75.394],[26.289,75.509],[25.175,74.877],[26.162,73.924],[35.418,73.316],[35.579,74.177]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.215,0.265,0.121,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.493,0.195],[0.172,0.528],[0.31,1.425],[-1.228,-0.297],[-0.183,-0.242],[-0.31,-0.287],[-0.793,-0.895],[0.229,-0.908]],"o":[[-0.575,0.149],[-0.575,-0.229],[-0.448,-1.378],[-0.184,-0.849],[0.184,0.104],[0.403,0.458],[0.689,0.804],[-0.138,0.872],[0,0]],"v":[[45.121,95.146],[43.399,95.284],[41.94,94.032],[41.021,89.772],[42.112,88.635],[42.559,89.061],[43.571,90.094],[45.74,92.586],[45.132,95.146]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.137,0.169,0.128,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.401,-0.195],[5.201,0.344],[0.39,0.104],[0.011,0.757],[-0.378,-0.068],[-4.064,1.55],[0.632,1.298],[0.046,0.596],[1.481,-0.379],[0.874,0],[2.308,0.104],[0.356,0.276],[-0.412,0.149],[-0.424,-0.034],[-1.194,0.023],[-1.597,0.045],[-0.598,-0.057],[-0.747,0.195],[-0.206,0.437],[0.424,0.276],[0.585,0.068],[0.678,-0.045],[0.883,0.081],[-0.034,0.414],[-1.608,0.104],[-0.068,0.585],[-0.104,1.814],[-0.747,-0.482],[-0.184,-0.849],[-0.448,-1.368],[-0.573,-0.231],[-0.585,0.011],[1.47,-0.437],[-0.356,-2.422],[-1.848,0.045],[0.104,-0.448]],"o":[[-0.482,0.184],[-4.961,2.309],[-0.551,-0.034],[-0.138,-0.861],[0.505,-0.161],[4.146,0.759],[0.999,-0.379],[0,-0.62],[-1.137,-1.54],[-0.85,0.012],[-2.48,-0.023],[-0.369,-0.011],[0.378,-0.24],[0.231,-0.091],[1.217,-0.104],[1.563,0.011],[0.643,0],[0.747,-0.081],[0.274,-0.401],[-0.242,-0.367],[-0.621,0],[-0.62,-0.023],[-0.987,0],[-0.023,-0.505],[1.608,0.093],[0.424,-0.022],[0.197,-1.665],[0.872,0.265],[-1.194,-0.184],[0.31,1.423],[0.172,0.528],[0.494,0.195],[0.861,1.251],[-1.962,0.573],[0.217,1.47],[-0.091,0.356],[0,0]],"v":[[44.374,105.447],[42.985,105.814],[27.587,107.273],[26.106,106.87],[25.841,104.598],[27.15,104.368],[39.448,103.829],[40.47,101.888],[40.413,100.189],[36.44,99.591],[34.005,99.614],[26.91,99.511],[25.831,98.707],[26.989,98.007],[27.977,98.121],[31.456,97.915],[36.05,97.835],[37.772,97.892],[39.897,97.489],[40.55,96.308],[39.598,95.377],[37.91,95.309],[36.084,95.377],[33.375,95.296],[33.409,93.964],[38.243,94.159],[39.367,92.587],[39.632,87.408],[42.067,88.545],[41.01,89.796],[41.929,94.057],[43.386,95.309],[45.121,95.309],[43.834,98.834],[41.895,102.45],[44.638,104.357],[44.362,105.494]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.333,0.356],[0.197,-0.471]],"o":[[-0.31,-0.379],[-0.403,0.379],[0,0]],"v":[[34.947,111.986],[33.96,110.907],[32.811,112.067]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.55,0.471],[-0.632,-1.171]],"o":[[0.16,-1.172],[1.631,-0.493],[0,0]],"v":[[31.676,113.227],[33.11,110.194],[35.82,112.158]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.195,0.036],[-0.412,0.424],[-1.09,-0.023],[0.229,-0.643]],"o":[[0,0],[0.034,-0.116],[0.609,-0.471],[0.977,-0.023],[-0.115,0.689],[0,0]],"v":[[38.714,110.625],[38.701,110.625],[39.104,110.451],[40.538,109.132],[43.592,109.108],[43.03,111.083]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.311,0.07]],"o":[[0.263,-0.173],[0,0]],"v":[[21.742,113.035],[22.511,112.723]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.254,0.437],[-0.034,0.263],[-0.206,0.344],[-0.435,-0.517],[0.206,-0.505],[0.183,-0.825],[0.127,-0.012],[0.195,-0.068],[0.333,0.712],[-0.093,0.263]],"o":[[0.138,-0.265],[0.149,-0.437],[0.046,-0.265],[0.689,0.333],[-0.206,0.528],[-0.276,0.908],[0,0],[-0.322,0.079],[-0.287,-0.539],[0.046,-0.437],[0,0]],"v":[[21.133,110.165],[21.65,109.2],[21.867,108.247],[22.166,107.386],[23.808,108.648],[23.292,110.118],[22.649,112.678],[22.522,112.714],[21.799,112.92],[20.881,111.141],[21.122,110.165]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.267,0.649,0.298,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.104,0.057],[-0.367,0.7],[0.654,0.884],[-0.115,0.965],[0.023,0.435],[-0.161,0.217],[-0.206,-0.102],[-0.127,-0.276],[-0.138,-0.863],[-0.551,-0.034],[-4.961,2.309],[-0.448,0.081],[0,0],[0.333,-1.194],[1.092,-0.034],[0.482,-0.448],[0,0],[1.056,-0.53],[1.631,-0.493],[0.173,-1.183]],"o":[[0.011,0],[0.356,-0.746],[1.481,-0.367],[0.115,-0.942],[0,-0.494],[0.036,-0.333],[0.287,0],[0.127,0.265],[0.138,0.757],[0.39,0.115],[5.213,0.344],[0.401,-0.183],[0,0],[-0.195,1.103],[-1.114,0.115],[-0.528,0.46],[-0.081,0],[-0.906,0.517],[-0.7,-1.069],[-1.55,0.471],[0,0]],"v":[[22.637,112.728],[22.752,112.637],[23.727,110.501],[24.221,108.56],[24.542,105.839],[24.485,104.588],[24.715,103.807],[25.369,103.909],[25.714,104.622],[26.105,106.884],[27.585,107.286],[42.984,105.827],[44.339,105.574],[44.339,105.563],[43.603,108.974],[40.411,109.146],[38.988,110.488],[38.746,110.512],[35.876,112.074],[33.108,110.213],[31.673,113.245]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.052,0.066,0.083,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.458,-0.011],[0.437,0.022]],"o":[[-0.217,0.081],[0.252,-0.093]],"v":[[30.204,69.425],[29.171,69.518]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.137,0.908],[-2.215,0.059],[-0.081,0],[0.218,-0.149]],"o":[[2.009,-0.125],[0.15,-0.045],[-0.07,0.242],[-0.976,0.7]],"v":[[33.099,71.253],[39.39,71.057],[39.793,71],[39.403,71.713]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.506,0.034],[-0.115,0.85],[-1.951,-0.07],[-0.379,0.034],[-2.422,0.012],[0.023,-1.343],[2.066,-0.022],[0.401,0.022],[2.492,-0.31]],"o":[[-0.367,-0.012],[-0.045,-0.757],[1.769,-0.149],[0.598,0.057],[2.422,-0.034],[0.929,0],[-2.204,0.195],[-0.138,0],[-2.757,0.287],[0,0]],"v":[[24.624,72.033],[23.383,71.976],[23.545,69.622],[29.01,69.507],[30.355,69.484],[37.634,69.403],[39.367,70.93],[33.029,71.16],[32.353,71.138],[24.613,72.044]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.39,-0.068],[-0.379,0.081]],"o":[[0.161,-0.091],[-0.161,0.091]],"v":[[41.986,75.873],[42.813,75.62]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.609,0.149],[-0.011,-0.138],[0.609,-0.011]],"o":[[0.138,0.034],[-0.505,0.161],[0.39,-0.195]],"v":[[45.246,75.19],[45.406,75.431],[43.764,75.671]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.023,0.252],[-0.62,0.104],[0.643,-0.333]],"o":[[0.539,-0.276],[-0.424,0.403],[-0.116,-0.15]],"v":[[39.414,76.43],[41.089,75.89],[39.494,76.982]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.011,0.057],[0.895,0.355],[0.012,0.161],[-0.379,0.265],[0.115,-1.515],[0.288,0.115]],"o":[[0.023,-1.286],[-0.115,-0.127],[0.322,-0.263],[1.114,0.575],[-0.161,0.115],[-0.138,-0.16]],"v":[[45.372,75.177],[43.42,73.605],[43.293,73.26],[44.316,72.571],[46.118,75.476],[45.521,75.453]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.215,0.265,0.121,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.356,0.483],[-0.322,0.367],[-1.447,0.081],[0.161,-1.31],[0.483,-0.138],[0.39,-0.011],[0.276,-0.081],[0.367,0.023],[0.517,-0.161]],"o":[[-0.287,-0.345],[0.265,-0.505],[1.205,-0.104],[1.033,0.322],[-0.607,0.149],[-0.16,0],[-0.505,0.081],[-0.161,0.011],[-0.723,0.127],[0,0]],"v":[[39.435,76.311],[38.517,75.139],[39.424,73.9],[43.283,73.611],[45.245,75.174],[43.66,75.599],[42.937,75.609],[41.881,75.851],[41.204,75.851],[39.435,76.299]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.331,0.352,0.136,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.012,0.39],[-1.09,-0.988],[-1.275,-1.824],[0.333,-0.345],[0.7,0.908],[0.379,0.344],[0.104,0.195],[0.815,0.39]],"o":[[0,-0.263],[0.954,-1.436],[1.619,1.459],[-0.081,0.437],[-0.861,-0.804],[-0.333,-0.401],[-0.149,-0.127],[-0.85,-0.505],[0,0]],"v":[[39.702,87.241],[39.689,86.335],[42.514,86.231],[46.385,91.375],[45.81,92.501],[43.56,89.985],[42.538,88.952],[42.205,88.539],[39.725,87.253]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.047,0.063,0.074,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.24,-0.046],[0.229,-0.138],[2.193,-1.368],[1.16,0.768],[-1.264,0.804],[-0.77,0.471],[-0.585,-0.012],[-0.63,0.023],[-0.263,-0.46],[0.012,-0.149]],"o":[[-0.426,0.022],[-2.068,1.241],[-0.551,-0.369],[1.47,-0.977],[0.677,-0.424],[0.424,-0.115],[0.746,-0.034],[0.39,0.379],[-0.034,0.252],[-0.138,0.023]],"v":[[38.841,77.059],[37.795,77.104],[31.502,80.998],[29.08,79.39],[33.042,76.76],[35.212,75.509],[36.578,75.371],[38.472,75.244],[39.414,76.427],[39.356,76.966]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.466,0.468,0.161,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.366,3.146],[-0.976,0.918],[-0.906,-2.078],[0.057,-0.392],[0.195,-1.665],[0.424,-0.023],[1.608,0.218],[1.182,-0.401]],"o":[[1.182,-3.215],[0.46,-1.056],[-1.171,2.148],[0.127,0.437],[-0.115,1.814],[-0.068,0.585],[-1.597,0.104],[-0.023,-0.838],[0,0]],"v":[[32.319,92.538],[35.946,82.915],[38.565,80.205],[39.575,86.279],[39.644,87.371],[39.38,92.549],[38.255,94.122],[33.432,93.8],[32.319,92.525]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.012,0.781],[0.011,0.208],[-1.584,-0.265],[-3.398,1.355],[-0.297,-0.102],[0.678,-0.424],[1.457,-0.976],[-0.551,-0.367],[-2.057,1.239],[-0.321,0],[0.655,-1.101],[0.458,-1.056],[1.206,-3.341],[1.08,0.24],[0.286,0.655],[-0.506,0.551],[0.963,0.621],[-0.091,0.24],[0.401,0.987],[1.366,0.322],[0.655,-1.148],[0.254,0.321],[-0.115,0.643],[0.149,0.036],[0.448,-0.564],[0.31,0.138],[0.77,0.218],[0.023,0.172]],"o":[[0.046,-0.77],[-0.057,-0.242],[0.655,-1.595],[3.582,0.609],[0.208,-0.081],[-0.63,0.494],[-1.262,0.804],[1.159,0.77],[2.193,-1.366],[0.229,-0.138],[0.793,0.953],[-1.01,1.035],[-1.368,3.135],[-0.367,1.574],[-0.471,-0.104],[0.596,-0.632],[0.745,-0.826],[0.31,-0.276],[0.505,-1.321],[-0.494,-1.241],[-1.493,-0.356],[-0.435,-0.252],[0.184,-0.781],[-0.149,-0.034],[-0.333,0.575],[-0.345,-0.046],[-0.85,-0.322],[0,-0.07],[0,0]],"v":[[20.376,81.32],[20.503,79.116],[20.422,78.552],[23.856,76.371],[34.304,75.441],[35.061,75.498],[33.029,76.773],[29.069,79.402],[31.491,81.01],[37.784,77.118],[38.724,77.095],[38.587,80.102],[35.924,82.927],[32.283,92.676],[29.642,94.158],[28.609,92.446],[30.263,90.735],[29.988,88.565],[30.722,87.912],[31.962,83.996],[28.448,81.205],[25.818,83.823],[24.819,83.054],[25.233,80.987],[24.774,80.883],[23.661,82.607],[22.776,82.389],[20.399,81.642],[20.365,81.332]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.318,0.228,0.153,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.149,0.229],[0.149,-0.252]],"o":[[0,0.16],[0,-0.138]],"v":[[22.155,68.965],[21.926,69.561]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.261,0.648,0.256,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.344,0.184],[0.057,-0.666],[0.276,0.276],[-0.023,0.254]],"o":[[0.218,-0.333],[0.07,0.7],[-0.218,-0.183],[-0.046,-0.242],[0,0]],"v":[[19.651,79.946],[20.421,79.2],[20.363,81.232],[19.64,80.601],[19.64,79.957]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.242,-0.46],[0.081,-0.195],[0.206,-0.218],[-0.068,0.838]],"o":[[0.242,0.195],[0.07,0.287],[-0.287,0.311],[0,-0.736],[0,0]],"v":[[19.721,77.516],[20.376,78.458],[20.376,79.054],[19.676,79.813],[19.721,77.505]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.299,-0.125],[-0.424,0.953],[0.161,-0.849]],"o":[[-0.265,0.195],[0.242,-0.838],[-0.023,0.643],[0,0]],"v":[[21.513,74.395],[20.766,74.819],[21.788,72.168],[21.513,74.406]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.261,0.648,0.256,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.045,-0.963],[-0.963,1.355],[-0.229,-0.286],[0.068,-0.125],[0.081,-0.068]],"o":[[-0.953,0.906],[0.689,-1.343],[0.39,0.229],[0.023,0.172],[-0.15,0.127],[0,0]],"v":[[20.032,81.95],[17.092,84.716],[19.538,80.618],[20.388,81.318],[20.354,81.685],[20.032,81.961]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.07,0.723],[-0.045,0.77],[-0.161,0.195],[-0.963,0.759],[0.081,-0.46],[0.562,-0.918],[0.125,-0.322],[0.125,-0.448],[0.195,-0.333]],"o":[[-0.16,-0.712],[-0.045,-0.609],[0.012,-0.206],[1.08,-1.033],[0.046,0.541],[-0.575,0.918],[-0.184,0.242],[-0.046,0.539],[-0.299,0.39],[0,0]],"v":[[17.159,89.389],[16.711,87.253],[16.849,85.255],[17.044,84.795],[20.041,82.097],[20.03,83.499],[18.423,86.197],[18.032,86.944],[18.749,88.304],[18.607,89.4]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.379,1.137],[-0.483,-0.093],[-2.63,0.345],[-0.195,-0.091],[-0.976,0.7],[-0.149,0.242],[-1.183,-0.838],[0.138,-0.091],[1.309,-0.023],[1.378,0.195],[3.031,-0.31],[0.333,-0.333],[-0.39,-0.115],[-0.344,0.045],[-2.847,0.379],[-0.15,-0.379],[0.494,0],[0.206,-0.079],[3.584,0.609],[0.723,-1.423],[0.161,0.286],[-0.414,0.918],[-0.195,0.102]],"o":[[1.769,0.115],[0.539,-0.081],[2.641,-0.265],[0.242,0],[1.137,0.908],[0.218,-0.161],[1.056,0.689],[0.138,0.195],[-1.344,0.138],[-1.321,-0.265],[-3.203,0.218],[-0.356,0.034],[0.367,0.218],[0.31,0.081],[2.744,-0.403],[0.379,0.39],[-0.494,0.034],[-0.369,0],[-3.387,1.355],[-1.584,-0.265],[-0.229,-0.367],[0.252,-0.791],[0.344,-0.229],[0,0]],"v":[[21.444,74.504],[23.351,72.092],[24.74,72.115],[32.525,71.161],[33.099,71.253],[39.403,71.713],[39.874,71],[43.169,73.216],[43.169,73.573],[39.311,73.838],[35.407,73.193],[26.14,73.929],[25.154,74.881],[26.267,75.513],[27.3,75.399],[35.636,74.215],[36.452,75.341],[35.12,75.41],[34.293,75.444],[23.843,76.374],[20.342,78.383],[19.779,77.431],[20.698,74.939],[21.421,74.504]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.872,0.39]],"o":[[0.965,-0.621],[0,0]],"v":[[35.969,112.143],[38.714,110.615]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.062,0.091,0.09,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.379,0.344],[-0.62,1.124]],"o":[[-0.435,-0.252],[-0.493,-0.46],[0,0]],"v":[[42.284,70.209],[41.089,69.244],[40.205,67.545]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.369,-0.173],[1.092,-3.364],[0.104,0.908],[1.067,0.666],[0,0],[-0.081,1.722]],"o":[[0.104,0.483],[3.076,1.447],[-0.125,-0.505],[0.116,-1.642],[0,0],[-1.194,-0.081],[0,0]],"v":[[43.214,70.294],[43.893,71.638],[46.441,77.643],[46.108,75.599],[44.364,72.464],[44.374,72.476],[42.285,70.34]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.125,-0.85],[1.701,0.218],[-0.093,0.745],[-0.068,0.931],[-0.081,0.184],[-0.125,0.231]],"o":[[-0.127,0.999],[-0.242,1.16],[0.161,-0.85],[0,-0.702],[0.15,-0.414],[0.102,-0.149],[0,0]],"v":[[23.546,69.47],[23.213,72.064],[21.513,74.395],[21.858,72.053],[21.926,69.71],[22.248,68.94],[22.569,68.412]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.494,-0.46],[-0.39,-0.494],[-1.137,-0.173],[0.437,-0.125],[1.137,0.7],[0.011,0.127],[0.929,-0.011],[2.583,0.011],[0.471,0],[1.735,0.115],[0,0],[0,0]],"o":[[-0.632,1.126],[0.39,0.355],[-0.034,1.618],[-0.378,0.263],[-1.183,-0.734],[-0.081,0],[-0.127,-1.296],[-2.422,0.011],[-0.471,-0.023],[-1.896,0.011],[0,0],[0,0],[0,0]],"v":[[40.205,67.543],[41.089,69.244],[42.248,70.449],[44.326,72.574],[43.179,73.124],[39.802,71],[39.539,70.873],[37.656,69.392],[30.215,69.439],[28.964,69.439],[23.545,69.622],[22.569,68.412],[40.01,67.543]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.075,0.098,0.085,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.189,0.924],[0,0],[0.003,-0.758],[0,0]],"o":[[0,0],[-1.189,-0.924],[0,0],[-0.003,0.758],[0,0]],"v":[[46.385,91.375],[46.928,74.692],[39.321,73.821],[37.341,79.987],[38.272,87.537]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.047,0.063,0.074,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1422,"st":0},{"ind":3,"ty":4,"nm":"r","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.99]},"o":{"x":[0.81],"y":[0.01]},"t":0,"s":[-52]},{"i":{"x":[0.46],"y":[0.991]},"o":{"x":[0.81],"y":[0.009]},"t":14,"s":[0]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":25,"s":[-9]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":42,"s":[47]},{"i":{"x":[0.46],"y":[1.143]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[-9]},{"i":{"x":[0.46],"y":[1.068]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[-9]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":87,"s":[-9]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":98,"s":[47]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[-9]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[1],"y":[0.01]},"t":125,"s":[-31]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":134,"s":[-9]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[1],"y":[0.01]},"t":143,"s":[-31]},{"t":152,"s":[-9]}]},"p":{"a":0,"k":[32.419,109.078,0]},"a":{"a":0,"k":[32.419,112.078,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.005,-0.529],[-0.068,-0.082],[-0.013,-0.124],[0.112,-0.508],[0.166,-0.14],[0.215,-0.048],[1.138,-0.16],[0.724,0.288],[0.307,0.236],[0.11,0.211],[-0.228,0.427],[-1.165,0.317]],"o":[[1.145,0.258],[0.1,0.053],[0.084,0.102],[0.055,0.515],[-0.043,0.194],[-0.157,0.133],[-1.114,0.251],[-0.789,0.111],[-0.376,-0.15],[-0.202,-0.155],[-0.224,-0.429],[0.503,-0.941],[0,0]],"v":[[49.578,150.094],[52.827,151.285],[53.097,151.476],[53.214,151.831],[53.128,153.375],[52.858,153.913],[52.26,154.149],[48.883,154.781],[46.524,154.679],[45.526,154.055],[45.007,153.527],[45.241,152.18],[47.535,149.884]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.104,0.125,0.101,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.528,0.448],[0.528,-0.458]],"o":[[-0.297,0.414],[0.299,-0.412]],"v":[[39.721,112.658],[38.493,113.955]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.062,0.091,0.09,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.252,-0.31],[0.265,0.31]],"o":[[-0.195,-0.081],[0.184,0.091]],"v":[[37.908,120.037],[37.242,119.441]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.012,0.252],[-0.31,-0.437],[0.321,0.208]],"o":[[-0.104,-0.195],[0.311,0.218],[-0.229,-0.036],[0,0]],"v":[[38.196,121.383],[38.069,120.785],[38.987,121.762],[38.196,121.371]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.632,-1.171],[-0.539,-1.033],[0,0],[0.874,1.08],[0.333,0.356]],"o":[[1.631,-0.493],[0.643,0.999],[0,0],[-0.872,-0.952],[-0.31,-0.379],[0,0]],"v":[[32.42,113.709],[35.131,115.672],[36.864,118.612],[36.864,118.623],[34.257,115.501],[33.27,114.421]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.195,0.036],[-0.412,0.424],[-1.09,-0.023],[0.229,-0.643],[-0.116,-0.068],[-0.414,0.299],[-0.541,-1.207],[1.343,-0.367],[0.838,1.124],[-0.965,1.447]],"o":[[0.034,-0.116],[0.609,-0.471],[0.977,-0.023],[-0.115,0.689],[0.115,0.07],[0.39,-0.286],[0.528,1.149],[-1.286,0.551],[-1.183,0.333],[-0.872,-1.16],[0,0]],"v":[[38.011,114.139],[38.414,113.966],[39.848,112.646],[42.903,112.623],[42.34,114.598],[42.686,114.793],[43.867,113.908],[45.441,117.365],[41.502,118.755],[38.344,117.94],[38.024,114.139]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.252,0.252],[-0.263,-0.242]],"o":[[0.206,0.057],[-0.184,-0.057]],"v":[[47.222,147.249],[47.899,147.709]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.104,0.125,0.101,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,-0.401],[-0.046,-1.608],[1.436,0.068],[-0.081,1.481],[-0.034,1.516],[-0.149,0.678],[-1.595,-0.666]],"o":[[0.104,0.321],[-1.55,0.666],[0.023,0.827],[-1.171,-0.07],[0.081,-1.516],[0.012,-0.539],[1.722,0.7],[0,0]],"v":[[46.37,138.249],[46.474,139.236],[44.361,142.6],[43.144,144.415],[41.18,142.589],[41.214,138.042],[41.571,136.296],[46.37,138.26]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.215,0.265,0.121,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-3.105,1.445],[-0.448,0.081],[0,0],[0.333,-1.194],[1.092,-0.034],[0.482,-0.448],[0,0],[1.056,-0.53],[1.631,-0.493]],"o":[[3.244,0.03],[0.401,-0.183],[0,0],[-0.195,1.103],[-1.114,0.115],[-0.528,0.46],[-0.081,0],[-0.906,0.517],[-0.7,-1.069],[0,0]],"v":[[32.737,111.098],[42.294,109.341],[43.649,109.089],[43.649,109.078],[42.913,112.488],[39.721,112.66],[38.298,114.003],[38.056,114.026],[35.186,115.589],[32.419,113.727]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.052,0.066,0.083,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.494,0.24],[1.849,-0.838],[0.115,0.609],[0,0.403]],"o":[[0.403,-0.333],[-0.458,1.033],[-0.138,-0.516],[-0.104,-0.321],[0,0]],"v":[[47.645,130.685],[48.92,129.928],[48.058,133.383],[47.772,131.695],[47.645,130.696]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.827,-2.113],[0.448,1.618],[-0.07,0.252]],"o":[[-0.494,-1.4],[0,-0.288],[1.298,1.423]],"v":[[49.15,123.509],[47.808,118.998],[47.899,118.319]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.642,1.205],[0.115,-0.252],[-1.733,0.161],[0.104,-0.333],[0.379,-0.195]],"o":[[0,0.252],[-0.643,1.423],[0.127,0.138],[-0.493,0.367],[-1.481,-1.366]],"v":[[47.829,126.824],[47.554,127.57],[48.886,129.166],[48.92,129.798],[47.657,130.544]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.169,0.208,0.129,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.161,0.768],[0,0.263],[-0.505,0.884],[0.781,-1.09],[0.562,-1.103]],"o":[[-0.218,-0.448],[-0.023,-0.528],[0.494,-0.747],[1.056,0.356],[-0.666,0.92],[0,0]],"v":[[47.004,141.098],[46.497,139.365],[46.474,138.308],[47.967,135.918],[48.542,137.916],[46.991,141.098]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.263,0.057],[-0.125,0.654],[0.883,-1.504],[-0.654,1.425],[-0.138,0.254]],"o":[[0.231,-0.564],[1.47,1.194],[-1.826,0.254],[0.115,-0.252],[0.149,-0.022]],"v":[[48.529,126.739],[49,124.993],[48.978,129.091],[47.554,127.587],[47.956,126.841]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.942,-0.229],[0.677,0.161],[0,0.435],[-0.435,0.252],[-0.184,0.367],[-0.322,1.114],[-0.276,0.161],[-0.403,-1.493],[0.034,-0.585],[0.116,-0.528]],"o":[[-0.345,-1.183],[-0.711,0.173],[-0.403,-0.104],[0,-0.403],[0.528,-0.299],[0.493,-1.033],[0.081,-0.286],[0.539,1.595],[-0.012,0.333],[-0.138,0.781],[0,0]],"v":[[48.644,126.701],[46.553,125.862],[44.372,126.023],[43.476,124.761],[44.475,123.601],[46.198,123.049],[47.185,119.719],[47.736,119.019],[49.092,123.601],[49.034,124.863],[48.666,126.712]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.139,0.22,0.154,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.469,0.172],[-0.115,0.666],[-0.161,0.632],[1.574,1.434],[0.045,0.356],[0.345,0.401],[0.034,0.242],[0.297,0.242],[0.057,0.297],[0.482,1.01],[-0.872,0.39],[-0.861,-1.16],[-1.171,0.322],[-1.436,0.378],[-0.723,0.012],[0.011,-0.378],[0.125,-0.172],[0.081,-0.276],[0.505,-1.022],[0.528,-0.299],[0,-0.401],[-0.401,-0.091],[-0.712,0.172],[-0.218,-1.205],[0.286,-0.023],[-1.481,-1.504],[-0.023,-0.276]],"o":[[-2.261,-0.161],[0.023,-0.229],[0.195,-0.759],[0.609,-2.342],[-0.091,-0.333],[-0.31,-0.448],[-0.068,-0.195],[-0.252,-0.31],[-0.138,-0.217],[-0.551,-1.045],[0.965,-0.621],[-0.965,1.447],[0.838,1.124],[1.344,-0.367],[0.849,0.023],[0,0.161],[-0.057,0.367],[-0.242,0.286],[-0.322,1.114],[-0.172,0.367],[-0.437,0.24],[0,0.449],[0.678,0.161],[0.942,-0.229],[-0.263,0.046],[-1.642,1.205],[0,0.401],[0,0]],"v":[[47.691,131.641],[40.688,131.147],[40.86,129.838],[41.33,127.931],[39.171,122.673],[38.989,121.765],[38.035,120.595],[37.909,120.031],[37.129,119.284],[36.864,118.62],[35.279,115.657],[38.024,114.13],[38.346,117.931],[41.502,118.745],[45.591,117.517],[47.899,117.505],[47.899,118.194],[47.681,118.883],[47.176,119.71],[46.188,123.04],[44.465,123.591],[43.466,124.75],[44.361,126.014],[46.544,125.853],[48.518,126.714],[47.818,126.818],[47.634,130.676],[47.681,131.628]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.062,0.091,0.09,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.125,-0.517],[0.115,-0.345],[-1.837,-2.091],[-0.322,-0.229],[-0.206,-0.31],[-0.091,-0.379],[1.653,0.276],[-0.034,-0.127],[1.584,-0.068],[1.618,0.138],[-0.012,0.149],[-0.057,0.403],[1.205,0.621],[-0.07,0.127],[-0.218,0.793],[-0.286,0.403],[0.138,0.768],[0.311,2.17],[-1.045,1.516],[0.023,-0.229],[-2.354,-0.208],[-0.034,-0.562],[0.011,-0.976],[0.598,-0.689],[1.722,0.7],[0.012,-0.539],[0.081,-1.504],[-1.183,-0.068],[0.023,0.826],[-1.574,0.401]],"o":[[0,0.149],[-1.538,2.17],[0.242,0.24],[0.287,0.39],[0.07,0.276],[-1.332,-0.127],[0.161,-0.229],[0.587,2.261],[-1.447,0.07],[-0.172,-0.059],[0,-0.448],[0.288,-0.838],[-0.036,-0.023],[0.263,-0.804],[0.218,-0.471],[-0.115,-0.712],[0.437,-2.377],[-0.333,-2.331],[-0.059,0.541],[2.469,0.172],[0.115,0.609],[0,0.689],[-0.505,1.033],[-1.595,-0.666],[-0.149,0.677],[-0.045,1.516],[-0.081,1.482],[1.436,0.081],[-0.046,-1.597],[0.161,0.643]],"v":[[46.922,141.17],[46.807,141.826],[47.221,147.268],[48.024,147.888],[48.724,148.897],[48.954,149.817],[44.614,149.185],[44.544,149.3],[42.007,151.952],[37.483,151.678],[37.311,151.379],[37.379,150.229],[37.197,147.979],[37.173,147.784],[37.85,145.51],[38.54,144.282],[38.069,142.135],[39.078,135.257],[40.802,129.963],[40.686,131.157],[47.772,131.698],[47.955,133.431],[47.967,135.785],[46.37,138.265],[41.571,136.303],[41.214,138.046],[41.18,142.594],[43.144,144.42],[44.361,142.606],[46.497,139.505]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.169,0.208,0.129,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.275,0.07],[1.459,0.288],[0.367,0.091],[0.551,0.183],[0.125,0.321],[-0.068,0.206],[-1.448,0.07],[0.585,2.261],[0.161,-0.229],[-1.4,-0.344],[0.712,-0.31],[0.505,-0.345],[-0.528,-0.414],[-0.401,-0.022],[-0.045,-0.31]],"o":[[-0.965,0.138],[-1.735,-0.367],[-0.149,-0.022],[-0.723,-0.161],[-0.183,-0.345],[-0.07,-0.286],[1.597,0.091],[1.572,-0.068],[-0.034,-0.138],[1.665,0.276],[0.333,1.849],[-0.551,0.242],[0.437,0.528],[0.263,0.208],[0.023,0.184],[0,0]],"v":[[48.357,154.766],[45.108,154.834],[40.457,153.892],[39.791,153.767],[38.022,153.342],[37.564,152.435],[37.494,151.712],[41.996,151.941],[44.533,149.289],[44.602,149.173],[49.011,150.023],[47.231,151.413],[45.728,152.435],[47.059,153.973],[48.254,154.087],[48.345,154.753]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.104,0.125,0.101,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1422,"st":0},{"ind":4,"ty":4,"nm":"l","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.994]},"o":{"x":[0.81],"y":[0.006]},"t":0,"s":[-48]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.009]},"t":14,"s":[0]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":25,"s":[4]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":42,"s":[-36]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[4]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":87,"s":[4]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.37],"y":[0]},"t":98,"s":[-36]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[4]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0.01]},"t":125,"s":[27]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":134,"s":[4]},{"i":{"x":[0.6],"y":[1]},"o":{"x":[1],"y":[0.01]},"t":143,"s":[27]},{"t":152,"s":[4]}]},"p":{"a":1,"k":[{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":0,"s":[30.057,95.389,0],"to":[0.971,1.618,0],"ti":[-0.971,-1.618,0]},{"i":{"x":0.46,"y":0.46},"o":{"x":0.81,"y":0.81},"t":14,"s":[35.882,105.098,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":0.37,"y":0},"t":25,"s":[35.882,105.098,0],"to":[0.971,-0.324,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.978},"o":{"x":0.37,"y":0},"t":42,"s":[41.707,103.156,0],"to":[0,0,0],"ti":[0.971,-0.324,0]},{"i":{"x":0.46,"y":0.46},"o":{"x":0.167,"y":0.167},"t":59,"s":[35.882,105.098,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":0.37,"y":0},"t":87,"s":[35.882,105.098,0],"to":[0.971,-0.324,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.983},"o":{"x":0.37,"y":0},"t":98,"s":[41.707,103.156,0],"to":[0,0,0],"ti":[0.68,-0.906,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":111,"s":[35.882,105.098,0],"to":[-0.68,0.906,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.981},"o":{"x":1,"y":0.01},"t":125,"s":[37.63,108.593,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.01},"t":134,"s":[35.882,105.098,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0.01},"t":143,"s":[37.63,108.593,0],"to":[0,0,0],"ti":[0.291,0.583,0]},{"t":152,"s":[35.882,105.098,0]}]},"a":{"a":0,"k":[35.882,107.098,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.092,-0.41],[-0.16,-0.133],[0.023,-0.43],[0.338,-0.308],[0.237,-0.079],[1.34,-0.142],[0.793,0.239],[0.531,0.143],[0.281,0.128],[0.028,0.308],[-0.111,0.196],[-1.9,0.085],[-0.215,0.125],[0.155,0.195]],"o":[[1.142,0.233],[0.195,0.073],[0.331,0.275],[-0.024,0.457],[-0.184,0.168],[-1.279,0.424],[-0.823,0.087],[-0.526,-0.159],[-0.298,-0.08],[-0.281,-0.128],[-0.02,-0.224],[0.937,-1.655],[0.249,-0.011],[0.215,-0.125],[0,0]],"v":[[26.792,144.786],[29.875,146.401],[30.437,146.665],[30.769,147.863],[30.341,149.129],[29.677,149.463],[25.735,150.314],[23.271,150.193],[21.727,149.618],[20.835,149.371],[20.27,148.691],[20.462,148.055],[25.12,145.197],[25.846,145.063],[26.037,144.433]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.172,-0.252],[0.254,0.218],[-0.414,-0.023]],"o":[[0,0.242],[-0.31,-0.138],[0.333,-0.046],[0,0]],"v":[[27.294,145.229],[27.018,145.882],[26.202,145.309],[27.281,145.229]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.169,0.208,0.129,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.125,0.321],[0.125,-0.322]],"o":[[0.036,0.184],[-0.034,-0.184]],"v":[[21.712,109.609],[21.587,110.379]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.102,-0.195],[0.356,-0.747],[-0.276,0.906]],"o":[[0.127,0],[-0.195,0.804],[0.081,-0.77],[0,0]],"v":[[23.205,111.414],[23.481,111.677],[22.677,113.917],[23.217,111.414]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.195,0.528],[-0.081,-0.046],[1.527,-0.242],[0.046,0.079]],"o":[[0.093,-0.104],[0.757,0.791],[-0.218,-0.184],[0.115,-0.426]],"v":[[23.721,109.938],[24.043,109.938],[23.595,111.66],[23.296,111.327]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.011,-0.494],[0.587,0.023],[0.115,0.424],[-0.677,0.034]],"o":[[-0.471,0.138],[-0.229,-0.299],[0.528,-0.127],[0.161,0.299]],"v":[[24.456,107.117],[22.94,107.209],[22.505,106.176],[24.261,106.004]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.632,0.46],[-0.424,0.458],[-0.46,-0.034],[0.184,-0.908],[0,0]],"o":[[-0.528,-0.414],[0.104,-0.424],[0.666,-0.057],[-0.093,0.804],[-0.102,0.104],[0,0]],"v":[[23.814,109.836],[22.126,108.549],[22.872,107.286],[24.446,107.286],[24.077,109.812],[23.825,109.846]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.39,0.609],[0.793,-1.504],[0.287,-2.01],[-0.242,1.504],[-0.815,0.838],[1.378,1.516],[-1.069,0.115],[-0.585,-1.516],[-0.379,-0.482]],"o":[[1.069,1.79],[-0.929,1.756],[-1.919,0.458],[0.976,-1.149],[-1.745,-1.849],[-0.757,-0.838],[1.366,-0.149],[0.115,0.299],[0.414,-0.677]],"v":[[30.543,120.662],[30.015,125.852],[28.42,131.375],[26.628,129.239],[29.406,126.242],[24.848,121.419],[25.48,119.926],[28.649,121.442],[29.43,122.452]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.197,-0.471],[0.104,-0.965],[0,-0.367],[0.585,-0.895],[-0.104,0.562],[-0.161,1.159],[-1.55,0.471]],"o":[[-0.403,0.379],[-0.263,0.62],[0,0.654],[-0.505,0.815],[-0.011,-0.483],[0.218,-1.16],[0.16,-1.172],[0,0]],"v":[[33.873,112.198],[32.724,113.358],[32.357,115.689],[32.357,117.078],[30.772,119.604],[30.91,117.985],[31.589,114.518],[33.023,111.485]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.355,-0.414],[0.242,-0.023],[0.252,-0.07],[2.435,1.343],[-0.931,0.746],[0.07,1.998],[-0.104,0.046],[0,0],[0,0],[-0.804,-0.46],[-0.287,1.595],[-0.31,0.965],[-0.643,2.227],[-0.931,-0.172],[0.678,-0.884],[0.897,-1.171],[0.091,-0.081],[-1.16,-1.595],[-0.068,-0.104],[-0.965,-0.242],[0.127,-0.471],[0.081,0.046],[0.265,0.115],[0.333,-0.046],[-0.252,-0.356],[-1.045,-0.023]],"o":[[-1.287,0.057],[-0.218,0.115],[-0.39,-0.034],[-2.503,0.666],[-0.884,-0.31],[1.824,-1.459],[0.093,-0.127],[0.079,0],[0,0],[0.838,0.401],[1.47,0.826],[0.173,-0.977],[0.585,-1.873],[0.369,0.046],[1.067,0.598],[-0.976,1.16],[-0.022,0.057],[-0.39,1.285],[0,0.034],[1.011,0.195],[-0.011,0.632],[-0.081,-0.023],[-0.252,-0.079],[-0.424,-0.023],[0.252,0.218],[0.034,1.389],[0,0]],"v":[[30.622,149.167],[26.718,150.166],[26.12,150.315],[25.167,150.201],[17.899,149.087],[16.912,147.674],[18.484,142.347],[18.715,142.128],[18.955,142.105],[18.968,142.094],[21.458,143.311],[23.869,142.198],[24.915,139.35],[26.671,133.356],[28.682,133.666],[29.278,135.801],[26.533,139.246],[26.408,139.511],[25.443,143.242],[25.592,143.403],[28.497,143.931],[28.302,145.515],[27.98,145.469],[27.28,145.24],[26.2,145.32],[26.959,146.113],[28.888,148.088]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.115,0.145,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.138,-0.356],[0.367,0.206],[-0.517,0.161]],"o":[[0.012,0.265],[-0.345,0],[0.333,-0.263],[0,0]],"v":[[20.931,111.451],[20.715,112.348],[19.703,112.026],[20.944,111.44]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[18.59,134.94]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.3,0.775,0.309,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.437,1.216],[-0.311,0.07],[-0.161,-1.285]],"o":[[0.263,-0.173],[0.344,1.183],[-0.575,-1.021]],"v":[[21.655,114.326],[22.424,114.014],[23.159,117.677]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,2.043],[-0.206,0.045],[0.414,-2.068]],"o":[[0.138,-0.172],[-0.265,1.952],[0.138,-1.803]],"v":[[20.278,128.118],[20.725,127.865],[19.703,133.859]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.184,0.63],[-0.367,1.103],[2.573,-1.78],[0.091,0.104],[-0.183,0.505]],"o":[[0.24,-0.551],[0.195,-1.115],[0.242,2.331],[-0.183,0.034],[0.161,-0.62],[0,0]],"v":[[21.472,125.221],[22.138,123.499],[22.953,120.248],[21.288,126.897],[20.955,126.84],[21.483,125.221]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.165,0.357,0.164,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.254,0.437],[-0.034,0.263],[-0.206,0.344],[-0.435,-0.517],[0.206,-0.505],[0.183,-0.825],[0.127,-0.012],[0.195,-0.068],[0.333,0.712],[-0.093,0.263]],"o":[[0.138,-0.265],[0.149,-0.437],[0.046,-0.265],[0.689,0.333],[-0.206,0.528],[-0.276,0.908],[0,0],[-0.322,0.079],[-0.287,-0.539],[0.046,-0.437],[0,0]],"v":[[21.046,111.456],[21.563,110.491],[21.78,109.538],[22.079,108.677],[23.721,109.939],[23.205,111.409],[22.562,113.969],[22.435,114.005],[21.712,114.211],[20.794,112.431],[21.035,111.456]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.267,0.649,0.298,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.137,-0.172],[-0.781,-0.539],[-1.883,0.195],[0.023,-0.596],[0.367,0.046],[0.585,-1.871],[0.183,-0.977],[1.47,0.838],[0.793,0.528],[1.09,1.711],[-0.036,0.161],[-0.46,0.827],[-0.367,1.987],[0,0]],"o":[[1.16,0.034],[0.734,0.115],[-0.172,1.62],[0.127,0.757],[-0.838,-0.125],[-0.644,2.227],[-0.299,0.965],[-0.288,1.595],[-0.804,-0.46],[1.183,-1.986],[0.046,-0.287],[0.356,-0.609],[0.448,-2.193],[0.023,-0.011],[0,0]],"v":[[20.885,127.865],[24.353,128.003],[26.557,129.117],[28.383,131.632],[28.578,133.607],[26.673,133.354],[24.915,139.348],[23.871,142.196],[21.46,143.31],[19.002,141.966],[18.416,136.627],[18.52,136.018],[19.68,133.986],[20.838,127.831],[20.896,127.878]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.169,0.208,0.129,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.173,-1.183],[0.218,-1.16],[0.07,-0.678],[0.104,-0.31],[0.403,-0.677],[0.115,0.299],[1.366,-0.149],[-0.757,-0.838],[-1.756,-1.849],[1.056,-0.895],[0.747,0.116],[1.137,0.15],[-0.184,0.252],[0.149,2.399],[-0.081,0.942],[0.218,1.194],[-0.104,0.057],[-0.367,0.7],[0.654,0.884],[-0.115,0.965],[0.023,0.435],[-0.161,0.217],[-0.206,-0.102],[-0.127,-0.276],[-0.138,-0.863],[-0.551,-0.034],[0,0],[0,0]],"o":[[-1.55,0.471],[-0.16,1.16],[-0.104,0.562],[-0.011,0.333],[-0.39,0.609],[-0.379,-0.482],[-0.585,-1.516],[-1.069,0.115],[1.366,1.516],[-0.815,0.838],[-0.782,-0.414],[-1.137,-0.172],[0.091,-0.355],[2.573,-1.78],[0.022,-0.702],[-0.161,-1.436],[0.011,0],[0.356,-0.746],[1.481,-0.367],[0.115,-0.942],[0,-0.494],[0.036,-0.333],[0.287,0],[0.127,0.265],[0.138,0.757],[0.39,0.115],[0,0],[0,0],[0,0]],"v":[[33.021,111.504],[31.586,114.536],[30.909,118.004],[30.69,119.807],[30.553,120.668],[29.439,122.458],[28.658,121.449],[25.49,119.932],[24.858,121.425],[29.416,126.248],[26.569,129.004],[24.364,128.015],[20.919,127.763],[21.275,126.914],[23.044,120.197],[23.169,117.843],[22.55,114.019],[22.665,113.928],[23.64,111.792],[24.134,109.851],[24.455,107.13],[24.398,105.878],[24.628,105.098],[25.282,105.2],[25.627,105.912],[26.018,108.175],[27.498,108.576],[35.882,106.004],[33.023,111.485]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.052,0.066,0.083,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[35.882,113.433]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.062,0.091,0.09,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1422,"st":0},{"ind":5,"ty":4,"nm":"h","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":0,"s":[33.925,69.772,0],"to":[0,0.378,0],"ti":[0,-0.934,0]},{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.009},"t":14,"s":[33.925,76.105,0],"to":[0,0.714,0],"ti":[0,-0.289,0]},{"t":28,"s":[33.925,73.772,0]}]},"a":{"a":0,"k":[33.925,73.772,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.344,0.494],[0.333,-0.506]],"o":[[-0.125,0.414],[0.138,-0.403]],"v":[[44.114,61.896],[43.414,63.251]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.621,-0.482],[0.62,0.482]],"o":[[-0.528,-0.263],[0.528,0.263]],"v":[[39.994,55.736],[38.272,54.612]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.276,-0.458],[0.322,-0.046],[0.976,0.861],[-0.435,-0.011],[-0.575,-0.379]],"o":[[-0.149,0.138],[-1.056,-0.734],[0.229,-0.208],[0.736,0.483],[0.242,0.355]],"v":[[40.795,57.023],[40.152,57.241],[37.202,54.9],[38.154,54.612],[40.038,55.841]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.195,-1.092],[0.379,0.344],[-0.62,1.124],[-1.022,-0.299],[0,-0.046]],"o":[[-0.138,1.045],[-0.435,-0.252],[-0.493,-0.46],[0.575,-1.022],[0.138,0.034],[0,0]],"v":[[43.357,66.008],[42.886,69.132],[41.692,68.167],[40.807,66.468],[43.174,65.825],[43.357,65.997]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,0.448],[0.276,0.367],[0.838,1.148],[-0.884,-1.378],[1.584,-0.768],[-0.023,0.345]],"o":[[-0.206,-0.414],[-0.791,-1.056],[1.286,0.976],[0.643,0.999],[-0.149,-0.125],[0.321,-0.63]],"v":[[44.229,61.862],[43.597,60.61],[41.117,57.384],[44.907,60.633],[43.62,64.008],[43.437,63.376]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.138,0.999],[-0.218,-1.044]],"o":[[0.183,-1.228],[0.149,1.056],[0,0]],"v":[[42.887,69.263],[43.358,66.048],[43.817,69.217]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.081,0.184],[-0.125,0.231],[-0.254,1.171],[-3.939,1.952],[-0.183,0.081],[-0.999,-0.093],[-0.011,-0.068],[1.402,-2.94],[0.63,-1.332],[0,0],[0.505,-1.93]],"o":[[0.15,-0.414],[0.102,-0.149],[0.483,-1.205],[0.826,-3.847],[0.403,-0.125],[0.838,0],[0.183,0.172],[-3.077,0.276],[-0.585,1.241],[0,0],[-0.505,1.78],[0,0]],"v":[[22.639,68.345],[22.85,67.863],[23.171,67.335],[24.539,63.88],[30.796,54.728],[31.576,54.441],[34.253,54.522],[34.459,54.819],[27.5,59.229],[25.652,63.019],[25.64,63.029],[24.148,68.393]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.011,0.127],[0.929,-0.011],[2.583,0.011],[0.471,0],[1.735,0.115],[-0.482,1.654],[0,0],[-0.022,-0.115],[-2.596,0.015],[-1.47,0.012],[-0.24,1.355],[-1.676,1.676],[-0.24,0.666],[-0.184,0.034],[-0.079,-0.15],[-0.791,-1.056],[-0.091,-0.448],[0.208,-0.585],[-0.045,-0.172],[0.208,-0.632],[0.562,-1.021],[-0.494,-0.46],[-0.39,-0.494]],"o":[[-0.081,0],[-0.127,-1.296],[-2.422,0.011],[-0.471,-0.023],[-1.896,0.011],[0.482,-1.814],[0,0],[0.046,0.104],[0.536,2.464],[1.47,0],[1.412,-0.022],[0.367,-2.136],[0.31,-0.31],[0.31,-0.184],[0,0],[0.908,1.194],[0.276,0.369],[-0.333,0.494],[0.07,0.287],[-0.057,0.505],[-1.044,-0.15],[-0.632,1.126],[0.39,0.355],[0,0]],"v":[[40.405,69.923],[40.141,69.796],[38.258,68.315],[30.817,68.362],[29.566,68.362],[24.148,68.393],[25.638,63.159],[25.615,63.136],[25.753,63.458],[30.45,67.132],[34.847,67.132],[37.488,65.009],[39.681,59.038],[40.152,57.384],[40.83,57.132],[41.047,57.35],[43.597,60.61],[44.114,61.885],[43.344,63.424],[43.516,64.044],[43.183,65.675],[40.807,66.466],[41.692,68.167],[42.85,69.372]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.075,0.098,0.085,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.528,-0.149],[-0.918,-0.884],[0.311,-0.311],[0.379,-2.136],[1.412,-0.023],[1.47,0],[0.536,2.464],[0.023,0.218],[-0.575,1.239],[-3.215,0.288],[-0.367,0.046]],"o":[[0.345,0.023],[1.101,0.874],[-0.102,0.655],[-1.665,1.676],[-0.24,1.354],[-1.47,0.023],[-2.596,0.015],[-0.023,-0.115],[0.632,-1.332],[1.389,-2.94],[0.516,-0.045],[0,0]],"v":[[35.848,54.686],[37.078,54.892],[40.016,57.395],[39.683,59.038],[37.49,65.009],[34.849,67.132],[30.452,67.132],[25.756,63.458],[25.64,63.022],[27.489,59.233],[34.586,54.811],[35.837,54.674]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.255,0.091,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-4.716],[4.716,0],[0,4.716],[-4.716,0]],"o":[[0,4.716],[-4.716,0],[0,-4.716],[4.716,0]],"v":[[42.67,65.233],[34.131,73.772],[25.592,65.233],[34.131,56.694]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.075,0.098,0.085,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1422,"st":0},{"ind":6,"ty":4,"nm":"r","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[130.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[54.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[97.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[66.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[107.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[66.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[107.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[66.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[107.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":125,"s":[135.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":134,"s":[107.217]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":147,"s":[143.217]},{"t":156,"s":[103.217]}]},"p":{"a":0,"k":[26.285,78.9,0]},"a":{"a":0,"k":[37.935,78.9,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,-0.401],[0.333,0.401]],"o":[[-0.297,-0.172],[0.286,0.183]],"v":[[43.339,90.008],[42.409,89.136]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.585,0.379],[-0.598,-0.367]],"o":[[0.539,0.138],[-0.517,-0.15]],"v":[[44.926,82.075],[46.602,82.845]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.057,0.299],[-0.218,-0.297],[0.31,0]],"o":[[-0.104,-0.183],[0.229,0.057],[-0.15,0.115],[0,0]],"v":[[62.183,93.259],[62.16,92.616],[62.815,93.144],[62.183,93.271]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.269,0.675,0.252,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.161,0.011],[-0.711,0.942],[-0.012,-0.426],[0.609,-0.585]],"o":[[-0.127,0.104],[0.528,-0.884],[0.138,0.24],[-0.575,0.585],[0,0]],"v":[[62.149,91.018],[61.804,91.098],[63.664,88.4],[63.871,89.376],[62.137,91.029]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.16,-0.15],[0.161,0.149]],"o":[[0,0],[0.046,0]],"v":[[42.755,76.956],[42.434,76.738]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.39,-0.068],[-0.379,0.081]],"o":[[0.161,-0.091],[-0.161,0.091]],"v":[[41.779,75.905],[42.606,75.652]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.229,-0.242],[0.231,0.242]],"o":[[-0.172,-0.057],[0.173,0.057]],"v":[[44.431,78.37],[43.833,77.923]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.412,-0.206],[0.401,0.218]],"o":[[-0.287,-0.022],[0.286,0.022]],"v":[[45.591,78.959],[44.547,78.604]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.31,0.39],[0.311,-0.424]],"o":[[-0.138,0.39],[0.138,-0.356]],"v":[[41.963,76.568],[41.285,77.738]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.999,0.768],[-0.07,-0.414]],"o":[[0.161,0.24],[-0.655,0]],"v":[[51.207,84.795],[51.506,85.724]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.448,0.104],[-0.424,-0.104]],"o":[[0.276,-0.068],[-0.299,0.068]],"v":[[53.387,86.156],[54.478,86.203]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.609,0.149],[-0.011,-0.138],[0.609,-0.011]],"o":[[0.138,0.034],[-0.505,0.161],[0.39,-0.195]],"v":[[45.039,75.222],[45.199,75.463],[43.557,75.703]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.023,0.252],[-0.62,0.104],[0.643,-0.333]],"o":[[0.539,-0.276],[-0.424,0.403],[-0.116,-0.15]],"v":[[39.207,76.462],[40.882,75.922],[39.287,77.014]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.183,0.228,0.135,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.689,-0.206],[-0.702,0.231]],"o":[[0.426,-0.299],[-0.426,0.288]],"v":[[56.107,86.317],[57.784,85.548]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.516,-0.011],[0.206,-0.356],[0.276,0.426]],"o":[[0.367,-0.115],[-0.068,0.379],[-0.265,-0.299],[0,0]],"v":[[58.955,85.637],[60.23,85.544],[59.748,86.647],[58.955,85.625]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[0.36,0.467,0.157,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.07,0.804],[-0.7,-0.609],[0.895,-0.195]],"o":[[0.7,0.39],[-0.734,0.24],[-1.482,-0.908]],"v":[[41.355,79.25],[43.421,80.743],[41.022,81.329]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.367,-0.263],[0.161,-0.493],[0.333,1.62],[-0.712,0.16]],"o":[[0.367,0.125],[-0.023,0.449],[-1.103,-0.068],[0.62,-0.206],[0,0]],"v":[[48.955,82.743],[49.977,83.339],[49.678,84.671],[46.98,83.167],[48.944,82.732]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.046,0.378],[-1.849,-0.252],[-0.023,-0.367],[1.022,-0.138],[0.585,0.184],[0.288,0.195]],"o":[[-0.023,-0.252],[1.677,0.125],[0.16,0.254],[-0.874,0.206],[-0.528,-0.057],[-0.494,-0.286],[0,0]],"v":[[49.037,82.657],[48.944,81.762],[54.17,82.393],[54.365,83.266],[51.597,83.691],[50.093,83.357],[49.024,82.668]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.012,0.39],[-1.09,-0.988],[-1.275,-1.824],[0.333,-0.345],[0.7,0.908],[0.379,0.344],[0.104,0.195],[0.815,0.39]],"o":[[0,-0.263],[0.954,-1.436],[1.619,1.459],[-0.081,0.437],[-0.861,-0.804],[-0.333,-0.401],[-0.149,-0.127],[-0.85,-0.505],[0,0]],"v":[[39.495,87.273],[39.482,86.367],[42.307,86.263],[46.178,91.407],[45.603,92.533],[43.353,90.017],[42.33,88.984],[41.997,88.571],[39.518,87.285]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.047,0.063,0.074,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.541,0.276],[0.562,0.493],[0.666,0.493],[-0.023,0.551],[-0.229,0.367],[-0.138,-0.104],[-0.102,-0.068],[-0.401,-0.379],[-0.195,-0.149],[-0.057,-0.125],[-0.356,-0.115],[-0.345,-0.333],[-0.827,-0.702],[0.057,-0.333],[0.632,-0.068],[0.138,0.115]],"o":[[-0.424,-0.322],[-0.793,-0.666],[-0.081,-0.369],[0.321,-0.539],[0,0],[0.242,0.172],[0.276,0.231],[0.322,0.287],[0,0],[0.414,0.229],[0.263,0.24],[0.768,0.63],[0.16,0.412],[-0.712,0.149],[0,0],[-0.677,-0.379]],"v":[[44.923,81.947],[43.512,80.81],[41.398,79.145],[41.273,77.858],[42.064,76.595],[42.363,76.71],[42.811,77.031],[43.752,77.87],[44.465,78.466],[44.545,78.604],[45.659,79.064],[46.543,79.868],[48.84,81.751],[48.955,82.75],[46.978,83.048],[46.692,82.865]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.466,0.468,0.161,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.929,0.068],[-0.598,0.034],[0.023,-0.757],[0.505,-0.116],[0.564,-0.242],[0.575,0.081],[0.39,0.011],[0.632,0.229],[0.07,0.276],[-0.195,0.424],[-0.884,0.081]],"o":[[0.931,-0.079],[0.598,-0.046],[0.022,0.655],[-0.286,0.184],[-0.816,0.263],[-0.401,0.011],[-0.551,-0.104],[-0.506,-0.034],[-0.184,-0.458],[0.046,-0.252],[1.022,-0.265],[0,0]],"v":[[54.363,83.398],[57.142,83.158],[58.934,83.054],[58.955,85.132],[57.911,85.512],[55.982,86.269],[54.592,86.212],[53.273,86.074],[51.619,85.775],[51.286,84.765],[51.572,83.824],[54.352,83.398]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.32,0.505,0.183,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.356,-0.093],[1.724,1.4],[0.551,0.369],[0.068,0.39],[-0.184,0.712],[-0.874,0.081],[-0.437,-0.458],[-0.666,-0.265],[-0.012,-0.127],[-1.056,-0.184]],"o":[[-0.286,0.333],[-1.883,0.528],[-0.516,-0.414],[-0.344,-0.229],[-0.081,-0.482],[0.883,-0.344],[0.516,0.39],[0.585,0.369],[0.081,0.023],[0.333,1.618],[0,0]],"v":[[49.632,84.789],[48.77,85.764],[43.281,85.179],[41.468,84.282],[40.71,83.215],[41.009,81.48],[43.535,80.918],[44.912,82.089],[46.738,82.963],[46.98,83.181],[49.632,84.799]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.133,0.328,0.154,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.057,-0.46],[0.712,-0.838],[0.161,0.104],[0.127,0.218],[-1.241,0.252],[-0.483,0.218],[-0.195,-0.011]],"o":[[0.104,0.263],[-0.702,1.067],[-0.252,-0.138],[-0.034,-0.276],[-0.757,-1.194],[0.379,-0.081],[0.229,-0.046],[0,0]],"v":[[63.596,87.288],[63.665,88.264],[61.632,91.043],[61.059,90.686],[60.932,89.859],[61.873,87.851],[63.08,87.322],[63.608,87.299]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":-0.025},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.033,-0.367],[-0.15,-1.022],[0.161,-0.057],[0.379,0.011],[-0.036,0.184],[0.036,0.666],[0.596,-0.046],[0.929,0.034],[0.012,0.24],[-0.953,0.414]],"o":[[0.999,0.322],[0.229,0.884],[0.057,0.138],[-0.528,0.046],[0,0],[0.011,-0.838],[-0.596,0.036],[-0.931,0.068],[-0.012,-0.369],[0.839,-0.356],[0,0]],"v":[[56.948,81.279],[59.875,82.335],[60.335,85.126],[60.232,85.47],[58.934,85.506],[58.946,85.184],[58.91,83.025],[57.12,83.128],[54.341,83.255],[54.306,82.394],[56.936,81.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.195,0.265,0.126,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.161,0.345],[-1.527,-0.218],[-2.021,0],[0.202,-0.2],[1.608,-0.585],[1.457,0.333],[0.206,-0.356]],"o":[[0.24,-0.437],[0.942,-1.273],[1.986,0.288],[1.137,0],[-0.324,0.804],[-1.642,0.596],[-0.655,-0.15],[0,0]],"v":[[45.705,92.579],[46.268,91.453],[49.92,90.282],[55.971,90.42],[59.342,90.901],[54.075,91.328],[49.678,91.041],[47.646,91.281]],"c":false}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.237,0.361,0.158,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.115,-0.321],[0.379,-0.081],[-0.757,-1.194],[0.057,-0.344],[1.148,0],[1.986,0.288],[1.022,-1.183],[1.619,1.457],[1.08,-1.262],[-1.321,2.295],[0.678,0.963],[-0.263,0.011],[-0.63,0.367],[-0.276,0],[-0.39,0.081],[-0.263,-0.046],[-0.632,0.057],[-0.161,-0.149],[-0.102,-0.643],[-0.39,-0.483],[0.321,-0.218],[0.333,0.321],[0.356,0.125],[0.023,0.093],[0.297,0.195],[0.322,0.311],[0.195,0.091],[0.093,0.036],[0.242,-0.528],[-0.023,-0.482],[-1.377,-1.114],[-0.093,-0.494],[-0.344,-0.229],[-0.505,-0.414],[-1.883,0.528],[-0.333,0.449],[-0.231,0.356],[-0.367,-0.229],[0.138,-0.286],[-0.768,-0.195],[-0.621,-0.115],[-0.46,-0.022],[-0.528,-0.046],[-0.677,0.321],[-0.263,0.011],[-0.011,-0.127],[-0.265,-0.299],[-0.218,0.437],[0,0],[-0.401,0],[-0.596,-0.437]],"o":[[0.102,0.206],[-0.483,0.333],[-1.239,0.263],[0.138,0.218],[-0.333,0.437],[-2.021,0],[-1.527,-0.218],[-1.275,-1.826],[-1.092,-0.988],[-0.906,-1.952],[0.539,-1.08],[0.242,-0.046],[0.644,-0.345],[0.276,-0.023],[0.39,-0.068],[0.286,0],[0.621,0],[0.276,0.034],[0.104,0.77],[0.345,0.276],[-0.195,0.505],[-0.345,-0.322],[-0.403,-0.218],[0,-0.012],[-0.218,-0.24],[-0.369,-0.286],[-0.161,-0.16],[-0.079,-0.023],[-0.31,0.39],[0.057,0.482],[-0.068,0.816],[-0.068,0.655],[0.068,0.39],[0.551,0.379],[1.722,1.4],[0.345,-0.093],[0.161,-0.505],[0.505,0.115],[-0.057,0.392],[-0.999,0.757],[0.632,0.081],[0.448,0.093],[0.528,0],[0.689,-0.218],[0.379,-0.127],[0,0.068],[0.276,0.414],[0.206,-0.369],[0,-0.07],[0.265,0],[0.632,0.401],[0,0]],"v":[[63.067,86.52],[63.067,87.197],[61.861,87.841],[60.919,89.85],[60.955,90.745],[55.96,90.436],[49.909,90.298],[46.176,91.377],[42.307,86.234],[39.355,86.164],[38.506,80.068],[38.632,77.071],[39.275,76.99],[41.077,75.934],[41.779,75.898],[42.835,75.658],[43.546,75.692],[45.315,75.555],[45.9,75.761],[46.21,77.805],[47.279,78.827],[46.522,79.849],[45.58,78.965],[44.477,78.494],[44.42,78.367],[43.697,77.782],[42.732,76.955],[42.272,76.634],[41.939,76.564],[41.158,77.909],[41.319,79.252],[40.882,81.536],[40.7,83.213],[41.457,84.281],[43.271,85.177],[48.76,85.763],[49.667,84.671],[50.161,83.419],[51.423,83.867],[51.182,84.798],[51.595,85.911],[53.353,86.141],[54.605,86.279],[56.075,86.314],[58.003,85.51],[58.887,85.292],[58.921,85.625],[59.714,86.647],[60.346,85.487],[60.357,85.269],[61.299,85.269],[63.032,86.497]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.077,0.113,0.107,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.184,0],[0.023,-0.585],[0.231,-0.31],[0.116,0.127],[0.011,0.16],[-0.206,0.609]],"o":[[0.115,0.367],[-0.184,0.528],[-0.195,-0.012],[0,-0.263],[0.161,-0.506],[0.127,-0.104]],"v":[[64.077,84.821],[64.169,86.141],[63.594,87.29],[63.18,87.14],[63.17,86.567],[63.698,84.936]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.214,0.429,0.205,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.493,0.39],[-2.182,-0.435],[0,-0.747],[0.265,-0.46]],"o":[[0.63,-0.781],[0.161,0.551],[-0.208,0.736],[-0.598,-0.437]],"v":[[61.471,85.295],[63.503,83.009],[63.698,84.812],[63.066,86.523]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.1,0.171,0.13,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":-7,"op":1422,"st":0}]}],"fonts":{"list":[{"fName":"Inter-Regular","fFamily":"Inter","fStyle":"Regular","ascent":72.726},{"fName":"CompixsRegular","fFamily":"Compixs","fStyle":"Regular","ascent":77.199},{"fName":"I-pixel-u","fFamily":"I pixel u","fStyle":"Regular","ascent":62.5},{"fName":"Inter-Medium","fFamily":"Inter","fStyle":"Medium","ascent":72.726},{"fName":"VCROSDMono","fFamily":"VCR OSD Mono","fStyle":"Regular","ascent":68.317}]},"layers":[{"ind":1,"ty":0,"nm":"C","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[960,960,0]},"a":{"a":0,"k":[960,960,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[9.941,0],[0,0],[0,-9.941],[0,0],[-9.941,0],[0,0],[0,9.941],[0,0]],"o":[[0,0],[-9.941,0],[0,0],[0,9.941],[0,0],[9.941,0],[0,0],[0,-9.941]],"v":[[1806,100],[114,100],[96,118],[96,1810],[114,1828],[1806,1828],[1824,1810],[1824,118]],"c":true}},"o":{"a":0,"k":100},"x":{"a":0,"k":79},"nm":"M"}],"w":1920,"h":1920,"ip":0,"op":201,"st":0}],"markers":[],"chars":[{"ch":"E","size":36,"style":"Regular","w":59.8,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[53.267,0],[53.267,-7.812],[17.614,-7.812],[17.614,-32.528],[50.426,-32.528],[50.426,-40.341],[17.614,-40.341],[17.614,-64.915],[52.699,-64.915],[52.699,-72.727],[8.807,-72.727],[8.807,0]],"c":true}},"nm":"E"}],"nm":"E"}]},"fFamily":"Inter"},{"ch":"n","size":36,"style":"Regular","w":58.52,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.207,2.226],[-2.095,1.16],[-2.676,0],[-2.226,-2.403],[0,-4.285],[0,0],[0,0],[0,0],[1.539,3.042],[2.77,1.504],[3.693,0],[2.604,-1.692],[1.278,-2.77],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[1.207,-2.225],[2.095,-1.16],[3.882,0],[2.225,2.403],[0,0],[0,0],[0,0],[0,-4.64],[-1.539,-3.042],[-2.77,-1.503],[-4.119,0],[-2.605,1.693],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-3.172]],"v":[[17.862,-40.909],[22.816,-45.987],[29.972,-47.727],[39.134,-44.123],[42.472,-34.091],[42.472,0],[50.852,0],[50.852,-34.659],[48.544,-46.183],[42.081,-53.001],[32.386,-55.256],[22.301,-52.717],[16.477,-46.023],[15.767,-46.023],[15.767,-54.545],[7.67,-54.545],[7.67,0],[16.051,0],[16.051,-32.812]],"c":true}},"nm":"n"}],"nm":"n"}]},"fFamily":"Inter"},{"ch":"t","size":36,"style":"Regular","w":36.36,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.125,-54.545],[3.125,-47.443],[31.392,-47.443],[31.392,-54.545]],"c":true}},"nm":"t"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.48,-2.083],[-2.261,-1.018],[-2.368,0],[-1.018,0.225],[-0.568,0.213],[0,0],[0.591,-0.107],[0.923,0],[1.101,0.391],[0.698,1.172],[0,2.368],[0,0],[0,0]],"o":[[0,3.173],[1.479,2.084],[2.261,1.018],[1.562,0],[1.018,-0.225],[0,0],[-0.355,0.071],[-0.592,0.107],[-1.231,0],[-1.101,-0.391],[-0.699,-1.172],[0,0],[0,0],[0,0]],"v":[[11.364,-13.352],[13.583,-5.469],[19.194,-0.817],[26.136,0.71],[30.007,0.373],[32.386,-0.284],[30.682,-7.812],[29.261,-7.546],[26.989,-7.386],[23.491,-7.972],[20.792,-10.316],[19.744,-15.625],[19.744,-67.614],[11.364,-67.614]],"c":true}},"nm":"t"}],"nm":"t"}]},"fFamily":"Inter"},{"ch":"e","size":36,"style":"Regular","w":58.24,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.96,1.148],[-2.012,2.072],[-0.852,2.747],[0,0],[1.302,-1.266],[1.787,-0.627],[2.202,0],[2.557,1.48],[1.432,2.853],[0,4.119],[0,0],[-1.302,2.628],[-2.427,1.646],[-3.338,0],[-2.237,-1.397],[-1.22,-2.415],[0,-3.077],[0,0],[0,0],[0,0],[0,0],[1.349,3.48],[2.273,2.119],[2.77,0.947],[2.841,0],[3.681,-2.403],[2.047,-4.273],[0,-5.587],[-2.048,-4.202],[-3.8,-2.332],[-5.256,0]],"o":[[2.959,-1.148],[2.012,-2.071],[0,0],[-0.71,1.894],[-1.302,1.267],[-1.788,0.628],[-3.386,0],[-2.557,-1.479],[-1.433,-2.853],[0,0],[0,-3.006],[1.302,-2.628],[2.426,-1.645],[3.03,0],[2.237,1.397],[1.219,2.415],[0,0],[0,0],[0,0],[0,0],[0,-5.09],[-1.349,-3.48],[-2.273,-2.118],[-2.77,-0.947],[-4.924,0],[-3.682,2.403],[-2.048,4.274],[0,5.587],[2.047,4.203],[3.8,2.332],[3.693,0]],"v":[[40.518,-0.586],[47.976,-5.415],[52.273,-12.642],[44.176,-14.915],[41.158,-10.174],[36.523,-7.333],[30.54,-6.392],[21.626,-8.612],[15.643,-15.11],[13.494,-25.568],[13.494,-30.398],[15.447,-38.849],[21.04,-45.259],[29.688,-47.727],[37.589,-45.632],[42.773,-39.915],[44.602,-31.676],[11.08,-31.676],[11.08,-24.432],[53.125,-24.432],[53.125,-27.983],[51.101,-40.838],[45.668,-49.237],[38.104,-53.835],[29.688,-55.256],[16.779,-51.651],[8.185,-41.637],[5.114,-26.847],[8.185,-12.163],[16.957,-2.362],[30.54,1.136]],"c":true}},"nm":"e"}],"nm":"e"}]},"fFamily":"Inter"},{"ch":"r","size":36,"style":"Regular","w":37.22,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.196,1.93],[-2.072,1.101],[-2.652,0],[-1.007,-0.154],[-0.284,-0.071],[0,0],[0.923,0.024],[0.615,0],[2.604,-1.681],[0.994,-2.699],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,-2.462],[1.195,-1.929],[2.071,-1.101],[1.113,0],[1.006,0.154],[0,0],[-0.474,-0.047],[-0.923,-0.023],[-3.267,0],[-2.605,1.681],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.051,0],[16.051,-34.517],[17.844,-41.104],[22.745,-45.65],[29.83,-47.301],[33.008,-47.07],[34.943,-46.733],[34.943,-55.256],[32.848,-55.362],[30.54,-55.398],[21.733,-52.876],[16.335,-46.307],[15.767,-46.307],[15.767,-54.545],[7.67,-54.545],[7.67,0]],"c":true}},"nm":"r"}],"nm":"r"}]},"fFamily":"Inter"},{"ch":" ","size":36,"style":"Regular","w":28.12,"data":{},"fFamily":"Inter"},{"ch":"y","size":36,"style":"Regular","w":55.68,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.024,0.899],[-1.539,1.858],[-1.042,2.817],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.219,-1.243],[1.562,-0.142],[2.036,0.52],[0,0],[-1.113,-0.225],[-1.42,0]],"o":[[2.024,-0.9],[1.539,-1.859],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.018,2.77],[-1.22,1.243],[-1.562,0.142],[0,0],[0.426,0.213],[1.113,0.225],[2.533,0]],"v":[[19.904,19.105],[25.249,14.968],[29.119,7.955],[52.273,-54.545],[43.182,-54.545],[28.125,-11.08],[27.557,-11.08],[12.5,-54.545],[3.409,-54.545],[23.58,0.284],[22.017,4.545],[18.661,10.565],[14.489,12.642],[9.091,12.074],[6.96,19.46],[9.268,20.117],[13.068,20.455]],"c":true}},"nm":"y"}],"nm":"y"}]},"fFamily":"Inter"},{"ch":"o","size":36,"style":"Regular","w":59.66,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.705,2.344],[-2.072,4.214],[0,5.635],[2.071,4.238],[3.705,2.344],[4.924,0],[3.705,-2.344],[2.071,-4.238],[0,-5.682],[-2.072,-4.214],[-3.705,-2.344],[-4.924,0]],"o":[[3.705,-2.344],[2.071,-4.214],[0,-5.682],[-2.072,-4.238],[-3.705,-2.344],[-4.924,0],[-3.705,2.344],[-2.072,4.238],[0,5.635],[2.071,4.214],[3.705,2.344],[4.924,0]],"v":[[42.773,-2.379],[51.438,-12.216],[54.545,-26.989],[51.438,-41.868],[42.773,-51.74],[29.83,-55.256],[16.886,-51.74],[8.221,-41.868],[5.114,-26.989],[8.221,-12.216],[16.886,-2.379],[29.83,1.136]],"c":true}},"nm":"o"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.415,1.918],[1.16,3.125],[0,3.646],[-1.16,3.149],[-2.415,1.941],[-3.741,0],[-2.415,-1.941],[-1.16,-3.148],[0,-3.645],[1.16,-3.125],[2.415,-1.918],[3.74,0]],"o":[[-2.415,-1.918],[-1.16,-3.125],[0,-3.645],[1.16,-3.148],[2.415,-1.941],[3.74,0],[2.415,1.941],[1.16,3.149],[0,3.646],[-1.16,3.125],[-2.415,1.918],[-3.741,0]],"v":[[20.597,-9.268],[15.234,-16.832],[13.494,-26.989],[15.234,-37.18],[20.597,-44.815],[29.83,-47.727],[39.062,-44.815],[44.425,-37.18],[46.165,-26.989],[44.425,-16.832],[39.062,-9.268],[29.83,-6.392]],"c":true}},"nm":"o"}],"nm":"o"}]},"fFamily":"Inter"},{"ch":"u","size":36,"style":"Regular","w":58.1,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.479,-2.202],[2.166,-1.065],[2.083,0],[2.237,2.368],[0,3.977],[0,0],[0,0],[0,0],[-1.515,-3.042],[-2.652,-1.503],[-3.409,0],[-2.699,1.93],[-1.278,2.77],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[-1.48,2.202],[-2.166,1.065],[-3.48,0],[-2.237,-2.367],[0,0],[0,0],[0,0],[0,4.64],[1.515,3.042],[2.651,1.504],[4.119,0],[2.699,-1.929],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,3.409]],"v":[[39.826,-13.885],[34.357,-8.984],[27.983,-7.386],[19.407,-10.938],[16.051,-20.455],[16.051,-54.545],[7.67,-54.545],[7.67,-19.886],[9.943,-8.363],[16.193,-1.545],[25.284,0.71],[35.511,-2.184],[41.477,-9.233],[42.045,-9.233],[42.045,0],[50.426,0],[50.426,-54.545],[42.045,-54.545],[42.045,-22.301]],"c":true}},"nm":"u"}],"nm":"u"}]},"fFamily":"Inter"},{"ch":"m","size":36,"style":"Regular","w":86.93,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.149,2.048],[-1.882,1.16],[-2.178,0],[-2.012,-1.905],[0,-3.101],[0,0],[0,0],[0,0],[-2.107,2.308],[-3.835,0],[-2.202,-1.728],[0,-4.024],[0,0],[0,0],[0,0],[3.101,3.042],[4.877,0],[2.793,-1.669],[1.397,-2.817],[0,0],[2.403,1.622],[3.598,0],[2.533,-1.621],[1.136,-2.912],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,-2.675],[1.148,-2.047],[1.882,-1.16],[3.172,0],[2.012,1.906],[0,0],[0,0],[0,0],[0,-3.527],[2.107,-2.308],[2.983,0],[2.202,1.728],[0,0],[0,0],[0,0],[0,-6.415],[-3.102,-3.042],[-3.906,0],[-2.794,1.669],[0,0],[-1.349,-2.912],[-2.403,-1.621],[-3.551,0],[-2.534,1.622],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.051,0],[16.051,-34.091],[17.773,-41.175],[22.319,-45.987],[28.409,-47.727],[36.186,-44.869],[39.205,-37.358],[39.205,0],[47.727,0],[47.727,-35.511],[50.888,-44.265],[59.801,-47.727],[67.578,-45.135],[70.881,-36.506],[70.881,0],[79.261,0],[79.261,-36.506],[74.609,-50.692],[62.642,-55.256],[52.592,-52.752],[46.307,-46.023],[45.739,-46.023],[40.11,-52.823],[31.108,-55.256],[21.982,-52.823],[16.477,-46.023],[15.767,-46.023],[15.767,-54.545],[7.67,-54.545],[7.67,0]],"c":true}},"nm":"m"}],"nm":"m"}]},"fFamily":"Inter"},{"ch":"a","size":36,"style":"Regular","w":56.39,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.202,0.947],[-1.326,1.349],[-0.568,1.184],[0,0],[0,0],[0,0],[0,0],[1.42,2.581],[2.142,1.278],[2.284,0.414],[1.752,0],[2.829,-0.746],[2.379,-1.858],[1.42,-3.314],[0,0],[-2.273,1.752],[-4.001,0],[-1.906,-1.941],[0,-3.503],[0,0],[0.959,-0.544],[2.071,-0.225],[3.314,-0.426],[2.497,-0.556],[2.06,-1.113],[1.231,-1.953],[0,-3.125],[-1.657,-2.497],[-2.818,-1.314],[-3.457,0]],"o":[[2.202,-0.947],[1.326,-1.349],[0,0],[0,0],[0,0],[0,0],[0,-4.332],[-1.42,-2.58],[-2.143,-1.278],[-2.285,-0.414],[-2.747,0],[-2.829,0.746],[-2.379,1.859],[0,0],[0.923,-1.989],[2.273,-1.752],[3.859,0],[1.905,1.941],[0,0],[0,1.349],[-0.959,0.545],[-2.072,0.225],[-2.534,0.332],[-2.498,0.557],[-2.06,1.113],[-1.231,1.953],[0,3.551],[1.657,2.498],[2.817,1.314],[3.172,0]],"v":[[31.783,-0.142],[37.074,-3.587],[39.915,-7.386],[40.341,-7.386],[40.341,0],[48.722,0],[48.722,-35.938],[46.591,-46.307],[41.246,-52.095],[34.606,-54.634],[28.551,-55.256],[20.188,-54.137],[12.376,-50.231],[6.676,-42.472],[14.631,-39.631],[19.425,-45.241],[28.835,-47.869],[37.482,-44.957],[40.341,-36.79],[40.341,-36.506],[38.903,-33.665],[34.357,-32.511],[26.278,-31.534],[18.732,-30.202],[11.896,-27.699],[6.96,-23.1],[5.114,-15.483],[7.599,-6.41],[14.311,-0.692],[23.722,1.278]],"c":true}},"nm":"a"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.166,1.48],[0,2.912],[-1.149,1.243],[-1.882,0.628],[-2.178,0.284],[-1.456,0.178],[-1.551,0.249],[-1.196,0.343],[-0.355,0.426],[0,0],[1.172,-2.06],[2.284,-1.302],[3.314,0]],"o":[[-2.166,-1.479],[0,-2.131],[1.148,-1.243],[1.882,-0.627],[0.899,-0.118],[1.456,-0.178],[1.55,-0.249],[1.195,-0.343],[0,0],[0,2.273],[-1.172,2.06],[-2.285,1.302],[-3.338,0]],"v":[[16.744,-8.469],[13.494,-15.057],[15.217,-20.117],[19.762,-22.923],[25.852,-24.29],[29.386,-24.734],[33.896,-25.373],[38.015,-26.261],[40.341,-27.415],[40.341,-19.744],[38.583,-13.246],[33.398,-8.203],[25,-6.25]],"c":true}},"nm":"a"}],"nm":"a"}]},"fFamily":"Inter"},{"ch":"i","size":36,"style":"Regular","w":23.72,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.051,0],[16.051,-54.545],[7.67,-54.545],[7.67,0]],"c":true}},"nm":"i"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.172,1.113],[0,1.562],[1.172,1.113],[1.634,0],[1.172,-1.113],[0,-1.562],[-1.172,-1.113],[-1.634,0]],"o":[[1.172,-1.113],[0,-1.562],[-1.172,-1.113],[-1.634,0],[-1.172,1.113],[0,1.562],[1.172,1.113],[1.634,0]],"v":[[16.14,-65.305],[17.898,-69.318],[16.14,-73.331],[11.932,-75],[7.724,-73.331],[5.966,-69.318],[7.724,-65.305],[11.932,-63.636]],"c":true}},"nm":"i"}],"nm":"i"}]},"fFamily":"Inter"},{"ch":"l","size":36,"style":"Regular","w":23.72,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7.67,-72.727],[7.67,0],[16.051,0],[16.051,-72.727]],"c":true}},"nm":"l"}],"nm":"l"}]},"fFamily":"Inter"},{"ch":"d","size":36,"style":"Regular","w":62.07,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.107,1.172],[-1.136,1.504],[-0.616,0.994],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.101,1.48],[2.071,1.172],[3.551,0],[3.503,-2.296],[1.965,-4.214],[0,-5.729],[-1.965,-4.226],[-3.48,-2.308],[-4.545,0]],"o":[[2.107,-1.172],[1.136,-1.503],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.616,-0.947],[-1.101,-1.479],[-2.072,-1.172],[-4.593,0],[-3.504,2.297],[-1.965,4.214],[0,5.777],[1.965,4.226],[3.48,2.308],[3.503,0]],"v":[[36.683,-0.621],[41.548,-4.634],[44.176,-8.381],[45.17,-8.381],[45.17,0],[53.267,0],[53.267,-72.727],[44.886,-72.727],[44.886,-45.881],[44.176,-45.881],[41.602,-49.521],[36.843,-53.498],[28.409,-55.256],[16.264,-51.811],[8.061,-42.045],[5.114,-27.131],[8.061,-12.127],[16.229,-2.326],[28.267,1.136]],"c":true}},"nm":"d"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.355,1.859],[1.195,3.161],[0,3.883],[-1.172,3.089],[-2.356,1.811],[-3.551,0],[-2.32,-1.716],[-1.184,-3.066],[0,-4.072],[1.207,-3.137],[2.32,-1.763],[3.361,0]],"o":[[-2.356,-1.858],[-1.196,-3.161],[0,-3.835],[1.172,-3.089],[2.355,-1.811],[3.409,0],[2.32,1.717],[1.184,3.066],[0,4.119],[-1.207,3.137],[-2.32,1.764],[-3.504,0]],"v":[[20.614,-9.18],[15.288,-16.708],[13.494,-27.273],[15.252,-37.66],[20.543,-45.011],[29.403,-47.727],[37.997,-45.153],[43.253,-37.979],[45.028,-27.273],[43.217,-16.388],[37.926,-9.038],[29.403,-6.392]],"c":true}},"nm":"d"}],"nm":"d"}]},"fFamily":"Inter"},{"ch":"s","size":36,"style":"Regular","w":52.27,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.089,2.368],[5.398,0],[3.018,-1.349],[1.74,-2.367],[0,-3.077],[-2.332,-2.497],[-4.995,-1.184],[0,0],[-1.326,-1.29],[0,-1.894],[2.308,-1.669],[3.906,0],[2.118,1.468],[0.757,2.936],[0,0],[-3.646,-2.415],[-5.564,0],[-3.196,1.42],[-1.788,2.462],[0,3.125],[2.391,2.427],[4.877,1.184],[0,0],[1.515,1.207],[0,2.084],[-2.214,1.527],[-3.338,0],[-1.563,-0.781],[-0.912,-1.195],[-0.474,-1.255],[0,0]],"o":[[-3.089,-2.367],[-3.835,0],[-3.018,1.349],[-1.74,2.368],[0,3.764],[2.332,2.498],[0,0],[2.746,0.639],[1.326,1.291],[0,2.344],[-2.308,1.669],[-3.433,0],[-2.119,-1.468],[0,0],[0.97,4.64],[3.645,2.415],[4.238,0],[3.196,-1.42],[1.787,-2.462],[0,-3.811],[-2.391,-2.426],[0,0],[-3.22,-0.805],[-1.515,-1.207],[0,-2.344],[2.213,-1.527],[2.438,0],[1.562,0.781],[0.911,1.196],[0,0],[-1.302,-3.882]],"v":[[39.719,-51.705],[26.989,-55.256],[16.708,-53.232],[9.57,-47.656],[6.96,-39.489],[10.458,-30.096],[21.449,-24.574],[30.54,-22.443],[36.648,-19.549],[38.636,-14.773],[35.174,-8.754],[25.852,-6.25],[17.525,-8.452],[13.21,-15.057],[5.256,-13.068],[12.18,-2.486],[25.994,1.136],[37.145,-0.994],[44.62,-6.818],[47.301,-15.199],[43.714,-24.556],[32.812,-29.972],[24.716,-31.96],[17.614,-34.979],[15.341,-39.915],[18.661,-45.721],[26.989,-48.011],[32.99,-46.839],[36.701,-43.874],[38.778,-40.199],[46.307,-42.33]],"c":true}},"nm":"s"}],"nm":"s"}]},"fFamily":"Inter"},{"ch":"c","size":36,"style":"Regular","w":55.82,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.042,1.503],[-1.859,2.569],[-0.474,3.22],[0,0],[1.231,-1.42],[1.776,-0.757],[2.178,0],[2.45,1.728],[1.337,3.125],[0,4.214],[-1.362,3.066],[-2.45,1.693],[-3.267,0],[-2.19,-1.929],[-0.639,-2.486],[0,0],[1.965,2.557],[3.077,1.42],[3.835,0],[3.681,-2.403],[2.047,-4.249],[0,-5.54],[-1.989,-4.238],[-3.693,-2.415],[-5.114,0]],"o":[[3.042,-1.503],[1.858,-2.568],[0,0],[-0.521,1.989],[-1.231,1.42],[-1.776,0.758],[-3.315,0],[-2.45,-1.728],[-1.338,-3.125],[0,-4.119],[1.361,-3.066],[2.45,-1.692],[3.693,0],[2.189,1.93],[0,0],[-0.474,-3.409],[-1.965,-2.557],[-3.078,-1.42],[-4.924,0],[-3.682,2.403],[-2.048,4.25],[0,5.445],[1.989,4.238],[3.693,2.415],[4.024,0]],"v":[[40.43,-1.119],[47.781,-7.227],[51.278,-15.909],[42.898,-15.909],[40.27,-10.795],[35.76,-7.528],[29.83,-6.392],[21.183,-8.984],[15.501,-16.264],[13.494,-27.273],[15.536,-38.05],[21.254,-45.188],[29.83,-47.727],[38.654,-44.833],[42.898,-38.21],[51.278,-38.21],[47.621,-47.159],[40.057,-53.125],[29.688,-55.256],[16.779,-51.651],[8.185,-41.673],[5.114,-26.989],[8.097,-12.464],[16.619,-2.486],[29.83,1.136]],"c":true}},"nm":"c"}],"nm":"c"}]},"fFamily":"Inter"},{"ch":"@","size":36,"style":"Regular","w":93.61,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.663,0.402],[-2.356,0.615],[-1.468,0.615],[0,0],[1.941,-0.592],[2.533,-0.497],[2.604,0],[4.64,1.669],[3.137,3.219],[1.598,4.688],[0,6.037],[-1.598,4.676],[-3.066,3.279],[-4.392,1.717],[-5.564,0],[-3.563,-1.172],[-2.652,-2.06],[-1.74,-2.699],[-0.864,-3.089],[0,-3.172],[0.485,-3.456],[1.29,-1.657],[2.415,0],[1.113,1.515],[0,1.989],[0,0],[0,0],[0,0],[0,0],[1.255,0.864],[1.941,0.438],[2.367,-0.236],[2.284,-1.195],[1.692,-1.989],[0.947,-2.651],[0,-3.196],[-0.793,-2.9],[-1.575,-2.189],[-2.344,-1.266],[-3.078,-0.118],[-1.882,0.734],[-1.172,1.231],[-0.568,1.373],[0,0],[-1.539,-1.207],[-1.989,-0.52],[-1.657,0],[-2.214,1.799],[-1.065,2.947],[-0.332,3.528],[0,3.433],[1.692,4.593],[3.374,3.682],[5.007,2.166],[6.652,0],[5.409,-2.012],[3.776,-3.823],[1.976,-5.469],[0,-6.936],[-1.941,-5.563],[-3.788,-3.835],[-5.564,-1.977],[-7.244,0]],"o":[[2.663,-0.403],[2.355,-0.616],[0,0],[-0.852,0.284],[-1.941,0.591],[-2.534,0.497],[-6.061,0],[-4.64,-1.669],[-3.137,-3.219],[-1.598,-4.688],[0,-5.942],[1.598,-4.675],[3.066,-3.279],[4.391,-1.716],[4.522,0],[3.563,1.172],[2.651,2.06],[1.74,2.699],[0.864,3.089],[0,5.398],[-0.486,3.457],[-1.291,1.657],[-2.131,0],[-1.113,-1.515],[0,0],[0,0],[0,0],[0,0],[-0.332,-1.041],[-1.255,-0.864],[-1.941,-0.438],[-2.652,0.284],[-2.285,1.196],[-1.693,1.989],[-0.947,2.652],[0,3.362],[0.793,2.9],[1.574,2.19],[2.344,1.267],[2.699,0.095],[1.882,-0.734],[1.172,-1.231],[0,0],[0.284,2.036],[1.539,1.207],[1.989,0.521],[3.764,0],[2.213,-1.799],[1.065,-2.947],[0.331,-3.527],[0,-4.877],[-1.693,-4.593],[-3.374,-3.681],[-5.007,-2.166],[-6.842,0],[-5.41,2.012],[-3.776,3.824],[-1.977,5.469],[0,7.173],[1.941,5.564],[3.788,3.835],[5.563,1.976],[2.415,0]],"v":[[57.191,18.572],[64.719,17.045],[70.455,15.199],[68.466,8.665],[64.276,9.979],[57.564,11.612],[49.858,12.358],[33.807,9.854],[22.141,2.521],[15.039,-9.339],[12.642,-25.426],[15.039,-41.353],[22.035,-53.285],[33.221,-60.778],[48.153,-63.352],[60.281,-61.594],[69.602,-56.747],[76.19,-49.609],[80.096,-40.927],[81.392,-31.534],[80.664,-18.253],[78.001,-10.582],[72.443,-8.097],[67.578,-10.369],[65.909,-15.625],[65.909,-47.727],[58.381,-47.727],[58.381,-43.75],[57.955,-43.75],[55.575,-46.609],[50.781,-48.562],[44.318,-48.864],[36.914,-46.644],[30.948,-41.868],[26.989,-34.908],[25.568,-26.136],[26.758,-16.744],[30.309,-9.109],[36.186,-3.924],[44.318,-1.847],[51.19,-2.805],[55.771,-5.753],[58.381,-9.659],[58.807,-9.659],[61.541,-4.794],[66.832,-2.202],[72.301,-1.42],[81.268,-4.119],[86.186,-11.239],[88.281,-20.952],[88.778,-31.392],[86.239,-45.597],[78.64,-58.008],[66.069,-66.779],[48.58,-70.028],[30.202,-67.01],[16.424,-58.256],[7.795,-44.318],[4.83,-25.71],[7.741,-6.605],[16.335,7.493],[30.362,16.211],[49.574,19.176]],"c":true}},"nm":"@"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.823,1.646],[0.805,2.663],[0,3.031],[-1.007,2.332],[-1.906,1.409],[-2.699,0],[-1.941,-0.899],[-0.994,-2.225],[0,-3.977],[0.899,-2.58],[1.965,-1.278],[3.172,0]],"o":[[-1.823,-1.645],[-0.805,-2.663],[0,-2.746],[1.006,-2.332],[1.905,-1.408],[2.841,0],[1.941,0.9],[0.994,2.226],[0,3.93],[-0.9,2.581],[-1.965,1.278],[-3.078,0]],"v":[[38.104,-11.559],[34.162,-18.022],[32.955,-26.562],[34.464,-34.18],[38.832,-39.79],[45.739,-41.903],[52.912,-40.554],[57.315,-35.866],[58.807,-26.562],[57.457,-16.797],[53.161,-11.009],[45.455,-9.091]],"c":true}},"nm":"@"}],"nm":"@"}]},"fFamily":"Inter"},{"ch":"h","size":36,"style":"Regular","w":59.09,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.243,2.226],[-2.166,1.16],[-2.747,0],[-2.237,-2.379],[0,-4.332],[0,0],[0,0],[0,0],[1.55,3.042],[2.793,1.48],[3.716,0],[2.568,-1.669],[1.278,-2.817],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[1.243,-2.225],[2.166,-1.16],[3.953,0],[2.237,2.379],[0,0],[0,0],[0,0],[0,-4.688],[-1.551,-3.042],[-2.794,-1.479],[-4.285,0],[-2.569,1.669],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-3.172]],"v":[[17.915,-40.909],[23.029,-45.987],[30.398,-47.727],[39.684,-44.158],[43.04,-34.091],[43.04,0],[51.42,0],[51.42,-34.659],[49.094,-46.254],[42.578,-53.036],[32.812,-55.256],[22.532,-52.752],[16.761,-46.023],[16.051,-46.023],[16.051,-72.727],[7.67,-72.727],[7.67,0],[16.051,0],[16.051,-32.812]],"c":true}},"nm":"h"}],"nm":"h"}]},"fFamily":"Inter"},{"ch":"w","size":36,"style":"Regular","w":81.25,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.267,0],[40.199,-41.903],[41.051,-41.903],[52.983,0],[61.222,0],[77.841,-54.545],[69.034,-54.545],[57.244,-12.926],[56.676,-12.926],[45.17,-54.545],[36.222,-54.545],[24.574,-12.784],[24.006,-12.784],[12.216,-54.545],[3.409,-54.545],[20.028,0]],"c":true}},"nm":"w"}],"nm":"w"}]},"fFamily":"Inter"},{"ch":"b","size":36,"style":"Regular","w":62.07,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.136,-1.503],[-2.107,-1.172],[-3.504,0],[-3.48,2.308],[-1.965,4.226],[0,5.777],[1.965,4.214],[3.503,2.297],[4.593,0],[2.071,-1.172],[1.101,-1.479],[0.615,-0.947],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0.615,0.994],[1.136,1.504],[2.107,1.172],[4.545,0],[3.48,-2.308],[1.965,-4.226],[0,-5.729],[-1.965,-4.214],[-3.504,-2.296],[-3.551,0],[-2.072,1.172],[-1.101,1.48],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.903,0],[16.903,-8.381],[17.898,-8.381],[20.526,-4.634],[25.391,-0.621],[33.807,1.136],[45.845,-2.326],[54.013,-12.127],[56.96,-27.131],[54.013,-42.045],[45.81,-51.811],[33.665,-55.256],[25.231,-53.498],[20.472,-49.521],[17.898,-45.881],[17.188,-45.881],[17.188,-72.727],[8.807,-72.727],[8.807,0]],"c":true}},"nm":"b"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,3.066],[-2.32,1.717],[-3.409,0],[-2.356,-1.811],[-1.172,-3.089],[0,-3.835],[1.195,-3.161],[2.355,-1.858],[3.503,0],[2.32,1.764],[1.207,3.137],[0,4.119]],"o":[[1.184,-3.066],[2.32,-1.716],[3.551,0],[2.355,1.811],[1.172,3.089],[0,3.883],[-1.196,3.161],[-2.356,1.859],[-3.362,0],[-2.32,-1.763],[-1.207,-3.137],[0,-4.072]],"v":[[18.821,-37.979],[24.077,-45.153],[32.67,-47.727],[41.531,-45.011],[46.822,-37.66],[48.58,-27.273],[46.786,-16.708],[41.46,-9.18],[32.67,-6.392],[24.148,-9.038],[18.857,-16.388],[17.045,-27.273]],"c":true}},"nm":"b"}],"nm":"b"}]},"fFamily":"Inter"},{"ch":".","size":36,"style":"Regular","w":27.56,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.959,0.58],[-0.58,0.971],[0,1.16],[1.255,1.255],[1.752,0],[1.255,-1.255],[0,-1.752],[-1.255,-1.255],[-1.752,0]],"o":[[0.959,-0.58],[0.58,-0.97],[0,-1.752],[-1.255,-1.255],[-1.752,0],[-1.255,1.255],[0,1.752],[1.255,1.255],[1.184,0]],"v":[[16.992,-0.302],[19.3,-2.628],[20.17,-5.824],[18.288,-10.334],[13.778,-12.216],[9.268,-10.334],[7.386,-5.824],[9.268,-1.314],[13.778,0.568]],"c":true}},"nm":"."}],"nm":"."}]},"fFamily":"Inter"},{"ch":"S","size":37,"style":"Regular","w":70.6,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[2.518,-51.865],[9.064,-51.865],[9.064,-38.873],[54.382,-38.873],[54.382,-12.991],[9.064,-12.991],[9.064,0],[54.382,0],[54.382,-12.991],[67.273,-12.991],[67.273,-38.873],[60.828,-38.873],[60.828,-51.865],[15.509,-51.865],[15.509,-64.755],[60.828,-64.755],[60.828,-77.747],[15.509,-77.747],[15.509,-64.755],[2.518,-64.755]],"c":true}},"nm":"S"}],"nm":"S"}]},"fFamily":"Compixs"},{"ch":"i","size":37,"style":"Regular","w":22.3,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.733,-51.865],[4.733,0],[17.725,0],[17.725,-51.865]],"c":true}},"nm":"i"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.733,-77.747],[4.733,-64.755],[17.725,-64.755],[17.725,-77.747]],"c":true}},"nm":"i"}],"nm":"i"}]},"fFamily":"Compixs"},{"ch":"g","size":37,"style":"Regular","w":73.2,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[2.518,-12.991],[54.382,-12.991],[54.382,0],[15.509,0],[15.509,12.991],[60.828,12.991],[60.828,0],[67.273,0],[67.273,-64.755],[21.954,-64.755],[21.954,-51.865],[9.064,-51.865],[9.064,-25.882],[2.518,-25.882]],"c":true}},"nm":"g"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[54.382,-51.865],[54.382,-25.882],[21.954,-25.882],[21.954,-51.865]],"c":true}},"nm":"g"}],"nm":"g"}]},"fFamily":"Compixs"},{"ch":"n","size":37,"style":"Regular","w":76.2,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.445,0],[19.437,0],[19.437,-51.865],[58.209,-51.865],[58.209,0],[71.201,0],[71.201,-51.865],[58.209,-51.865],[58.209,-64.755],[6.445,-64.755]],"c":true}},"nm":"n"}],"nm":"n"}]},"fFamily":"Compixs"},{"ch":" ","size":37,"style":"Regular","w":37,"data":{},"fFamily":"Compixs"},{"ch":"C","size":37,"style":"Regular","w":72.6,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3.424,-25.882],[9.869,-25.882],[9.869,-12.991],[22.861,-12.991],[22.861,0],[55.289,0],[55.289,-12.991],[68.179,-12.991],[68.179,-38.873],[55.289,-38.873],[55.289,-12.991],[22.861,-12.991],[22.861,-25.882],[16.415,-25.882],[16.415,-51.865],[22.861,-51.865],[22.861,-64.755],[55.289,-64.755],[55.289,-51.865],[68.179,-51.865],[68.179,-64.755],[55.289,-64.755],[55.289,-77.747],[22.861,-77.747],[22.861,-64.755],[9.869,-64.755],[9.869,-51.865],[3.424,-51.865]],"c":true}},"nm":"C"}],"nm":"C"}]},"fFamily":"Compixs"},{"ch":"o","size":37,"style":"Regular","w":71.4,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3.525,-12.991],[16.516,-12.991],[16.516,0],[55.389,0],[55.389,-12.991],[68.28,-12.991],[68.28,-38.873],[61.835,-38.873],[61.835,-51.865],[48.843,-51.865],[48.843,-64.755],[22.961,-64.755],[22.961,-51.865],[10.071,-51.865],[10.071,-38.873],[3.525,-38.873]],"c":true}},"nm":"o"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.516,-12.991],[16.516,-38.873],[22.961,-38.873],[22.961,-51.865],[48.843,-51.865],[48.843,-38.873],[55.389,-38.873],[55.389,-12.991]],"c":true}},"nm":"o"}],"nm":"o"}]},"fFamily":"Compixs"},{"ch":"e","size":37,"style":"Regular","w":71,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.516,-12.991],[16.516,0],[61.835,0],[61.835,-12.991],[16.516,-12.991],[16.516,-25.882],[55.389,-25.882],[55.389,-32.428],[68.28,-32.428],[68.28,-51.865],[55.389,-51.865],[55.389,-64.755],[16.516,-64.755],[16.516,-51.865],[10.071,-51.865],[10.071,-38.873],[3.525,-38.873],[3.525,-12.991]],"c":true}},"nm":"e"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22.961,-51.865],[55.389,-51.865],[55.389,-38.873],[22.961,-38.873]],"c":true}},"nm":"e"}],"nm":"e"}]},"fFamily":"Compixs"},{"ch":"c","size":37,"style":"Regular","w":70.3,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3.525,-12.991],[16.516,-12.991],[16.516,0],[61.835,0],[61.835,-12.991],[16.516,-12.991],[16.516,-38.873],[22.961,-38.873],[22.961,-51.865],[55.389,-51.865],[55.389,-38.873],[68.28,-38.873],[68.28,-51.865],[55.389,-51.865],[55.389,-64.755],[22.961,-64.755],[22.961,-51.865],[10.071,-51.865],[10.071,-38.873],[3.525,-38.873]],"c":true}},"nm":"c"}],"nm":"c"}]},"fFamily":"Compixs"},{"ch":"t","size":37,"style":"Regular","w":72.3,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.143,-6.445],[19.034,-6.445],[19.034,0],[51.462,0],[51.462,-12.991],[64.352,-12.991],[64.352,-25.882],[70.898,-25.882],[70.898,-38.873],[57.907,-38.873],[57.907,-25.882],[51.462,-25.882],[51.462,-12.991],[19.034,-12.991],[19.034,-51.865],[57.907,-51.865],[57.907,-64.755],[19.034,-64.755],[19.034,-77.747],[6.143,-77.747]],"c":true}},"nm":"t"}],"nm":"t"}]},"fFamily":"Compixs"},{"ch":"a","size":37,"style":"Regular","w":70.4,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3.525,-38.873],[3.525,-12.991],[16.516,-12.991],[16.516,0],[68.28,0],[68.28,-12.991],[61.835,-12.991],[61.835,-51.865],[55.389,-51.865],[55.389,-64.755],[22.961,-64.755],[22.961,-51.865],[10.071,-51.865],[10.071,-38.873]],"c":true}},"nm":"a"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.516,-12.991],[16.516,-38.873],[22.961,-38.873],[22.961,-51.865],[48.843,-51.865],[48.843,-12.991]],"c":true}},"nm":"a"}],"nm":"a"}]},"fFamily":"Compixs"},{"ch":"w","size":37,"style":"Regular","w":71.1,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9.869,-38.873],[9.869,-12.991],[16.415,-12.991],[16.415,0],[29.306,0],[29.306,-12.991],[42.297,-12.991],[42.297,0],[55.289,0],[55.289,-12.991],[61.734,-12.991],[61.734,-38.873],[68.179,-38.873],[68.179,-64.755],[55.289,-64.755],[55.289,-38.873],[48.743,-38.873],[48.743,-12.991],[42.297,-12.991],[42.297,-51.865],[29.306,-51.865],[29.306,-12.991],[22.861,-12.991],[22.861,-38.873],[16.415,-38.873],[16.415,-64.755],[3.424,-64.755],[3.424,-38.873]],"c":true}},"nm":"w"}],"nm":"w"}]},"fFamily":"Compixs"},{"ch":"l","size":37,"style":"Regular","w":25.7,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.445,-77.747],[6.445,0],[19.437,0],[19.437,-77.747]],"c":true}},"nm":"l"}],"nm":"l"}]},"fFamily":"Compixs"},{"ch":"O","size":30,"style":"Regular","w":71.1,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3.424,-25.882],[9.869,-25.882],[9.869,-12.991],[22.861,-12.991],[22.861,0],[48.743,0],[48.743,-12.991],[61.734,-12.991],[61.734,-25.882],[68.179,-25.882],[68.179,-51.865],[61.734,-51.865],[61.734,-64.755],[48.743,-64.755],[48.743,-77.747],[22.861,-77.747],[22.861,-64.755],[9.869,-64.755],[9.869,-51.865],[3.424,-51.865]],"c":true}},"nm":"O"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.415,-25.882],[16.415,-51.865],[22.861,-51.865],[22.861,-64.755],[48.743,-64.755],[48.743,-51.865],[55.289,-51.865],[55.289,-25.882],[48.743,-25.882],[48.743,-12.991],[22.861,-12.991],[22.861,-25.882]],"c":true}},"nm":"O"}],"nm":"O"}]},"fFamily":"Compixs"},{"ch":"R","size":30,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.848,-77.747],[6.848,0],[19.839,0],[19.839,-38.873],[45.721,-38.873],[45.721,-25.882],[52.267,-25.882],[52.267,-12.991],[58.713,-12.991],[58.713,0],[71.603,0],[71.603,-12.991],[65.158,-12.991],[65.158,-25.882],[58.713,-25.882],[58.713,-38.873],[71.603,-38.873],[71.603,-51.865],[65.158,-51.865],[65.158,-64.755],[58.713,-64.755],[58.713,-77.747]],"c":true}},"nm":"R"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19.839,-64.755],[52.267,-64.755],[52.267,-51.865],[19.839,-51.865]],"c":true}},"nm":"R"}],"nm":"R"}]},"fFamily":"Compixs"},{"ch":"P","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[25,-25],[25,-50],[37.5,-50],[37.5,-25]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[25,0],[25,-12.5],[62.5,-12.5],[62.5,-62.5],[0,-62.5],[0,0]],"c":true}},"nm":"P"}],"nm":"P"}]},"fFamily":"I pixel u"},{"ch":"I","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.5,0],[62.5,-12.5],[50,-12.5],[50,-50],[62.5,-50],[62.5,-62.5],[0,-62.5],[0,-50],[12.5,-50],[12.5,-12.5],[0,-12.5],[0,0]],"c":true}},"nm":"I"}],"nm":"I"}]},"fFamily":"I pixel u"},{"ch":"X","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[25,0],[25,-12.5],[37.5,-12.5],[37.5,0],[62.5,0],[62.5,-25],[50,-25],[50,-37.5],[62.5,-37.5],[62.5,-62.5],[37.5,-62.5],[37.5,-50],[25,-50],[25,-62.5],[0,-62.5],[0,-37.5],[12.5,-37.5],[12.5,-25],[0,-25],[0,0]],"c":true}},"nm":"X"}],"nm":"X"}]},"fFamily":"I pixel u"},{"ch":"E","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.5,0],[62.5,-12.5],[25,-12.5],[25,-25],[50,-25],[50,-37.5],[25,-37.5],[25,-50],[62.5,-50],[62.5,-62.5],[0,-62.5],[0,0]],"c":true}},"nm":"E"}],"nm":"E"}]},"fFamily":"I pixel u"},{"ch":"L","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.5,0],[62.5,-12.5],[37.5,-12.5],[37.5,-62.5],[0,-62.5],[0,0]],"c":true}},"nm":"L"}],"nm":"L"}]},"fFamily":"I pixel u"},{"ch":" ","size":67,"style":"Regular","w":50,"data":{},"fFamily":"I pixel u"},{"ch":"U","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.5,0],[62.5,-62.5],[37.5,-62.5],[37.5,-12.5],[25,-12.5],[25,-62.5],[0,-62.5],[0,0]],"c":true}},"nm":"U"}],"nm":"U"}]},"fFamily":"I pixel u"},{"ch":"S","size":67,"style":"Regular","w":75,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.5,0],[62.5,-37.5],[25,-37.5],[25,-50],[62.5,-50],[62.5,-62.5],[0,-62.5],[0,-25],[37.5,-25],[37.5,-12.5],[0,-12.5],[0,0]],"c":true}},"nm":"S"}],"nm":"S"}]},"fFamily":"I pixel u"},{"ch":"c","size":61,"style":"Medium","w":56.78,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.208,1.586],[-1.918,2.77],[-0.379,3.528],[0,0],[1.124,-1.397],[1.645,-0.746],[2.012,0],[2.213,1.586],[1.207,2.889],[0,3.977],[-1.231,2.853],[-2.214,1.551],[-2.96,0],[-2.024,-1.847],[-0.568,-2.557],[0,0],[2,2.747],[3.243,1.527],[4.143,0],[3.788,-2.391],[2.083,-4.249],[0,-5.54],[-2.036,-4.238],[-3.8,-2.403],[-5.28,0]],"o":[[3.208,-1.586],[1.918,-2.77],[0,0],[-0.45,1.965],[-1.125,1.397],[-1.646,0.746],[-3.007,0],[-2.214,-1.586],[-1.207,-2.888],[0,-3.882],[1.231,-2.853],[2.213,-1.55],[3.385,0],[2.024,1.847],[0,0],[-0.379,-3.669],[-2.001,-2.746],[-3.244,-1.527],[-5.137,0],[-3.788,2.391],[-2.084,4.25],[0,5.469],[2.036,4.238],[3.8,2.403],[4.309,0]],"v":[[41.389,-1.278],[49.077,-7.812],[52.521,-17.259],[42.188,-17.259],[39.826,-12.216],[35.671,-9.002],[30.185,-7.884],[22.354,-10.263],[17.223,-16.974],[15.412,-27.273],[17.259,-37.376],[22.425,-43.981],[30.185,-46.307],[38.299,-43.537],[42.188,-36.932],[52.521,-36.932],[48.952,-46.555],[41.087,-52.965],[30.007,-55.256],[16.619,-51.669],[7.812,-41.708],[4.688,-27.024],[7.741,-12.464],[16.495,-2.504],[30.114,1.101]],"c":true}},"nm":"c"}],"nm":"c"}]},"fFamily":"Inter"},{"ch":"a","size":61,"style":"Medium","w":56.92,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.155,0.876],[-1.373,1.326],[-0.687,1.373],[0,0],[0,0],[0,0],[0,0],[1.373,2.498],[2.142,1.349],[2.45,0.509],[2.178,0],[2.983,-0.935],[2.284,-2.047],[1.184,-3.314],[0,0],[-2.048,1.575],[-3.575,0],[-1.74,-1.705],[0,-3.101],[0,0],[0.923,-0.568],[2.036,-0.249],[3.267,-0.378],[2.486,-0.591],[2.012,-1.16],[1.184,-1.989],[0,-3.077],[-1.622,-2.462],[-2.794,-1.29],[-3.457,0]],"o":[[2.154,-0.876],[1.373,-1.326],[0,0],[0,0],[0,0],[0,0],[0,-3.977],[-1.373,-2.497],[-2.143,-1.349],[-2.45,-0.509],[-3.291,0],[-2.983,0.936],[-2.285,2.048],[0,0],[0.781,-1.918],[2.047,-1.574],[3.432,0],[1.74,1.705],[0,0],[0,1.278],[-0.923,0.568],[-2.036,0.249],[-2.581,0.308],[-2.486,0.592],[-2.012,1.16],[-1.184,1.989],[0,3.575],[1.621,2.462],[2.793,1.29],[3.006,0]],"v":[[30.753,-0.107],[36.044,-3.409],[39.134,-7.457],[39.56,-7.457],[39.56,0],[49.929,0],[49.929,-36.222],[47.869,-45.934],[42.596,-51.705],[35.707,-54.492],[28.764,-55.256],[19.354,-53.853],[11.452,-49.379],[6.25,-41.335],[16.229,-39.062],[20.472,-44.3],[28.906,-46.662],[36.665,-44.105],[39.276,-36.896],[39.276,-36.648],[37.891,-33.878],[33.452,-32.653],[25.497,-31.712],[17.898,-30.362],[11.151,-27.734],[6.357,-23.011],[4.581,-15.412],[7.013,-6.357],[13.636,-0.728],[23.011,1.207]],"c":true}},"nm":"a"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.941,1.338],[0,2.628],[-1.007,1.149],[-1.693,0.616],[-2.06,0.261],[-1.302,0.178],[-1.373,0.225],[-1.078,0.32],[-0.379,0.379],[0,0],[1.101,-1.882],[2.095,-1.16],[2.935,0]],"o":[[-1.941,-1.337],[0,-1.894],[1.006,-1.148],[1.692,-0.615],[0.876,-0.118],[1.302,-0.178],[1.373,-0.225],[1.077,-0.32],[0,0],[0,2.155],[-1.101,1.882],[-2.095,1.16],[-3.007,0]],"v":[[17.898,-9.322],[14.986,-15.27],[16.495,-19.833],[20.543,-22.479],[26.172,-23.793],[29.439,-24.237],[33.452,-24.84],[37.127,-25.657],[39.311,-26.705],[39.311,-19.673],[37.66,-13.619],[32.866,-9.055],[25.32,-7.315]],"c":true}},"nm":"a"}],"nm":"a"}]},"fFamily":"Inter"},{"ch":"t","size":61,"style":"Medium","w":37.18,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.805,-54.545],[2.805,-46.023],[32.599,-46.023],[32.599,-54.545]],"c":true}},"nm":"t"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.491,-2.178],[-2.415,-1.041],[-2.794,0.047],[-1.136,0.249],[-0.616,0.237],[0,0],[0.639,-0.118],[0.852,0],[0.982,0.367],[0.615,1.03],[0,2.06],[0,0],[0,0]],"o":[[0,3.291],[1.491,2.178],[2.415,1.041],[1.705,-0.024],[1.136,-0.249],[0,0],[-0.355,0.071],[-0.639,0.119],[-1.16,0],[-0.983,-0.367],[-0.616,-1.03],[0,0],[0,0],[0,0]],"v":[[10.795,-13.814],[13.033,-5.611],[18.892,-0.781],[26.705,0.71],[30.966,0.302],[33.594,-0.426],[31.676,-9.197],[30.185,-8.913],[27.947,-8.736],[24.734,-9.286],[22.337,-11.381],[21.413,-16.016],[21.413,-67.614],[10.795,-67.614]],"c":true}},"nm":"t"}],"nm":"t"}]},"fFamily":"Inter"},{"ch":"y","size":61,"style":"Medium","w":56.64,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.226,0.994],[-1.61,1.976],[-1.042,2.841],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.172,-1.065],[1.515,-0.071],[1.941,0.52],[0,0],[-1.302,-0.249],[-1.586,0]],"o":[[2.225,-0.994],[1.61,-1.977],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.9,2.415],[-1.172,1.065],[-1.515,0.071],[0,0],[0.639,0.284],[1.302,0.249],[2.935,0]],"v":[[21.591,18.963],[27.344,14.506],[31.321,7.28],[53.8,-54.545],[42.401,-54.545],[28.587,-12.216],[28.018,-12.216],[14.205,-54.545],[2.841,-54.545],[22.798,0.71],[21.484,4.332],[18.377,9.553],[14.347,11.257],[9.162,10.582],[6.605,19.283],[9.517,20.082],[13.849,20.455]],"c":true}},"nm":"y"}],"nm":"y"}]},"fFamily":"Inter"},{"ch":".","size":61,"style":"Medium","w":28.3,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.065,0.639],[-0.651,1.078],[0,1.302],[1.397,1.385],[1.941,0],[1.397,-1.385],[0,-1.941],[-1.397,-1.385],[-1.941,0]],"o":[[1.065,-0.639],[0.651,-1.077],[0,-1.941],[-1.397,-1.385],[-1.941,0],[-1.397,1.385],[0,1.965],[1.397,1.385],[1.302,0]],"v":[[17.685,-0.284],[20.259,-2.859],[21.236,-6.428],[19.141,-11.417],[14.134,-13.494],[9.126,-11.417],[7.031,-6.428],[9.126,-1.403],[14.134,0.675]],"c":true}},"nm":"."}],"nm":"."}]},"fFamily":"Inter"},{"ch":"e","size":61,"style":"Medium","w":58.74,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.113,1.219],[-2.072,2.214],[-0.805,2.96],[0,0],[1.207,-1.16],[1.657,-0.58],[2.012,0],[2.32,1.338],[1.29,2.557],[0,3.646],[0,0],[-1.196,2.332],[-2.214,1.456],[-2.983,0],[-2.048,-1.255],[-1.136,-2.166],[0,-2.793],[0,0],[0,0],[0,0],[0,0],[1.326,3.468],[2.296,2.178],[2.888,1.018],[3.077,0],[3.776,-2.391],[2.095,-4.261],[0,-5.587],[-2.095,-4.202],[-3.871,-2.308],[-5.374,0]],"o":[[3.113,-1.219],[2.071,-2.213],[0,0],[-0.639,1.705],[-1.207,1.16],[-1.657,0.58],[-3.102,0],[-2.32,-1.337],[-1.291,-2.557],[0,0],[0,-2.722],[1.195,-2.332],[2.213,-1.456],[2.746,0],[2.047,1.255],[1.136,2.166],[0,0],[0,0],[0,0],[0,0],[0,-4.948],[-1.326,-3.468],[-2.297,-2.178],[-2.889,-1.018],[-5.066,0],[-3.776,2.391],[-2.095,4.261],[0,5.659],[2.095,4.203],[3.871,2.308],[3.977,0]],"v":[[41.282,-0.728],[49.059,-5.877],[53.374,-13.636],[43.324,-15.447],[40.554,-11.151],[36.257,-8.54],[30.753,-7.67],[22.621,-9.677],[17.205,-15.518],[15.27,-24.822],[15.27,-31.037],[17.063,-38.619],[22.177,-44.3],[29.972,-46.484],[37.163,-44.602],[41.939,-39.471],[43.643,-32.031],[10.689,-32.031],[10.689,-24.077],[54.048,-24.077],[54.048,-27.841],[52.06,-40.465],[46.626,-48.935],[38.849,-53.729],[29.901,-55.256],[16.637,-51.669],[7.83,-41.69],[4.688,-26.918],[7.83,-12.127],[16.779,-2.362],[30.646,1.101]],"c":true}},"nm":"e"}],"nm":"e"}]},"fFamily":"Inter"},{"ch":"h","size":61,"style":"Medium","w":60.19,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.125,2.048],[-1.977,1.065],[-2.51,0],[-2.06,-2.213],[0,-4.001],[0,0],[0,0],[0,0],[1.55,3.042],[2.805,1.539],[3.74,0],[2.628,-1.728],[1.278,-2.935],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[1.124,-2.047],[1.976,-1.065],[3.669,0],[2.06,2.214],[0,0],[0,0],[0,0],[0,-4.545],[-1.551,-3.042],[-2.805,-1.539],[-4.238,0],[-2.628,1.728],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-2.888]],"v":[[19.442,-39.79],[24.094,-44.46],[30.824,-46.058],[39.418,-42.738],[42.507,-33.416],[42.507,0],[53.125,0],[53.125,-34.695],[50.799,-46.076],[44.265,-52.947],[34.446,-55.256],[24.148,-52.663],[18.288,-45.668],[17.614,-45.668],[17.614,-72.727],[7.138,-72.727],[7.138,0],[17.756,0],[17.756,-32.386]],"c":true}},"nm":"h"}],"nm":"h"}]},"fFamily":"Inter"},{"ch":"\r","size":61,"style":"Medium","w":0,"fFamily":"Inter"},{"ch":"1","size":61,"style":"Medium","w":47.27,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23.899,-72.727],[5.753,-60.866],[5.753,-50.355],[23.153,-61.719],[23.58,-61.719],[23.58,0],[34.588,0],[34.588,-72.727]],"c":true}},"nm":"1"}],"nm":"1"}]},"fFamily":"Inter"},{"ch":"2","size":61,"style":"Medium","w":61.33,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-2.486,3.161],[-1.007,2.581],[0,2.699],[1.965,3.113],[3.492,1.811],[4.569,0],[3.551,-1.834],[2.036,-3.314],[0,-4.427],[0,0],[-1.042,1.941],[-1.941,1.065],[-2.605,0],[-1.965,-0.959],[-1.136,-1.763],[0,-2.415],[0.852,-1.894],[1.716,-2.095],[2.628,-2.77],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[4.427,-4.498],[2.486,-3.161],[1.006,-2.58],[0,-3.906],[-1.965,-3.113],[-3.492,-1.811],[-4.522,0],[-3.551,1.835],[-2.036,3.315],[0,0],[0,-2.604],[1.041,-1.941],[1.941,-1.065],[2.462,0],[1.965,0.959],[1.136,1.764],[0,2.131],[-0.852,1.894],[-1.717,2.095],[0,0],[0,0],[0,0]],"v":[[54.865,0],[54.865,-9.411],[22.124,-9.411],[22.124,-9.943],[36.577,-25.071],[46.946,-36.559],[52.184,-45.17],[53.693,-53.089],[50.746,-63.619],[42.56,-71.005],[30.469,-73.722],[18.359,-70.969],[9.979,-63.246],[6.925,-51.634],[17.401,-51.634],[18.963,-58.452],[23.438,-62.962],[30.256,-64.56],[36.896,-63.121],[41.548,-59.038],[43.253,-52.77],[41.974,-46.733],[38.121,-40.749],[31.605,-33.452],[6.996,-7.955],[6.996,0]],"c":true}},"nm":"2"}],"nm":"2"}]},"fFamily":"Inter"},{"ch":"4","size":61,"style":"Medium","w":65.41,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[60.05,-14.205],[60.05,-23.509],[16.974,-23.509],[16.974,-24.077],[39.453,-59.659],[43.892,-59.659],[43.892,-72.727],[36.896,-72.727],[5.469,-23.082],[5.469,-14.205]],"c":true}},"nm":"4"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[50.426,0],[50.426,-72.727],[40.021,-72.727],[40.021,-20.952],[39.95,-16.903],[39.95,0]],"c":true}},"nm":"4"}],"nm":"4"}]},"fFamily":"Inter"},{"ch":"7","size":61,"style":"Medium","w":59.87,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20.916,0],[52.557,-62.997],[52.557,-72.727],[4.474,-72.727],[4.474,-63.317],[41.193,-63.317],[41.193,-62.784],[9.446,0]],"c":true}},"nm":"7"}],"nm":"7"}]},"fFamily":"Inter"},{"ch":" ","size":61,"style":"Medium","w":26.49,"data":{},"fFamily":"Inter"},{"ch":"M","size":61,"style":"Medium","w":89.77,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.99,0],[18.43,0],[18.43,-52.663],[19.105,-52.663],[40.554,-0.107],[49.219,-0.107],[70.668,-52.628],[71.342,-52.628],[71.342,0],[81.783,0],[81.783,-72.727],[68.466,-72.727],[45.312,-16.193],[44.46,-16.193],[21.307,-72.727],[7.99,-72.727]],"c":true}},"nm":"M"}],"nm":"M"}]},"fFamily":"Inter"},{"ch":"A","size":61,"style":"Medium","w":69.99,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[34.73,-59.517],[35.298,-59.517],[55.859,0],[67.507,0],[41.335,-72.727],[28.658,-72.727],[2.486,0],[14.134,0]],"c":true}},"nm":"A"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.087,-19.247],[53.871,-19.247],[53.871,-28.48],[16.087,-28.48]],"c":true}},"nm":"A"}],"nm":"A"}]},"fFamily":"Inter"},{"ch":"T","size":61,"style":"Medium","w":65.09,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[27.06,-63.281],[27.06,0],[37.997,0],[37.997,-63.281],[60.689,-63.281],[60.689,-72.727],[4.403,-72.727],[4.403,-63.281]],"c":true}},"nm":"T"}],"nm":"T"}]},"fFamily":"Inter"},{"ch":"I","size":61,"style":"Medium","w":26.95,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7.99,-72.727],[7.99,0],[18.963,0],[18.963,-72.727]],"c":true}},"nm":"I"}],"nm":"I"}]},"fFamily":"Inter"},{"ch":"C","size":61,"style":"Medium","w":73.54,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.752,3.042],[2.675,2.119],[3.35,1.101],[3.859,0],[4.924,-2.995],[2.841,-5.575],[0,-7.765],[-2.829,-5.587],[-4.924,-2.995],[-6.298,0],[-3.386,1.184],[-2.64,2.166],[-1.693,2.995],[-0.592,3.575],[0,0],[1.172,-1.787],[1.681,-1.231],[2.071,-0.627],[2.296,0],[3.314,2.084],[1.905,4.072],[0,5.919],[-1.906,4.072],[-3.303,2.107],[-4.19,0],[-2.072,-0.639],[-1.681,-1.255],[-1.16,-1.799],[-0.426,-2.367],[0,0]],"o":[[-1.752,-3.042],[-2.676,-2.118],[-3.35,-1.101],[-6.274,0],[-4.924,2.995],[-2.841,5.575],[0,7.741],[2.829,5.587],[4.924,2.995],[4.001,0],[3.385,-1.184],[2.639,-2.166],[1.692,-2.995],[0,0],[-0.45,2.32],[-1.172,1.788],[-1.681,1.231],[-2.072,0.628],[-4.143,0],[-3.315,-2.083],[-1.906,-4.072],[0,-5.871],[1.905,-4.072],[3.303,-2.107],[2.32,0],[2.071,0.639],[1.681,1.255],[1.16,1.799],[0,0],[-0.616,-3.906]],"v":[[64.844,-59.499],[58.203,-67.241],[49.165,-72.07],[38.352,-73.722],[21.555,-69.229],[9.908,-56.374],[5.646,-36.364],[9.89,-16.371],[21.52,-3.498],[38.352,0.994],[49.432,-0.781],[58.469,-5.806],[64.968,-13.548],[68.395,-23.402],[57.315,-23.438],[54.883,-17.276],[50.604,-12.749],[44.975,-9.961],[38.423,-9.02],[27.237,-12.145],[19.407,-21.378],[16.548,-36.364],[19.407,-51.278],[27.219,-60.547],[38.459,-63.707],[45.046,-62.749],[50.675,-59.908],[54.936,-55.327],[57.315,-49.077],[68.395,-49.077]],"c":true}},"nm":"C"}],"nm":"C"}]},"fFamily":"Inter"},{"ch":"B","size":70,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14.648,-63.477],[39.062,-63.477],[39.062,-58.594],[43.945,-58.594],[43.945,-48.828],[39.062,-48.828],[39.062,-43.945],[14.648,-43.945]],"c":true}},"nm":"B"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[43.945,-4.883],[43.945,-9.766],[48.828,-9.766],[48.828,-14.648],[53.711,-14.648],[53.711,-34.18],[48.828,-34.18],[48.828,-43.945],[53.711,-43.945],[53.711,-63.477],[48.828,-63.477],[48.828,-68.359],[43.945,-68.359],[43.945,-73.242],[4.883,-73.242],[4.883,-4.883]],"c":true}},"nm":"B"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14.648,-34.18],[39.062,-34.18],[39.062,-29.297],[43.945,-29.297],[43.945,-19.531],[39.062,-19.531],[39.062,-14.648],[14.648,-14.648]],"c":true}},"nm":"B"}],"nm":"B"}]},"fFamily":"VCR OSD Mono"},{"ch":"u","size":70,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.883,-14.648],[9.766,-14.648],[9.766,-9.766],[14.648,-9.766],[14.648,-4.883],[43.945,-4.883],[43.945,-9.766],[48.828,-9.766],[48.828,-14.648],[53.711,-14.648],[53.711,-58.594],[43.945,-58.594],[43.945,-19.531],[39.062,-19.531],[39.062,-14.648],[19.531,-14.648],[19.531,-19.531],[14.648,-19.531],[14.648,-58.594],[4.883,-58.594]],"c":true}},"nm":"u"}],"nm":"u"}]},"fFamily":"VCR OSD Mono"},{"ch":"y","size":70,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[43.945,-4.883],[43.945,-9.766],[48.828,-9.766],[48.828,-14.648],[53.711,-14.648],[53.711,-63.477],[43.945,-63.477],[43.945,-53.711],[39.062,-53.711],[39.062,-43.945],[34.18,-43.945],[34.18,-39.062],[29.297,-39.062],[29.297,-34.18],[19.531,-34.18],[19.531,-39.062],[14.648,-39.062],[14.648,-63.477],[4.883,-63.477],[4.883,-34.18],[9.766,-34.18],[9.766,-29.297],[14.648,-29.297],[14.648,-24.414],[34.18,-24.414],[34.18,-29.297],[39.062,-29.297],[39.062,-34.18],[43.945,-34.18],[43.945,-19.531],[39.062,-19.531],[39.062,-14.648],[14.648,-14.648],[14.648,-4.883]],"c":true}},"nm":"y"}],"nm":"y"}]},"fFamily":"VCR OSD Mono"},{"ch":" ","size":70,"style":"Regular","w":58.59,"data":{},"fFamily":"VCR OSD Mono"},{"ch":"n","size":70,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.531,-43.945],[19.531,-48.828],[39.062,-48.828],[39.062,-43.945],[43.945,-43.945],[43.945,-4.883],[53.711,-4.883],[53.711,-48.828],[48.828,-48.828],[48.828,-53.711],[43.945,-53.711],[43.945,-58.594],[19.531,-58.594],[19.531,-53.711],[14.648,-53.711],[14.648,-58.594],[4.883,-58.594],[4.883,-4.883],[14.648,-4.883],[14.648,-43.945]],"c":true}},"nm":"n"}],"nm":"n"}]},"fFamily":"VCR OSD Mono"},{"ch":"o","size":70,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.531,-19.531],[14.648,-19.531],[14.648,-43.945],[19.531,-43.945],[19.531,-48.828],[39.062,-48.828],[39.062,-43.945],[43.945,-43.945],[43.945,-19.531],[39.062,-19.531],[39.062,-14.648],[19.531,-14.648]],"c":true}},"nm":"o"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[43.945,-4.883],[43.945,-9.766],[48.828,-9.766],[48.828,-14.648],[53.711,-14.648],[53.711,-48.828],[48.828,-48.828],[48.828,-53.711],[43.945,-53.711],[43.945,-58.594],[14.648,-58.594],[14.648,-53.711],[9.766,-53.711],[9.766,-48.828],[4.883,-48.828],[4.883,-14.648],[9.766,-14.648],[9.766,-9.766],[14.648,-9.766],[14.648,-4.883]],"c":true}},"nm":"o"}],"nm":"o"}]},"fFamily":"VCR OSD Mono"},{"ch":"w","size":70,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.883,-14.648],[9.766,-14.648],[9.766,-9.766],[14.648,-9.766],[14.648,-4.883],[24.414,-4.883],[24.414,-9.766],[34.18,-9.766],[34.18,-4.883],[43.945,-4.883],[43.945,-9.766],[48.828,-9.766],[48.828,-14.648],[53.711,-14.648],[53.711,-58.594],[43.945,-58.594],[43.945,-19.531],[39.062,-19.531],[39.062,-14.648],[34.18,-14.648],[34.18,-39.062],[24.414,-39.062],[24.414,-14.648],[19.531,-14.648],[19.531,-19.531],[14.648,-19.531],[14.648,-58.594],[4.883,-58.594]],"c":true}},"nm":"w"}],"nm":"w"}]},"fFamily":"VCR OSD Mono"},{"ch":"M","size":60,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14.648,-48.828],[19.531,-48.828],[19.531,-43.945],[24.414,-43.945],[24.414,-34.18],[34.18,-34.18],[34.18,-43.945],[39.062,-43.945],[39.062,-48.828],[43.945,-48.828],[43.945,-4.883],[53.711,-4.883],[53.711,-73.242],[43.945,-73.242],[43.945,-63.477],[39.062,-63.477],[39.062,-58.594],[34.18,-58.594],[34.18,-53.711],[24.414,-53.711],[24.414,-58.594],[19.531,-58.594],[19.531,-63.477],[14.648,-63.477],[14.648,-73.242],[4.883,-73.242],[4.883,-4.883],[14.648,-4.883]],"c":true}},"nm":"M"}],"nm":"M"}]},"fFamily":"VCR OSD Mono"},{"ch":"a","size":60,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.531,-19.531],[14.648,-19.531],[14.648,-29.297],[19.531,-29.297],[19.531,-34.18],[39.062,-34.18],[39.062,-29.297],[43.945,-29.297],[43.945,-19.531],[39.062,-19.531],[39.062,-14.648],[19.531,-14.648]],"c":true}},"nm":"a"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[39.062,-4.883],[39.062,-9.766],[43.945,-9.766],[43.945,-4.883],[53.711,-4.883],[53.711,-53.711],[48.828,-53.711],[48.828,-58.594],[43.945,-58.594],[43.945,-63.477],[14.648,-63.477],[14.648,-53.711],[39.062,-53.711],[39.062,-48.828],[43.945,-48.828],[43.945,-39.062],[39.062,-39.062],[39.062,-43.945],[14.648,-43.945],[14.648,-39.062],[9.766,-39.062],[9.766,-34.18],[4.883,-34.18],[4.883,-14.648],[9.766,-14.648],[9.766,-9.766],[14.648,-9.766],[14.648,-4.883]],"c":true}},"nm":"a"}],"nm":"a"}]},"fFamily":"VCR OSD Mono"},{"ch":"k","size":60,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.531,-14.648],[19.531,-19.531],[24.414,-19.531],[24.414,-24.414],[29.297,-24.414],[29.297,-19.531],[34.18,-19.531],[34.18,-14.648],[39.062,-14.648],[39.062,-9.766],[43.945,-9.766],[43.945,-4.883],[53.711,-4.883],[53.711,-14.648],[48.828,-14.648],[48.828,-19.531],[43.945,-19.531],[43.945,-24.414],[39.062,-24.414],[39.062,-29.297],[34.18,-29.297],[34.18,-34.18],[39.062,-34.18],[39.062,-39.062],[43.945,-39.062],[43.945,-43.945],[48.828,-43.945],[48.828,-48.828],[53.711,-48.828],[53.711,-58.594],[43.945,-58.594],[43.945,-53.711],[39.062,-53.711],[39.062,-48.828],[34.18,-48.828],[34.18,-43.945],[29.297,-43.945],[29.297,-39.062],[24.414,-39.062],[24.414,-34.18],[19.531,-34.18],[19.531,-29.297],[14.648,-29.297],[14.648,-73.242],[4.883,-73.242],[4.883,-4.883],[14.648,-4.883],[14.648,-14.648]],"c":true}},"nm":"k"}],"nm":"k"}]},"fFamily":"VCR OSD Mono"},{"ch":"e","size":60,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.531,-43.945],[19.531,-48.828],[39.062,-48.828],[39.062,-43.945],[43.945,-43.945],[43.945,-39.062],[14.648,-39.062],[14.648,-43.945]],"c":true}},"nm":"e"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[39.062,-19.531],[39.062,-14.648],[19.531,-14.648],[19.531,-19.531],[14.648,-19.531],[14.648,-29.297],[48.828,-29.297],[48.828,-34.18],[53.711,-34.18],[53.711,-48.828],[48.828,-48.828],[48.828,-53.711],[43.945,-53.711],[43.945,-58.594],[14.648,-58.594],[14.648,-53.711],[9.766,-53.711],[9.766,-48.828],[4.883,-48.828],[4.883,-14.648],[9.766,-14.648],[9.766,-9.766],[14.648,-9.766],[14.648,-4.883],[43.945,-4.883],[43.945,-9.766],[48.828,-9.766],[48.828,-14.648],[53.711,-14.648],[53.711,-19.531]],"c":true}},"nm":"e"}],"nm":"e"}]},"fFamily":"VCR OSD Mono"},{"ch":"f","size":60,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[34.18,-48.828],[48.828,-48.828],[48.828,-58.594],[34.18,-58.594],[34.18,-63.477],[48.828,-63.477],[48.828,-73.242],[29.297,-73.242],[29.297,-68.359],[24.414,-68.359],[24.414,-58.594],[9.766,-58.594],[9.766,-48.828],[24.414,-48.828],[24.414,-4.883],[34.18,-4.883]],"c":true}},"nm":"f"}],"nm":"f"}]},"fFamily":"VCR OSD Mono"},{"ch":"r","size":60,"style":"Regular","w":58.59,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19.531,-34.18],[19.531,-39.062],[24.414,-39.062],[24.414,-43.945],[29.297,-43.945],[29.297,-48.828],[39.062,-48.828],[39.062,-43.945],[43.945,-43.945],[43.945,-39.062],[53.711,-39.062],[53.711,-48.828],[48.828,-48.828],[48.828,-53.711],[43.945,-53.711],[43.945,-58.594],[24.414,-58.594],[24.414,-53.711],[19.531,-53.711],[19.531,-48.828],[14.648,-48.828],[14.648,-58.594],[4.883,-58.594],[4.883,-4.883],[14.648,-4.883],[14.648,-34.18]],"c":true}},"nm":"r"}],"nm":"r"}]},"fFamily":"VCR OSD Mono"}]} \ No newline at end of file diff --git a/apps/dashboard/public/assets/product-pages/connect/connect-wallet.png b/apps/dashboard/public/assets/product-pages/connect/connect-wallet.png new file mode 100644 index 00000000000..59bbff9f1e9 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/connect-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/connect.png b/apps/dashboard/public/assets/product-pages/connect/connect.png new file mode 100644 index 00000000000..a8095e228f4 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/connect.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/custom-connect.png b/apps/dashboard/public/assets/product-pages/connect/custom-connect.png new file mode 100644 index 00000000000..8d3c8699383 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/custom-connect.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-account-abstraction.png b/apps/dashboard/public/assets/product-pages/connect/desktop-account-abstraction.png new file mode 100644 index 00000000000..fe7ba508a12 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-account-abstraction.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-analytics.png b/apps/dashboard/public/assets/product-pages/connect/desktop-analytics.png new file mode 100644 index 00000000000..27837eb04e8 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-analytics.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-auth.png b/apps/dashboard/public/assets/product-pages/connect/desktop-auth.png new file mode 100644 index 00000000000..4a0511f7587 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-authenticate.png b/apps/dashboard/public/assets/product-pages/connect/desktop-authenticate.png new file mode 100644 index 00000000000..b67e5f8d5f0 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-authenticate.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-connection.png b/apps/dashboard/public/assets/product-pages/connect/desktop-connection.png new file mode 100644 index 00000000000..7f1fe89a43f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-connection.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-customizability.png b/apps/dashboard/public/assets/product-pages/connect/desktop-customizability.png new file mode 100644 index 00000000000..09976778f34 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-customizability.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-everything-wallet-needs.png b/apps/dashboard/public/assets/product-pages/connect/desktop-everything-wallet-needs.png new file mode 100644 index 00000000000..c6b69c7e585 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-everything-wallet-needs.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-guest.png b/apps/dashboard/public/assets/product-pages/connect/desktop-guest.png new file mode 100644 index 00000000000..6519573eb6b Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-guest.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-hooks.png b/apps/dashboard/public/assets/product-pages/connect/desktop-hooks.png new file mode 100644 index 00000000000..4b4d87d31cc Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-hooks.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-ipfs.png b/apps/dashboard/public/assets/product-pages/connect/desktop-ipfs.png new file mode 100644 index 00000000000..6af68fe3bf2 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-ipfs.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-motorsport.png b/apps/dashboard/public/assets/product-pages/connect/desktop-motorsport.png new file mode 100644 index 00000000000..ffd43bb454b Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-motorsport.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-no-wallet.png b/apps/dashboard/public/assets/product-pages/connect/desktop-no-wallet.png new file mode 100644 index 00000000000..d97cbba3293 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-no-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-onboarding-everyone.png b/apps/dashboard/public/assets/product-pages/connect/desktop-onboarding-everyone.png new file mode 100644 index 00000000000..2cbb9fa5800 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-onboarding-everyone.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-onboarding.png b/apps/dashboard/public/assets/product-pages/connect/desktop-onboarding.png new file mode 100644 index 00000000000..38b7a5ac33f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-onboarding.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-pixel.png b/apps/dashboard/public/assets/product-pages/connect/desktop-pixel.png new file mode 100644 index 00000000000..867aac5e65e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-pixel.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-reliable-connectors.png b/apps/dashboard/public/assets/product-pages/connect/desktop-reliable-connectors.png new file mode 100644 index 00000000000..eddaac14583 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-reliable-connectors.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-rely.png b/apps/dashboard/public/assets/product-pages/connect/desktop-rely.png new file mode 100644 index 00000000000..1c59d6e95e0 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-rely.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-scale.png b/apps/dashboard/public/assets/product-pages/connect/desktop-scale.png new file mode 100644 index 00000000000..f9cb41d9f3b Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-scale.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-web3button.png b/apps/dashboard/public/assets/product-pages/connect/desktop-web3button.png new file mode 100644 index 00000000000..6b8a9fe9fe1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-web3button.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/desktop-ztx.png b/apps/dashboard/public/assets/product-pages/connect/desktop-ztx.png new file mode 100644 index 00000000000..8e0bb3e45ad Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/desktop-ztx.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/get-started.png b/apps/dashboard/public/assets/product-pages/connect/get-started.png new file mode 100644 index 00000000000..64ed7ee80d4 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/get-started.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/icon-aa.png b/apps/dashboard/public/assets/product-pages/connect/icon-aa.png new file mode 100644 index 00000000000..15347ac5f32 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/icon-aa.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/icon-connect.png b/apps/dashboard/public/assets/product-pages/connect/icon-connect.png new file mode 100644 index 00000000000..cdd33ab5460 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/icon-connect.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/icon-pay.png b/apps/dashboard/public/assets/product-pages/connect/icon-pay.png new file mode 100644 index 00000000000..9d07a403afb Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/icon-pay.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/left-arrow.svg b/apps/dashboard/public/assets/product-pages/connect/left-arrow.svg new file mode 100644 index 00000000000..f47711819ed --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/connect/left-arrow.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/dashboard/public/assets/product-pages/connect/membership-overlay.svg b/apps/dashboard/public/assets/product-pages/connect/membership-overlay.svg new file mode 100644 index 00000000000..6a7975b854e --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/connect/membership-overlay.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-account-abstraction.png b/apps/dashboard/public/assets/product-pages/connect/mobile-account-abstraction.png new file mode 100644 index 00000000000..7779258b726 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-account-abstraction.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-analytics.png b/apps/dashboard/public/assets/product-pages/connect/mobile-analytics.png new file mode 100644 index 00000000000..2ce4d920024 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-analytics.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-auth.png b/apps/dashboard/public/assets/product-pages/connect/mobile-auth.png new file mode 100644 index 00000000000..298afb2e366 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-authenticate.png b/apps/dashboard/public/assets/product-pages/connect/mobile-authenticate.png new file mode 100644 index 00000000000..2b5e5958d68 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-authenticate.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-connection.png b/apps/dashboard/public/assets/product-pages/connect/mobile-connection.png new file mode 100644 index 00000000000..c14f9e517a7 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-connection.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-customizability.png b/apps/dashboard/public/assets/product-pages/connect/mobile-customizability.png new file mode 100644 index 00000000000..ba8e5cfa3f9 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-customizability.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-everything-wallet-needs.png b/apps/dashboard/public/assets/product-pages/connect/mobile-everything-wallet-needs.png new file mode 100644 index 00000000000..00995fefcc0 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-everything-wallet-needs.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-guest.png b/apps/dashboard/public/assets/product-pages/connect/mobile-guest.png new file mode 100644 index 00000000000..8fdffeb9361 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-guest.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-hooks.png b/apps/dashboard/public/assets/product-pages/connect/mobile-hooks.png new file mode 100644 index 00000000000..9b2970a79b5 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-hooks.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-ipfs.png b/apps/dashboard/public/assets/product-pages/connect/mobile-ipfs.png new file mode 100644 index 00000000000..85fdd74ffc0 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-ipfs.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-no-wallet.png b/apps/dashboard/public/assets/product-pages/connect/mobile-no-wallet.png new file mode 100644 index 00000000000..23e00700ecf Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-no-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-onboarding-everyone.png b/apps/dashboard/public/assets/product-pages/connect/mobile-onboarding-everyone.png new file mode 100644 index 00000000000..c703586273f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-onboarding-everyone.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-onboarding.png b/apps/dashboard/public/assets/product-pages/connect/mobile-onboarding.png new file mode 100644 index 00000000000..929b39a72b7 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-onboarding.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-pay.png b/apps/dashboard/public/assets/product-pages/connect/mobile-pay.png new file mode 100644 index 00000000000..fa40d13a0a1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-pay.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-pixel.png b/apps/dashboard/public/assets/product-pages/connect/mobile-pixel.png new file mode 100644 index 00000000000..47d9dbb652f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-pixel.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-reliable-connectors.png b/apps/dashboard/public/assets/product-pages/connect/mobile-reliable-connectors.png new file mode 100644 index 00000000000..144be2f78db Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-reliable-connectors.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-rely.png b/apps/dashboard/public/assets/product-pages/connect/mobile-rely.png new file mode 100644 index 00000000000..d2eceeab1d5 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-rely.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-scale.png b/apps/dashboard/public/assets/product-pages/connect/mobile-scale.png new file mode 100644 index 00000000000..25f9954c109 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-scale.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/mobile-web3button.png b/apps/dashboard/public/assets/product-pages/connect/mobile-web3button.png new file mode 100644 index 00000000000..ebbb738b2c2 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/mobile-web3button.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/onboarding-icon.png b/apps/dashboard/public/assets/product-pages/connect/onboarding-icon.png new file mode 100644 index 00000000000..5b18bc88d66 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/onboarding-icon.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/pay.png b/apps/dashboard/public/assets/product-pages/connect/pay.png new file mode 100644 index 00000000000..50a6d44b471 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/connect/pay.png differ diff --git a/apps/dashboard/public/assets/product-pages/connect/right-arrow.svg b/apps/dashboard/public/assets/product-pages/connect/right-arrow.svg new file mode 100644 index 00000000000..0f2a06205dc --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/connect/right-arrow.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/dashboard/public/assets/product-pages/contracts/desktop-hero.png b/apps/dashboard/public/assets/product-pages/contracts/desktop-hero.png new file mode 100644 index 00000000000..197f8c970ad Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/contracts/desktop-hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/contracts/mobile-hero.png b/apps/dashboard/public/assets/product-pages/contracts/mobile-hero.png new file mode 100644 index 00000000000..4f10af208d3 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/contracts/mobile-hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-1.png new file mode 100644 index 00000000000..5588b89cc26 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-2.png new file mode 100644 index 00000000000..a676fb76491 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-3.png new file mode 100644 index 00000000000..95b6486386c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/dashboard/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/dashboard/hero.png b/apps/dashboard/public/assets/product-pages/dashboard/hero.png new file mode 100644 index 00000000000..f77b7effacb Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/dashboard/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/deploy/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/deploy/hero-icon-1.png new file mode 100644 index 00000000000..fe353fb02c8 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/deploy/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/deploy/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/deploy/hero-icon-2.png new file mode 100644 index 00000000000..490b29473f8 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/deploy/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/deploy/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/deploy/hero-icon-3.png new file mode 100644 index 00000000000..40de3c0a692 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/deploy/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/deploy/hero.png b/apps/dashboard/public/assets/product-pages/deploy/hero.png new file mode 100644 index 00000000000..2fcedde21c5 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/deploy/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/embedded-wallets/auth.png b/apps/dashboard/public/assets/product-pages/embedded-wallets/auth.png new file mode 100644 index 00000000000..2f1778f5857 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/embedded-wallets/auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/embedded-wallets/cross-platform.png b/apps/dashboard/public/assets/product-pages/embedded-wallets/cross-platform.png new file mode 100644 index 00000000000..ba5f2d78600 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/embedded-wallets/cross-platform.png differ diff --git a/apps/dashboard/public/assets/product-pages/embedded-wallets/embedded-wallet.png b/apps/dashboard/public/assets/product-pages/embedded-wallets/embedded-wallet.png new file mode 100644 index 00000000000..fd4d4b9ddc7 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/embedded-wallets/embedded-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/embedded-wallets/paper.png b/apps/dashboard/public/assets/product-pages/embedded-wallets/paper.png new file mode 100644 index 00000000000..a9da6a8437c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/embedded-wallets/paper.png differ diff --git a/apps/dashboard/public/assets/product-pages/embedded-wallets/seamless.png b/apps/dashboard/public/assets/product-pages/embedded-wallets/seamless.png new file mode 100644 index 00000000000..44056bc7533 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/embedded-wallets/seamless.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/account-abstraction.png b/apps/dashboard/public/assets/product-pages/engine/account-abstraction.png new file mode 100644 index 00000000000..2b59e07c138 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/account-abstraction.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/casestudy-image-coinbase-wallet.png b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-coinbase-wallet.png new file mode 100644 index 00000000000..5dacc99d758 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-coinbase-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/casestudy-image-infinigods.jpg b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-infinigods.jpg new file mode 100644 index 00000000000..3c30cda840f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-infinigods.jpg differ diff --git a/apps/dashboard/public/assets/product-pages/engine/casestudy-image-infinigods.png b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-infinigods.png new file mode 100644 index 00000000000..eac38801b70 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-infinigods.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/casestudy-image-standwithcrypto.png b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-standwithcrypto.png new file mode 100644 index 00000000000..f1caa35f73d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-standwithcrypto.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/casestudy-image-treasure.png b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-treasure.png new file mode 100644 index 00000000000..3938e3be413 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/casestudy-image-treasure.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/chusla.png b/apps/dashboard/public/assets/product-pages/engine/chusla.png new file mode 100644 index 00000000000..5e7cd285bf4 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/chusla.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/coinbase.png b/apps/dashboard/public/assets/product-pages/engine/coinbase.png new file mode 100644 index 00000000000..1ebb322e818 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/coinbase.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/coolcats-pfp.png b/apps/dashboard/public/assets/product-pages/engine/coolcats-pfp.png new file mode 100644 index 00000000000..49b7e12bb1f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/coolcats-pfp.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/coolcats.png b/apps/dashboard/public/assets/product-pages/engine/coolcats.png new file mode 100644 index 00000000000..bc3b32c3c35 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/coolcats.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/engine-dashboard.png b/apps/dashboard/public/assets/product-pages/engine/engine-dashboard.png new file mode 100644 index 00000000000..bf20c21d24f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/engine-dashboard.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/engine-splash.png b/apps/dashboard/public/assets/product-pages/engine/engine-splash.png new file mode 100644 index 00000000000..620e1f4f7e3 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/engine-splash.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/gasless-transactions.png b/apps/dashboard/public/assets/product-pages/engine/gasless-transactions.png new file mode 100644 index 00000000000..107c91a92b0 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/gasless-transactions.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/guide-airdrop.png b/apps/dashboard/public/assets/product-pages/engine/guide-airdrop.png new file mode 100644 index 00000000000..fcd9a7e7e00 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/guide-airdrop.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/guide-farcaster-frame.png b/apps/dashboard/public/assets/product-pages/engine/guide-farcaster-frame.png new file mode 100644 index 00000000000..60714ca7a2f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/guide-farcaster-frame.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/guide-get-started.png b/apps/dashboard/public/assets/product-pages/engine/guide-get-started.png new file mode 100644 index 00000000000..d3b80d7793f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/guide-get-started.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/infinigods.png b/apps/dashboard/public/assets/product-pages/engine/infinigods.png new file mode 100644 index 00000000000..b13856add40 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/infinigods.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/knight.png b/apps/dashboard/public/assets/product-pages/engine/knight.png new file mode 100644 index 00000000000..672ff2908f5 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/knight.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/layer3.png b/apps/dashboard/public/assets/product-pages/engine/layer3.png new file mode 100644 index 00000000000..c6acf28e283 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/layer3.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/lottie.json b/apps/dashboard/public/assets/product-pages/engine/lottie.json new file mode 100644 index 00000000000..24725ed5d41 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/engine/lottie.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.5.6","a":"","k":"","d":"","tc":""},"fr":23.976,"ip":0,"op":265,"w":690,"h":970,"nm":"Engine Animation 3","assets":[],"fonts":{"list":[{"fName":"NeueHaasDisplay-Bold","fFamily":"Neue Haas Grotesk Display Pro","fStyle":"75 Bold","ascent":71.5}]},"layers":[{"ind":1,"ty":4,"nm":"Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[340.573,440.25,0],"ix":2},"a":{"a":0,"k":[-81.613,-156.274,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.46,0.46,0.46],"y":[0.988,0.988,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.012,0.012,0]},"t":5,"s":[170,170,100]},{"i":{"x":[0.46,0.46,0.46],"y":[1,1,1]},"o":{"x":[0.81,0.81,0.81],"y":[-0.686,-0.686,0]},"t":36,"s":[212,212,100]},{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[1,1,1],"y":[0.013,0.013,0]},"t":84,"s":[212,212,100]},{"i":{"x":[0.46,0.46,0.46],"y":[0.99,0.99,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.01,0.01,0]},"t":134,"s":[170,170,100]},{"i":{"x":[0.46,0.46,0.46],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":163,"s":[212,212,100]},{"i":{"x":[0.46,0.46,0.46],"y":[0.989,0.989,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.011,0.011,0]},"t":237,"s":[212,212,100]},{"t":260,"s":[170,170,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.032,0],[0.082,0],[0,10.283],[-10.283,0],[0.018,0.18],[0,0.952],[-16.83,0],[-2.701,-13.397],[-1.82,0.14],[-0.564,0],[0,-11.893],[11.893,0],[0.423,0.025],[0.235,0],[0,0]],"o":[[-0.082,0.001],[-10.283,0],[0,-10.283],[0.181,0],[-0.094,-0.928],[0,-16.03],[14.853,0],[0.361,1.789],[0.553,-0.043],[11.893,0],[0,11.893],[-0.429,0],[-0.231,0.018],[0,0],[-0.032,0]],"v":[[-115.901,-116.957],[-116.147,-116.955],[-134.766,-135.574],[-116.147,-154.192],[-115.842,-154.529],[-115.984,-157.35],[-85.511,-186.376],[-55.585,-162.857],[-51.671,-159.949],[-49.995,-160.014],[-28.461,-138.48],[-49.995,-116.946],[-51.274,-116.984],[-51.973,-116.956],[-115.805,-116.956]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":1.5,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[-82.877,-198.068],"ix":4},"e":{"a":0,"k":[-73.435,-126.863],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":0,"k":[0.749,0.71,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0.021,0.062],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.004],[0.005,0],[0.252,0],[0,10.424],[-10.423,0],[-3.321,-5.399],[-1.624,0.309],[-0.873,0],[0,-7.508],[7.509,0],[0,0],[0,0],[0.001,0],[0,0]],"o":[[0,-0.005],[-0.249,0.009],[-10.423,0],[0,-10.423],[6.804,0],[0.866,1.408],[0.828,-0.157],[7.509,0],[0,7.509],[0,0],[0,0],[0,0.001],[0,0],[-0.005,0]],"v":[[-64.175,-157.862],[-64.184,-157.87],[-64.937,-157.856],[-83.81,-176.729],[-64.937,-195.602],[-48.849,-186.603],[-44.612,-184.81],[-42.057,-185.049],[-28.461,-171.454],[-42.057,-157.859],[-42.058,-157.858],[-42.058,-157.856],[-42.06,-157.854],[-64.167,-157.854]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.247,0.176,0.686,0.5,0.408,0.337,0.835,1,0.569,0.498,0.984],"ix":9}},"s":{"a":0,"k":[-107.495,-188.581],"ix":5},"e":{"a":0,"k":[-1.88,-170.225],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2}],"ip":-5,"op":273,"st":2},{"ind":5,"ty":4,"nm":"Shape Layer 13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[258.229,384.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":37,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":55,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":72,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":90,"s":[20,20,100]},{"t":98,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":116,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":121,"s":[0.269,1,0.343,1]},{"t":123,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":24,"op":103,"st":18},{"ind":6,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[188.729,333.729,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":35,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":53,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":70,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":88,"s":[20,20,100]},{"t":95,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":88,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[0.269,1,0.343,1]},{"t":113,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":21,"op":100,"st":15},{"ind":7,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[227.729,431.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":30,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":48,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":65,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":83,"s":[20,20,100]},{"t":89,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0.269,1,0.343,1]},{"t":108,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":16,"op":95,"st":10},{"ind":8,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[167.729,466.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":33,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":51,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":68,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":86,"s":[20,20,100]},{"t":93,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":109,"s":[0.269,1,0.343,1]},{"t":111,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":19,"op":98,"st":13},{"ind":9,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[190.729,564.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":38,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":56,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":73,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":91,"s":[20,20,100]},{"t":98,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":82,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":109,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[0.269,1,0.343,1]},{"t":116,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":24,"op":103,"st":18},{"ind":10,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[256.729,641.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":31,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":49,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":66,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":84,"s":[20,20,100]},{"t":91,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":31,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":39,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":49,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":92,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":102,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":107,"s":[0.269,1,0.343,1]},{"t":109,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":17,"op":96,"st":11},{"ind":11,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[221.229,510.729,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":34,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":52,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":69,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":87,"s":[20,20,100]},{"t":94,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":102,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":110,"s":[0.269,1,0.343,1]},{"t":112,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":20,"op":99,"st":14},{"ind":12,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[251.729,541.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":37,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":55,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":72,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":90,"s":[20,20,100]},{"t":97,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[0.269,1,0.343,1]},{"t":115,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":23,"op":102,"st":17},{"ind":13,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[398.729,601.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":33,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":51,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":68,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":86,"s":[20,20,100]},{"t":93,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":109,"s":[0.269,1,0.343,1]},{"t":111,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":19,"op":98,"st":13},{"ind":14,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[349.729,563.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":35,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":53,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":70,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":88,"s":[20,20,100]},{"t":95,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":88,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[0.269,1,0.343,1]},{"t":113,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":21,"op":100,"st":15},{"ind":15,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[513.729,475.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":32,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":50,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":67,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":85,"s":[20,20,100]},{"t":92,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":88,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[0.269,1,0.343,1]},{"t":110,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":18,"op":97,"st":12},{"ind":16,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[457.229,289.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":24,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":42,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":60,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":78,"s":[20,20,100]},{"t":92,"s":[46,46,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":2,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":92,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[0.269,1,0.343,1]},{"t":102,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":19,"op":96,"st":13},{"ind":17,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[308.229,302.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":22,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":40,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":55,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":73,"s":[20,20,100]},{"t":88,"s":[46,46,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":2,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[0.269,1,0.343,1]},{"t":100,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":15,"op":95,"st":9},{"ind":18,"ty":4,"nm":"Shape Layer 26","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[258.229,384.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":175,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":193,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":210,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":228,"s":[20,20,100]},{"t":236,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":183,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":186,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":191,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":193,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":201,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":204,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":209,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":211,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":219,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":222,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":227,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":229,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":236,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":239,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":244,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":246,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":251,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":254,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":259,"s":[0.269,1,0.343,1]},{"t":261,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":162,"op":241,"st":156},{"ind":19,"ty":4,"nm":"Shape Layer 25","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[188.729,333.729,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":173,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":191,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":208,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":226,"s":[20,20,100]},{"t":233,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":173,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":176,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":181,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":183,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":191,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":194,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":199,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":201,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":209,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":212,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":217,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":219,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":226,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":229,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":234,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":236,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":241,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":244,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":249,"s":[0.269,1,0.343,1]},{"t":251,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":159,"op":238,"st":153},{"ind":20,"ty":4,"nm":"Shape Layer 24","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[227.729,431.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":168,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":186,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":203,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":221,"s":[20,20,100]},{"t":227,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":168,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":171,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":176,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":178,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":186,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":189,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":194,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":196,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":204,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":207,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":212,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":214,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":221,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":224,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":229,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":231,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":236,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":239,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":244,"s":[0.269,1,0.343,1]},{"t":246,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":154,"op":233,"st":148},{"ind":21,"ty":4,"nm":"Shape Layer 23","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[167.729,466.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":171,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":189,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":206,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":224,"s":[20,20,100]},{"t":231,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":171,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":174,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":179,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":181,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":189,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":192,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":197,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":199,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":207,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":210,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":217,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":224,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":227,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":232,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":234,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":239,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":242,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":247,"s":[0.269,1,0.343,1]},{"t":249,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":157,"op":236,"st":151},{"ind":22,"ty":4,"nm":"Shape Layer 22","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[190.729,564.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":176,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":194,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":211,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":229,"s":[20,20,100]},{"t":236,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":176,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":179,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":184,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":186,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":194,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":197,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":202,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":204,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":212,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":220,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":222,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":229,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":232,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":237,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":239,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":244,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":247,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":252,"s":[0.269,1,0.343,1]},{"t":254,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":162,"op":241,"st":156},{"ind":23,"ty":4,"nm":"Shape Layer 21","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[256.729,641.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":169,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":187,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":204,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":222,"s":[20,20,100]},{"t":229,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":169,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":172,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":177,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":179,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":187,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":190,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":195,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":197,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":205,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":208,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":213,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":222,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":225,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":230,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":232,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":237,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":240,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":245,"s":[0.269,1,0.343,1]},{"t":247,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":155,"op":234,"st":149},{"ind":24,"ty":4,"nm":"Shape Layer 20","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[221.229,510.729,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":172,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":190,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":207,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":225,"s":[20,20,100]},{"t":232,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":172,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":175,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":180,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":182,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":190,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":193,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":198,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":200,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":208,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":211,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":216,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":218,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":225,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":228,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":233,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":235,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":240,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":243,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":248,"s":[0.269,1,0.343,1]},{"t":250,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":158,"op":237,"st":152},{"ind":25,"ty":4,"nm":"Shape Layer 19","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[251.729,541.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":175,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":193,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":210,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":228,"s":[20,20,100]},{"t":235,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":175,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":178,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":183,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":185,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":193,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":196,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":201,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":203,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":211,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":214,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":219,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":221,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":228,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":231,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":236,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":238,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":243,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":246,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":251,"s":[0.269,1,0.343,1]},{"t":253,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":161,"op":240,"st":155},{"ind":26,"ty":4,"nm":"Shape Layer 18","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[398.729,601.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":171,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":189,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":206,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":224,"s":[20,20,100]},{"t":231,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":171,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":174,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":179,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":181,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":189,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":192,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":197,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":199,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":207,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":210,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":217,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":224,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":227,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":232,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":234,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":239,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":242,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":247,"s":[0.269,1,0.343,1]},{"t":249,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":157,"op":236,"st":151},{"ind":27,"ty":4,"nm":"Shape Layer 17","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[349.729,563.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":173,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":191,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":208,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":226,"s":[20,20,100]},{"t":233,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":173,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":176,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":181,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":183,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":191,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":194,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":199,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":201,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":209,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":212,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":217,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":219,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":226,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":229,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":234,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":236,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":241,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":244,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":249,"s":[0.269,1,0.343,1]},{"t":251,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":159,"op":238,"st":153},{"ind":28,"ty":4,"nm":"Shape Layer 16","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[513.729,475.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":170,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":188,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.003,0.003,0]},"t":205,"s":[49,49,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":223,"s":[20,20,100]},{"t":230,"s":[49,49,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":170,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":173,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":178,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":180,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":188,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":191,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":196,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":198,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":206,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":209,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":214,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":216,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":223,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":226,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":231,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":233,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":238,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":241,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":246,"s":[0.269,1,0.343,1]},{"t":248,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":156,"op":235,"st":150},{"ind":29,"ty":4,"nm":"Shape Layer 15","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[457.229,289.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":162,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":180,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":198,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":216,"s":[20,20,100]},{"t":230,"s":[46,46,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":2,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":162,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":165,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":170,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":172,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":180,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":183,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":188,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":190,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":198,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":201,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":206,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":208,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":218,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":223,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":225,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":230,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":233,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":238,"s":[0.269,1,0.343,1]},{"t":240,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":157,"op":234,"st":151},{"ind":30,"ty":4,"nm":"Shape Layer 14","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[308.229,302.229,0],"ix":2},"a":{"a":0,"k":[-35.771,-182.771,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":160,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":178,"s":[20,20,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.002,0.002,0]},"t":193,"s":[46,46,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0,0,0]},"t":211,"s":[20,20,100]},{"t":226,"s":[46,46,100]}],"ix":6,"x":"var $bm_rt;\nvar result;\nresult = getAnimationComposerPresetValue();\nfunction getAnimationComposerPresetValue() {\n var bL = thisLayer;\n var tTrI = null;\n var tTrO = null;\n if (bL.marker.numKeys > 0) {\n var acmp = 'zzzzzzzzzzzzzzz_AC';\n for (var i = 1; i <= bL.marker.numKeys; i++) {\n var m = bL.marker.key(i);\n var p = m.parameters;\n if (p.hasOwnProperty(acmp + 'MarkerEnabled') && p.hasOwnProperty(acmp + 'MarkerType') && p.hasOwnProperty(acmp + 'MarkerAppPresetType')) {\n if (p[acmp + 'MarkerEnabled'] != '1') {\n continue;\n }\n switch (p[acmp + 'MarkerAppPresetType']) {\n case '1': {\n tTrI = m.time;\n break;\n }\n case '2': {\n tTrO = m.time;\n break;\n }\n }\n }\n }\n }\n ;\n function acPD(fxN) {\n try {\n if (bL.effect(fxN).active === false) {\n ac.en = false;\n }\n } catch (e) {\n }\n }\n function acSliderValP(fxN, stN, dV) {\n try {\n return bL.effect(fxN)(stN);\n } catch (e) {\n return dV;\n }\n }\n function acValMul(val) {\n acAccM *= val;\n }\n function mhOvershoot(t, a, f, d) {\n if (d <= 0) {\n d = 0;\n }\n var y = $bm_div($bm_mul(a, Math.cos($bm_mul($bm_mul($bm_mul(t, f), Math.PI), 2))), Math.exp($bm_mul(t, d)));\n if (t < 0.8) {\n return y;\n }\n return $bm_mul(y, $bm_sub(1, $bm_div($bm_sub(t, 0.8), 0.2)));\n }\n function upACo(ac, tIn, dIn, tOut, dOut, eFi, eFo) {\n if (dIn < 0) {\n dIn = 0;\n }\n if (dOut < 0) {\n dOut = 0;\n }\n ac.fade = 1;\n if (t < tOut) {\n if (t < $bm_sum(tIn, dIn)) {\n if (dIn == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tIn), dIn);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFi) {\n ac.fade = eFi(ac.fade);\n }\n }\n }\n } else {\n if (dOut == 0) {\n ac.fade = 0;\n } else {\n ac.fade = $bm_div($bm_sub(t, tOut), dOut);\n if (ac.fade < 0) {\n ac.fade = 0;\n }\n if (ac.fade > 1) {\n ac.fade = 1;\n }\n if (eFo) {\n ac.fade = eFo(ac.fade);\n }\n ac.fade = $bm_sub(1, ac.fade);\n }\n }\n ac.intensity = 1;\n ac.en = true;\n ac.t = $bm_sub(t, tIn);\n }\n var ac = {\n 'en': false,\n 'fade': 0\n };\n var acI = {\n 'en': false,\n 'fade': 0\n };\n var acO = {\n 'en': false,\n 'fade': 0\n };\n ac.en = false;\n var v = thisProperty.value;\n var t = time;\n var acAccM = 1;\n if (tTrI !== null && t < tTrI) {\n upACo(acI, bL.inPoint, $bm_sub(tTrI, bL.inPoint), bL.outPoint, 0);\n acI.fade = $bm_sub(1, acI.fade);\n }\n if (tTrO !== null && t >= tTrO) {\n upACo(acO, 0, 0, tTrO, $bm_sub($bm_sub(bL.outPoint, tTrO), thisComp.frameDuration));\n acO.fade = $bm_sub(1, acO.fade);\n }\n ac = acI;\n acPD('AC IN [YRH] Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC IN [YRH] Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC IN [YRH] Controls', 'Scale', 0), -100), 1))));\n }\n }());\n ac = acO;\n acPD('AC OUT [YRH] 2 Controls');\n (function () {\n if (ac.en) {\n acValMul($bm_sub(1, $bm_mul(mhOvershoot($bm_sub(1, ac.fade), 1, acSliderValP('AC OUT [YRH] 2 Controls', 'Number of bounces', 2), 7), $bm_sum($bm_div(acSliderValP('AC OUT [YRH] 2 Controls', 'Scale', 0), -100), 1))));\n }\n }());\n v = thisProperty.value;\n v *= acAccM;\n return v;\n}\n$bm_rt = result;"}},"ao":0,"ef":[{"ty":5,"nm":"AC IN [YRH] Controls","np":4,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]},{"ty":5,"nm":"AC OUT [YRH] 2 Controls","np":4,"ix":2,"en":1,"ef":[{"ty":0,"nm":"Number of bounces","ix":1,"v":{"a":0,"k":2,"ix":1}},{"ty":0,"nm":"Scale","ix":2,"v":{"a":0,"k":0,"ix":2}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[13.457,13.457],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0.135,1,1,1,0.567,1,1,1,1,1,1,1,0.144,1,0.572,0.5,1,0],"ix":8}},"s":{"a":0,"k":[0,0],"ix":4},"e":{"a":0,"k":[100,0],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":160,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":163,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":168,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":170,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":178,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":181,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":186,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":188,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":196,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":199,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":204,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":206,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":213,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":216,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":221,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":223,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":228,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":231,"s":[0.269,1,0.343,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":236,"s":[0.269,1,0.343,1]},{"t":238,"s":[1,1,1,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[-35.771,-182.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","cix":2,"ix":1}],"ip":153,"op":233,"st":147},{"ind":31,"ty":4,"nm":"Shape Layer 88","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-37.25,-182.5],[16,-102.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":205,"s":[0]},{"t":241,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":168,"s":[0]},{"t":205,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":169,"op":241,"st":169},{"ind":32,"ty":4,"nm":"Shape Layer 87","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-87.75,-99.5],[112.5,-196.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":186,"s":[0]},{"t":222,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":149,"s":[0]},{"t":186,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":150,"op":222,"st":150},{"ind":33,"ty":4,"nm":"Shape Layer 86","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[41.75,-123],[112.5,-198.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":199,"s":[0]},{"t":235,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":162,"s":[0]},{"t":199,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":163,"op":235,"st":163},{"ind":34,"ty":4,"nm":"Shape Layer 85","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.25,-9.5],[112.5,-198.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":194,"s":[0]},{"t":230,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":157,"s":[0]},{"t":194,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":158,"op":230,"st":158},{"ind":35,"ty":4,"nm":"Shape Layer 84","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.25,-9.5],[65,-70.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":188,"s":[0]},{"t":224,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":151,"s":[0]},{"t":188,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":152,"op":224,"st":152},{"ind":36,"ty":4,"nm":"Shape Layer 83","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.25,-9.5],[60,-16.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":206,"s":[0]},{"t":242,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":169,"s":[0]},{"t":206,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":170,"op":242,"st":170},{"ind":37,"ty":4,"nm":"Shape Layer 82","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.75,-8],[53.5,116.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":195,"s":[0]},{"t":231,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.019]},"t":158,"s":[0]},{"t":195,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":159,"op":231,"st":159},{"ind":38,"ty":4,"nm":"Shape Layer 81","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.75,-8],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":188,"s":[0]},{"t":224,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":151,"s":[0]},{"t":188,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":152,"op":224,"st":152},{"ind":39,"ty":4,"nm":"Shape Layer 80","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.75,18],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":203,"s":[0]},{"t":239,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":166,"s":[0]},{"t":203,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":167,"op":239,"st":167},{"ind":40,"ty":4,"nm":"Shape Layer 79","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-34.75,27.5],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":199,"s":[0]},{"t":235,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":162,"s":[0]},{"t":199,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":163,"op":235,"st":163},{"ind":41,"ty":4,"nm":"Shape Layer 78","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":192,"s":[0]},{"t":228,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.019]},"t":155,"s":[0]},{"t":192,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":156,"op":228,"st":156},{"ind":42,"ty":4,"nm":"Shape Layer 77","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[54,116.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":204,"s":[0]},{"t":240,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.019]},"t":167,"s":[0]},{"t":204,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":168,"op":240,"st":168},{"ind":43,"ty":4,"nm":"Shape Layer 76","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[4.75,78.5],[-93,56.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":190,"s":[0]},{"t":226,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":153,"s":[0]},{"t":190,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":154,"op":226,"st":154},{"ind":44,"ty":4,"nm":"Shape Layer 75","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-87.25,26.5],[-93,56.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":199,"s":[0]},{"t":235,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":162,"s":[0]},{"t":199,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":163,"op":235,"st":163},{"ind":45,"ty":4,"nm":"Shape Layer 74","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[-93,56.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":189,"s":[0]},{"t":225,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":152,"s":[0]},{"t":189,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":153,"op":225,"st":153},{"ind":46,"ty":4,"nm":"Shape Layer 73","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[-154.5,79.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":203,"s":[0]},{"t":239,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":166,"s":[0]},{"t":203,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":167,"op":239,"st":167},{"ind":47,"ty":4,"nm":"Shape Layer 72","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-93.25,57],[-154.5,77.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":196,"s":[0]},{"t":232,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":159,"s":[0]},{"t":196,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":160,"op":232,"st":160},{"ind":48,"ty":4,"nm":"Shape Layer 71","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-87.75,157.5],[-123.5,24.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":185,"s":[0]},{"t":221,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":148,"s":[0]},{"t":185,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":149,"op":221,"st":149},{"ind":49,"ty":4,"nm":"Shape Layer 70","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.25,-8],[-123.5,24.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":202,"s":[0]},{"t":238,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":165,"s":[0]},{"t":202,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":166,"op":238,"st":166},{"ind":50,"ty":4,"nm":"Shape Layer 69","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.25,-19],[-123.5,24.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":193,"s":[0]},{"t":229,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":156,"s":[0]},{"t":193,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":157,"op":229,"st":157},{"ind":51,"ty":4,"nm":"Shape Layer 68","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.25,-19],[-75.5,-26.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":190,"s":[0]},{"t":226,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":153,"s":[0]},{"t":190,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":154,"op":226,"st":154},{"ind":52,"ty":4,"nm":"Shape Layer 67","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.25,-19],[-117.5,-53.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":199,"s":[0]},{"t":235,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":162,"s":[0]},{"t":199,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":163,"op":235,"st":163},{"ind":53,"ty":4,"nm":"Shape Layer 66","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-176.75,-21],[-156.5,-150.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":189,"s":[0]},{"t":225,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":152,"s":[0]},{"t":189,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":153,"op":225,"st":153},{"ind":54,"ty":4,"nm":"Shape Layer 65","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-117.25,-53],[-87,-100.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":195,"s":[0]},{"t":231,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.019]},"t":158,"s":[0]},{"t":195,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":159,"op":231,"st":159},{"ind":55,"ty":4,"nm":"Shape Layer 64","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-117.25,-53],[-156.5,-150.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":199,"s":[0]},{"t":235,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":162,"s":[0]},{"t":199,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":163,"op":235,"st":163},{"ind":56,"ty":4,"nm":"Shape Layer 63","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.75,-101],[-156.5,-150.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":193,"s":[0]},{"t":229,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":156,"s":[0]},{"t":193,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":157,"op":229,"st":157},{"ind":57,"ty":4,"nm":"Shape Layer 62","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-37.75,-182],[-156.5,-152.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":203,"s":[0]},{"t":239,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":166,"s":[0]},{"t":203,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":167,"op":239,"st":167},{"ind":58,"ty":4,"nm":"Shape Layer 61","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[111.75,-195.5],[44.5,-125.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":189,"s":[0]},{"t":225,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":152,"s":[0]},{"t":189,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":153,"op":225,"st":153},{"ind":59,"ty":4,"nm":"Shape Layer 60","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[111.75,-195.5],[-87.5,-100.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":199,"s":[0]},{"t":235,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":162,"s":[0]},{"t":199,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":163,"op":235,"st":163},{"ind":60,"ty":4,"nm":"Shape Layer 59","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.75,-100.5],[-87.5,-100.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":190,"s":[0]},{"t":226,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":153,"s":[0]},{"t":190,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":154,"op":226,"st":154},{"ind":61,"ty":4,"nm":"Shape Layer 58","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-36.75,-183],[-87.5,-100.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.988]},"o":{"x":[0.81],"y":[0.012]},"t":194,"s":[0]},{"t":230,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.018]},"t":157,"s":[0]},{"t":194,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":158,"op":230,"st":158},{"ind":62,"ty":4,"nm":"Shape Layer 52","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-37.25,-182.5],[16,-102.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":68,"s":[0]},{"t":108,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":31,"s":[0]},{"t":78,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":32,"op":108,"st":32},{"ind":63,"ty":4,"nm":"Shape Layer 51","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-87.75,-99.5],[112.5,-196.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":49,"s":[0]},{"t":89,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":12,"s":[0]},{"t":59,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":13,"op":89,"st":13},{"ind":64,"ty":4,"nm":"Shape Layer 50","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[41.75,-123],[112.5,-198.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":62,"s":[0]},{"t":102,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":25,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":26,"op":102,"st":26},{"ind":65,"ty":4,"nm":"Shape Layer 49","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.25,-9.5],[112.5,-198.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":57,"s":[0]},{"t":97,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":20,"s":[0]},{"t":67,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":21,"op":97,"st":21},{"ind":66,"ty":4,"nm":"Shape Layer 48","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.25,-9.5],[65,-70.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":51,"s":[0]},{"t":91,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":14,"s":[0]},{"t":61,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":15,"op":91,"st":15},{"ind":67,"ty":4,"nm":"Shape Layer 47","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.25,-9.5],[60,-16.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":69,"s":[0]},{"t":109,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":32,"s":[0]},{"t":79,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":33,"op":109,"st":33},{"ind":68,"ty":4,"nm":"Shape Layer 46","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.75,-8],[53.5,116.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":58,"s":[0]},{"t":98,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":21,"s":[0]},{"t":68,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":22,"op":98,"st":22},{"ind":69,"ty":4,"nm":"Shape Layer 45","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.75,-8],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":51,"s":[0]},{"t":91,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":14,"s":[0]},{"t":61,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":15,"op":91,"st":15},{"ind":70,"ty":4,"nm":"Shape Layer 44","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.75,18],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":66,"s":[0]},{"t":106,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":29,"s":[0]},{"t":76,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":30,"op":106,"st":30},{"ind":71,"ty":4,"nm":"Shape Layer 43","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-34.75,27.5],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":62,"s":[0]},{"t":102,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":25,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":26,"op":102,"st":26},{"ind":72,"ty":4,"nm":"Shape Layer 42","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[5,77.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":55,"s":[0]},{"t":95,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":18,"s":[0]},{"t":65,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":19,"op":95,"st":19},{"ind":73,"ty":4,"nm":"Shape Layer 41","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[54,116.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":67,"s":[0]},{"t":107,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":30,"s":[0]},{"t":77,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":31,"op":107,"st":31},{"ind":74,"ty":4,"nm":"Shape Layer 57","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[4.75,78.5],[-93,56.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":53,"s":[0]},{"t":93,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":16,"s":[0]},{"t":63,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":17,"op":93,"st":17},{"ind":75,"ty":4,"nm":"Shape Layer 56","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-87.25,26.5],[-93,56.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":62,"s":[0]},{"t":102,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":25,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":26,"op":102,"st":26},{"ind":76,"ty":4,"nm":"Shape Layer 55","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[-93,56.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":52,"s":[0]},{"t":92,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":15,"s":[0]},{"t":62,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":16,"op":92,"st":16},{"ind":77,"ty":4,"nm":"Shape Layer 40","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.75,156.5],[-154.5,79.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":66,"s":[0]},{"t":106,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":29,"s":[0]},{"t":76,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":30,"op":106,"st":30},{"ind":78,"ty":4,"nm":"Shape Layer 39","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-93.25,57],[-154.5,77.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":59,"s":[0]},{"t":99,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":22,"s":[0]},{"t":69,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":23,"op":99,"st":23},{"ind":79,"ty":4,"nm":"Shape Layer 38","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-87.75,157.5],[-123.5,24.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":48,"s":[0]},{"t":88,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":11,"s":[0]},{"t":58,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":12,"op":88,"st":12},{"ind":80,"ty":4,"nm":"Shape Layer 37","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.25,-8],[-123.5,24.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":65,"s":[0]},{"t":105,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":28,"s":[0]},{"t":75,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":29,"op":105,"st":29},{"ind":81,"ty":4,"nm":"Shape Layer 36","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.25,-19],[-123.5,24.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":56,"s":[0]},{"t":96,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":19,"s":[0]},{"t":66,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":20,"op":96,"st":20},{"ind":82,"ty":4,"nm":"Shape Layer 35","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.25,-19],[-75.5,-26.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":53,"s":[0]},{"t":93,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":16,"s":[0]},{"t":63,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":17,"op":93,"st":17},{"ind":83,"ty":4,"nm":"Shape Layer 34","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.25,-19],[-117.5,-53.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":62,"s":[0]},{"t":102,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":25,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":26,"op":102,"st":26},{"ind":84,"ty":4,"nm":"Shape Layer 33","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-176.75,-21],[-156.5,-150.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":52,"s":[0]},{"t":92,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":15,"s":[0]},{"t":62,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":16,"op":92,"st":16},{"ind":85,"ty":4,"nm":"Shape Layer 54","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-117.25,-53],[-87,-100.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":58,"s":[0]},{"t":98,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":21,"s":[0]},{"t":68,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":22,"op":98,"st":22},{"ind":86,"ty":4,"nm":"Shape Layer 32","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-117.25,-53],[-156.5,-150.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":62,"s":[0]},{"t":102,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":25,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":26,"op":102,"st":26},{"ind":87,"ty":4,"nm":"Shape Layer 31","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.75,-101],[-156.5,-150.75]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":56,"s":[0]},{"t":96,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":19,"s":[0]},{"t":66,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":20,"op":96,"st":20},{"ind":88,"ty":4,"nm":"Shape Layer 30","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-37.75,-182],[-156.5,-152.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":66,"s":[0]},{"t":106,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":29,"s":[0]},{"t":76,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":30,"op":106,"st":30},{"ind":89,"ty":4,"nm":"Shape Layer 29","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[111.75,-195.5],[44.5,-125.25]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":52,"s":[0]},{"t":92,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":15,"s":[0]},{"t":62,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":16,"op":92,"st":16},{"ind":90,"ty":4,"nm":"Shape Layer 28","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[111.75,-195.5],[-87.5,-100.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":62,"s":[0]},{"t":102,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":25,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":26,"op":102,"st":26},{"ind":91,"ty":4,"nm":"Shape Layer 53","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.75,-100.5],[-87.5,-100.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":53,"s":[0]},{"t":93,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":16,"s":[0]},{"t":63,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":17,"op":93,"st":17},{"ind":92,"ty":4,"nm":"Shape Layer 27","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[257.5,343.125,0],"ix":2},"a":{"a":0,"k":[-87.5,-141.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-36.75,-183],[-87.5,-100.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":1},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":57,"s":[0]},{"t":97,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.024]},"t":20,"s":[0]},{"t":67,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1"}],"ip":21,"op":97,"st":21},{"ind":93,"ty":4,"nm":"Layer 14","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.31],"y":[0.01]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.31],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":200,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":239,"s":[100]},{"t":246,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.31,"y":0.046},"t":48,"s":[490.041,788.254,0],"to":[9.333,-1.667,0],"ti":[-9.333,1.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":117,"s":[546.041,778.254,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":123,"s":[546.041,778.254,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":200,"s":[546.041,778.254,0],"to":[10,-6.667,0],"ti":[-10,6.667,0]},{"t":270,"s":[606.041,738.254,0]}],"ix":2},"a":{"a":0,"k":[39.25,42.552,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.31,0.31,0.31],"y":[0.043,0.043,0]},"t":52,"s":[150,150,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":117,"s":[170.267,170.267,100]},{"t":123,"s":[170.267,170.267,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.577,-0.539],[0,0],[0,0],[0.114,-0.71],[0,0],[0.684,-0.255],[0,0],[-0.177,0.777]],"o":[[0.18,-0.768],[0,0],[0,0],[0.489,0.527],[0,0],[-0.202,0.7],[0,0],[-0.757,0.23],[0,0]],"v":[[35.728,34.707],[37.088,34.295],[37.9,35.081],[39.8,36.879],[40.397,38.847],[38.424,47.303],[37.022,48.818],[33.57,49.866],[32.521,48.889]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-0.577,-0.538],[0,0],[0.758,-0.23],[0,0],[-0.172,0.765]],"o":[[0.181,-0.768],[0,0],[0.577,0.538],[0,0],[-0.749,0.227],[0,0]],"v":[[42.706,41.281],[44.075,40.866],[47.689,44.284],[47.36,45.679],[42.609,47.122],[41.56,46.145]],"c":true},"ix":2},"nm":"Path 2"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-528,-117.087],"ix":5},"e":{"a":0,"k":[-523.82,-130.857],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.61,-8.595],[8.594,-2.609],[2.61,8.594],[-8.594,2.609]],"o":[[2.609,8.594],[-8.595,2.609],[-2.609,-8.595],[8.595,-2.61]],"v":[[54.812,37.828],[43.975,58.114],[23.688,47.277],[34.525,26.991]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0.3,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,0.5,0.5,0.5,1,0,0,0,0,1,0.5,0.5,1,0],"ix":8}},"s":{"a":0,"k":[26.374,28.48],"ix":4},"e":{"a":0,"k":[54.647,51.449],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":0,"k":[0.075,0.075,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2}],"ip":54,"op":973,"st":54},{"ind":94,"ty":4,"nm":"Layer 13","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.31],"y":[0.01]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.31],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":239,"s":[100]},{"t":246,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.31,"y":0.046},"t":48,"s":[538.284,870.231,0],"to":[13.333,3.333,0],"ti":[-13.333,-3.333,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":117,"s":[618.284,890.231,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":123,"s":[618.284,890.231,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.989},"o":{"x":0.81,"y":0.011},"t":200,"s":[618.284,890.231,0],"to":[7.667,3.333,0],"ti":[-7.667,-3.333,0]},{"t":269,"s":[664.284,910.231,0]}],"ix":2},"a":{"a":0,"k":[13.029,108.421,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.31,0.31,0.31],"y":[0.043,0.043,0]},"t":52,"s":[150,150,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":117,"s":[170,170,100]},{"t":123,"s":[170,170,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[5.621,106.816],[11.792,113.333],[13.996,105.492]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-554,87.825],"ix":5},"e":{"a":0,"k":[-556.204,79.984],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[11.792,113.33],[20.455,110.982],[13.996,105.488]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-547,89.818],"ix":5},"e":{"a":0,"k":[-549.204,81.976],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[9.668,120.888],[11.393,114.751],[5.221,108.235]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-556,103.123],"ix":5},"e":{"a":0,"k":[-558.97,92.555],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","cix":2,"ix":3},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11.393,114.753],[11.27,114.84],[9.652,120.595],[9.668,120.891],[20.059,112.408]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-548,109.299],"ix":5},"e":{"a":0,"k":[-550.97,98.731],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","cix":2,"ix":4},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.535,96.455],[5.621,106.814],[11.792,113.331],[13.996,105.49]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-552,69.786],"ix":5},"e":{"a":0,"k":[-556.744,52.909],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","cix":2,"ix":5},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.536,96.455],[16.217,96.966],[11.676,113.122],[11.792,113.331],[20.455,110.983]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-544,71.786],"ix":5},"e":{"a":0,"k":[-548.743,54.909],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","cix":2,"ix":6},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.579,-12.733],[12.733,3.579],[-3.579,12.733],[-12.733,-3.579]],"o":[[-3.579,12.733],[-12.733,-3.579],[3.579,-12.733],[12.733,3.579]],"v":[[36.084,114.901],[6.549,131.476],[-10.026,101.941],[19.509,85.366]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0.3,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.5,1,0],"ix":8}},"s":{"a":0,"k":[-8.146,87.11],"ix":4},"e":{"a":0,"k":[37.711,126.911],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":0,"k":[0.075,0.075,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","cix":2,"ix":7},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.278,-3.732],[0,0],[3.732,-13.278],[0,0],[13.278,3.732],[0,0],[-3.732,13.278],[0,0]],"o":[[0,0],[13.278,3.732],[0,0],[-3.732,13.278],[0,0],[-13.278,-3.732],[0,0],[3.732,-13.278]],"v":[[19.73,84.282],[19.73,84.282],[37.015,115.082],[37.015,115.082],[6.215,132.367],[6.215,132.367],[-11.07,101.567],[-11.07,101.567]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","cix":2,"ix":8}],"ip":54,"op":973,"st":54},{"ind":95,"ty":4,"nm":"Layer 11","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.31],"y":[0.01]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.31],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":239,"s":[100]},{"t":246,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.31,"y":0.046},"t":48,"s":[385.433,878.824,0],"to":[0,3.333,0],"ti":[0,-3.333,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":117,"s":[385.433,898.824,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":123,"s":[385.433,898.824,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.988},"o":{"x":0.81,"y":0.011},"t":200,"s":[385.433,898.824,0],"to":[0,6.667,0],"ti":[0,-6.667,0]},{"t":269,"s":[385.433,938.824,0]}],"ix":2},"a":{"a":0,"k":[-55.225,113.475,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.31,0.31,0.31],"y":[0.043,0.043,0]},"t":52,"s":[150,150,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":117,"s":[170,170,100]},{"t":123,"s":[170,170,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-53.111,113.153],[-53.11,113.153],[-55.565,111.637],[-56.685,113.452],[-56.685,113.452],[-56.814,113.66],[-57.079,114.09],[-57.081,114.093],[-57.078,114.096],[-54.625,115.61],[-53.11,113.155],[-53.109,113.153]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-620,103.247],"ix":5},"e":{"a":0,"k":[-619.06,99.275],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-47.932,113.994],[-46.438,111.575],[-48.858,110.082],[-50.351,112.501]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-612,101.076],"ix":5},"e":{"a":0,"k":[-614.419,102.57],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-58.13,115.799],[-53.973,118.365],[-51.405,114.205],[-48.985,115.697],[-48.986,115.698],[-53.047,122.278],[-59.624,118.218],[-59.627,118.216]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-619,116.483],"ix":5},"e":{"a":0,"k":[-617.278,109.207],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","cix":2,"ix":3},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-59.839,114.746],[-62.258,113.253],[-63.751,115.672],[-61.332,117.165]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-626,108.418],"ix":5},"e":{"a":0,"k":[-627.493,105.999],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","cix":2,"ix":4},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-58.784,113.038],[-56.218,108.881],[-52.058,111.448],[-50.564,109.029],[-57.144,104.968],[-61.203,111.545]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-622,87.006],"ix":5},"e":{"a":0,"k":[-620.278,79.73],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","cix":2,"ix":5},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-65.725,106.998],[-48.413,102.901],[-44.316,120.213],[-61.628,124.31]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.737,1.358],[0,0],[-1.358,-5.737],[0,0],[5.737,-1.358],[0,0],[1.358,5.737],[0,0]],"o":[[0,0],[5.737,-1.358],[0,0],[1.358,5.737],[0,0],[-5.737,1.358],[0,0],[-1.358,-5.737]],"v":[[-57.447,103.134],[-57.447,103.134],[-44.602,111.063],[-44.602,111.063],[-52.53,123.909],[-52.53,123.909],[-65.376,115.98],[-65.376,115.98]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","cix":2,"ix":3},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.415,-7.978],[7.978,-5.415],[5.415,7.978],[-7.978,5.415]],"o":[[5.415,7.978],[-7.978,5.415],[-5.415,-7.978],[7.978,-5.415]],"v":[[-40.78,103.67],[-45.42,127.921],[-69.67,123.281],[-65.03,99.03]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0.663,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.5,1,0],"ix":8}},"s":{"a":0,"k":[-67.571,87.204],"ix":4},"e":{"a":0,"k":[-44.607,131.202],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":0,"k":[0.075,0.075,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","cix":2,"ix":4},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-76.634,100.264],[-42.01,92.069],[-33.815,126.693],[-68.44,134.888]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","cix":2,"ix":5}],"ip":54,"op":973,"st":54},{"ind":96,"ty":4,"nm":"Layer 12","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.31],"y":[0.01]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.31],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":239,"s":[100]},{"t":246,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.31,"y":0.046},"t":48,"s":[237.231,879.119,0],"to":[-3.333,3.333,0],"ti":[3.333,-3.333,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":117,"s":[217.231,899.119,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":123,"s":[217.231,899.119,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.989},"o":{"x":0.81,"y":0.011},"t":200,"s":[217.231,899.119,0],"to":[-6.667,5.333,0],"ti":[6.667,-5.333,0]},{"t":269,"s":[177.231,931.119,0]}],"ix":2},"a":{"a":0,"k":[-154.167,113.649,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.31,0.31,0.31],"y":[0.043,0.043,0]},"t":52,"s":[150,150,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":117,"s":[170,170,100]},{"t":123,"s":[170,170,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.534,-0.176],[0,0],[0,0],[0,0],[0.461,0.322],[0,0],[-0.082,0.561],[0,0],[-0.543,0.239],[0,0],[-0.461,-0.322],[0,0],[0.082,-0.561],[0,0],[0,0],[0,0],[0.452,0.384],[0,0],[0.534,-0.176],[0,0],[0.073,-0.499],[0,0],[-0.451,-0.384],[0,0],[-0.534,0.176],[0,0],[0,0],[0,0],[-0.461,-0.322],[0,0],[0.082,-0.561],[0,0],[0.543,-0.239],[0,0],[0.46,0.322],[0,0],[-0.082,0.561],[0,0],[0,0],[0,0],[-0.451,-0.384],[0,0],[-0.533,0.176],[0,0],[-0.082,0.561],[0,0],[0.451,0.384]],"o":[[-0.398,-0.313],[0,0],[0,0],[0,0],[-0.471,0.186],[0,0],[-0.398,-0.313],[0,0],[0.073,-0.499],[0,0],[0.471,-0.186],[0,0],[0.398,0.313],[0,0],[0,0],[0,0],[0.073,-0.499],[0,0],[-0.398,-0.313],[0,0],[-0.534,0.176],[0,0],[-0.073,0.499],[0,0],[0.398,0.313],[0,0],[0,0],[0,0],[0.471,-0.186],[0,0],[0.398,0.313],[0,0],[-0.073,0.499],[0,0],[-0.471,0.186],[0,0],[-0.398,-0.313],[0,0],[0,0],[0,0],[-0.073,0.499],[0,0],[0.398,0.313],[0,0],[0.471,-0.186],[0,0],[0.073,-0.499],[0,0]],"v":[[-147.332,110.537],[-148.823,110.318],[-152.604,111.865],[-155.156,112.828],[-158.875,114.384],[-160.366,114.166],[-162.8,112.154],[-163.354,110.736],[-162.898,107.62],[-161.961,106.421],[-159.061,105.254],[-157.57,105.472],[-155.135,107.484],[-154.581,108.902],[-154.882,110.958],[-152.321,109.933],[-152.01,107.814],[-152.564,106.396],[-157.106,102.739],[-158.597,102.521],[-164.13,104.766],[-165.058,105.903],[-165.916,111.761],[-165.362,113.179],[-160.759,116.845],[-159.267,117.064],[-155.558,115.57],[-152.996,114.545],[-149.287,113.051],[-147.795,113.27],[-145.352,115.219],[-144.798,116.637],[-145.254,119.753],[-146.192,120.952],[-149.029,122.128],[-150.521,121.91],[-152.964,119.96],[-153.518,118.542],[-153.226,116.548],[-155.788,117.573],[-156.089,119.63],[-155.535,121.048],[-150.931,124.714],[-149.44,124.932],[-143.978,122.741],[-143.041,121.541],[-142.174,115.621],[-142.728,114.203]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-717,95.453],"ix":5},"e":{"a":0,"k":[-720.076,74.452],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-164.41,101.479],[-140.55,104.973],[-143.608,125.85],[-167.468,122.356]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.329,-12.308],[12.308,5.329],[-5.329,12.308],[-12.308,-5.329]],"o":[[-5.329,12.308],[-12.308,-5.329],[5.329,-12.308],[12.308,5.329]],"v":[[-131.881,123.297],[-163.816,135.935],[-176.453,104],[-144.519,91.363]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0.3,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.5,1,0],"ix":8}},"s":{"a":0,"k":[-144.46,89.987],"ix":4},"e":{"a":0,"k":[-168.4,135.882],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":0,"k":[0.075,0.075,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","cix":2,"ix":3},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.374,-5.357],[0,0],[5.357,-12.374],[0,0],[12.374,5.357],[0,0],[-5.357,12.374],[0,0]],"o":[[0,0],[12.374,5.357],[0,0],[-5.357,12.374],[0,0],[-12.374,-5.357],[0,0],[5.357,-12.374]],"v":[[-144.606,91.073],[-144.606,91.073],[-131.901,123.179],[-131.901,123.179],[-164.007,135.884],[-164.007,135.884],[-176.713,103.778],[-176.713,103.778]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","cix":2,"ix":4}],"ip":54,"op":973,"st":54},{"ind":97,"ty":4,"nm":"Layer 10","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.31],"y":[0.01]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.31],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":239,"s":[100]},{"t":246,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.31,"y":0.046},"t":48,"s":[159.261,791.944,0],"to":[-10,-3.333,0],"ti":[10,3.333,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":117,"s":[99.261,771.944,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":123,"s":[99.261,771.944,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.988},"o":{"x":0.81,"y":0.011},"t":200,"s":[99.261,771.944,0],"to":[-13.333,-13.333,0],"ti":[13.333,13.333,0]},{"t":269,"s":[19.261,691.944,0]}],"ix":2},"a":{"a":0,"k":[97.117,-151.277,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.31,0.31,0.31],"y":[0.043,0.043,0]},"t":52,"s":[150,150,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":117,"s":[170,170,100]},{"t":123,"s":[170,170,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.187,0.255],[0.025,0.355],[0.031,0.097],[0.169,0.073],[0.319,-0.103],[0,0],[0,0]],"o":[[0.331,-0.107],[0.193,-0.257],[-0.016,-0.136],[-0.07,-0.219],[-0.171,-0.079],[0,0],[0,0],[0,0]],"v":[[101.088,-152.958],[101.861,-153.495],[102.112,-154.409],[102.04,-154.761],[101.677,-155.202],[100.936,-155.164],[99.529,-154.711],[99.743,-152.524]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0.068,0.039],[0.013,0.083],[0,0],[-0.057,0.079],[-0.081,0.026],[0,0],[-0.637,-0.177],[-0.214,-0.663],[-0.023,-0.221],[0.465,-0.613],[1.026,-0.33],[0,0],[0,0],[0.057,-0.079],[0.081,-0.026]],"o":[[-0.088,0.028],[-0.057,-0.049],[0,0],[-0.015,-0.089],[0.051,-0.077],[0,0],[0.869,-0.28],[0.645,0.182],[0.061,0.189],[0.088,0.938],[-0.453,0.609],[0,0],[0,0],[0.009,0.091],[-0.051,0.077],[0,0]],"v":[[98.34,-147.259],[98.114,-147.274],[98.01,-147.468],[97.24,-155.41],[97.304,-155.659],[97.504,-155.811],[100.625,-156.816],[102.883,-156.966],[104.173,-155.704],[104.296,-155.085],[103.733,-152.762],[101.514,-151.356],[99.932,-150.846],[100.199,-148.173],[100.134,-147.924],[99.935,-147.773]],"c":true},"ix":2},"nm":"Path 2"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-465,-699.777],"ix":5},"e":{"a":0,"k":[-462.426,-707.769],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.713,0.23],[-0.213,0.336],[0.039,0.549],[0.079,0.549],[0.053,0.166],[0.707,-0.228],[0.219,-0.338],[-0.039,-0.549],[-0.096,-0.766],[-0.053,-0.166]],"o":[[0.416,-0.134],[0.219,-0.338],[-0.053,-0.753],[-0.02,-0.163],[-0.217,-0.674],[-0.416,0.134],[-0.213,0.336],[0.023,0.541],[0.018,0.158],[0.215,0.688]],"v":[[93.378,-147.426],[94.317,-148.133],[94.59,-149.462],[94.395,-151.41],[94.288,-151.905],[92.905,-152.576],[91.954,-151.864],[91.693,-150.54],[91.876,-148.587],[91.979,-148.105]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.069,-0.344],[0.698,0.232],[0.25,0.775],[0.041,0.248],[0.064,0.809],[-2.103,0.677],[-0.514,-0.05],[-0.383,-0.294],[-0.166,-0.515],[-0.041,-0.248],[-0.04,-0.673],[0.479,-0.709]],"o":[[-0.885,0.285],[-0.694,-0.24],[-0.053,-0.166],[-0.076,-0.563],[-0.151,-2.198],[0.57,-0.184],[0.51,0.038],[0.381,0.288],[0.049,0.154],[0.099,0.693],[0.064,1.096],[-0.475,0.702]],"v":[[93.732,-145.777],[91.358,-145.698],[89.941,-147.226],[89.802,-147.841],[89.592,-149.896],[92.523,-154.209],[94.155,-154.415],[95.497,-153.913],[96.318,-152.708],[96.453,-152.106],[96.668,-150.053],[96.054,-147.341]],"c":true},"ix":2},"nm":"Path 2"},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.557,0.424,0.729,0.5,0.622,0.525,0.745,1,0.686,0.627,0.761],"ix":9}},"s":{"a":0,"k":[-473,-689],"ix":5},"e":{"a":0,"k":[-470.425,-696.992],"ix":6},"t":1,"nm":"Gradient Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.761,-8.571],[8.571,-2.761],[2.761,8.571],[-8.571,2.761]],"o":[[2.761,8.571],[-8.571,2.761],[-2.761,-8.571],[8.571,-2.761]],"v":[[112.637,-156.276],[102.117,-135.757],[81.597,-146.277],[92.117,-166.796]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":0.3,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,1,1,1,0.5,1,1,1,1,1,1,1,0,1,0.5,0.5,1,0],"ix":8}},"s":{"a":0,"k":[111.714,-169.701],"ix":4},"e":{"a":0,"k":[92.123,-133.061],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"fl","c":{"a":0,"k":[0.075,0.075,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","cix":2,"ix":3}],"ip":54,"op":973,"st":54},{"ind":98,"ty":4,"nm":"Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[342.812,838.557,0],"ix":2},"a":{"a":0,"k":[-80.296,78.025,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.022,0.022,0]},"t":52,"s":[163,163,100]},{"i":{"x":[0.46,0.46,0.46],"y":[0.978,0.978,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.022,0.022,0]},"t":63,"s":[170,170,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":76,"s":[163,163,100]},{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[0.75,0.75,0.75],"y":[0.01,0.01,0]},"t":113,"s":[163,163,100]},{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[0.75,0.75,0.75],"y":[0.01,0.01,0]},"t":125,"s":[170,170,100]},{"t":143,"s":[163,163,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.543],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.567,0.372],[-0.841,0],[-0.577,-0.332],[-0.318,-0.63],[0.005,-0.899],[0,0],[0,0],[0,0],[0.391,0.426],[0.684,0],[0.362,-0.205],[0.206,-0.381]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.26,-0.631],[0.572,-0.372],[0.778,0],[0.582,0.333],[0.322,0.631],[0,0],[0,0],[0,0],[0,-0.753],[-0.386,-0.425],[-0.465,0],[-0.357,0.201],[-0.2,0.382]],"v":[[-35.207,79.017],[-35.207,85.618],[-37.863,85.618],[-37.863,74.351],[-35.325,74.351],[-35.325,76.266],[-35.193,76.266],[-33.953,74.762],[-31.833,74.205],[-29.801,74.703],[-28.451,76.148],[-27.975,78.444],[-27.975,85.618],[-30.63,85.618],[-30.63,78.855],[-31.217,77.087],[-32.823,76.449],[-34.063,76.757],[-34.907,77.63]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.425,0],[0.303,0.279],[0,0.396],[-0.303,0.279],[-0.421,0],[-0.299,-0.284],[0,-0.401],[0.303,-0.284]],"o":[[-0.421,0],[-0.303,-0.284],[0,-0.401],[0.303,-0.284],[0.425,0],[0.303,0.279],[0,0.396],[-0.299,0.279]],"v":[[-41.707,72.752],[-42.793,72.334],[-43.248,71.314],[-42.793,70.295],[-41.707,69.869],[-40.621,70.295],[-40.167,71.314],[-40.621,72.334]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-43.042,85.618],[-43.042,74.351],[-40.387,74.351],[-40.387,85.618]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[-0.553,0],[-0.391,0.21],[-0.211,0.352],[0,0.415],[0,0],[0.2,-0.059],[0.244,-0.044],[0.24,-0.034],[0.176,-0.024],[0.313,-0.122],[0.181,-0.22],[0,-0.343],[-0.357,-0.249]],"o":[[0.533,0],[0.392,-0.215],[0.215,-0.352],[0,0],[-0.083,0.068],[-0.196,0.058],[-0.245,0.044],[-0.239,0.034],[-0.396,0.054],[-0.313,0.122],[-0.18,0.215],[0,0.489],[0.357,0.25]],"v":[[-50.765,83.895],[-49.379,83.579],[-48.476,82.728],[-48.154,81.577],[-48.154,80.249],[-48.579,80.44],[-49.239,80.594],[-49.966,80.711],[-50.589,80.799],[-51.653,81.063],[-52.394,81.577],[-52.665,82.413],[-52.129,83.52]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0.587,0],[0.572,0.255],[0.333,0.504],[0,0.738],[-0.235,0.415],[-0.406,0.25],[-0.509,0.127],[-0.548,0.059],[-0.411,0.054],[-0.186,0.117],[0,0.254],[0,0],[0.327,0.303],[0.616,0],[0.381,-0.284],[0.132,-0.387],[0,0],[-0.45,0.46],[-0.651,0.229],[-0.787,0],[-0.538,-0.127],[-0.445,-0.293],[-0.269,-0.499],[0,-0.749],[0,0],[0,0],[0,0],[0,0],[0.294,-0.274],[0.441,-0.167]],"o":[[-0.714,0],[-0.567,-0.259],[-0.327,-0.504],[0,-0.636],[0.235,-0.416],[0.406,-0.249],[0.513,-0.132],[0.66,-0.068],[0.411,-0.059],[0.191,-0.123],[0,0],[0,-0.553],[-0.328,-0.303],[-0.651,0],[-0.377,0.284],[0,0],[0.195,-0.685],[0.45,-0.464],[0.65,-0.235],[0.543,0],[0.538,0.127],[0.445,0.289],[0.273,0.499],[0,0],[0,0],[0,0],[0,0],[-0.162,0.313],[-0.288,0.269],[-0.435,0.161]],"v":[[-51.455,85.846],[-53.384,85.464],[-54.734,84.32],[-55.225,82.457],[-54.873,80.88],[-53.912,79.882],[-52.54,79.317],[-50.948,79.031],[-49.342,78.848],[-48.447,78.584],[-48.161,78.019],[-48.161,77.975],[-48.652,76.691],[-50.068,76.236],[-51.616,76.662],[-52.379,77.667],[-54.858,77.315],[-53.89,75.598],[-52.239,74.557],[-50.083,74.205],[-48.462,74.395],[-46.987,75.026],[-45.916,76.207],[-45.506,78.078],[-45.506,85.618],[-48.058,85.618],[-48.058,84.071],[-48.146,84.071],[-48.829,84.951],[-49.922,85.604]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,-0.543],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.552,0.367],[-0.861,0],[-0.582,-0.328],[-0.318,-0.631],[0,-0.909],[0,0],[0,0],[0,0],[0.391,0.421],[0.7,0],[0.371,-0.205],[0.21,-0.381]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.264,-0.636],[0.558,-0.372],[0.782,0],[0.582,0.328],[0.323,0.631],[0,0],[0,0],[0,0],[0,-0.758],[-0.387,-0.425],[-0.469,0],[-0.367,0.201],[-0.205,0.382]],"v":[[-64.503,79.017],[-64.503,85.618],[-67.158,85.618],[-67.158,70.596],[-64.562,70.596],[-64.562,76.266],[-64.43,76.266],[-63.205,74.762],[-61.077,74.205],[-59.031,74.696],[-57.681,76.134],[-57.197,78.444],[-57.197,85.618],[-59.852,85.618],[-59.852,78.855],[-60.439,77.087],[-62.068,76.449],[-63.329,76.757],[-64.195,77.63]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0.944,0],[0.807,0.493],[0.435,0.87],[0,1.139],[-0.44,0.876],[-0.802,0.489],[-1.1,0],[-0.704,-0.338],[-0.421,-0.611],[-0.059,-0.812],[0,0],[0.386,0.361],[0.641,0],[0.41,-0.294],[0.229,-0.543],[0,-0.758],[-0.225,-0.552],[-0.406,-0.298],[-0.553,0],[-0.308,0.147],[-0.21,0.283],[-0.079,0.406],[0,0],[0.406,-0.616],[0.699,-0.347]],"o":[[-1.125,0],[-0.802,-0.494],[-0.431,-0.875],[0,-1.145],[0.44,-0.88],[0.807,-0.494],[0.915,0],[0.709,0.332],[0.42,0.607],[0,0],[-0.103,-0.543],[-0.381,-0.367],[-0.543,0],[-0.411,0.288],[-0.225,0.542],[0,0.768],[0.225,0.548],[0.411,0.294],[0.391,0],[0.313,-0.151],[0.21,-0.284],[0,0],[-0.064,0.797],[-0.405,0.611],[-0.7,0.342]],"v":[[-73.959,85.838],[-76.857,85.098],[-78.712,83.051],[-79.358,80.029],[-78.698,76.999],[-76.835,74.945],[-73.974,74.205],[-71.546,74.711],[-69.851,76.126],[-69.132,78.254],[-71.67,78.254],[-72.404,76.897],[-73.937,76.346],[-75.367,76.787],[-76.328,78.034],[-76.666,79.985],[-76.328,81.965],[-75.382,83.234],[-73.937,83.674],[-72.888,83.454],[-72.103,82.802],[-71.67,81.767],[-69.132,81.767],[-69.837,83.887],[-71.494,85.325]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-82.892,85.618],[-86.56,80.491],[-84.77,78.62],[-79.716,85.618]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-89.964,85.618],[-89.964,70.596],[-87.308,70.596],[-87.308,85.618]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-87.543,82.083],[-87.55,78.877],[-87.125,78.877],[-83.076,74.351],[-79.973,74.351],[-84.954,79.897],[-85.504,79.897]],"c":true},"ix":2},"nm":"Path 10"},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0.944,0],[0.807,0.493],[0.436,0.87],[0,1.139],[-0.44,0.876],[-0.802,0.489],[-1.1,0],[-0.704,-0.338],[-0.421,-0.611],[-0.058,-0.812],[0,0],[0.386,0.361],[0.64,0],[0.411,-0.294],[0.23,-0.543],[0,-0.758],[-0.225,-0.552],[-0.406,-0.298],[-0.553,0],[-0.308,0.147],[-0.211,0.283],[-0.078,0.406],[0,0],[0.406,-0.616],[0.7,-0.347]],"o":[[-1.125,0],[-0.802,-0.494],[-0.43,-0.875],[0,-1.145],[0.44,-0.88],[0.807,-0.494],[0.915,0],[0.709,0.332],[0.42,0.607],[0,0],[-0.102,-0.543],[-0.382,-0.367],[-0.543,0],[-0.41,0.288],[-0.225,0.542],[0,0.768],[0.225,0.548],[0.41,0.294],[0.391,0],[0.313,-0.151],[0.21,-0.284],[0,0],[-0.063,0.797],[-0.406,0.611],[-0.699,0.342]],"v":[[-96.764,85.838],[-99.662,85.098],[-101.518,83.051],[-102.163,80.029],[-101.503,76.999],[-99.64,74.945],[-96.779,74.205],[-94.351,74.711],[-92.656,76.126],[-91.938,78.254],[-94.476,78.254],[-95.209,76.897],[-96.742,76.346],[-98.173,76.787],[-99.134,78.034],[-99.471,79.985],[-99.134,81.965],[-98.187,83.234],[-96.742,83.674],[-95.693,83.454],[-94.908,82.802],[-94.476,81.767],[-91.938,81.767],[-92.642,83.887],[-94.3,85.325]],"c":true},"ix":2},"nm":"Path 11"},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[-0.612,0],[-0.401,0.327],[-0.196,0.557],[0,0.685],[0.2,0.557],[0.401,0.332],[0.596,0],[0.406,-0.333],[0.2,-0.562],[0,-0.689],[-0.196,-0.558],[-0.401,-0.333]],"o":[[0.596,0],[0.401,-0.333],[0.2,-0.558],[0,-0.689],[-0.196,-0.562],[-0.401,-0.333],[-0.612,0],[-0.401,0.332],[-0.196,0.557],[0,0.685],[0.2,0.557],[0.406,0.327]],"v":[[-109.11,83.711],[-107.614,83.22],[-106.719,81.885],[-106.418,80.021],[-106.719,78.151],[-107.614,76.809],[-109.11,76.31],[-110.636,76.809],[-111.538,78.151],[-111.832,80.021],[-111.538,81.885],[-110.636,83.22]],"c":true},"ix":2},"nm":"Path 12"},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[1.1,0],[0.807,0.484],[0.445,0.871],[0,1.164],[-0.44,0.875],[-0.807,0.484],[-1.1,0],[-0.807,-0.484],[-0.44,-0.875],[0,-1.164],[0.445,-0.87],[0.807,-0.484]],"o":[[-1.1,0],[-0.807,-0.484],[-0.44,-0.87],[0,-1.164],[0.445,-0.875],[0.807,-0.484],[1.1,0],[0.807,0.484],[0.445,0.875],[0,1.164],[-0.44,0.871],[-0.807,0.484]],"v":[[-109.125,85.838],[-111.986,85.112],[-113.864,83.08],[-114.524,80.029],[-113.864,76.97],[-111.986,74.931],[-109.125,74.205],[-106.264,74.931],[-104.394,76.97],[-103.726,80.029],[-104.394,83.08],[-106.264,85.112]],"c":true},"ix":2},"nm":"Path 13"},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-116.564,70.596],[-116.564,85.618],[-119.219,85.618],[-119.219,70.596]],"c":true},"ix":2},"nm":"Path 14"},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.376,0.171],[-0.215,0.318],[0,0.44],[0.411,0.377],[0.802,0],[0,0]],"o":[[0,0],[0.47,0],[0.377,-0.176],[0.22,-0.323],[0,-0.582],[-0.406,-0.377],[0,0],[0,0]],"v":[[-129.75,76.985],[-127.058,76.985],[-125.789,76.728],[-124.901,75.987],[-124.571,74.843],[-125.187,73.405],[-126.999,72.84],[-129.75,72.84]],"c":true},"ix":2},"nm":"Path 15"},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.436,0.376],[0,0.597],[0.22,0.357],[0.406,0.205],[0.563,0],[0,0]],"o":[[0,0],[0.988,0],[0.44,-0.382],[0,-0.445],[-0.22,-0.361],[-0.406,-0.211],[0,0],[0,0]],"v":[[-129.75,83.344],[-126.823,83.344],[-124.688,82.78],[-124.028,81.312],[-124.358,80.109],[-125.297,79.259],[-126.75,78.943],[-129.75,78.943]],"c":true},"ix":2},"nm":"Path 16"},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.719,-0.342],[-0.357,-0.586],[0,-0.744],[0.235,-0.435],[0.396,-0.269],[0.489,-0.118],[0,0],[-0.489,-0.298],[-0.313,-0.538],[0,-0.763],[0.377,-0.621],[0.758,-0.357],[1.149,0]],"o":[[0,0],[0,0],[1.085,0],[0.723,0.337],[0.362,0.587],[0,0.611],[-0.234,0.431],[-0.396,0.269],[0,0],[0.533,0.029],[0.494,0.293],[0.313,0.538],[0,0.778],[-0.376,0.616],[-0.758,0.357],[0,0]],"v":[[-132.471,85.618],[-132.471,70.596],[-126.72,70.596],[-124.013,71.109],[-122.392,72.495],[-121.85,74.491],[-122.202,76.06],[-123.148,77.109],[-124.476,77.689],[-124.476,77.836],[-122.943,78.327],[-121.732,79.574],[-121.263,81.525],[-121.828,83.623],[-123.529,85.083],[-126.39,85.618]],"c":true},"ix":2},"nm":"Path 17"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.257,0],[0,0],[0,-6.257],[0,0],[6.257,0],[0,0],[0,6.257],[0,0]],"o":[[0,0],[6.257,0],[0,0],[0,6.257],[0,0],[-6.257,0],[0,0],[0,-6.257]],"v":[[-239.485,42.571],[78.893,42.571],[90.222,53.9],[90.222,102.149],[78.893,113.478],[-239.485,113.478],[-250.815,102.149],[-250.815,53.9]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[-0.032]},"t":52,"s":[1,1,1,1]},{"i":{"x":[0.46],"y":[0.968]},"o":{"x":[0.81],"y":[0.032]},"t":61,"s":[0.776,0.313,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[1,1,1,1]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[-0.043]},"t":113,"s":[1,1,1,1]},{"i":{"x":[0.46],"y":[0.955]},"o":{"x":[0.81],"y":[0.045]},"t":125,"s":[0.776,0.313,1,1]},{"t":143,"s":[1,1,1,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":52,"s":[0.5]},{"i":{"x":[0.46],"y":[0.99]},"o":{"x":[0.81],"y":[0.01]},"t":61,"s":[1.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0.5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.013]},"t":113,"s":[0.5]},{"i":{"x":[0.46],"y":[0.986]},"o":{"x":[0.81],"y":[0.014]},"t":125,"s":[1.5]},{"t":143,"s":[0.5]}],"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2}],"ip":0,"op":919,"st":0},{"ind":99,"ty":4,"nm":"Layer 17","parent":114,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[100]},{"t":103,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[-20.575,-267.78,0],"ix":2},"a":{"a":0,"k":[-71.995,2.973,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-45.462,-0.785],[-43.948,1.775],[-43.889,1.775],[-42.367,-0.785],[-40.573,-0.785],[-42.866,2.971],[-40.522,6.727],[-42.348,6.727],[-43.889,4.163],[-43.948,4.163],[-45.488,6.727],[-47.307,6.727],[-44.956,2.971],[-47.263,-0.785]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-54.963,0.525],[-54.963,-0.785],[-48.794,-0.785],[-48.794,0.525],[-51.093,0.525],[-51.093,6.727],[-52.663,6.727],[-52.663,0.525]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-65.904,0.525],[-65.904,-0.785],[-59.735,-0.785],[-59.735,0.525],[-62.035,0.525],[-62.035,6.727],[-63.605,6.727],[-63.605,0.525]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-67.751,-0.785],[-67.751,6.727],[-69.339,6.727],[-69.339,-0.785]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-79.616,-0.785],[-77.658,-0.785],[-75.589,4.262],[-75.501,4.262],[-73.433,-0.785],[-71.474,-0.785],[-71.474,6.727],[-73.015,6.727],[-73.015,1.838],[-73.077,1.838],[-75.021,6.69],[-76.07,6.69],[-78.014,1.819],[-78.076,1.819],[-78.076,6.727],[-79.616,6.727]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.169,0.076],[-0.097,0.142],[0,0.198],[0.193,0.167],[0.352,0],[0,0]],"o":[[0,0],[0.218,0],[0.171,-0.078],[0.101,-0.142],[0,-0.271],[-0.191,-0.166],[0,0],[0,0]],"v":[[-85.683,2.359],[-84.506,2.359],[-83.926,2.245],[-83.523,1.915],[-83.372,1.405],[-83.662,0.748],[-84.476,0.499],[-85.683,0.499]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.203,0.169],[0,0.284],[0.1,0.159],[0.186,0.09],[0.254,0],[0,0]],"o":[[0,0],[0.442,0],[0.203,-0.171],[0,-0.208],[-0.1,-0.159],[-0.183,-0.091],[0,0],[0,0]],"v":[[-85.683,5.428],[-84.388,5.428],[-83.42,5.175],[-83.115,4.493],[-83.266,3.943],[-83.695,3.569],[-84.351,3.433],[-85.683,3.433]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.369,-0.164],[-0.186,-0.291],[0,-0.377],[0.117,-0.223],[0.206,-0.142],[0.261,-0.059],[0,0],[-0.25,-0.149],[-0.156,-0.269],[0,-0.369],[0.198,-0.313],[0.384,-0.181],[0.563,0]],"o":[[0,0],[0,0],[0.552,0],[0.369,0.164],[0.186,0.289],[0,0.293],[-0.118,0.22],[-0.203,0.139],[0,0],[0.286,0.012],[0.252,0.149],[0.157,0.267],[0,0.398],[-0.196,0.311],[-0.384,0.181],[0,0]],"v":[[-87.271,6.727],[-87.271,-0.785],[-84.263,-0.785],[-82.881,-0.539],[-82.048,0.143],[-81.769,1.141],[-81.945,1.915],[-82.43,2.458],[-83.126,2.755],[-83.126,2.828],[-82.323,3.07],[-81.711,3.697],[-81.476,4.651],[-81.773,5.718],[-82.642,6.455],[-84.062,6.727]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.261,-0.411],[0.467,-0.23],[0.621,0],[0.467,0.227],[0.259,0.411],[0,0.548],[0,0],[0,0],[0,0],[-0.125,-0.223],[-0.23,-0.127],[-0.305,0],[-0.228,0.127],[-0.124,0.222],[0,0.286]],"o":[[0,0],[0,0],[0,0.548],[-0.259,0.411],[-0.467,0.227],[-0.623,0],[-0.468,-0.23],[-0.259,-0.411],[0,0],[0,0],[0,0],[0,0.286],[0.127,0.222],[0.23,0.127],[0.308,0],[0.229,-0.127],[0.127,-0.223],[0,0]],"v":[[-90.992,-0.785],[-89.404,-0.785],[-89.404,4.093],[-89.796,5.531],[-90.886,6.492],[-92.518,6.833],[-94.153,6.492],[-95.243,5.531],[-95.632,4.093],[-95.632,-0.785],[-94.043,-0.785],[-94.043,3.958],[-93.856,4.721],[-93.321,5.245],[-92.518,5.436],[-91.714,5.245],[-91.183,4.721],[-90.992,3.958]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0.223,0.164],[0.382,0],[0.178,-0.073],[0.096,-0.127],[0,-0.161],[-0.061,-0.1],[-0.11,-0.074],[-0.144,-0.054],[-0.164,-0.037],[0,0],[-0.274,-0.123],[-0.201,-0.179],[-0.11,-0.242],[-0.002,-0.313],[0.232,-0.338],[0.435,-0.186],[0.611,0],[0.45,0.186],[0.252,0.364],[0.013,0.541],[0,0],[-0.127,-0.168],[-0.216,-0.086],[-0.274,0],[-0.198,0.079],[-0.11,0.139],[0,0.181],[0.1,0.115],[0.191,0.08],[0.274,0.066],[0,0],[0.367,0.327],[-0.002,0.555],[-0.244,0.339],[-0.43,0.19],[-0.547,0],[-0.415,-0.191],[-0.232,-0.34],[-0.007,-0.448]],"o":[[-0.029,-0.296],[-0.222,-0.164],[-0.259,0],[-0.179,0.071],[-0.093,0.128],[-0.005,0.135],[0.064,0.101],[0.11,0.071],[0.144,0.051],[0,0],[0.328,0.074],[0.274,0.122],[0.2,0.178],[0.112,0.242],[-0.002,0.46],[-0.23,0.335],[-0.433,0.183],[-0.606,0],[-0.448,-0.185],[-0.25,-0.367],[0,0],[0.017,0.252],[0.13,0.167],[0.217,0.083],[0.269,0],[0.201,-0.078],[0.11,-0.139],[0,-0.168],[-0.098,-0.115],[-0.188,-0.081],[0,0],[-0.633,-0.154],[-0.367,-0.328],[-0.002,-0.455],[0.247,-0.34],[0.431,-0.191],[0.558,0],[0.418,0.19],[0.232,0.339],[0,0]],"v":[[-99.151,1.376],[-99.529,0.686],[-100.435,0.44],[-101.091,0.55],[-101.502,0.847],[-101.641,1.28],[-101.557,1.632],[-101.296,1.893],[-100.915,2.08],[-100.453,2.212],[-99.778,2.373],[-98.876,2.667],[-98.164,3.118],[-97.698,3.749],[-97.526,4.581],[-97.878,5.777],[-98.876,6.558],[-100.442,6.833],[-102.026,6.554],[-103.075,5.729],[-103.468,4.368],[-101.931,4.368],[-101.715,4.999],[-101.197,5.377],[-100.46,5.502],[-99.76,5.384],[-99.294,5.058],[-99.129,4.577],[-99.279,4.152],[-99.712,3.859],[-100.405,3.639],[-101.223,3.433],[-102.723,2.711],[-103.27,1.387],[-102.907,0.195],[-101.891,-0.601],[-100.424,-0.887],[-98.964,-0.601],[-97.988,0.195],[-97.629,1.376]],"c":true},"ix":2},"nm":"Path 10"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1}],"ip":77,"op":104,"st":49},{"ind":100,"ty":4,"nm":"Layer 8","parent":115,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[100]},{"t":77,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[-20.575,-267.78,0],"ix":2},"a":{"a":0,"k":[-71.995,2.973,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-45.462,-0.785],[-43.948,1.775],[-43.889,1.775],[-42.367,-0.785],[-40.573,-0.785],[-42.866,2.971],[-40.522,6.727],[-42.348,6.727],[-43.889,4.163],[-43.948,4.163],[-45.488,6.727],[-47.307,6.727],[-44.956,2.971],[-47.263,-0.785]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-54.963,0.525],[-54.963,-0.785],[-48.794,-0.785],[-48.794,0.525],[-51.093,0.525],[-51.093,6.727],[-52.663,6.727],[-52.663,0.525]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-65.904,0.525],[-65.904,-0.785],[-59.735,-0.785],[-59.735,0.525],[-62.035,0.525],[-62.035,6.727],[-63.605,6.727],[-63.605,0.525]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-67.751,-0.785],[-67.751,6.727],[-69.339,6.727],[-69.339,-0.785]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-79.616,-0.785],[-77.658,-0.785],[-75.589,4.262],[-75.501,4.262],[-73.433,-0.785],[-71.474,-0.785],[-71.474,6.727],[-73.015,6.727],[-73.015,1.838],[-73.077,1.838],[-75.021,6.69],[-76.07,6.69],[-78.014,1.819],[-78.076,1.819],[-78.076,6.727],[-79.616,6.727]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.169,0.076],[-0.097,0.142],[0,0.198],[0.193,0.167],[0.352,0],[0,0]],"o":[[0,0],[0.218,0],[0.171,-0.078],[0.101,-0.142],[0,-0.271],[-0.191,-0.166],[0,0],[0,0]],"v":[[-85.683,2.359],[-84.506,2.359],[-83.926,2.245],[-83.523,1.915],[-83.372,1.405],[-83.662,0.748],[-84.476,0.499],[-85.683,0.499]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.203,0.169],[0,0.284],[0.1,0.159],[0.186,0.09],[0.254,0],[0,0]],"o":[[0,0],[0.442,0],[0.203,-0.171],[0,-0.208],[-0.1,-0.159],[-0.183,-0.091],[0,0],[0,0]],"v":[[-85.683,5.428],[-84.388,5.428],[-83.42,5.175],[-83.115,4.493],[-83.266,3.943],[-83.695,3.569],[-84.351,3.433],[-85.683,3.433]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.369,-0.164],[-0.186,-0.291],[0,-0.377],[0.117,-0.223],[0.206,-0.142],[0.261,-0.059],[0,0],[-0.25,-0.149],[-0.156,-0.269],[0,-0.369],[0.198,-0.313],[0.384,-0.181],[0.563,0]],"o":[[0,0],[0,0],[0.552,0],[0.369,0.164],[0.186,0.289],[0,0.293],[-0.118,0.22],[-0.203,0.139],[0,0],[0.286,0.012],[0.252,0.149],[0.157,0.267],[0,0.398],[-0.196,0.311],[-0.384,0.181],[0,0]],"v":[[-87.271,6.727],[-87.271,-0.785],[-84.263,-0.785],[-82.881,-0.539],[-82.048,0.143],[-81.769,1.141],[-81.945,1.915],[-82.43,2.458],[-83.126,2.755],[-83.126,2.828],[-82.323,3.07],[-81.711,3.697],[-81.476,4.651],[-81.773,5.718],[-82.642,6.455],[-84.062,6.727]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.261,-0.411],[0.467,-0.23],[0.621,0],[0.467,0.227],[0.259,0.411],[0,0.548],[0,0],[0,0],[0,0],[-0.125,-0.223],[-0.23,-0.127],[-0.305,0],[-0.228,0.127],[-0.124,0.222],[0,0.286]],"o":[[0,0],[0,0],[0,0.548],[-0.259,0.411],[-0.467,0.227],[-0.623,0],[-0.468,-0.23],[-0.259,-0.411],[0,0],[0,0],[0,0],[0,0.286],[0.127,0.222],[0.23,0.127],[0.308,0],[0.229,-0.127],[0.127,-0.223],[0,0]],"v":[[-90.992,-0.785],[-89.404,-0.785],[-89.404,4.093],[-89.796,5.531],[-90.886,6.492],[-92.518,6.833],[-94.153,6.492],[-95.243,5.531],[-95.632,4.093],[-95.632,-0.785],[-94.043,-0.785],[-94.043,3.958],[-93.856,4.721],[-93.321,5.245],[-92.518,5.436],[-91.714,5.245],[-91.183,4.721],[-90.992,3.958]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0.223,0.164],[0.382,0],[0.178,-0.073],[0.096,-0.127],[0,-0.161],[-0.061,-0.1],[-0.11,-0.074],[-0.144,-0.054],[-0.164,-0.037],[0,0],[-0.274,-0.123],[-0.201,-0.179],[-0.11,-0.242],[-0.002,-0.313],[0.232,-0.338],[0.435,-0.186],[0.611,0],[0.45,0.186],[0.252,0.364],[0.013,0.541],[0,0],[-0.127,-0.168],[-0.216,-0.086],[-0.274,0],[-0.198,0.079],[-0.11,0.139],[0,0.181],[0.1,0.115],[0.191,0.08],[0.274,0.066],[0,0],[0.367,0.327],[-0.002,0.555],[-0.244,0.339],[-0.43,0.19],[-0.547,0],[-0.415,-0.191],[-0.232,-0.34],[-0.007,-0.448]],"o":[[-0.029,-0.296],[-0.222,-0.164],[-0.259,0],[-0.179,0.071],[-0.093,0.128],[-0.005,0.135],[0.064,0.101],[0.11,0.071],[0.144,0.051],[0,0],[0.328,0.074],[0.274,0.122],[0.2,0.178],[0.112,0.242],[-0.002,0.46],[-0.23,0.335],[-0.433,0.183],[-0.606,0],[-0.448,-0.185],[-0.25,-0.367],[0,0],[0.017,0.252],[0.13,0.167],[0.217,0.083],[0.269,0],[0.201,-0.078],[0.11,-0.139],[0,-0.168],[-0.098,-0.115],[-0.188,-0.081],[0,0],[-0.633,-0.154],[-0.367,-0.328],[-0.002,-0.455],[0.247,-0.34],[0.431,-0.191],[0.558,0],[0.418,0.19],[0.232,0.339],[0,0]],"v":[[-99.151,1.376],[-99.529,0.686],[-100.435,0.44],[-101.091,0.55],[-101.502,0.847],[-101.641,1.28],[-101.557,1.632],[-101.296,1.893],[-100.915,2.08],[-100.453,2.212],[-99.778,2.373],[-98.876,2.667],[-98.164,3.118],[-97.698,3.749],[-97.526,4.581],[-97.878,5.777],[-98.876,6.558],[-100.442,6.833],[-102.026,6.554],[-103.075,5.729],[-103.468,4.368],[-101.931,4.368],[-101.715,4.999],[-101.197,5.377],[-100.46,5.502],[-99.76,5.384],[-99.294,5.058],[-99.129,4.577],[-99.279,4.152],[-99.712,3.859],[-100.405,3.639],[-101.223,3.433],[-102.723,2.711],[-103.27,1.387],[-102.907,0.195],[-101.891,-0.601],[-100.424,-0.887],[-98.964,-0.601],[-97.988,0.195],[-97.629,1.376]],"c":true},"ix":2},"nm":"Path 10"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1}],"ip":42,"op":78,"st":42},{"ind":101,"ty":4,"nm":"Layer 16","parent":116,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[100]},{"t":100,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[28.008,-277.396,0],"ix":2},"a":{"a":0,"k":[-62.534,-293.024,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-10.4,-295.727],[-10.4,-297.037],[-4.231,-297.037],[-4.231,-295.727],[-6.53,-295.727],[-6.53,-289.525],[-8.1,-289.525],[-8.1,-295.727]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0.223,0.164],[0.382,0],[0.178,-0.073],[0.095,-0.128],[0,-0.161],[-0.061,-0.1],[-0.11,-0.074],[-0.144,-0.054],[-0.164,-0.037],[0,0],[-0.274,-0.123],[-0.201,-0.179],[-0.11,-0.242],[-0.003,-0.313],[0.232,-0.338],[0.435,-0.186],[0.611,0],[0.449,0.186],[0.251,0.365],[0.012,0.541],[0,0],[-0.127,-0.168],[-0.215,-0.085],[-0.274,0],[-0.198,0.079],[-0.11,0.139],[0,0.18],[0.1,0.115],[0.191,0.08],[0.274,0.066],[0,0],[0.366,0.327],[-0.002,0.555],[-0.244,0.34],[-0.43,0.19],[-0.547,0],[-0.416,-0.191],[-0.233,-0.34],[-0.007,-0.448]],"o":[[-0.029,-0.296],[-0.222,-0.164],[-0.259,0],[-0.179,0.071],[-0.093,0.127],[-0.005,0.135],[0.064,0.101],[0.11,0.071],[0.144,0.051],[0,0],[0.327,0.074],[0.274,0.122],[0.2,0.178],[0.113,0.242],[-0.003,0.46],[-0.23,0.335],[-0.433,0.183],[-0.606,0],[-0.448,-0.185],[-0.25,-0.367],[0,0],[0.017,0.252],[0.13,0.167],[0.218,0.083],[0.269,0],[0.201,-0.078],[0.11,-0.139],[0,-0.169],[-0.098,-0.115],[-0.188,-0.081],[0,0],[-0.634,-0.154],[-0.367,-0.328],[-0.002,-0.455],[0.247,-0.34],[0.431,-0.191],[0.558,0],[0.418,0.19],[0.232,0.34],[0,0]],"v":[[-13.633,-294.876],[-14.011,-295.566],[-14.917,-295.812],[-15.573,-295.702],[-15.984,-295.404],[-16.123,-294.972],[-16.039,-294.62],[-15.779,-294.359],[-15.397,-294.172],[-14.935,-294.04],[-14.26,-293.879],[-13.358,-293.585],[-12.646,-293.134],[-12.181,-292.503],[-12.008,-291.671],[-12.36,-290.475],[-13.358,-289.694],[-14.924,-289.419],[-16.508,-289.698],[-17.557,-290.523],[-17.95,-291.884],[-16.413,-291.884],[-16.197,-291.253],[-15.68,-290.875],[-14.942,-290.75],[-14.242,-290.868],[-13.776,-291.194],[-13.611,-291.674],[-13.761,-292.1],[-14.194,-292.393],[-14.887,-292.613],[-15.705,-292.819],[-17.205,-293.541],[-17.752,-294.865],[-17.389,-296.057],[-16.373,-296.853],[-14.906,-297.139],[-13.446,-296.853],[-12.47,-296.057],[-12.111,-294.876]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-24.858,-289.525],[-24.858,-297.037],[-19.797,-297.037],[-19.797,-295.727],[-23.27,-295.727],[-23.27,-293.937],[-20.057,-293.937],[-20.057,-292.628],[-23.27,-292.628],[-23.27,-290.835],[-19.782,-290.835],[-19.782,-289.525]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.261,-0.411],[0.467,-0.23],[0.621,0],[0.467,0.227],[0.259,0.411],[0,0.548],[0,0],[0,0],[0,0],[-0.124,-0.223],[-0.23,-0.127],[-0.305,0],[-0.227,0.127],[-0.124,0.222],[0,0.286]],"o":[[0,0],[0,0],[0,0.548],[-0.26,0.411],[-0.467,0.227],[-0.623,0],[-0.467,-0.23],[-0.259,-0.411],[0,0],[0,0],[0,0],[0,0.286],[0.128,0.222],[0.23,0.127],[0.308,0],[0.23,-0.127],[0.127,-0.223],[0,0]],"v":[[-28.579,-297.037],[-26.991,-297.037],[-26.991,-292.159],[-27.383,-290.721],[-28.473,-289.76],[-30.105,-289.419],[-31.741,-289.76],[-32.83,-290.721],[-33.219,-292.159],[-33.219,-297.037],[-31.631,-297.037],[-31.631,-292.294],[-31.444,-291.531],[-30.908,-291.007],[-30.105,-290.816],[-29.302,-291.007],[-28.77,-291.531],[-28.579,-292.294]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0.531],[0.159,0.364],[0.286,0.188],[0.384,0],[0.286,-0.188],[0.159,-0.365],[0,-0.53],[-0.157,-0.364],[-0.286,-0.188],[-0.384,0],[-0.286,0.189],[-0.156,0.365]],"o":[[0,-0.53],[-0.156,-0.365],[-0.286,-0.188],[-0.384,0],[-0.286,0.188],[-0.157,0.364],[0,0.531],[0.159,0.365],[0.286,0.189],[0.384,0],[0.286,-0.188],[0.159,-0.364]],"v":[[-36.831,-293.281],[-37.07,-294.623],[-37.734,-295.452],[-38.739,-295.735],[-39.744,-295.452],[-40.411,-294.623],[-40.646,-293.281],[-40.411,-291.939],[-39.744,-291.11],[-38.739,-290.827],[-37.734,-291.11],[-37.07,-291.939]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,-0.819],[0.31,-0.575],[0.533,-0.303],[0.663,0],[0.531,0.303],[0.308,0.575],[0,0.817],[-0.308,0.574],[-0.53,0.301],[-0.667,0],[-0.53,-0.303],[-0.308,-0.575]],"o":[[0,0.819],[-0.308,0.574],[-0.53,0.301],[-0.667,0],[-0.53,-0.303],[-0.308,-0.575],[0,-0.819],[0.308,-0.575],[0.531,-0.303],[0.663,0],[0.533,0.301],[0.31,0.574]],"v":[[-35.221,-293.281],[-35.687,-291.19],[-36.949,-289.874],[-38.739,-289.422],[-40.536,-289.877],[-41.794,-291.194],[-42.256,-293.281],[-41.794,-295.371],[-40.536,-296.685],[-38.739,-297.139],[-36.949,-296.685],[-35.687,-295.371]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-39.289,-292.137],[-37.939,-292.137],[-37.261,-291.264],[-36.593,-290.486],[-35.335,-288.909],[-36.817,-288.909],[-37.682,-289.973],[-38.126,-290.603]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-49.274,-289.525],[-49.274,-297.037],[-44.213,-297.037],[-44.213,-295.727],[-47.686,-295.727],[-47.686,-293.937],[-44.473,-293.937],[-44.473,-292.628],[-47.686,-292.628],[-47.686,-290.835],[-44.198,-290.835],[-44.198,-289.525]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-52.822,-292.943],[-50.955,-289.525],[-52.708,-289.525],[-54.535,-292.943]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.401,-0.203],[-0.21,-0.369],[0,-0.496],[0.216,-0.359],[0.409,-0.191],[0.577,0],[0,0],[0,0],[0,0],[-0.201,0.083],[-0.098,0.166],[0,0.247],[0.1,0.171],[0.203,0.088],[0.305,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0.567,0],[0.403,0.2],[0.213,0.367],[0,0.499],[-0.215,0.357],[-0.406,0.191],[0,0],[0,0],[0,0],[0.303,0],[0.2,-0.083],[0.1,-0.166],[0,-0.249],[-0.098,-0.171],[-0.201,-0.09],[0,0],[0,0],[0,0]],"v":[[-56.878,-289.525],[-56.878,-297.037],[-53.915,-297.037],[-52.462,-296.732],[-51.542,-295.878],[-51.223,-294.583],[-51.546,-293.296],[-52.481,-292.474],[-53.955,-292.188],[-55.939,-292.188],[-55.939,-293.464],[-54.212,-293.464],[-53.456,-293.589],[-53.009,-293.963],[-52.859,-294.583],[-53.009,-295.214],[-53.46,-295.603],[-54.219,-295.738],[-55.29,-295.738],[-55.29,-289.525]],"c":true},"ix":2},"nm":"Path 10"},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0,0],[0.093,0.137],[0.134,0.096],[0.171,0.052],[0.205,0],[0.291,-0.19],[0.161,-0.364],[0,-0.523],[-0.159,-0.367],[-0.291,-0.193],[-0.397,0],[-0.254,0.127],[-0.135,0.234],[0,0.32],[0,0],[0,0],[0,0],[0,0],[0,0],[0.278,-0.474],[0.489,-0.257],[0.631,0],[0.533,0.31],[0.299,0.575],[0,0.793],[-0.176,0.477],[-0.32,0.333],[-0.425,0.174],[-0.496,0],[-0.367,-0.125],[-0.283,-0.225],[-0.181,-0.311],[-0.051,-0.371]],"o":[[-0.051,-0.178],[-0.093,-0.139],[-0.132,-0.098],[-0.169,-0.051],[-0.384,0],[-0.289,0.191],[-0.162,0.362],[0,0.523],[0.159,0.367],[0.291,0.19],[0.359,0],[0.257,-0.13],[0.137,-0.235],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0.66],[-0.279,0.472],[-0.489,0.254],[-0.704,0],[-0.533,-0.313],[-0.296,-0.577],[0,-0.608],[0.178,-0.479],[0.32,-0.332],[0.426,-0.174],[0.426,0],[0.366,0.122],[0.286,0.225],[0.181,0.308],[0,0]],"v":[[-63.798,-294.609],[-64.014,-295.082],[-64.355,-295.434],[-64.81,-295.658],[-65.371,-295.735],[-66.383,-295.449],[-67.058,-294.616],[-67.3,-293.288],[-67.062,-291.953],[-66.387,-291.113],[-65.356,-290.827],[-64.436,-291.018],[-63.849,-291.564],[-63.644,-292.397],[-63.321,-292.349],[-65.257,-292.349],[-65.257,-293.545],[-62.114,-293.545],[-62.114,-292.599],[-62.532,-290.897],[-63.684,-289.804],[-65.364,-289.422],[-67.22,-289.888],[-68.467,-291.22],[-68.91,-293.274],[-68.646,-294.902],[-67.898,-296.12],[-66.78,-296.879],[-65.397,-297.139],[-64.208,-296.952],[-63.233,-296.431],[-62.532,-295.628],[-62.184,-294.609]],"c":true},"ix":2},"nm":"Path 11"},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-70.917,-297.037],[-70.917,-289.525],[-72.288,-289.525],[-75.556,-294.253],[-75.611,-294.253],[-75.611,-289.525],[-77.2,-289.525],[-77.2,-297.037],[-75.806,-297.037],[-72.564,-292.313],[-72.498,-292.313],[-72.498,-297.037]],"c":true},"ix":2},"nm":"Path 12"},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-79.332,-297.037],[-79.332,-289.525],[-80.921,-289.525],[-80.921,-297.037]],"c":true},"ix":2},"nm":"Path 13"},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-91.197,-297.037],[-89.239,-297.037],[-87.17,-291.99],[-87.082,-291.99],[-85.014,-297.037],[-83.055,-297.037],[-83.055,-289.525],[-84.596,-289.525],[-84.596,-294.414],[-84.658,-294.414],[-86.602,-289.562],[-87.651,-289.562],[-89.595,-294.433],[-89.657,-294.433],[-89.657,-289.525],[-91.197,-289.525]],"c":true},"ix":2},"nm":"Path 14"},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0.531],[0.159,0.364],[0.287,0.188],[0.383,0],[0.286,-0.188],[0.159,-0.365],[0,-0.53],[-0.156,-0.364],[-0.286,-0.188],[-0.384,0],[-0.286,0.189],[-0.156,0.365]],"o":[[0,-0.53],[-0.156,-0.365],[-0.286,-0.188],[-0.384,0],[-0.286,0.188],[-0.156,0.364],[0,0.531],[0.159,0.365],[0.286,0.189],[0.383,0],[0.287,-0.188],[0.159,-0.364]],"v":[[-94.81,-293.281],[-95.049,-294.623],[-95.713,-295.452],[-96.717,-295.735],[-97.722,-295.452],[-98.39,-294.623],[-98.625,-293.281],[-98.39,-291.939],[-97.722,-291.11],[-96.717,-290.827],[-95.713,-291.11],[-95.049,-291.939]],"c":true},"ix":2},"nm":"Path 15"},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[0,-0.819],[0.311,-0.575],[0.533,-0.303],[0.662,0],[0.531,0.303],[0.308,0.575],[0,0.817],[-0.308,0.574],[-0.53,0.301],[-0.668,0],[-0.53,-0.303],[-0.308,-0.575]],"o":[[0,0.819],[-0.308,0.574],[-0.53,0.301],[-0.668,0],[-0.53,-0.303],[-0.308,-0.575],[0,-0.819],[0.308,-0.575],[0.531,-0.303],[0.662,0],[0.533,0.301],[0.311,0.574]],"v":[[-93.2,-293.281],[-93.666,-291.19],[-94.928,-289.874],[-96.717,-289.422],[-98.515,-289.877],[-99.773,-291.194],[-100.235,-293.281],[-99.773,-295.371],[-98.515,-296.685],[-96.717,-297.139],[-94.928,-296.685],[-93.666,-295.371]],"c":true},"ix":2},"nm":"Path 16"},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[-0.051,-0.435],[0,0],[0.09,0.162],[0.141,0.115],[0.186,0.061],[0.215,0],[0.289,-0.193],[0.159,-0.366],[0,-0.521],[-0.159,-0.365],[-0.289,-0.186],[-0.379,0],[-0.181,0.057],[-0.142,0.107],[-0.093,0.156],[-0.037,0.201],[0,0],[0.167,-0.32],[0.278,-0.252],[0.384,-0.147],[0.481,0],[0.529,0.303],[0.306,0.575],[0,0.817],[-0.308,0.574],[-0.528,0.301],[-0.661,0],[-0.372,-0.122],[-0.289,-0.235],[-0.181,-0.337]],"o":[[0,0],[-0.03,-0.208],[-0.09,-0.164],[-0.142,-0.115],[-0.183,-0.061],[-0.388,0],[-0.288,0.191],[-0.159,0.365],[0,0.536],[0.162,0.364],[0.289,0.186],[0.213,0],[0.183,-0.056],[0.141,-0.11],[0.095,-0.157],[0,0],[-0.041,0.345],[-0.163,0.318],[-0.277,0.249],[-0.381,0.144],[-0.67,0],[-0.525,-0.303],[-0.303,-0.575],[0,-0.819],[0.308,-0.575],[0.528,-0.303],[0.435,0],[0.374,0.122],[0.288,0.232],[0.183,0.338]],"v":[[-102.068,-294.407],[-103.674,-294.407],[-103.854,-294.961],[-104.202,-295.379],[-104.694,-295.643],[-105.292,-295.735],[-106.308,-295.445],[-106.979,-294.609],[-107.217,-293.281],[-106.979,-291.931],[-106.304,-291.106],[-105.303,-290.827],[-104.712,-290.912],[-104.224,-291.157],[-103.872,-291.557],[-103.674,-292.093],[-102.068,-292.085],[-102.38,-291.088],[-103.043,-290.233],[-104.034,-289.639],[-105.328,-289.422],[-107.126,-289.877],[-108.373,-291.194],[-108.827,-293.281],[-108.365,-295.371],[-107.111,-296.685],[-105.328,-297.139],[-104.118,-296.956],[-103.124,-296.42],[-102.42,-295.566]],"c":true},"ix":2},"nm":"Path 17"},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-110.834,-297.037],[-110.834,-289.525],[-112.205,-289.525],[-115.473,-294.253],[-115.528,-294.253],[-115.528,-289.525],[-117.116,-289.525],[-117.116,-297.037],[-115.723,-297.037],[-112.481,-292.313],[-112.414,-292.313],[-112.414,-297.037]],"c":true},"ix":2},"nm":"Path 18"},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-119.249,-297.037],[-119.249,-289.525],[-120.837,-289.525],[-120.837,-297.037]],"c":true},"ix":2},"nm":"Path 19"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1}],"ip":75,"op":107,"st":75},{"ind":102,"ty":4,"nm":"Layer 15","parent":117,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[100]},{"t":76,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[28.008,-277.396,0],"ix":2},"a":{"a":0,"k":[-62.534,-293.024,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-10.4,-295.727],[-10.4,-297.037],[-4.231,-297.037],[-4.231,-295.727],[-6.53,-295.727],[-6.53,-289.525],[-8.1,-289.525],[-8.1,-295.727]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0.223,0.164],[0.382,0],[0.178,-0.073],[0.095,-0.128],[0,-0.161],[-0.061,-0.1],[-0.11,-0.074],[-0.144,-0.054],[-0.164,-0.037],[0,0],[-0.274,-0.123],[-0.201,-0.179],[-0.11,-0.242],[-0.003,-0.313],[0.232,-0.338],[0.435,-0.186],[0.611,0],[0.449,0.186],[0.251,0.365],[0.012,0.541],[0,0],[-0.127,-0.168],[-0.215,-0.085],[-0.274,0],[-0.198,0.079],[-0.11,0.139],[0,0.18],[0.1,0.115],[0.191,0.08],[0.274,0.066],[0,0],[0.366,0.327],[-0.002,0.555],[-0.244,0.34],[-0.43,0.19],[-0.547,0],[-0.416,-0.191],[-0.233,-0.34],[-0.007,-0.448]],"o":[[-0.029,-0.296],[-0.222,-0.164],[-0.259,0],[-0.179,0.071],[-0.093,0.127],[-0.005,0.135],[0.064,0.101],[0.11,0.071],[0.144,0.051],[0,0],[0.327,0.074],[0.274,0.122],[0.2,0.178],[0.113,0.242],[-0.003,0.46],[-0.23,0.335],[-0.433,0.183],[-0.606,0],[-0.448,-0.185],[-0.25,-0.367],[0,0],[0.017,0.252],[0.13,0.167],[0.218,0.083],[0.269,0],[0.201,-0.078],[0.11,-0.139],[0,-0.169],[-0.098,-0.115],[-0.188,-0.081],[0,0],[-0.634,-0.154],[-0.367,-0.328],[-0.002,-0.455],[0.247,-0.34],[0.431,-0.191],[0.558,0],[0.418,0.19],[0.232,0.34],[0,0]],"v":[[-13.633,-294.876],[-14.011,-295.566],[-14.917,-295.812],[-15.573,-295.702],[-15.984,-295.404],[-16.123,-294.972],[-16.039,-294.62],[-15.779,-294.359],[-15.397,-294.172],[-14.935,-294.04],[-14.26,-293.879],[-13.358,-293.585],[-12.646,-293.134],[-12.181,-292.503],[-12.008,-291.671],[-12.36,-290.475],[-13.358,-289.694],[-14.924,-289.419],[-16.508,-289.698],[-17.557,-290.523],[-17.95,-291.884],[-16.413,-291.884],[-16.197,-291.253],[-15.68,-290.875],[-14.942,-290.75],[-14.242,-290.868],[-13.776,-291.194],[-13.611,-291.674],[-13.761,-292.1],[-14.194,-292.393],[-14.887,-292.613],[-15.705,-292.819],[-17.205,-293.541],[-17.752,-294.865],[-17.389,-296.057],[-16.373,-296.853],[-14.906,-297.139],[-13.446,-296.853],[-12.47,-296.057],[-12.111,-294.876]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-24.858,-289.525],[-24.858,-297.037],[-19.797,-297.037],[-19.797,-295.727],[-23.27,-295.727],[-23.27,-293.937],[-20.057,-293.937],[-20.057,-292.628],[-23.27,-292.628],[-23.27,-290.835],[-19.782,-290.835],[-19.782,-289.525]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.261,-0.411],[0.467,-0.23],[0.621,0],[0.467,0.227],[0.259,0.411],[0,0.548],[0,0],[0,0],[0,0],[-0.124,-0.223],[-0.23,-0.127],[-0.305,0],[-0.227,0.127],[-0.124,0.222],[0,0.286]],"o":[[0,0],[0,0],[0,0.548],[-0.26,0.411],[-0.467,0.227],[-0.623,0],[-0.467,-0.23],[-0.259,-0.411],[0,0],[0,0],[0,0],[0,0.286],[0.128,0.222],[0.23,0.127],[0.308,0],[0.23,-0.127],[0.127,-0.223],[0,0]],"v":[[-28.579,-297.037],[-26.991,-297.037],[-26.991,-292.159],[-27.383,-290.721],[-28.473,-289.76],[-30.105,-289.419],[-31.741,-289.76],[-32.83,-290.721],[-33.219,-292.159],[-33.219,-297.037],[-31.631,-297.037],[-31.631,-292.294],[-31.444,-291.531],[-30.908,-291.007],[-30.105,-290.816],[-29.302,-291.007],[-28.77,-291.531],[-28.579,-292.294]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0.531],[0.159,0.364],[0.286,0.188],[0.384,0],[0.286,-0.188],[0.159,-0.365],[0,-0.53],[-0.157,-0.364],[-0.286,-0.188],[-0.384,0],[-0.286,0.189],[-0.156,0.365]],"o":[[0,-0.53],[-0.156,-0.365],[-0.286,-0.188],[-0.384,0],[-0.286,0.188],[-0.157,0.364],[0,0.531],[0.159,0.365],[0.286,0.189],[0.384,0],[0.286,-0.188],[0.159,-0.364]],"v":[[-36.831,-293.281],[-37.07,-294.623],[-37.734,-295.452],[-38.739,-295.735],[-39.744,-295.452],[-40.411,-294.623],[-40.646,-293.281],[-40.411,-291.939],[-39.744,-291.11],[-38.739,-290.827],[-37.734,-291.11],[-37.07,-291.939]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,-0.819],[0.31,-0.575],[0.533,-0.303],[0.663,0],[0.531,0.303],[0.308,0.575],[0,0.817],[-0.308,0.574],[-0.53,0.301],[-0.667,0],[-0.53,-0.303],[-0.308,-0.575]],"o":[[0,0.819],[-0.308,0.574],[-0.53,0.301],[-0.667,0],[-0.53,-0.303],[-0.308,-0.575],[0,-0.819],[0.308,-0.575],[0.531,-0.303],[0.663,0],[0.533,0.301],[0.31,0.574]],"v":[[-35.221,-293.281],[-35.687,-291.19],[-36.949,-289.874],[-38.739,-289.422],[-40.536,-289.877],[-41.794,-291.194],[-42.256,-293.281],[-41.794,-295.371],[-40.536,-296.685],[-38.739,-297.139],[-36.949,-296.685],[-35.687,-295.371]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-39.289,-292.137],[-37.939,-292.137],[-37.261,-291.264],[-36.593,-290.486],[-35.335,-288.909],[-36.817,-288.909],[-37.682,-289.973],[-38.126,-290.603]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-49.274,-289.525],[-49.274,-297.037],[-44.213,-297.037],[-44.213,-295.727],[-47.686,-295.727],[-47.686,-293.937],[-44.473,-293.937],[-44.473,-292.628],[-47.686,-292.628],[-47.686,-290.835],[-44.198,-290.835],[-44.198,-289.525]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-52.822,-292.943],[-50.955,-289.525],[-52.708,-289.525],[-54.535,-292.943]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.401,-0.203],[-0.21,-0.369],[0,-0.496],[0.216,-0.359],[0.409,-0.191],[0.577,0],[0,0],[0,0],[0,0],[-0.201,0.083],[-0.098,0.166],[0,0.247],[0.1,0.171],[0.203,0.088],[0.305,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0.567,0],[0.403,0.2],[0.213,0.367],[0,0.499],[-0.215,0.357],[-0.406,0.191],[0,0],[0,0],[0,0],[0.303,0],[0.2,-0.083],[0.1,-0.166],[0,-0.249],[-0.098,-0.171],[-0.201,-0.09],[0,0],[0,0],[0,0]],"v":[[-56.878,-289.525],[-56.878,-297.037],[-53.915,-297.037],[-52.462,-296.732],[-51.542,-295.878],[-51.223,-294.583],[-51.546,-293.296],[-52.481,-292.474],[-53.955,-292.188],[-55.939,-292.188],[-55.939,-293.464],[-54.212,-293.464],[-53.456,-293.589],[-53.009,-293.963],[-52.859,-294.583],[-53.009,-295.214],[-53.46,-295.603],[-54.219,-295.738],[-55.29,-295.738],[-55.29,-289.525]],"c":true},"ix":2},"nm":"Path 10"},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0,0],[0.093,0.137],[0.134,0.096],[0.171,0.052],[0.205,0],[0.291,-0.19],[0.161,-0.364],[0,-0.523],[-0.159,-0.367],[-0.291,-0.193],[-0.397,0],[-0.254,0.127],[-0.135,0.234],[0,0.32],[0,0],[0,0],[0,0],[0,0],[0,0],[0.278,-0.474],[0.489,-0.257],[0.631,0],[0.533,0.31],[0.299,0.575],[0,0.793],[-0.176,0.477],[-0.32,0.333],[-0.425,0.174],[-0.496,0],[-0.367,-0.125],[-0.283,-0.225],[-0.181,-0.311],[-0.051,-0.371]],"o":[[-0.051,-0.178],[-0.093,-0.139],[-0.132,-0.098],[-0.169,-0.051],[-0.384,0],[-0.289,0.191],[-0.162,0.362],[0,0.523],[0.159,0.367],[0.291,0.19],[0.359,0],[0.257,-0.13],[0.137,-0.235],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0.66],[-0.279,0.472],[-0.489,0.254],[-0.704,0],[-0.533,-0.313],[-0.296,-0.577],[0,-0.608],[0.178,-0.479],[0.32,-0.332],[0.426,-0.174],[0.426,0],[0.366,0.122],[0.286,0.225],[0.181,0.308],[0,0]],"v":[[-63.798,-294.609],[-64.014,-295.082],[-64.355,-295.434],[-64.81,-295.658],[-65.371,-295.735],[-66.383,-295.449],[-67.058,-294.616],[-67.3,-293.288],[-67.062,-291.953],[-66.387,-291.113],[-65.356,-290.827],[-64.436,-291.018],[-63.849,-291.564],[-63.644,-292.397],[-63.321,-292.349],[-65.257,-292.349],[-65.257,-293.545],[-62.114,-293.545],[-62.114,-292.599],[-62.532,-290.897],[-63.684,-289.804],[-65.364,-289.422],[-67.22,-289.888],[-68.467,-291.22],[-68.91,-293.274],[-68.646,-294.902],[-67.898,-296.12],[-66.78,-296.879],[-65.397,-297.139],[-64.208,-296.952],[-63.233,-296.431],[-62.532,-295.628],[-62.184,-294.609]],"c":true},"ix":2},"nm":"Path 11"},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-70.917,-297.037],[-70.917,-289.525],[-72.288,-289.525],[-75.556,-294.253],[-75.611,-294.253],[-75.611,-289.525],[-77.2,-289.525],[-77.2,-297.037],[-75.806,-297.037],[-72.564,-292.313],[-72.498,-292.313],[-72.498,-297.037]],"c":true},"ix":2},"nm":"Path 12"},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-79.332,-297.037],[-79.332,-289.525],[-80.921,-289.525],[-80.921,-297.037]],"c":true},"ix":2},"nm":"Path 13"},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-91.197,-297.037],[-89.239,-297.037],[-87.17,-291.99],[-87.082,-291.99],[-85.014,-297.037],[-83.055,-297.037],[-83.055,-289.525],[-84.596,-289.525],[-84.596,-294.414],[-84.658,-294.414],[-86.602,-289.562],[-87.651,-289.562],[-89.595,-294.433],[-89.657,-294.433],[-89.657,-289.525],[-91.197,-289.525]],"c":true},"ix":2},"nm":"Path 14"},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0.531],[0.159,0.364],[0.287,0.188],[0.383,0],[0.286,-0.188],[0.159,-0.365],[0,-0.53],[-0.156,-0.364],[-0.286,-0.188],[-0.384,0],[-0.286,0.189],[-0.156,0.365]],"o":[[0,-0.53],[-0.156,-0.365],[-0.286,-0.188],[-0.384,0],[-0.286,0.188],[-0.156,0.364],[0,0.531],[0.159,0.365],[0.286,0.189],[0.383,0],[0.287,-0.188],[0.159,-0.364]],"v":[[-94.81,-293.281],[-95.049,-294.623],[-95.713,-295.452],[-96.717,-295.735],[-97.722,-295.452],[-98.39,-294.623],[-98.625,-293.281],[-98.39,-291.939],[-97.722,-291.11],[-96.717,-290.827],[-95.713,-291.11],[-95.049,-291.939]],"c":true},"ix":2},"nm":"Path 15"},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[0,-0.819],[0.311,-0.575],[0.533,-0.303],[0.662,0],[0.531,0.303],[0.308,0.575],[0,0.817],[-0.308,0.574],[-0.53,0.301],[-0.668,0],[-0.53,-0.303],[-0.308,-0.575]],"o":[[0,0.819],[-0.308,0.574],[-0.53,0.301],[-0.668,0],[-0.53,-0.303],[-0.308,-0.575],[0,-0.819],[0.308,-0.575],[0.531,-0.303],[0.662,0],[0.533,0.301],[0.311,0.574]],"v":[[-93.2,-293.281],[-93.666,-291.19],[-94.928,-289.874],[-96.717,-289.422],[-98.515,-289.877],[-99.773,-291.194],[-100.235,-293.281],[-99.773,-295.371],[-98.515,-296.685],[-96.717,-297.139],[-94.928,-296.685],[-93.666,-295.371]],"c":true},"ix":2},"nm":"Path 16"},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[-0.051,-0.435],[0,0],[0.09,0.162],[0.141,0.115],[0.186,0.061],[0.215,0],[0.289,-0.193],[0.159,-0.366],[0,-0.521],[-0.159,-0.365],[-0.289,-0.186],[-0.379,0],[-0.181,0.057],[-0.142,0.107],[-0.093,0.156],[-0.037,0.201],[0,0],[0.167,-0.32],[0.278,-0.252],[0.384,-0.147],[0.481,0],[0.529,0.303],[0.306,0.575],[0,0.817],[-0.308,0.574],[-0.528,0.301],[-0.661,0],[-0.372,-0.122],[-0.289,-0.235],[-0.181,-0.337]],"o":[[0,0],[-0.03,-0.208],[-0.09,-0.164],[-0.142,-0.115],[-0.183,-0.061],[-0.388,0],[-0.288,0.191],[-0.159,0.365],[0,0.536],[0.162,0.364],[0.289,0.186],[0.213,0],[0.183,-0.056],[0.141,-0.11],[0.095,-0.157],[0,0],[-0.041,0.345],[-0.163,0.318],[-0.277,0.249],[-0.381,0.144],[-0.67,0],[-0.525,-0.303],[-0.303,-0.575],[0,-0.819],[0.308,-0.575],[0.528,-0.303],[0.435,0],[0.374,0.122],[0.288,0.232],[0.183,0.338]],"v":[[-102.068,-294.407],[-103.674,-294.407],[-103.854,-294.961],[-104.202,-295.379],[-104.694,-295.643],[-105.292,-295.735],[-106.308,-295.445],[-106.979,-294.609],[-107.217,-293.281],[-106.979,-291.931],[-106.304,-291.106],[-105.303,-290.827],[-104.712,-290.912],[-104.224,-291.157],[-103.872,-291.557],[-103.674,-292.093],[-102.068,-292.085],[-102.38,-291.088],[-103.043,-290.233],[-104.034,-289.639],[-105.328,-289.422],[-107.126,-289.877],[-108.373,-291.194],[-108.827,-293.281],[-108.365,-295.371],[-107.111,-296.685],[-105.328,-297.139],[-104.118,-296.956],[-103.124,-296.42],[-102.42,-295.566]],"c":true},"ix":2},"nm":"Path 17"},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-110.834,-297.037],[-110.834,-289.525],[-112.205,-289.525],[-115.473,-294.253],[-115.528,-294.253],[-115.528,-289.525],[-117.116,-289.525],[-117.116,-297.037],[-115.723,-297.037],[-112.481,-292.313],[-112.414,-292.313],[-112.414,-297.037]],"c":true},"ix":2},"nm":"Path 18"},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-119.249,-297.037],[-119.249,-289.525],[-120.837,-289.525],[-120.837,-297.037]],"c":true},"ix":2},"nm":"Path 19"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1}],"ip":41,"op":80,"st":45},{"ind":103,"ty":4,"nm":"Layer 3","parent":118,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[100]},{"t":42,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[28.008,-277.396,0],"ix":2},"a":{"a":0,"k":[-62.534,-293.024,0],"ix":1},"s":{"a":0,"k":[170,170,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-10.4,-295.727],[-10.4,-297.037],[-4.231,-297.037],[-4.231,-295.727],[-6.53,-295.727],[-6.53,-289.525],[-8.1,-289.525],[-8.1,-295.727]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0.223,0.164],[0.382,0],[0.178,-0.073],[0.095,-0.128],[0,-0.161],[-0.061,-0.1],[-0.11,-0.074],[-0.144,-0.054],[-0.164,-0.037],[0,0],[-0.274,-0.123],[-0.201,-0.179],[-0.11,-0.242],[-0.003,-0.313],[0.232,-0.338],[0.435,-0.186],[0.611,0],[0.449,0.186],[0.251,0.365],[0.012,0.541],[0,0],[-0.127,-0.168],[-0.215,-0.085],[-0.274,0],[-0.198,0.079],[-0.11,0.139],[0,0.18],[0.1,0.115],[0.191,0.08],[0.274,0.066],[0,0],[0.366,0.327],[-0.002,0.555],[-0.244,0.34],[-0.43,0.19],[-0.547,0],[-0.416,-0.191],[-0.233,-0.34],[-0.007,-0.448]],"o":[[-0.029,-0.296],[-0.222,-0.164],[-0.259,0],[-0.179,0.071],[-0.093,0.127],[-0.005,0.135],[0.064,0.101],[0.11,0.071],[0.144,0.051],[0,0],[0.327,0.074],[0.274,0.122],[0.2,0.178],[0.113,0.242],[-0.003,0.46],[-0.23,0.335],[-0.433,0.183],[-0.606,0],[-0.448,-0.185],[-0.25,-0.367],[0,0],[0.017,0.252],[0.13,0.167],[0.218,0.083],[0.269,0],[0.201,-0.078],[0.11,-0.139],[0,-0.169],[-0.098,-0.115],[-0.188,-0.081],[0,0],[-0.634,-0.154],[-0.367,-0.328],[-0.002,-0.455],[0.247,-0.34],[0.431,-0.191],[0.558,0],[0.418,0.19],[0.232,0.34],[0,0]],"v":[[-13.633,-294.876],[-14.011,-295.566],[-14.917,-295.812],[-15.573,-295.702],[-15.984,-295.404],[-16.123,-294.972],[-16.039,-294.62],[-15.779,-294.359],[-15.397,-294.172],[-14.935,-294.04],[-14.26,-293.879],[-13.358,-293.585],[-12.646,-293.134],[-12.181,-292.503],[-12.008,-291.671],[-12.36,-290.475],[-13.358,-289.694],[-14.924,-289.419],[-16.508,-289.698],[-17.557,-290.523],[-17.95,-291.884],[-16.413,-291.884],[-16.197,-291.253],[-15.68,-290.875],[-14.942,-290.75],[-14.242,-290.868],[-13.776,-291.194],[-13.611,-291.674],[-13.761,-292.1],[-14.194,-292.393],[-14.887,-292.613],[-15.705,-292.819],[-17.205,-293.541],[-17.752,-294.865],[-17.389,-296.057],[-16.373,-296.853],[-14.906,-297.139],[-13.446,-296.853],[-12.47,-296.057],[-12.111,-294.876]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-24.858,-289.525],[-24.858,-297.037],[-19.797,-297.037],[-19.797,-295.727],[-23.27,-295.727],[-23.27,-293.937],[-20.057,-293.937],[-20.057,-292.628],[-23.27,-292.628],[-23.27,-290.835],[-19.782,-290.835],[-19.782,-289.525]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.261,-0.411],[0.467,-0.23],[0.621,0],[0.467,0.227],[0.259,0.411],[0,0.548],[0,0],[0,0],[0,0],[-0.124,-0.223],[-0.23,-0.127],[-0.305,0],[-0.227,0.127],[-0.124,0.222],[0,0.286]],"o":[[0,0],[0,0],[0,0.548],[-0.26,0.411],[-0.467,0.227],[-0.623,0],[-0.467,-0.23],[-0.259,-0.411],[0,0],[0,0],[0,0],[0,0.286],[0.128,0.222],[0.23,0.127],[0.308,0],[0.23,-0.127],[0.127,-0.223],[0,0]],"v":[[-28.579,-297.037],[-26.991,-297.037],[-26.991,-292.159],[-27.383,-290.721],[-28.473,-289.76],[-30.105,-289.419],[-31.741,-289.76],[-32.83,-290.721],[-33.219,-292.159],[-33.219,-297.037],[-31.631,-297.037],[-31.631,-292.294],[-31.444,-291.531],[-30.908,-291.007],[-30.105,-290.816],[-29.302,-291.007],[-28.77,-291.531],[-28.579,-292.294]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0.531],[0.159,0.364],[0.286,0.188],[0.384,0],[0.286,-0.188],[0.159,-0.365],[0,-0.53],[-0.157,-0.364],[-0.286,-0.188],[-0.384,0],[-0.286,0.189],[-0.156,0.365]],"o":[[0,-0.53],[-0.156,-0.365],[-0.286,-0.188],[-0.384,0],[-0.286,0.188],[-0.157,0.364],[0,0.531],[0.159,0.365],[0.286,0.189],[0.384,0],[0.286,-0.188],[0.159,-0.364]],"v":[[-36.831,-293.281],[-37.07,-294.623],[-37.734,-295.452],[-38.739,-295.735],[-39.744,-295.452],[-40.411,-294.623],[-40.646,-293.281],[-40.411,-291.939],[-39.744,-291.11],[-38.739,-290.827],[-37.734,-291.11],[-37.07,-291.939]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,-0.819],[0.31,-0.575],[0.533,-0.303],[0.663,0],[0.531,0.303],[0.308,0.575],[0,0.817],[-0.308,0.574],[-0.53,0.301],[-0.667,0],[-0.53,-0.303],[-0.308,-0.575]],"o":[[0,0.819],[-0.308,0.574],[-0.53,0.301],[-0.667,0],[-0.53,-0.303],[-0.308,-0.575],[0,-0.819],[0.308,-0.575],[0.531,-0.303],[0.663,0],[0.533,0.301],[0.31,0.574]],"v":[[-35.221,-293.281],[-35.687,-291.19],[-36.949,-289.874],[-38.739,-289.422],[-40.536,-289.877],[-41.794,-291.194],[-42.256,-293.281],[-41.794,-295.371],[-40.536,-296.685],[-38.739,-297.139],[-36.949,-296.685],[-35.687,-295.371]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-39.289,-292.137],[-37.939,-292.137],[-37.261,-291.264],[-36.593,-290.486],[-35.335,-288.909],[-36.817,-288.909],[-37.682,-289.973],[-38.126,-290.603]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-49.274,-289.525],[-49.274,-297.037],[-44.213,-297.037],[-44.213,-295.727],[-47.686,-295.727],[-47.686,-293.937],[-44.473,-293.937],[-44.473,-292.628],[-47.686,-292.628],[-47.686,-290.835],[-44.198,-290.835],[-44.198,-289.525]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-52.822,-292.943],[-50.955,-289.525],[-52.708,-289.525],[-54.535,-292.943]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.401,-0.203],[-0.21,-0.369],[0,-0.496],[0.216,-0.359],[0.409,-0.191],[0.577,0],[0,0],[0,0],[0,0],[-0.201,0.083],[-0.098,0.166],[0,0.247],[0.1,0.171],[0.203,0.088],[0.305,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0.567,0],[0.403,0.2],[0.213,0.367],[0,0.499],[-0.215,0.357],[-0.406,0.191],[0,0],[0,0],[0,0],[0.303,0],[0.2,-0.083],[0.1,-0.166],[0,-0.249],[-0.098,-0.171],[-0.201,-0.09],[0,0],[0,0],[0,0]],"v":[[-56.878,-289.525],[-56.878,-297.037],[-53.915,-297.037],[-52.462,-296.732],[-51.542,-295.878],[-51.223,-294.583],[-51.546,-293.296],[-52.481,-292.474],[-53.955,-292.188],[-55.939,-292.188],[-55.939,-293.464],[-54.212,-293.464],[-53.456,-293.589],[-53.009,-293.963],[-52.859,-294.583],[-53.009,-295.214],[-53.46,-295.603],[-54.219,-295.738],[-55.29,-295.738],[-55.29,-289.525]],"c":true},"ix":2},"nm":"Path 10"},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0,0],[0.093,0.137],[0.134,0.096],[0.171,0.052],[0.205,0],[0.291,-0.19],[0.161,-0.364],[0,-0.523],[-0.159,-0.367],[-0.291,-0.193],[-0.397,0],[-0.254,0.127],[-0.135,0.234],[0,0.32],[0,0],[0,0],[0,0],[0,0],[0,0],[0.278,-0.474],[0.489,-0.257],[0.631,0],[0.533,0.31],[0.299,0.575],[0,0.793],[-0.176,0.477],[-0.32,0.333],[-0.425,0.174],[-0.496,0],[-0.367,-0.125],[-0.283,-0.225],[-0.181,-0.311],[-0.051,-0.371]],"o":[[-0.051,-0.178],[-0.093,-0.139],[-0.132,-0.098],[-0.169,-0.051],[-0.384,0],[-0.289,0.191],[-0.162,0.362],[0,0.523],[0.159,0.367],[0.291,0.19],[0.359,0],[0.257,-0.13],[0.137,-0.235],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0.66],[-0.279,0.472],[-0.489,0.254],[-0.704,0],[-0.533,-0.313],[-0.296,-0.577],[0,-0.608],[0.178,-0.479],[0.32,-0.332],[0.426,-0.174],[0.426,0],[0.366,0.122],[0.286,0.225],[0.181,0.308],[0,0]],"v":[[-63.798,-294.609],[-64.014,-295.082],[-64.355,-295.434],[-64.81,-295.658],[-65.371,-295.735],[-66.383,-295.449],[-67.058,-294.616],[-67.3,-293.288],[-67.062,-291.953],[-66.387,-291.113],[-65.356,-290.827],[-64.436,-291.018],[-63.849,-291.564],[-63.644,-292.397],[-63.321,-292.349],[-65.257,-292.349],[-65.257,-293.545],[-62.114,-293.545],[-62.114,-292.599],[-62.532,-290.897],[-63.684,-289.804],[-65.364,-289.422],[-67.22,-289.888],[-68.467,-291.22],[-68.91,-293.274],[-68.646,-294.902],[-67.898,-296.12],[-66.78,-296.879],[-65.397,-297.139],[-64.208,-296.952],[-63.233,-296.431],[-62.532,-295.628],[-62.184,-294.609]],"c":true},"ix":2},"nm":"Path 11"},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-70.917,-297.037],[-70.917,-289.525],[-72.288,-289.525],[-75.556,-294.253],[-75.611,-294.253],[-75.611,-289.525],[-77.2,-289.525],[-77.2,-297.037],[-75.806,-297.037],[-72.564,-292.313],[-72.498,-292.313],[-72.498,-297.037]],"c":true},"ix":2},"nm":"Path 12"},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-79.332,-297.037],[-79.332,-289.525],[-80.921,-289.525],[-80.921,-297.037]],"c":true},"ix":2},"nm":"Path 13"},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-91.197,-297.037],[-89.239,-297.037],[-87.17,-291.99],[-87.082,-291.99],[-85.014,-297.037],[-83.055,-297.037],[-83.055,-289.525],[-84.596,-289.525],[-84.596,-294.414],[-84.658,-294.414],[-86.602,-289.562],[-87.651,-289.562],[-89.595,-294.433],[-89.657,-294.433],[-89.657,-289.525],[-91.197,-289.525]],"c":true},"ix":2},"nm":"Path 14"},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0.531],[0.159,0.364],[0.287,0.188],[0.383,0],[0.286,-0.188],[0.159,-0.365],[0,-0.53],[-0.156,-0.364],[-0.286,-0.188],[-0.384,0],[-0.286,0.189],[-0.156,0.365]],"o":[[0,-0.53],[-0.156,-0.365],[-0.286,-0.188],[-0.384,0],[-0.286,0.188],[-0.156,0.364],[0,0.531],[0.159,0.365],[0.286,0.189],[0.383,0],[0.287,-0.188],[0.159,-0.364]],"v":[[-94.81,-293.281],[-95.049,-294.623],[-95.713,-295.452],[-96.717,-295.735],[-97.722,-295.452],[-98.39,-294.623],[-98.625,-293.281],[-98.39,-291.939],[-97.722,-291.11],[-96.717,-290.827],[-95.713,-291.11],[-95.049,-291.939]],"c":true},"ix":2},"nm":"Path 15"},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[0,-0.819],[0.311,-0.575],[0.533,-0.303],[0.662,0],[0.531,0.303],[0.308,0.575],[0,0.817],[-0.308,0.574],[-0.53,0.301],[-0.668,0],[-0.53,-0.303],[-0.308,-0.575]],"o":[[0,0.819],[-0.308,0.574],[-0.53,0.301],[-0.668,0],[-0.53,-0.303],[-0.308,-0.575],[0,-0.819],[0.308,-0.575],[0.531,-0.303],[0.662,0],[0.533,0.301],[0.311,0.574]],"v":[[-93.2,-293.281],[-93.666,-291.19],[-94.928,-289.874],[-96.717,-289.422],[-98.515,-289.877],[-99.773,-291.194],[-100.235,-293.281],[-99.773,-295.371],[-98.515,-296.685],[-96.717,-297.139],[-94.928,-296.685],[-93.666,-295.371]],"c":true},"ix":2},"nm":"Path 16"},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[-0.051,-0.435],[0,0],[0.09,0.162],[0.141,0.115],[0.186,0.061],[0.215,0],[0.289,-0.193],[0.159,-0.366],[0,-0.521],[-0.159,-0.365],[-0.289,-0.186],[-0.379,0],[-0.181,0.057],[-0.142,0.107],[-0.093,0.156],[-0.037,0.201],[0,0],[0.167,-0.32],[0.278,-0.252],[0.384,-0.147],[0.481,0],[0.529,0.303],[0.306,0.575],[0,0.817],[-0.308,0.574],[-0.528,0.301],[-0.661,0],[-0.372,-0.122],[-0.289,-0.235],[-0.181,-0.337]],"o":[[0,0],[-0.03,-0.208],[-0.09,-0.164],[-0.142,-0.115],[-0.183,-0.061],[-0.388,0],[-0.288,0.191],[-0.159,0.365],[0,0.536],[0.162,0.364],[0.289,0.186],[0.213,0],[0.183,-0.056],[0.141,-0.11],[0.095,-0.157],[0,0],[-0.041,0.345],[-0.163,0.318],[-0.277,0.249],[-0.381,0.144],[-0.67,0],[-0.525,-0.303],[-0.303,-0.575],[0,-0.819],[0.308,-0.575],[0.528,-0.303],[0.435,0],[0.374,0.122],[0.288,0.232],[0.183,0.338]],"v":[[-102.068,-294.407],[-103.674,-294.407],[-103.854,-294.961],[-104.202,-295.379],[-104.694,-295.643],[-105.292,-295.735],[-106.308,-295.445],[-106.979,-294.609],[-107.217,-293.281],[-106.979,-291.931],[-106.304,-291.106],[-105.303,-290.827],[-104.712,-290.912],[-104.224,-291.157],[-103.872,-291.557],[-103.674,-292.093],[-102.068,-292.085],[-102.38,-291.088],[-103.043,-290.233],[-104.034,-289.639],[-105.328,-289.422],[-107.126,-289.877],[-108.373,-291.194],[-108.827,-293.281],[-108.365,-295.371],[-107.111,-296.685],[-105.328,-297.139],[-104.118,-296.956],[-103.124,-296.42],[-102.42,-295.566]],"c":true},"ix":2},"nm":"Path 17"},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-110.834,-297.037],[-110.834,-289.525],[-112.205,-289.525],[-115.473,-294.253],[-115.528,-294.253],[-115.528,-289.525],[-117.116,-289.525],[-117.116,-297.037],[-115.723,-297.037],[-112.481,-292.313],[-112.414,-292.313],[-112.414,-297.037]],"c":true},"ix":2},"nm":"Path 18"},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-119.249,-297.037],[-119.249,-289.525],[-120.837,-289.525],[-120.837,-297.037]],"c":true},"ix":2},"nm":"Path 19"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1}],"ip":5,"op":50,"st":5},{"ind":104,"ty":5,"nm":"webhook 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":211,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":239,"s":[100]},{"t":246,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.008},"t":205,"s":[322.21,253.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":225,"s":[322.21,207.065,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.985},"o":{"x":0.81,"y":0.015},"t":228,"s":[322.21,207.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"t":255,"s":[322.21,161.065,0]}],"ix":2},"a":{"a":0,"k":[-0.29,-6.435,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":18.1,"f":"NeueHaasDisplay-Bold","t":"WEBHOOK","j":2,"tr":0,"lh":21.72,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":209,"op":243,"st":209},{"ind":105,"ty":5,"nm":"webhook","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":174,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":178,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":204,"s":[100]},{"t":211,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.008},"t":170,"s":[322.21,253.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":190,"s":[322.21,207.065,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.985},"o":{"x":0.81,"y":0.015},"t":193,"s":[322.21,207.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"t":220,"s":[322.21,161.065,0]}],"ix":2},"a":{"a":0,"k":[-0.29,-6.435,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":18.1,"f":"NeueHaasDisplay-Bold","t":"WEBHOOK","j":2,"tr":0,"lh":21.72,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":174,"op":208,"st":174},{"ind":106,"ty":5,"nm":"tx hash 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":200,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":209,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":229,"s":[100]},{"t":235,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.01},"t":196,"s":[342.71,751.065,0],"to":[0,-6.667,0],"ti":[0,6.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":217,"s":[342.71,711.065,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.993},"o":{"x":0.81,"y":0.007},"t":227,"s":[342.71,711.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"t":242,"s":[342.71,665.065,0]}],"ix":2},"a":{"a":0,"k":[-0.29,-6.435,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":18.1,"f":"NeueHaasDisplay-Bold","t":"TX HASH","j":2,"tr":0,"lh":21.72,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":200,"op":235,"st":200},{"ind":107,"ty":5,"nm":"tx hash 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":164,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":193,"s":[100]},{"t":199,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.01},"t":160,"s":[342.71,751.065,0],"to":[0,-6.667,0],"ti":[0,6.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":181,"s":[342.71,711.065,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.993},"o":{"x":0.81,"y":0.007},"t":191,"s":[342.71,711.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"t":206,"s":[342.71,665.065,0]}],"ix":2},"a":{"a":0,"k":[-0.29,-6.435,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":18.1,"f":"NeueHaasDisplay-Bold","t":"TX HASH","j":2,"tr":0,"lh":21.72,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":164,"op":199,"st":164},{"ind":108,"ty":5,"nm":"tx hash","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":156,"s":[100]},{"t":162,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.01},"t":123,"s":[342.71,751.065,0],"to":[0,-6.667,0],"ti":[0,6.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.25,"y":0.25},"t":144,"s":[342.71,711.065,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.993},"o":{"x":0.81,"y":0.007},"t":154,"s":[342.71,711.065,0],"to":[0,-7.667,0],"ti":[0,7.667,0]},{"t":169,"s":[342.71,665.065,0]}],"ix":2},"a":{"a":0,"k":[-0.29,-6.435,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":18.1,"f":"NeueHaasDisplay-Bold","t":"TX HASH","j":2,"tr":0,"lh":21.72,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":127,"op":162,"st":127},{"ind":109,"ty":4,"nm":"Shape Layer 96","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":201,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":205,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":233,"s":[100]},{"t":237,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.005},"t":196,"s":[287.5,751.98,0],"to":[0,-6.833,0],"ti":[0,11.833,0]},{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":219,"s":[287.5,710.98,0],"to":[0,-11.833,0],"ti":[0,5,0]},{"t":245,"s":[287.5,680.98,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,-100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":201,"op":240,"st":201},{"ind":110,"ty":4,"nm":"Shape Layer 95","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":164,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":196,"s":[100]},{"t":200,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.005},"t":159,"s":[287.5,751.98,0],"to":[0,-6.833,0],"ti":[0,11.833,0]},{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":182,"s":[287.5,710.98,0],"to":[0,-11.833,0],"ti":[0,5,0]},{"t":208,"s":[287.5,680.98,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,-100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":164,"op":203,"st":164},{"ind":111,"ty":4,"nm":"Shape Layer 94","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":159,"s":[100]},{"t":163,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.005},"t":122,"s":[287.5,751.98,0],"to":[0,-6.833,0],"ti":[0,11.833,0]},{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":145,"s":[287.5,710.98,0],"to":[0,-11.833,0],"ti":[0,5,0]},{"t":171,"s":[287.5,680.98,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,-100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":127,"op":166,"st":127},{"ind":112,"ty":4,"nm":"Shape Layer 98","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":211,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":243,"s":[100]},{"t":247,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.009},"t":209,"s":[255.5,230.73,0],"to":[0,-2.5,0],"ti":[0,7.5,0]},{"i":{"x":0.46,"y":0.978},"o":{"x":0.81,"y":0.022},"t":229,"s":[255.5,215.73,0],"to":[0,-7.5,0],"ti":[0,5,0]},{"t":255,"s":[255.5,185.73,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,-100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":211,"op":250,"st":211},{"ind":113,"ty":4,"nm":"Shape Layer 97","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":173,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":205,"s":[100]},{"t":209,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.009},"t":171,"s":[255.5,230.73,0],"to":[0,-2.5,0],"ti":[0,7.5,0]},{"i":{"x":0.46,"y":0.978},"o":{"x":0.81,"y":0.022},"t":191,"s":[255.5,215.73,0],"to":[0,-7.5,0],"ti":[0,5,0]},{"t":217,"s":[255.5,185.73,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,-100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":173,"op":212,"st":173},{"ind":114,"ty":4,"nm":"Shape Layer 93","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"t":104,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.011},"t":75,"s":[287.5,680.5,0],"to":[0,5,0],"ti":[0,-10,0]},{"i":{"x":0.46,"y":0.993},"o":{"x":0.81,"y":0.007},"t":94,"s":[287.5,710.5,0],"to":[0,10,0],"ti":[0,-5,0]},{"t":111,"s":[287.5,740.5,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":79,"op":105,"st":79},{"ind":115,"ty":4,"nm":"Shape Layer 92","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[100]},{"t":78,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.012},"t":38,"s":[287.5,680.5,0],"to":[0,5,0],"ti":[0,-10,0]},{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":60,"s":[287.5,710.5,0],"to":[0,10,0],"ti":[0,-5,0]},{"t":85,"s":[287.5,740.5,0]}],"ix":2},"a":{"a":0,"k":[-90,-268.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":42,"op":81,"st":42},{"ind":116,"ty":4,"nm":"Shape Layer 91","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[100]},{"t":99,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.007},"t":74,"s":[345,454,0],"to":[0,5.167,0],"ti":[0,-11.833,0]},{"i":{"x":0.46,"y":0.991},"o":{"x":0.81,"y":0.009},"t":88,"s":[345,485,0],"to":[0,11.833,0],"ti":[0,-6.667,0]},{"t":104,"s":[345,525,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":76,"op":100,"st":76},{"ind":117,"ty":4,"nm":"Shape Layer 90","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[100]},{"t":77,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.012},"t":37,"s":[345,454,0],"to":[0,5.167,0],"ti":[0,-11.833,0]},{"i":{"x":0.46,"y":0.985},"o":{"x":0.81,"y":0.015},"t":60,"s":[345,485,0],"to":[0,11.833,0],"ti":[0,-6.667,0]},{"t":87,"s":[345,525,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":41,"op":80,"st":41},{"ind":118,"ty":4,"nm":"Shape Layer 89","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[100]},{"t":41,"s":[0]}],"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.012},"t":1,"s":[345,454,0],"to":[0,5.167,0],"ti":[0,-11.833,0]},{"i":{"x":0.46,"y":0.985},"o":{"x":0.81,"y":0.015},"t":24,"s":[345,485,0],"to":[0,11.833,0],"ti":[0,-6.667,0]},{"t":51,"s":[345,525,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.75,-235.375],[-90.125,-225.875],[-81.25,-234.75]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":0,"k":[0.647,0.431,0.863,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":2,"lj":2,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-311],[-89.5,-225.5]],"c":false},"ix":2},"nm":"Path 1"},{"ty":"gs","o":{"a":0,"k":100,"ix":9},"w":{"a":0,"k":2,"ix":10},"g":{"p":3,"k":{"a":0,"k":[0,0.647,0.431,0.863,0.355,0.647,0.431,0.863,0.867,0.647,0.431,0.863,0,1,0.432,0.5,0.865,0],"ix":8}},"s":{"a":0,"k":[-89.629,-234.414],"ix":4},"e":{"a":0,"k":[-88.432,-329.266],"ix":5},"t":1,"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":13},"nm":"Gradient Stroke 1"},{"ty":"tr","p":{"a":0,"k":[-0.25,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","cix":2,"ix":2}],"ip":5,"op":44,"st":5},{"ind":119,"ty":4,"nm":"Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[342.812,78.335,0],"ix":2},"a":{"a":0,"k":[-80.296,-369.165,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.018,0.018,0]},"t":0,"s":[163,163,100]},{"i":{"x":[0.46,0.46,0.46],"y":[0.978,0.978,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.022,0.022,0]},"t":9,"s":[170,170,100]},{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":22,"s":[163,163,100]},{"i":{"x":[0.28,0.28,0.28],"y":[0.99,0.99,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.01,0.01,0]},"t":178,"s":[163,163,100]},{"i":{"x":[0.46,0.46,0.46],"y":[0.978,0.978,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.022,0.022,0]},"t":190,"s":[170,170,100]},{"t":203,"s":[163,163,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.32,0.166],[-0.161,0.352],[0,0.56],[0.164,0.352],[0.32,0.166],[0.47,0],[0,0]],"o":[[0,0],[0.469,0],[0.323,-0.169],[0.164,-0.354],[0,-0.555],[-0.161,-0.352],[-0.32,-0.166],[0,0],[0,0]],"v":[[-57.83,-352.134],[-56.821,-352.134],[-55.637,-352.383],[-54.911,-353.165],[-54.665,-354.536],[-54.911,-355.897],[-55.633,-356.674],[-56.818,-356.924],[-57.83,-356.924]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.762,0],[0,0],[0,0],[0,0],[-0.546,-0.301],[-0.294,-0.56],[0,-0.78],[0.296,-0.562],[0.551,-0.301]],"o":[[0,0],[0,0],[0,0],[0.755,0],[0.545,0.298],[0.296,0.56],[0,0.783],[-0.294,0.562],[-0.547,0.301]],"v":[[-56.755,-350.773],[-59.418,-350.773],[-59.418,-358.285],[-56.733,-358.285],[-54.782,-357.833],[-53.524,-356.546],[-53.08,-354.536],[-53.524,-352.519],[-54.79,-351.224]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-61.557,-358.285],[-61.557,-350.773],[-62.928,-350.773],[-66.196,-355.501],[-66.251,-355.501],[-66.251,-350.773],[-67.839,-350.773],[-67.839,-358.285],[-66.446,-358.285],[-63.203,-353.561],[-63.137,-353.561],[-63.137,-358.285]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-74.99,-350.773],[-74.99,-358.285],[-69.928,-358.285],[-69.928,-356.975],[-73.401,-356.975],[-73.401,-355.186],[-70.189,-355.186],[-70.189,-353.876],[-73.401,-353.876],[-73.401,-352.083],[-69.914,-352.083],[-69.914,-350.773]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-82.937,-350.773],[-82.937,-358.285],[-81.349,-358.285],[-81.349,-354.973],[-81.25,-354.973],[-78.546,-358.285],[-76.643,-358.285],[-79.43,-354.921],[-76.61,-350.773],[-78.51,-350.773],[-80.567,-353.861],[-81.349,-352.908],[-81.349,-350.773]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[-0.051,-0.435],[0,0],[0.091,0.161],[0.141,0.115],[0.186,0.061],[0.216,0],[0.289,-0.193],[0.159,-0.367],[0,-0.521],[-0.159,-0.364],[-0.288,-0.186],[-0.379,0],[-0.181,0.056],[-0.142,0.108],[-0.093,0.156],[-0.037,0.201],[0,0],[0.167,-0.32],[0.278,-0.252],[0.384,-0.147],[0.481,0],[0.528,0.303],[0.306,0.575],[0,0.817],[-0.308,0.575],[-0.528,0.301],[-0.661,0],[-0.372,-0.122],[-0.289,-0.235],[-0.181,-0.337]],"o":[[0,0],[-0.03,-0.208],[-0.09,-0.164],[-0.142,-0.115],[-0.183,-0.061],[-0.388,0],[-0.288,0.191],[-0.159,0.364],[0,0.535],[0.162,0.364],[0.289,0.186],[0.213,0],[0.183,-0.056],[0.141,-0.11],[0.095,-0.156],[0,0],[-0.041,0.345],[-0.163,0.318],[-0.277,0.249],[-0.381,0.144],[-0.67,0],[-0.526,-0.303],[-0.303,-0.575],[0,-0.819],[0.308,-0.575],[0.528,-0.303],[0.435,0],[0.374,0.122],[0.288,0.232],[0.184,0.337]],"v":[[-84.902,-355.655],[-86.508,-355.655],[-86.688,-356.209],[-87.036,-356.627],[-87.528,-356.891],[-88.126,-356.983],[-89.142,-356.693],[-89.813,-355.857],[-90.051,-354.529],[-89.813,-353.179],[-89.138,-352.354],[-88.137,-352.075],[-87.546,-352.16],[-87.058,-352.405],[-86.706,-352.805],[-86.508,-353.341],[-84.902,-353.333],[-85.214,-352.336],[-85.877,-351.481],[-86.868,-350.887],[-88.162,-350.671],[-89.959,-351.125],[-91.207,-352.442],[-91.661,-354.529],[-91.199,-356.62],[-89.945,-357.933],[-88.162,-358.387],[-86.952,-358.204],[-85.958,-357.669],[-85.254,-356.814]],"c":true},"ix":2},"nm":"Path 6"},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.54,-353.726],[-94.52,-353.726],[-94.52,-352.486],[-98.54,-352.486]],"c":true},"ix":2},"nm":"Path 7"},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-98.434,-350.773],[-100.136,-350.773],[-97.543,-358.285],[-95.496,-358.285],[-92.907,-350.773],[-94.608,-350.773],[-96.49,-356.568],[-96.549,-356.568]],"c":true},"ix":2},"nm":"Path 8"},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.169,0.076],[-0.098,0.142],[0,0.198],[0.193,0.166],[0.352,0],[0,0]],"o":[[0,0],[0.218,0],[0.171,-0.078],[0.101,-0.142],[0,-0.271],[-0.191,-0.166],[0,0],[0,0]],"v":[[-105.795,-355.142],[-104.618,-355.142],[-104.038,-355.255],[-103.635,-355.585],[-103.484,-356.095],[-103.774,-356.752],[-104.588,-357.001],[-105.795,-357.001]],"c":true},"ix":2},"nm":"Path 9"},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.203,0.169],[0,0.284],[0.1,0.159],[0.186,0.09],[0.255,0],[0,0]],"o":[[0,0],[0.442,0],[0.203,-0.171],[0,-0.208],[-0.1,-0.159],[-0.183,-0.09],[0,0],[0,0]],"v":[[-105.795,-352.072],[-104.5,-352.072],[-103.532,-352.325],[-103.228,-353.007],[-103.378,-353.557],[-103.807,-353.931],[-104.464,-354.067],[-105.795,-354.067]],"c":true},"ix":2},"nm":"Path 10"},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.369,-0.164],[-0.186,-0.291],[0,-0.377],[0.118,-0.223],[0.206,-0.142],[0.262,-0.059],[0,0],[-0.25,-0.149],[-0.156,-0.269],[0,-0.369],[0.198,-0.313],[0.383,-0.181],[0.563,0]],"o":[[0,0],[0,0],[0.553,0],[0.369,0.164],[0.186,0.288],[0,0.293],[-0.117,0.22],[-0.203,0.139],[0,0],[0.286,0.012],[0.251,0.149],[0.157,0.266],[0,0.398],[-0.196,0.31],[-0.384,0.181],[0,0]],"v":[[-107.383,-350.773],[-107.383,-358.285],[-104.376,-358.285],[-102.993,-358.039],[-102.16,-357.357],[-101.882,-356.359],[-102.058,-355.585],[-102.542,-355.042],[-103.239,-354.745],[-103.239,-354.672],[-102.435,-354.43],[-101.823,-353.803],[-101.588,-352.849],[-101.885,-351.782],[-102.754,-351.045],[-104.174,-350.773]],"c":true},"ix":2},"nm":"Path 11"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.729],[-0.206,-0.548],[-0.391,-0.308],[-0.563,0],[-0.396,0.313],[-0.201,0.548],[0,0.704],[0.201,0.543],[0.396,0.308],[0.591,0],[0.397,-0.298],[0.206,-0.538]],"o":[[0,0.729],[0.21,0.548],[0.396,0.303],[0.586,0],[0.396,-0.318],[0.205,-0.553],[0,-0.699],[-0.2,-0.543],[-0.396,-0.308],[-0.568,0],[-0.396,0.298],[-0.2,0.538]],"v":[[-69.061,-374.809],[-68.752,-372.895],[-67.85,-371.611],[-66.412,-371.156],[-64.938,-371.626],[-64.043,-372.924],[-63.735,-374.809],[-64.036,-376.672],[-64.931,-377.949],[-66.412,-378.411],[-67.858,-377.963],[-68.76,-376.709]],"c":true},"ix":2},"nm":"Path 1"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.249,0.308],[-0.426,0.22],[-0.66,0],[-0.7,-0.445],[-0.411,-0.865],[0,-1.252],[0.406,-0.865],[0.699,-0.455],[0.886,0],[0.425,0.215],[0.259,0.303],[0.142,0.274],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.137,-0.274],[0.25,-0.313],[0.425,-0.225],[0.871,0],[0.704,0.44],[0.416,0.861],[0,1.237],[-0.406,0.866],[-0.699,0.455],[-0.645,0],[-0.425,-0.215],[-0.254,-0.308],[0,0],[0,0],[0,0]],"v":[[-71.665,-364.95],[-71.665,-380.443],[-69.053,-380.443],[-69.053,-378.58],[-68.899,-378.58],[-68.32,-379.452],[-67.307,-380.252],[-65.679,-380.589],[-63.324,-379.922],[-61.652,-377.963],[-61.028,-374.795],[-61.637,-371.64],[-63.295,-369.66],[-65.672,-368.978],[-67.278,-369.3],[-68.305,-370.078],[-68.899,-370.951],[-69.009,-370.951],[-69.009,-364.95]],"c":true},"ix":2},"nm":"Path 2"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,-0.729],[-0.206,-0.548],[-0.391,-0.308],[-0.563,0],[-0.396,0.313],[-0.2,0.548],[0,0.704],[0.2,0.543],[0.396,0.308],[0.592,0],[0.396,-0.298],[0.205,-0.538]],"o":[[0,0.729],[0.21,0.548],[0.396,0.303],[0.587,0],[0.396,-0.318],[0.206,-0.553],[0,-0.699],[-0.201,-0.543],[-0.397,-0.308],[-0.567,0],[-0.396,0.298],[-0.201,0.538]],"v":[[-81.764,-374.809],[-81.456,-372.895],[-80.554,-371.611],[-79.116,-371.156],[-77.642,-371.626],[-76.747,-372.924],[-76.439,-374.809],[-76.739,-376.672],[-77.634,-377.949],[-79.116,-378.411],[-80.561,-377.963],[-81.463,-376.709]],"c":true},"ix":2},"nm":"Path 3"},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.25,0.308],[-0.426,0.22],[-0.66,0],[-0.699,-0.445],[-0.411,-0.865],[0,-1.252],[0.406,-0.865],[0.7,-0.455],[0.885,0],[0.426,0.215],[0.26,0.303],[0.142,0.274],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.137,-0.274],[0.249,-0.313],[0.425,-0.225],[0.871,0],[0.704,0.44],[0.415,0.861],[0,1.237],[-0.406,0.866],[-0.699,0.455],[-0.646,0],[-0.425,-0.215],[-0.254,-0.308],[0,0],[0,0],[0,0]],"v":[[-84.368,-364.95],[-84.368,-380.443],[-81.757,-380.443],[-81.757,-378.58],[-81.603,-378.58],[-81.023,-379.452],[-80.011,-380.252],[-78.383,-380.589],[-76.028,-379.922],[-74.355,-377.963],[-73.732,-374.795],[-74.341,-371.64],[-75.999,-369.66],[-78.375,-368.978],[-79.982,-369.3],[-81.009,-370.078],[-81.603,-370.951],[-81.713,-370.951],[-81.713,-364.95]],"c":true},"ix":2},"nm":"Path 4"},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-96.967,-375.066],[-89.045,-375.066],[-89.045,-372.88],[-96.967,-372.88]],"c":true},"ix":2},"nm":"Path 5"},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-97.063,-369.176],[-99.968,-369.176],[-94.679,-384.198],[-91.319,-384.198],[-86.023,-369.176],[-88.928,-369.176],[-92.94,-381.118],[-93.058,-381.118]],"c":true},"ix":2},"nm":"Path 6"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","cix":2,"ix":2},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.257,0],[0,0],[0,-6.257],[0,0],[6.257,0],[0,0],[0,6.257],[0,0]],"o":[[0,0],[6.257,0],[0,0],[0,6.257],[0,0],[-6.257,0],[0,0],[0,-6.257]],"v":[[-239.485,-404.619],[78.893,-404.619],[90.222,-393.29],[90.222,-345.041],[78.893,-333.712],[-239.485,-333.712],[-250.815,-345.041],[-250.815,-393.29]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[-0.032]},"t":0,"s":[1,1,1,1]},{"i":{"x":[0.46],"y":[0.968]},"o":{"x":[0.81],"y":[0.032]},"t":9,"s":[0.776,0.313,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[1,1,1,1]},{"i":{"x":[0.28],"y":[1.032]},"o":{"x":[0.25],"y":[-0.032]},"t":178,"s":[1,1,1,1]},{"i":{"x":[0.46],"y":[0.968]},"o":{"x":[0.81],"y":[0.032]},"t":190,"s":[0.776,0.313,1,1]},{"t":203,"s":[1,1,1,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.25],"y":[0.01]},"t":0,"s":[0.5]},{"i":{"x":[0.46],"y":[0.99]},"o":{"x":[0.81],"y":[0.01]},"t":9,"s":[1.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[0.5]},{"i":{"x":[0.28],"y":[0.99]},"o":{"x":[0.25],"y":[0.01]},"t":178,"s":[0.5]},{"i":{"x":[0.46],"y":[0.99]},"o":{"x":[0.81],"y":[0.01]},"t":190,"s":[1.5]},{"t":203,"s":[0.5]}],"ix":5},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","cix":2,"ix":3}],"ip":0,"op":919,"st":0},{"ind":121,"ty":4,"nm":"Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8},"ry":{"a":0,"k":0,"ix":9},"rz":{"a":0,"k":0,"ix":10},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[330.384,455.67,0],"ix":2},"a":{"a":0,"k":[-83.308,-144.165,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.6,0.6,0.6],"y":[1,1,1]},"o":{"x":[1,1,1],"y":[0.011,0.011,0]},"t":10,"s":[114,114,200]},{"i":{"x":[0.641,0.641,0.641],"y":[1,1,1]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":31,"s":[178.5,178.5,150]},{"i":{"x":[0.46,0.46,0.46],"y":[0.993,0.993,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.007,0.007,0]},"t":79,"s":[178.5,178.5,150]},{"i":{"x":[0.46,0.46,0.46],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":106,"s":[114,114,200]},{"i":{"x":[0.46,0.46,0.46],"y":[0.981,0.981,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.019,0.019,0]},"t":135,"s":[114,114,200]},{"i":{"x":[0.46,0.46,0.46],"y":[1,1,1]},"o":{"x":[0.81,0.81,0.81],"y":[0,0,0]},"t":163,"s":[178,178,149.58]},{"i":{"x":[0.46,0.46,0.46],"y":[0.981,0.981,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.019,0.019,0]},"t":237,"s":[178,178,149.58]},{"t":260,"s":[114,114,200]}],"ix":6}},"ao":0,"ef":[{"ty":29,"nm":"Gaussian Blur","np":5,"ix":1,"en":1,"ef":[{"ty":0,"nm":"Blurriness","ix":1,"v":{"a":0,"k":150,"ix":1}},{"ty":7,"nm":"Blur Dimensions","ix":2,"v":{"a":0,"k":1,"ix":2}},{"ty":7,"nm":"Repeat Edge Pixels","ix":3,"v":{"a":0,"k":0,"ix":3}}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.652,18.286],[27.966,-1.418],[-0.321,-12.646],[-24.072,0.059]],"o":[[0.521,-14.597],[-27.591,1.399],[0.275,10.848],[23.691,-0.058]],"v":[[-17.723,-147.299],[-77.035,-192.632],[-133.629,-145.385],[-77.035,-99.312]],"c":true},"ix":2},"nm":"Path 1"},{"ty":"fl","c":{"a":0,"k":[0.463,0.178,0.662,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","cix":2,"ix":1}],"ip":0,"op":919,"st":0}],"markers":[],"chars":[{"ch":"T","size":18.1,"style":"75 Bold","w":64.4,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[40.2,0],[40.2,-56.5],[61.2,-56.5],[61.2,-71.5],[1.7,-71.5],[1.7,-56.5],[22.5,-56.5],[22.5,0]],"c":true},"ix":2},"nm":"T"}],"nm":"T","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"X","size":18.1,"style":"75 Bold","w":70.1,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20.4,0],[34.3,-24.2],[34.5,-24.2],[47.9,0],[68.8,0],[45.1,-37.7],[66.3,-71.5],[47.1,-71.5],[34.8,-50.7],[34.6,-50.7],[22.5,-71.5],[2.3,-71.5],[24,-37.5],[0.3,0]],"c":true},"ix":2},"nm":"X"}],"nm":"X","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":" ","size":18.1,"style":"75 Bold","w":15.5,"data":{},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"H","size":18.1,"style":"75 Bold","w":70.3,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22.6,0],[22.6,-29.8],[47.7,-29.8],[47.7,0],[65.4,0],[65.4,-71.5],[47.7,-71.5],[47.7,-44.4],[22.6,-44.4],[22.6,-71.5],[4.9,-71.5],[4.9,0]],"c":true},"ix":2},"nm":"H"}],"nm":"H","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"A","size":18.1,"style":"75 Bold","w":71.2,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17.7,0],[21.8,-12.9],[46.8,-12.9],[51,0],[69.6,0],[43.8,-71.5],[25.6,-71.5],[-0.1,0]],"c":true},"ix":2},"nm":"A"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-1.134,4.267],[0,0],[0,0],[0,0],[0,0]],"o":[[0.8,-2.466],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[31.4,-42.9],[34.3,-53],[34.5,-53],[37.3,-42.9],[42.7,-25.6],[25.9,-25.6]],"c":true},"ix":2},"nm":"A"}],"nm":"A","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"S","size":18.1,"style":"75 Bold","w":66,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.5,4.134],[0,7.267],[1.3,2.634],[2.633,1.667],[2.533,0.9],[3.933,0.934],[2.266,1.034],[0,2.267],[-1.9,1.234],[-3.067,0],[-2,-1.5],[-0.334,-2.733],[0,0],[5.166,3.734],[8.133,0],[5.233,-3.666],[0,-7.333],[-1.034,-2.3],[-1.467,-1.4],[-2.5,-1.166],[-1.967,-0.566],[-3.067,-0.733],[-0.134,-0.033],[-0.067,-0.033],[-0.2,-0.066],[-1.434,-0.466],[-1.4,-1.166],[0,-1.733],[2.233,-1.233],[3.2,0],[0.733,6.8],[0,0],[-5.7,-4.166],[-9.667,0]],"o":[[5.5,-4.133],[0,-3.666],[-1.3,-2.633],[-2.634,-1.666],[-2.534,-0.9],[-6.267,-1.4],[-2.267,-1.033],[0,-2],[1.9,-1.233],[3.333,0],[2,1.5],[0,0],[-0.334,-7.2],[-5.167,-3.733],[-8.467,0],[-5.234,3.667],[0,2.867],[1.033,2.3],[1.466,1.4],[2.5,1.167],[1.966,0.567],[0.133,0],[0.133,0.034],[0.066,0.034],[4,1],[1.433,0.467],[1.4,1.167],[0,2.534],[-2.234,1.234],[-8.6,0],[0,0],[0.2,7.8],[5.7,4.167],[8.533,0]],"v":[[54.45,-4.5],[62.7,-21.6],[60.75,-31.05],[54.85,-37.5],[47.1,-41.35],[37.4,-44.1],[24.6,-47.75],[21.2,-52.7],[24.05,-57.55],[31.5,-59.4],[39.5,-57.15],[43,-50.8],[60.3,-50.8],[52.05,-67.2],[32.1,-72.8],[11.55,-67.3],[3.7,-50.8],[5.25,-43.05],[9,-37.5],[14.95,-33.65],[21.65,-31.05],[29.2,-29.1],[29.6,-29.05],[29.9,-28.95],[30.3,-28.8],[38.45,-26.6],[42.7,-24.15],[44.8,-19.8],[41.45,-14.15],[33.3,-12.3],[19.3,-22.5],[1.5,-22.5],[10.35,-4.55],[33.4,1.7]],"c":true},"ix":2},"nm":"S"}],"nm":"S","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"W","size":18.1,"style":"75 Bold","w":96,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.8,5.067],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.333,-7.2],[0,0],[0,0],[0,0],[0,0],[0,0],[1.266,-6.533],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0.8,-3.8],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.067,4.734],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.067,4.8],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[37,0],[44.5,-34.3],[46.9,-47.6],[47.1,-47.6],[49.6,-34.3],[57.1,0],[74.4,0],[94,-71.5],[76.2,-71.5],[69.1,-41.7],[65.5,-23.8],[65.3,-23.8],[61.9,-41],[55.2,-71.5],[38.8,-71.5],[32.1,-40.8],[28.6,-23.8],[28.4,-23.8],[25.1,-41.5],[17.9,-71.5],[0,-71.5],[19.6,0]],"c":true},"ix":2},"nm":"W"}],"nm":"W","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"E","size":18.1,"style":"75 Bold","w":62.8,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[59.7,0],[59.7,-15],[22.6,-15],[22.6,-30.3],[53.9,-30.3],[53.9,-44.1],[22.6,-44.1],[22.6,-56.9],[59.1,-56.9],[59.1,-71.5],[4.9,-71.5],[4.9,0]],"c":true},"ix":2},"nm":"E"}],"nm":"E","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"B","size":18.1,"style":"75 Bold","w":67.1,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.334,3.4],[0,6.934],[2.3,3.134],[3.933,1.2],[0,0],[0,6.8],[4.133,3.4],[7.133,0],[0,0],[0,0]],"o":[[7.4,0],[4.866,-3.733],[0,-4.2],[-2.3,-3.133],[0,0],[6.666,-2.533],[0,-5.733],[-4,-3.266],[0,0],[0,0],[0,0]],"v":[[40.2,0],[57.8,-5.1],[65.1,-21.1],[61.65,-32.1],[52.3,-38.6],[52.3,-38.9],[62.3,-52.9],[56.1,-66.6],[39.4,-71.5],[4.9,-71.5],[4.9,0]],"c":true},"ix":2},"nm":"B"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.8,-1.5],[0,-2.733],[1.7,-1.533],[2.866,0],[0,0]],"o":[[0,0],[2.8,0],[1.8,1.5],[0,2.534],[-1.7,1.534],[0,0],[0,0]],"v":[[22.4,-31.2],[38,-31.2],[44.9,-28.95],[47.6,-22.6],[45.05,-16.5],[38.2,-14.2],[22.4,-14.2]],"c":true},"ix":2},"nm":"B"},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.534,-1.266],[0,-2.2],[1.566,-1.266],[2.6,0],[0,0]],"o":[[0,0],[2.6,0],[1.533,1.267],[0,2.267],[-1.567,1.267],[0,0],[0,0]],"v":[[22.4,-57.5],[36.9,-57.5],[43.1,-55.6],[45.4,-50.4],[43.05,-45.1],[36.8,-43.2],[22.4,-43.2]],"c":true},"ix":2},"nm":"B"}],"nm":"B","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"O","size":18.1,"style":"75 Bold","w":74.7,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.033,4.267],[0,6.734],[-3.034,4.267],[-5.534,0],[-2.967,-4.266],[0,-6.8],[2.966,-4.233],[5.6,0]],"o":[[-3.034,-4.266],[0,-6.8],[3.033,-4.266],[5.6,0],[2.966,4.267],[0,6.8],[-2.967,4.234],[-5.534,0]],"v":[[24.55,-19.1],[20,-35.6],[24.55,-52.2],[37.4,-58.6],[50.25,-52.2],[54.7,-35.6],[50.25,-19.05],[37.4,-12.7]],"c":true},"ix":2},"nm":"O"},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,10.867],[6.466,7],[10.666,0],[6.433,-7],[0,-10.866],[-6.434,-7],[-10.667,0],[-6.467,7]],"o":[[0,-10.866],[-6.467,-7],[-10.667,0],[-6.434,7],[0,10.867],[6.433,7],[10.666,0],[6.466,-7]],"v":[[72.7,-35.6],[63,-62.4],[37.3,-72.9],[11.65,-62.4],[2,-35.6],[11.65,-8.8],[37.3,1.7],[63,-8.8]],"c":true},"ix":2},"nm":"O"}],"nm":"O","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"},{"ch":"K","size":18.1,"style":"75 Bold","w":69.7,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22.6,0],[22.6,-24.6],[28.6,-30.9],[49.2,0],[69.8,0],[40.8,-42.8],[68.2,-71.5],[47.2,-71.5],[22.6,-45.6],[22.6,-71.5],[4.9,-71.5],[4.9,0]],"c":true},"ix":2},"nm":"K"}],"nm":"K","cix":2,"ix":1}]},"fFamily":"Neue Haas Grotesk Display Pro"}]} \ No newline at end of file diff --git a/apps/dashboard/public/assets/product-pages/engine/lottie2.json b/apps/dashboard/public/assets/product-pages/engine/lottie2.json new file mode 100644 index 00000000000..78fdbbae9a6 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/engine/lottie2.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.5.6","a":"","k":"","d":"","tc":""},"fr":25,"ip":0,"op":303,"w":1170,"h":1040,"nm":"E","assets":[{"id":"comp_0","layers":[{"ind":1,"ty":5,"nm":"Q","parent":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-66.804,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.075,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":250,"op":1229,"st":25.917},{"ind":2,"ty":5,"nm":"Q","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-66.804,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"SENT","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.118,0.118,0.118]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":216,"op":250,"st":25.917},{"ind":3,"ty":5,"nm":"Q","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-66.804,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"QUEUED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.135,0.135,0.135]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":159,"op":216,"st":25.917},{"ind":4,"ty":4,"nm":"L","parent":8,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-390.538,-19.075,0]},"a":{"a":0,"k":[-183.518,-69.175,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.135,0.135,0]},"t":157.834,"s":[146.288,146.288,100]},{"t":185.959,"s":[292.575,292.575,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-62.245],[-197.867,-62.245],[-204.878,-69.256],[-204.878,-69.256],[-197.867,-76.266],[-169.171,-76.266],[-162.16,-69.256],[-162.16,-69.256]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":215,"s":[0.969,0.813,0.192,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":216,"s":[1,0.608,0.259,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":249,"s":[1,0.608,0.259,1]},{"t":250,"s":[0.239,0.725,0.506,1]}]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":159,"op":1229,"st":25.917},{"ind":5,"ty":5,"nm":"5","cl":"636f","parent":6,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-112.828,-67.04,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0x5465b3...636f","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":215,"op":1293,"st":89.917},{"ind":6,"ty":4,"nm":"L","parent":8,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-93.07,-19.075,0]},"a":{"a":0,"k":[-81.846,-69.175,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.062,0.062,0]},"t":215,"s":[146.288,146.288,100]},{"t":228,"s":[292.575,292.575,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.194,-62.245],[-116.763,-62.245],[-123.774,-69.256],[-123.774,-69.256],[-116.763,-76.266],[-46.194,-76.266],[-39.183,-69.256],[-39.183,-69.256]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":215,"op":1293,"st":89.917},{"ind":7,"ty":5,"nm":"0","cl":"2cbd","parent":8,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[214.104,-18.064,0]},"a":{"a":0,"k":[23.491,-1.79,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.012,0.012,0]},"t":159,"s":[0,0,100]},{"t":172,"s":[292.575,292.575,100]}]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"2 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":196},{"s":{"s":7,"f":"Inter-Light","t":"2 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":197},{"s":{"s":7,"f":"Inter-Light","t":"3 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":240},{"s":{"s":7,"f":"Inter-Light","t":"3 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":241}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":159,"op":1229,"st":25.917},{"ind":8,"ty":3,"nm":"S","parent":32,"sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":0},"p":{"a":0,"k":[-66.143,-88.621,0]},"a":{"a":0,"k":[-47.127,-19.632,0]},"s":{"a":0,"k":[34.179,34.179,100]}},"ao":0,"ip":159,"op":323,"st":26},{"ind":9,"ty":5,"nm":"Q","parent":12,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-66.804,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.075,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":115,"op":1199,"st":25.917},{"ind":10,"ty":5,"nm":"Q","parent":12,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-66.804,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"SENT","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.135,0.135,0.135]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":81,"op":115,"st":25.917},{"ind":11,"ty":5,"nm":"Q","parent":12,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-66.804,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"QUEUED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.224,0.224,0.224]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":25.917,"op":81,"st":25.917},{"ind":12,"ty":4,"nm":"L","parent":16,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-390.538,-19.075,0]},"a":{"a":0,"k":[-183.518,-69.175,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.135,0.135,0]},"t":23.834,"s":[146.288,146.288,100]},{"t":51.959,"s":[292.575,292.575,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-62.245],[-197.867,-62.245],[-204.878,-69.256],[-204.878,-69.256],[-197.867,-76.266],[-169.171,-76.266],[-162.16,-69.256],[-162.16,-69.256]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[0.969,0.813,0.192,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":82,"s":[1,0.608,0.259,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":115,"s":[1,0.608,0.259,1]},{"t":116,"s":[0.239,0.725,0.506,1]}]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":25.917,"op":1199,"st":25.917},{"ind":13,"ty":5,"nm":"5","cl":"636f","parent":14,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-112.828,-67.04,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0x5465b3...636f","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":81,"op":1199,"st":89.917},{"ind":14,"ty":4,"nm":"L","parent":16,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-93.07,-19.075,0]},"a":{"a":0,"k":[-81.846,-69.175,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.062,0.062,0]},"t":81,"s":[146.288,146.288,100]},{"t":94,"s":[292.575,292.575,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.194,-62.245],[-116.763,-62.245],[-123.774,-69.256],[-123.774,-69.256],[-116.763,-76.266],[-46.194,-76.266],[-39.183,-69.256],[-39.183,-69.256]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":81,"op":1199,"st":89.917},{"ind":15,"ty":5,"nm":"0","cl":"2cbd","parent":16,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[214.104,-18.064,0]},"a":{"a":0,"k":[23.491,-1.79,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.25,0.25,0.25],"y":[0.012,0.012,0]},"t":25,"s":[0,0,100]},{"t":38,"s":[292.575,292.575,100]}]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"1 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":47},{"s":{"s":7,"f":"Inter-Light","t":"3 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":75},{"s":{"s":7,"f":"Inter-Light","t":"3 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":100},{"s":{"s":7,"f":"Inter-Light","t":"5 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":126},{"s":{"s":7,"f":"Inter-Light","t":"5 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":150},{"s":{"s":7,"f":"Inter-Light","t":"7 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":176},{"s":{"s":7,"f":"Inter-Light","t":"8 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":201},{"s":{"s":7,"f":"Inter-Light","t":"8 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":224},{"s":{"s":7,"f":"Inter-Light","t":"10 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":250},{"s":{"s":7,"f":"Inter-Light","t":"10 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":275}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":25.917,"op":1199,"st":25.917},{"ind":16,"ty":4,"nm":"S","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.24],"y":[0.994]},"o":{"x":[0.8],"y":[0.006]},"t":49,"s":[0]},{"i":{"x":[0.24],"y":[-1.522]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.24],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"t":131,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.46,"y":0.971},"o":{"x":0.81,"y":0.029},"t":49,"s":[-66.143,-69.432,0],"to":[0,-3.418,0],"ti":[0,3.418,0]},{"i":{"x":0.46,"y":0.46},"o":{"x":0.81,"y":0.81},"t":71,"s":[-66.143,-89.939,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.971},"o":{"x":0.81,"y":0.029},"t":112,"s":[-66.143,-89.939,0],"to":[0,3.418,0],"ti":[0,-3.418,0]},{"t":131,"s":[-66.143,-69.432,0]}]},"a":{"a":0,"k":[-47.127,-19.632,0]},"s":{"a":1,"k":[{"i":{"x":[0.46,0.46,0.46],"y":[0.99,0.99,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.01,0.01,0]},"t":49,"s":[34.179,34.179,100]},{"i":{"x":[0.46,0.46,0.46],"y":[1,1,1]},"o":{"x":[0.81,0.81,0.81],"y":[0,0,0]},"t":71,"s":[45.117,45.117,100]},{"i":{"x":[0.46,0.46,0.46],"y":[0.99,0.99,1]},"o":{"x":[0.81,0.81,0.81],"y":[0.01,0.01,0]},"t":112,"s":[45.117,45.117,100]},{"t":131,"s":[34.179,34.179,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[798.428,86.154]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":20},"nm":"R"},{"ty":"st","c":{"a":0,"k":[0.345,0.333,0.333,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.6},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"fl","c":{"a":0,"k":[0.024,0.031,0.031,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[-79.939,-19.632]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"R"}],"ip":26,"op":1199,"st":26},{"ind":17,"ty":5,"nm":"M","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-46.554,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.073,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":18,"ty":5,"nm":"f","cl":"eee8","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-113.846,-46.964,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0x5465b3...636f","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":19,"ty":5,"nm":"0","cl":"2cbd","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.254,-46.964,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"3 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":47},{"s":{"s":7,"f":"Inter-Light","t":"3 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":73},{"s":{"s":7,"f":"Inter-Light","t":"4 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":97},{"s":{"s":7,"f":"Inter-Light","t":"5 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":123},{"s":{"s":7,"f":"Inter-Light","t":"6 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":148},{"s":{"s":7,"f":"Inter-Light","t":"7 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":171},{"s":{"s":7,"f":"Inter-Light","t":"8 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":197},{"s":{"s":7,"f":"Inter-Light","t":"9 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":222},{"s":{"s":7,"f":"Inter-Light","t":"10 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":250},{"s":{"s":7,"f":"Inter-Light","t":"11 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":275}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":20,"ty":5,"nm":"M","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-26.767,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.073,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":21,"ty":5,"nm":"e","cl":"0984","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-113.846,-27.057,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0xf5e6a8...eee8","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":22,"ty":5,"nm":"0","cl":"2cbd","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.254,-27.057,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"8 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":47},{"s":{"s":7,"f":"Inter-Light","t":"8 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":73},{"s":{"s":7,"f":"Inter-Light","t":"9 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":97},{"s":{"s":7,"f":"Inter-Light","t":"10 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":123},{"s":{"s":7,"f":"Inter-Light","t":"11 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":148},{"s":{"s":7,"f":"Inter-Light","t":"12 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":171},{"s":{"s":7,"f":"Inter-Light","t":"13 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":197},{"s":{"s":7,"f":"Inter-Light","t":"14 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":223},{"s":{"s":7,"f":"Inter-Light","t":"15 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":250},{"s":{"s":7,"f":"Inter-Light","t":"16 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":276}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":23,"ty":5,"nm":"M","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,32.908,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.073,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":24,"ty":5,"nm":"f","cl":"91d9","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-113.846,32.498,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0x5465b3...636f","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":25,"ty":5,"nm":"M","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,13.084,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.073,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":-1,"op":453,"st":-0.458},{"ind":26,"ty":5,"nm":"f","cl":"91d8","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-113.846,12.674,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0xe650b8...0984","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":-1,"op":453,"st":-0.458},{"ind":27,"ty":5,"nm":"M","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-183.519,-6.74,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Bold","t":"MINED","j":2,"tr":0,"lh":8.4,"ls":0,"fc":[0.073,0.341,0.075]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":440,"st":-0.458},{"ind":28,"ty":5,"nm":"f","cl":"91d7","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-113.846,-7.15,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"IBMPlexMono-Light","t":"0xe650b8...0984","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":448,"st":-0.458},{"ind":29,"ty":5,"nm":"0","cl":"2cbd","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.254,31.473,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"12 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":47},{"s":{"s":7,"f":"Inter-Light","t":"12 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":73},{"s":{"s":7,"f":"Inter-Light","t":"13 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":100},{"s":{"s":7,"f":"Inter-Light","t":"14 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":126},{"s":{"s":7,"f":"Inter-Light","t":"15 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":150},{"s":{"s":7,"f":"Inter-Light","t":"16 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":175},{"s":{"s":7,"f":"Inter-Light","t":"17 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":200},{"s":{"s":7,"f":"Inter-Light","t":"18 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":226},{"s":{"s":7,"f":"Inter-Light","t":"19 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":250},{"s":{"s":7,"f":"Inter-Light","t":"20 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":275}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":1212,"st":-0.458},{"ind":30,"ty":5,"nm":"0","cl":"2cbd","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.254,12.674,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"11 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":47},{"s":{"s":7,"f":"Inter-Light","t":"11 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":73},{"s":{"s":7,"f":"Inter-Light","t":"12 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":100},{"s":{"s":7,"f":"Inter-Light","t":"13 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":126},{"s":{"s":7,"f":"Inter-Light","t":"14 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":150},{"s":{"s":7,"f":"Inter-Light","t":"15 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":175},{"s":{"s":7,"f":"Inter-Light","t":"16 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":200},{"s":{"s":7,"f":"Inter-Light","t":"17 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":226},{"s":{"s":7,"f":"Inter-Light","t":"18 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":250},{"s":{"s":7,"f":"Inter-Light","t":"19 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":275}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":308,"st":-0.458},{"ind":31,"ty":5,"nm":"0","cl":"2cbd","parent":32,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.254,-7.15,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":7,"f":"Inter-Light","t":"10 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":47},{"s":{"s":7,"f":"Inter-Light","t":"10 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":73},{"s":{"s":7,"f":"Inter-Light","t":"11 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":100},{"s":{"s":7,"f":"Inter-Light","t":"12 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":126},{"s":{"s":7,"f":"Inter-Light","t":"13 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":150},{"s":{"s":7,"f":"Inter-Light","t":"14 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":175},{"s":{"s":7,"f":"Inter-Light","t":"15 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":200},{"s":{"s":7,"f":"Inter-Light","t":"16 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":226},{"s":{"s":7,"f":"Inter-Light","t":"17 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":250},{"s":{"s":7,"f":"Inter-Light","t":"18 seconds ago","j":0,"tr":0,"lh":8.4,"ls":0,"fc":[1,1,1]},"t":275}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":340,"st":-0.458},{"ind":32,"ty":4,"nm":"L","parent":36,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":285,"s":[100]},{"t":300,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.015},"t":0,"s":[-49.384,-61.599,0],"to":[0,2.222,0],"ti":[0,-5.526,0]},{"i":{"x":0,"y":1},"o":{"x":0.25,"y":0.065},"t":19,"s":[-49.384,-48.269,0],"to":[0,5.526,0],"ti":[0,-3.304,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":62,"s":[-49.384,-28.445,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.99},"o":{"x":0.81,"y":0.01},"t":145,"s":[-49.384,-28.445,0],"to":[0,2.563,0],"ti":[0,-2.563,0]},{"i":{"x":0.46,"y":0.46},"o":{"x":0.167,"y":0.167},"t":171,"s":[-49.384,-13.064,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0.015},"t":269,"s":[-49.384,-13.064,0],"to":[0,3.418,0],"ti":[0,-3.418,0]},{"t":302,"s":[-49.384,7.444,0]}]},"a":{"a":0,"k":[-49.384,13.489,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.061,-2.164],[-117.131,-2.164],[-124.142,-9.175],[-124.142,-9.175],[-117.131,-16.185],[-46.061,-16.185],[-39.05,-9.175],[-39.05,-9.175]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-2.164],[-197.867,-2.164],[-204.878,-9.175],[-204.878,-9.175],[-197.867,-16.185],[-169.171,-16.185],[-162.16,-9.175],[-162.16,-9.175]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.239,0.725,0.506,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0.071,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.061,-22.071],[-117.131,-22.071],[-124.142,-29.081],[-124.142,-29.081],[-117.131,-36.092],[-46.061,-36.092],[-39.05,-29.081],[-39.05,-29.081]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-22.191],[-197.867,-22.191],[-204.878,-29.202],[-204.878,-29.202],[-197.867,-36.212],[-169.171,-36.212],[-162.16,-29.202],[-162.16,-29.202]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.239,0.725,0.506,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0.071,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.061,-41.978],[-117.131,-41.978],[-124.142,-48.988],[-124.142,-48.988],[-117.131,-55.999],[-46.061,-55.999],[-39.05,-48.988],[-39.05,-48.988]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-41.978],[-197.867,-41.978],[-204.878,-48.988],[-204.878,-48.988],[-197.867,-55.999],[-169.171,-55.999],[-162.16,-48.988],[-162.16,-48.988]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.239,0.725,0.506,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0.071,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.061,-22.071],[-117.131,-22.071],[-124.142,-29.081],[-124.142,-29.081],[-117.131,-36.092],[-46.061,-36.092],[-39.05,-29.081],[-39.05,-29.081]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-22.191],[-197.867,-22.191],[-204.878,-29.202],[-204.878,-29.202],[-197.867,-36.212],[-169.171,-36.212],[-162.16,-29.202],[-162.16,-29.202]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.239,0.725,0.506,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0.071,59.472]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-46.061,-41.978],[-117.131,-41.978],[-124.142,-48.988],[-124.142,-48.988],[-117.131,-55.999],[-46.061,-55.999],[-39.05,-48.988],[-39.05,-48.988]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.089,0.107,0.11,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.872,0],[0,0],[0,3.872],[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0]],"o":[[0,0],[-3.872,0],[0,0],[0,-3.872],[0,0],[3.872,0],[0,0],[0,3.872]],"v":[[-169.171,-41.978],[-197.867,-41.978],[-204.878,-48.988],[-204.878,-48.988],[-197.867,-55.999],[-169.171,-55.999],[-162.16,-48.988],[-162.16,-48.988]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.239,0.725,0.506,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"tr","p":{"a":0,"k":[0.071,59.472]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1212,"st":-0.458},{"ind":33,"ty":5,"nm":"S","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[224.971,151.52,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[292.575,292.575,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":8.849,"f":"Inter-Light","t":"Status","j":0,"tr":0,"lh":10.618,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":310,"st":-0.458},{"ind":34,"ty":5,"nm":"Q","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[462.886,151.52,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[292.575,292.575,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":8.849,"f":"Inter-Light","t":"Tx Hash","j":0,"tr":0,"lh":10.618,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":310,"st":-0.458},{"ind":35,"ty":5,"nm":"B","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[822.228,151.315,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[292.575,292.575,100]}},"ao":0,"t":{"d":{"k":[{"s":{"s":8.849,"f":"Inter-Light","t":"Queued","j":0,"tr":0,"lh":10.618,"ls":0,"fc":[1,1,1]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":0,"op":310,"st":-0.458},{"ind":36,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[671.96,428.939,0]},"a":{"a":0,"k":[-52.1,-48.151,0]},"s":{"a":0,"k":[292.575,292.575,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.987,0],[0,0],[0,-6.374],[0,0],[4.987,0],[0,0],[0,6.374],[0,0]],"o":[[0,0],[4.987,0],[0,0],[0,6.374],[0,0],[-4.987,0],[0,0],[0,-6.374]],"v":[[-211.716,-169.918],[79.498,-169.918],[88.528,-158.377],[88.528,23.352],[79.498,34.892],[-211.716,34.892],[-220.746,23.352],[-220.746,-158.377]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.347,0.334,0.334,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.3},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.987,0],[0,0],[0,-6.374],[0,0],[4.987,0],[0,0],[0,6.374],[0,0]],"o":[[0,0],[4.987,0],[0,0],[0,6.374],[0,0],[-4.987,0],[0,0],[0,-6.374]],"v":[[-212.107,-170.418],[79.889,-170.418],[88.92,-158.877],[88.92,23.352],[79.889,34.892],[-212.107,34.892],[-221.138,23.352],[-221.138,-158.877]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.034,0.042,0.043,1]},"o":{"a":0,"k":90},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1212,"st":-0.458}]}],"fonts":{"list":[{"fName":"Inter-Light","fFamily":"Inter","fStyle":"Light","ascent":72.726},{"fName":"IBMPlexMono-Light","fFamily":"IBM Plex Mono","fStyle":"Light","ascent":73.999},{"fName":"Inter-Bold","fFamily":"Inter","fStyle":"Bold","ascent":72.726}]},"layers":[{"ind":1,"ty":3,"nm":"N","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.46,"y":0.968},"o":{"x":0.81,"y":0.032},"t":18,"s":[585,300,0],"to":[0,18,0],"ti":[0,-18,0]},{"i":{"x":0.46,"y":0.46},"o":{"x":0.81,"y":0.81},"t":40,"s":[585,408,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.46,"y":0.992},"o":{"x":0.81,"y":0.008},"t":149,"s":[585,408,0],"to":[0,19,0],"ti":[0,-19,0]},{"t":178,"s":[585,522,0]}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":1193,"st":0},{"ind":2,"ty":0,"nm":"E","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[722,734,0]},"a":{"a":0,"k":[677,386.5,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1354,"h":773,"ip":0,"op":303,"st":0},{"ind":3,"ty":4,"nm":"L","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":287,"s":[100]},{"t":301,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-442.417,-58.448,0]},"a":{"a":0,"k":[-111.075,162.568,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.639,0],[1.584,0.028],[-0.779,1.368],[-1.649,2.764],[-0.797,-1.329],[-1.597,-2.795],[1.58,-0.029]],"o":[[-1.584,0],[-1.577,-0.028],[1.593,-2.796],[0.79,-1.323],[1.656,2.76],[0.783,1.37],[-1.638,0.03]],"v":[[-101.252,173.901],[-106.005,173.895],[-107.36,171.564],[-102.496,163.224],[-99.864,163.231],[-94.982,171.562],[-96.335,173.894]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.996,0.996,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.12,0],[1.147,0.008],[-1.026,1.815],[-3.136,5.525],[-1.47,2.583],[-0.232,0.3],[-0.572,-0.823],[-0.436,-0.756],[-0.915,-1.581],[0.824,-1.455],[2.649,-4.735],[1.939,0.062]],"o":[[-1.147,0],[-2.065,-0.014],[3.126,-5.531],[1.467,-2.585],[0.189,-0.331],[0.609,-0.788],[0.497,0.714],[0.912,1.583],[0.838,1.449],[-2.675,4.721],[-0.953,1.704],[-1.119,-0.036]],"v":[[-121.255,173.906],[-124.696,173.904],[-126.234,171.227],[-116.831,154.649],[-112.428,146.896],[-111.819,145.928],[-109.685,145.953],[-108.346,148.2],[-105.619,152.955],[-105.599,157.303],[-113.611,171.472],[-117.896,173.912]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.996,0.996,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.245,-1.884],[0,-2.623],[0.058,-0.618],[1.997,-3.001],[4.544,-2.276],[3.619,0.107],[2.805,0.341],[1.64,0.713],[2.578,2.7],[0.675,6.246],[-3.929,5.78],[-8.222,1.192],[-5.267,-2.646],[-2.871,-5.589],[-0.468,-1.168]],"o":[[0,2.623],[-0.148,0.608],[-0.345,3.677],[-2.808,4.219],[-3.211,1.608],[-2.81,-0.083],[-1.801,-0.219],[-3.419,-1.487],[-4.317,-4.521],[-0.741,-6.853],[4.65,-6.841],[5.712,-0.828],[5.577,2.802],[0.574,1.118],[0.724,1.805]],"v":[[-83.137,158.828],[-83.137,166.695],[-83.332,168.547],[-87.264,178.42],[-98.311,188.172],[-108.511,190.554],[-116.942,190.321],[-122.047,188.735],[-131.083,182.489],[-138.805,166.398],[-134.42,147.283],[-115.153,134.92],[-98.531,137.335],[-85.728,149.796],[-84.197,153.235]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.906,0.255,0.259,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":303,"st":0},{"ind":4,"ty":4,"nm":"L","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":287,"s":[100]},{"t":301,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-42.58,-60.017,0]},"a":{"a":0,"k":[415.026,160.504,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.283,0],[0.724,0.312],[0.493,0.575],[0.263,0.822],[0,1.003],[-0.263,0.822],[-0.493,0.575],[-0.707,0.312],[-0.904,0],[-0.773,-0.543],[-0.362,-0.872],[0,0],[0.543,0.362],[0.789,0],[0.46,-0.197],[0.312,-0.345],[0.164,-0.477],[0,-0.56],[0,0],[-0.148,-0.477],[-0.312,-0.345],[-0.46,-0.197],[-0.592,0],[-0.559,0.395],[-0.329,0.691],[0,0],[0.805,-0.56]],"o":[[-0.921,0],[-0.707,-0.329],[-0.493,-0.576],[-0.247,-0.822],[0,-1.004],[0.263,-0.822],[0.493,-0.592],[0.707,-0.313],[1.233,0],[0.773,0.543],[0,0],[-0.23,-0.658],[-0.526,-0.362],[-0.576,0],[-0.444,0.18],[-0.312,0.345],[-0.148,0.476],[0,0],[0,0.559],[0.164,0.476],[0.312,0.345],[0.46,0.18],[0.855,0],[0.559,-0.395],[0,0],[-0.378,0.855],[-0.789,0.559]],"v":[[278.725,169.961],[276.259,169.492],[274.458,168.136],[273.323,166.039],[272.953,163.301],[273.348,160.564],[274.483,158.467],[276.283,157.11],[278.7,156.642],[281.71,157.456],[283.411,159.577],[281.833,160.416],[280.674,158.886],[278.7,158.344],[277.147,158.64],[276.012,159.429],[275.297,160.662],[275.075,162.216],[275.075,164.387],[275.297,165.941],[276.012,167.174],[277.171,167.988],[278.75,168.259],[280.871,167.667],[282.203,166.039],[283.609,167.001],[281.833,169.122]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.444,0],[-0.625,0.691],[0,1.151],[0,0],[0.641,0.691],[1.151,0],[0.395,-0.116],[0.296,-0.23],[0.18,-0.329],[0,-0.428],[0,0],[-0.165,-0.329],[-0.296,-0.23],[-0.395,-0.116]],"o":[[1.151,0],[0.641,-0.708],[0,0],[0,-1.152],[-0.625,-0.708],[-0.444,0],[-0.395,0.115],[-0.296,0.214],[-0.165,0.312],[0,0],[0,0.427],[0.18,0.312],[0.296,0.214],[0.395,0.115]],"v":[[263.664,168.21],[266.328,167.174],[267.29,164.387],[267.29,162.216],[266.328,159.454],[263.664,158.393],[262.407,158.566],[261.371,159.084],[260.655,159.898],[260.409,161.008],[260.409,165.595],[260.655,166.73],[261.371,167.544],[262.407,168.037]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.793,0],[-0.872,-1.168],[0,-2.105],[0.888,-1.168],[1.562,0],[0.822,1.579],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.822,-1.579],[1.562,0],[0.888,1.167],[0,2.104],[-0.872,1.167],[-1.793,0],[0,0],[0,0],[0,0],[0,0]],"v":[[258.435,151.413],[260.409,151.413],[260.409,159.01],[260.507,159.01],[264.429,156.642],[268.08,158.393],[269.411,163.301],[268.08,168.21],[264.429,169.961],[260.507,167.593],[260.409,167.593],[260.409,169.665],[258.435,169.665]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.444,0],[-0.624,0.691],[0,1.151],[0,0],[0.641,0.691],[1.152,0],[0.395,-0.116],[0.296,-0.23],[0.181,-0.329],[0,-0.428],[0,0],[-0.164,-0.329],[-0.296,-0.23],[-0.395,-0.116]],"o":[[1.152,0],[0.641,-0.708],[0,0],[0,-1.152],[-0.624,-0.708],[-0.444,0],[-0.395,0.115],[-0.296,0.214],[-0.164,0.312],[0,0],[0,0.427],[0.181,0.312],[0.296,0.214],[0.395,0.115]],"v":[[248.874,168.21],[251.538,167.174],[252.5,164.387],[252.5,162.216],[251.538,159.454],[248.874,158.393],[247.617,158.566],[246.581,159.084],[245.865,159.898],[245.619,161.008],[245.619,165.595],[245.865,166.73],[246.581,167.544],[247.617,168.037]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.792,0],[-0.871,-1.168],[0,-2.105],[0.888,-1.168],[1.562,0],[0.822,1.579],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.822,-1.579],[1.562,0],[0.888,1.167],[0,2.104],[-0.871,1.167],[-1.792,0],[0,0],[0,0],[0,0],[0,0]],"v":[[243.645,151.413],[245.619,151.413],[245.619,159.01],[245.717,159.01],[249.639,156.642],[253.29,158.393],[254.621,163.301],[253.29,168.21],[249.639,169.961],[245.717,167.593],[245.619,167.593],[245.619,169.665],[243.645,169.665]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.592,0.526],[0,0.839],[0,0],[0.592,0.46],[0.937,0],[0.576,-0.412],[0.362,-0.658],[0,0],[-0.312,0.328],[-0.411,0.263],[-0.543,0.164],[-0.707,0],[-0.641,-0.197],[-0.477,-0.378],[-0.263,-0.543],[0,-0.691],[0.181,-0.444],[0.312,-0.329],[0.411,-0.23],[0.46,-0.116],[0,0],[-0.444,-0.23],[-0.345,-0.362],[-0.197,-0.51],[0,-0.641],[0.296,-0.625],[0.526,-0.444],[0.74,-0.247],[0.888,0],[0.592,0.164],[0.46,0.279],[0.345,0.345],[0.263,0.378],[0,0],[-0.247,-0.28],[-0.312,-0.214],[-0.411,-0.116],[-0.543,0],[-0.641,0.559],[0,1.036],[0,0],[0.641,0.559],[1.266,0],[0,0],[0,0]],"o":[[1.2,0],[0.608,-0.543],[0,0],[0,-0.921],[-0.576,-0.461],[-0.921,0],[-0.559,0.395],[0,0],[0.214,-0.345],[0.312,-0.345],[0.428,-0.264],[0.559,-0.165],[0.74,0],[0.641,0.18],[0.477,0.362],[0.28,0.543],[0,0.559],[-0.164,0.444],[-0.296,0.328],[-0.411,0.23],[0,0],[0.477,0.099],[0.444,0.214],[0.345,0.345],[0.214,0.493],[0,0.74],[-0.28,0.608],[-0.51,0.427],[-0.724,0.247],[-0.756,0],[-0.576,-0.165],[-0.444,-0.28],[-0.329,-0.345],[0,0],[0.23,0.345],[0.247,0.279],[0.329,0.197],[0.411,0.115],[1.217,0],[0.658,-0.56],[0,0],[0,-1.02],[-0.625,-0.56],[0,0],[0,0],[0,0]],"v":[[233.172,159.75],[235.861,158.96],[236.774,156.888],[236.774,156.716],[235.886,154.644],[233.616,153.953],[231.372,154.57],[229.991,156.148],[228.437,154.965],[229.226,153.953],[230.311,153.041],[231.767,152.399],[233.666,152.153],[235.738,152.449],[237.415,153.287],[238.525,154.644],[238.944,156.494],[238.673,157.998],[237.958,159.158],[236.897,159.996],[235.59,160.514],[235.59,160.613],[236.971,161.106],[238.155,161.969],[238.969,163.252],[239.289,164.954],[238.846,167.001],[237.637,168.58],[235.762,169.591],[233.345,169.961],[231.323,169.714],[229.769,169.048],[228.585,168.111],[227.697,167.026],[229.251,165.842],[229.966,166.779],[230.805,167.519],[231.915,167.988],[233.345,168.16],[236.132,167.322],[237.119,164.929],[237.119,164.732],[236.157,162.364],[233.32,161.525],[231.273,161.525],[231.273,159.75]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.543,0.789],[0,0.888],[0,0],[0.543,0.559],[1.068,0],[0.575,-0.543],[0.279,-0.888],[0,0],[-0.28,0.476],[-0.444,0.378],[-0.625,0.23],[-0.839,0],[-0.658,-0.247],[-0.444,-0.444],[-0.23,-0.609],[0,-0.724],[0.197,-0.576],[0.345,-0.526],[0.476,-0.51],[0.575,-0.493],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.839,-0.757],[0.543,-0.806],[0,0],[0,-1.036],[-0.543,-0.576],[-1.053,0],[-0.56,0.526],[0,0],[0.164,-0.51],[0.296,-0.493],[0.444,-0.378],[0.641,-0.23],[0.855,0],[0.674,0.247],[0.46,0.444],[0.247,0.608],[0,0.658],[-0.181,0.575],[-0.329,0.526],[-0.461,0.493],[0,0],[0,0],[0,0]],"v":[[224.969,169.665],[213.475,169.665],[213.475,167.544],[219.222,162.364],[221.294,160.046],[222.108,157.505],[222.108,157.209],[221.294,154.817],[218.876,153.953],[216.435,154.767],[215.177,156.888],[213.327,156.198],[213.993,154.718],[215.103,153.411],[216.706,152.498],[218.926,152.153],[221.195,152.523],[222.872,153.559],[223.908,155.137],[224.278,157.135],[223.982,158.985],[223.193,160.638],[221.984,162.191],[220.43,163.671],[215.621,167.864],[224.969,167.864]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[199.03,169.665],[199.03,167.864],[203.963,167.864],[203.963,153.978],[203.79,153.978],[199.449,158.023],[198.241,156.716],[202.804,152.449],[206.035,152.449],[206.035,167.864],[210.573,167.864],[210.573,169.665]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.576,0],[0.23,0.23],[0,0.361],[0,0],[-0.23,0.23],[-0.576,0],[-0.23,-0.247],[0,-0.362],[0,0],[0.23,-0.247]],"o":[[-0.576,0],[-0.23,-0.247],[0,0],[0,-0.362],[0.23,-0.247],[0.576,0],[0.23,0.23],[0,0],[0,0.361],[-0.23,0.23]],"v":[[191.813,154.126],[190.604,153.781],[190.259,152.868],[190.259,152.473],[190.604,151.585],[191.813,151.215],[193.022,151.585],[193.367,152.473],[193.367,152.868],[193.022,153.781]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.46,-0.543],[0.97,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0.855],[-0.444,0.543],[0,0],[0,0]],"v":[[184.66,172.921],[190.826,172.921],[190.826,158.615],[184.438,158.615],[184.438,156.938],[192.8,156.938],[192.8,171.688],[192.109,173.784],[189.988,174.598],[184.66,174.598]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[171.622,169.665],[178.356,154.225],[170.808,154.225],[170.808,157.431],[168.958,157.431],[168.958,152.449],[180.452,152.449],[180.452,154.274],[173.842,169.665]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,0],[-0.641,0.641],[0,1.167],[0,0],[0.658,0.641],[1.184,0],[0.658,-0.641],[0,-1.168],[0,0],[-0.641,-0.641]],"o":[[1.184,0],[0.658,-0.641],[0,0],[0,-1.168],[-0.641,-0.641],[-1.184,0],[-0.641,0.641],[0,0],[0,1.167],[0.658,0.641]],"v":[[159.964,161.452],[162.702,160.49],[163.689,157.776],[163.689,157.579],[162.702,154.866],[159.964,153.904],[157.202,154.866],[156.24,157.579],[156.24,157.776],[157.202,160.49]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.02],[0.395,-1.135],[0.609,-0.937],[0.74,-0.724],[0.708,-0.444],[0,0],[-0.723,0.641],[-0.559,0.691],[-0.378,0.789],[-0.247,1.003],[0,0],[0.674,-0.477],[1.069,0],[0.641,0.247],[0.461,0.46],[0.264,0.641],[0,0.822],[-0.263,0.691],[-0.51,0.493],[-0.707,0.279],[-0.871,0],[-0.723,-0.313],[-0.493,-0.576],[-0.263,-0.822]],"o":[[0,1.283],[-0.378,1.118],[-0.608,0.92],[-0.723,0.707],[0,0],[0.937,-0.674],[0.74,-0.641],[0.56,-0.708],[0.378,-0.806],[0,0],[-0.427,0.707],[-0.658,0.46],[-0.756,0],[-0.624,-0.247],[-0.444,-0.461],[-0.247,-0.658],[0,-0.839],[0.28,-0.708],[0.51,-0.51],[0.724,-0.28],[0.905,0],[0.724,0.296],[0.51,0.559],[0.28,0.822]],"v":[[165.785,158.763],[165.193,162.389],[163.714,165.472],[161.691,167.938],[159.545,169.665],[156.881,169.665],[159.372,167.692],[161.321,165.694],[162.727,163.449],[163.664,160.736],[163.541,160.687],[161.888,162.463],[159.298,163.153],[157.202,162.783],[155.574,161.723],[154.513,160.07],[154.143,157.85],[154.538,155.556],[155.722,153.756],[157.547,152.572],[159.94,152.153],[162.382,152.621],[164.207,153.929],[165.366,156]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,0],[-0.641,0.641],[0,1.167],[0,0],[0.658,0.641],[1.184,0],[0.658,-0.641],[0,-1.168],[0,0],[-0.641,-0.641]],"o":[[1.184,0],[0.658,-0.641],[0,0],[0,-1.168],[-0.641,-0.641],[-1.184,0],[-0.641,0.641],[0,0],[0,1.167],[0.658,0.641]],"v":[[145.175,168.21],[147.913,167.248],[148.9,164.535],[148.9,164.337],[147.913,161.624],[145.175,160.662],[142.413,161.624],[141.451,164.337],[141.451,164.535],[142.413,167.248]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0.872,0],[0.724,0.296],[0.509,0.559],[0.28,0.822],[0,1.019],[-0.378,1.118],[-0.592,0.92],[-0.74,0.707],[-0.707,0.444],[0,0],[0.74,-0.641],[0.559,-0.708],[0.378,-0.806],[0.247,-1.004],[0,0],[-0.674,0.46],[-1.069,0],[-0.625,-0.247],[-0.46,-0.461],[-0.247,-0.658],[0,-0.806],[0.28,-0.708],[0.51,-0.51],[0.724,-0.28]],"o":[[-0.904,0],[-0.724,-0.313],[-0.493,-0.576],[-0.263,-0.822],[0,-1.283],[0.395,-1.135],[0.608,-0.937],[0.74,-0.724],[0,0],[-0.937,0.674],[-0.724,0.641],[-0.559,0.691],[-0.378,0.789],[0,0],[0.411,-0.708],[0.674,-0.477],[0.756,0],[0.625,0.247],[0.46,0.46],[0.263,0.658],[0,0.839],[-0.28,0.691],[-0.493,0.493],[-0.707,0.279]],"v":[[145.2,169.961],[142.758,169.517],[140.908,168.21],[139.749,166.113],[139.354,163.351],[139.921,159.75],[141.401,156.666],[143.424,154.2],[145.594,152.449],[148.258,152.449],[145.742,154.422],[143.819,156.444],[142.413,158.689],[141.475,161.377],[141.599,161.427],[143.227,159.676],[145.841,158.96],[147.913,159.33],[149.541,160.391],[150.601,162.068],[150.996,164.263],[150.577,166.582],[149.393,168.382],[147.568,169.542]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.444,0.543],[-0.97,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-0.856],[0.46,-0.543],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[125.033,167.988],[129.325,167.988],[129.325,158.615],[124.787,158.615],[124.787,156.938],[129.325,156.938],[129.325,154.323],[129.991,152.227],[132.137,151.413],[136.404,151.413],[136.404,153.09],[131.298,153.09],[131.298,156.938],[136.404,156.938],[136.404,158.615],[131.298,158.615],[131.298,167.988],[135.837,167.988],[135.837,169.665],[125.033,169.665]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.526,0.328],[-0.92,0],[-0.624,-0.247],[-0.46,-0.461],[-0.263,-0.658],[0,-0.839],[0.264,-0.708],[0.51,-0.51],[0.724,-0.28],[0.921,0],[0.576,0.164],[0.444,0.279],[0.329,0.345],[0.264,0.378],[0,0],[-0.23,-0.28],[-0.312,-0.214],[-0.395,-0.116],[-0.526,0],[-0.624,0.641],[0,1.135],[0,0],[0.641,0.641],[1.201,0],[0.461,-0.28],[0.378,-0.412],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.428,-0.576],[0.526,-0.345],[0.757,0],[0.641,0.23],[0.461,0.46],[0.264,0.641],[0,0.839],[-0.263,0.691],[-0.51,0.493],[-0.723,0.279],[-0.723,0],[-0.559,-0.165],[-0.427,-0.28],[-0.328,-0.345],[0,0],[0.23,0.345],[0.247,0.279],[0.313,0.197],[0.395,0.115],[1.184,0],[0.641,-0.641],[0,0],[0,-1.135],[-0.641,-0.641],[-0.822,0],[-0.444,0.279],[0,0],[0,0],[0,0],[0,0]],"v":[[120.553,154.249],[112.858,154.249],[112.365,160.835],[112.537,160.835],[113.968,159.478],[116.138,158.96],[118.21,159.33],[119.863,160.366],[120.948,162.043],[121.343,164.263],[120.948,166.582],[119.789,168.382],[117.939,169.542],[115.472,169.961],[113.524,169.714],[112.019,169.048],[110.885,168.111],[109.997,167.026],[111.551,165.842],[112.241,166.779],[113.08,167.519],[114.14,167.988],[115.522,168.16],[118.235,167.199],[119.197,164.535],[119.197,164.337],[118.235,161.674],[115.472,160.712],[113.549,161.131],[112.315,162.167],[110.564,161.92],[111.181,152.449],[120.553,152.449]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.526,0.328],[-0.921,0],[-0.625,-0.247],[-0.46,-0.461],[-0.263,-0.658],[0,-0.839],[0.263,-0.708],[0.51,-0.51],[0.724,-0.28],[0.921,0],[0.576,0.164],[0.444,0.279],[0.329,0.345],[0.263,0.378],[0,0],[-0.23,-0.28],[-0.312,-0.214],[-0.395,-0.116],[-0.526,0],[-0.625,0.641],[0,1.135],[0,0],[0.641,0.641],[1.2,0],[0.46,-0.28],[0.378,-0.412],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.428,-0.576],[0.526,-0.345],[0.756,0],[0.641,0.23],[0.46,0.46],[0.263,0.641],[0,0.839],[-0.263,0.691],[-0.509,0.493],[-0.724,0.279],[-0.724,0],[-0.559,-0.165],[-0.428,-0.28],[-0.329,-0.345],[0,0],[0.23,0.345],[0.247,0.279],[0.312,0.197],[0.395,0.115],[1.184,0],[0.641,-0.641],[0,0],[0,-1.135],[-0.641,-0.641],[-0.822,0],[-0.444,0.279],[0,0],[0,0],[0,0],[0,0]],"v":[[105.764,154.249],[98.069,154.249],[97.575,160.835],[97.748,160.835],[99.179,159.478],[101.349,158.96],[103.421,159.33],[105.074,160.366],[106.159,162.043],[106.553,164.263],[106.159,166.582],[105,168.382],[103.15,169.542],[100.683,169.961],[98.735,169.714],[97.23,169.048],[96.095,168.111],[95.207,167.026],[96.761,165.842],[97.452,166.779],[98.291,167.519],[99.351,167.988],[100.732,168.16],[103.446,167.199],[104.408,164.535],[104.408,164.337],[103.446,161.674],[100.683,160.712],[98.759,161.131],[97.526,162.167],[95.775,161.92],[96.391,152.449],[105.764,152.449]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.152,0],[-0.395,0.115],[-0.296,0.214],[-0.165,0.312],[0,0.427],[0,0],[0.18,0.312],[0.296,0.214],[0.395,0.115],[0.444,0],[0.641,-0.708],[0,-1.152],[0,0],[-0.625,-0.708]],"o":[[0.444,0],[0.395,-0.116],[0.296,-0.23],[0.18,-0.329],[0,0],[0,-0.428],[-0.165,-0.329],[-0.296,-0.23],[-0.395,-0.116],[-1.152,0],[-0.625,0.691],[0,0],[0,1.151],[0.641,0.691]],"v":[[85.844,168.21],[87.102,168.037],[88.138,167.544],[88.829,166.73],[89.1,165.595],[89.1,161.008],[88.829,159.898],[88.138,159.084],[87.102,158.566],[85.844,158.393],[83.156,159.454],[82.219,162.216],[82.219,164.387],[83.156,167.174]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.792,0],[0.888,1.167],[0,2.104],[-0.872,1.167],[-1.562,0],[-0.822,-1.579],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.822,1.579],[-1.562,0],[-0.872,-1.168],[0,-2.105],[0.888,-1.168],[1.792,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[89.1,167.593],[89.002,167.593],[85.08,169.961],[81.405,168.21],[80.097,163.301],[81.405,158.393],[85.08,156.642],[89.002,159.01],[89.1,159.01],[89.1,151.413],[91.073,151.413],[91.073,169.665],[89.1,169.665]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[65.332,169.665],[70.068,163.203],[65.455,156.938],[67.823,156.938],[69.747,159.626],[71.276,161.747],[71.375,161.747],[72.855,159.626],[74.754,156.938],[77.023,156.938],[72.362,163.178],[77.147,169.665],[74.779,169.665],[72.633,166.681],[71.178,164.658],[71.079,164.658],[69.673,166.681],[67.601,169.665]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[0.576,0],[0.23,0.23],[0,0.328],[0,0],[-0.214,0.23],[-0.576,0],[-0.214,-0.23],[0,-0.329],[0,0],[0.23,-0.23]],"o":[[-0.576,0],[-0.214,-0.23],[0,0],[0,-0.329],[0.23,-0.23],[0.576,0],[0.23,0.23],[0,0],[0,0.328],[-0.214,0.23]],"v":[[56.438,162.512],[55.229,162.167],[54.908,161.328],[54.908,160.786],[55.229,159.947],[56.438,159.602],[57.622,159.947],[57.967,160.786],[57.967,161.328],[57.622,162.167]],"c":true}},"nm":"P"},{"ind":22,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.691,0],[-0.493,0.263],[-0.296,0.493],[-0.148,0.691],[0,0.871],[0,0],[0.148,0.707],[0.312,0.493],[0.493,0.263],[0.691,0],[0.493,-0.28],[0.312,-0.493],[0.148,-0.708],[0,-0.856],[0,0],[-0.148,-0.708],[-0.296,-0.493],[-0.493,-0.28]],"o":[[0.691,0],[0.493,-0.28],[0.312,-0.493],[0.148,-0.708],[0,0],[0,-0.856],[-0.148,-0.708],[-0.296,-0.493],[-0.493,-0.28],[-0.691,0],[-0.493,0.263],[-0.296,0.493],[-0.148,0.707],[0,0],[0,0.871],[0.148,0.691],[0.312,0.493],[0.493,0.263]],"v":[[56.438,168.16],[58.214,167.766],[59.398,166.607],[60.088,164.831],[60.31,162.463],[60.31,159.651],[60.088,157.308],[59.398,155.507],[58.214,154.373],[56.438,153.953],[54.662,154.373],[53.453,155.507],[52.787,157.308],[52.565,159.651],[52.565,162.463],[52.787,164.831],[53.453,166.607],[54.662,167.766]],"c":true}},"nm":"P"},{"ind":23,"ty":"sh","ks":{"a":0,"k":{"i":[[1.052,0],[0.756,0.395],[0.493,0.756],[0.23,1.101],[0,1.414],[-0.23,1.101],[-0.493,0.756],[-0.756,0.395],[-1.052,0],[-0.756,-0.412],[-0.493,-0.757],[-0.23,-1.118],[0,-1.398],[0.23,-1.102],[0.493,-0.757],[0.756,-0.412]],"o":[[-1.052,0],[-0.756,-0.412],[-0.493,-0.757],[-0.23,-1.102],[0,-1.398],[0.23,-1.118],[0.493,-0.757],[0.756,-0.412],[1.052,0],[0.756,0.395],[0.493,0.756],[0.23,1.101],[0,1.414],[-0.23,1.101],[-0.493,0.756],[-0.756,0.395]],"v":[[56.438,169.961],[53.725,169.369],[51.85,167.618],[50.765,164.831],[50.419,161.057],[50.765,157.308],[51.85,154.496],[53.725,152.769],[56.438,152.153],[59.151,152.769],[61.025,154.496],[62.111,157.308],[62.456,161.057],[62.111,164.831],[61.025,167.618],[59.151,169.369]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[788.085,168.96],[788.085,151.022],[790.263,151.022],[790.263,159.01],[799.826,159.01],[799.826,151.022],[801.996,151.022],[801.996,168.96],[799.826,168.96],[799.826,160.937],[790.263,160.937],[790.263,168.96]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[771.284,152.948],[771.284,151.022],[784.738,151.022],[784.738,152.948],[779.093,152.948],[779.093,168.96],[776.922,168.96],[776.922,152.948]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[757.521,168.96],[757.521,151.022],[768.346,151.022],[768.346,152.948],[759.692,152.948],[759.692,159.01],[767.789,159.01],[767.789,160.937],[759.692,160.937],[759.692,167.033],[768.487,167.033],[768.487,168.96]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[736.739,168.96],[744.759,153.089],[744.759,152.948],[735.513,152.948],[735.513,151.022],[747.007,151.022],[747.007,153.054],[739.015,168.96]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.747,0],[0.592,-0.368],[0.345,-0.619],[0,-0.747],[-0.331,-0.613],[-0.571,-0.362],[-0.733,0],[-0.479,0.216],[-0.359,0.379],[-0.204,0.485],[0,0.531],[0.338,0.613],[0.592,0.38]],"o":[[-0.733,0],[-0.585,0.362],[-0.338,0.613],[0,0.748],[0.331,0.607],[0.578,0.356],[0.557,0],[0.479,-0.222],[0.359,-0.385],[0.204,-0.491],[0,-0.701],[-0.331,-0.613],[-0.578,-0.379]],"v":[[726.979,152.703],[724.991,153.255],[723.596,154.727],[723.088,156.767],[723.582,158.808],[724.935,160.263],[726.908,160.797],[728.458,160.473],[729.713,159.571],[730.558,158.265],[730.869,156.733],[730.361,154.762],[728.973,153.272]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.212,-0.018],[-0.733,-0.275],[-0.606,-0.637],[-0.374,-1.092],[0,-1.646],[0.303,-1.237],[0.571,-0.846],[0.803,-0.438],[1.015,0],[0.789,0.397],[0.507,0.712],[0.141,0.946],[0,0],[-0.571,-0.537],[-0.944,0],[-0.796,1.209],[0,2.207],[0,0],[0.451,-0.357],[0.55,-0.192],[0.62,0],[0.86,0.508],[0.514,0.894],[0,1.156],[-0.486,0.911],[-0.895,0.543]],"o":[[0.733,0.006],[0.74,0.274],[0.606,0.63],[0.366,1.092],[0,1.594],[-0.296,1.233],[-0.557,0.847],[-0.803,0.438],[-1.001,0],[-0.782,-0.402],[-0.493,-0.719],[0,0],[0.19,0.824],[0.578,0.531],[1.388,0],[0.803,-1.209],[0,0],[-0.331,0.49],[-0.444,0.356],[-0.55,0.192],[-1.022,0],[-0.853,-0.514],[-0.507,-0.899],[0,-1.097],[0.5,-0.917],[0.902,-0.543]],"v":[[726.979,150.776],[729.184,151.197],[731.2,152.564],[732.666,155.147],[733.215,159.255],[732.757,163.503],[731.461,166.621],[729.417,168.548],[726.697,169.206],[724.012,168.609],[722.081,166.937],[721.129,164.44],[723.265,164.44],[724.413,166.481],[726.697,167.278],[729.974,165.465],[731.186,160.342],[731.045,160.342],[729.875,161.611],[728.381,162.435],[726.626,162.724],[723.8,161.962],[721.749,159.85],[720.988,156.767],[721.721,153.755],[723.807,151.565]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0],[-0.726,1.261],[0,2.336],[0.331,1.092],[0.62,0.572],[0.867,0],[0.733,-1.279],[0,-2.33],[-0.324,-1.086],[-0.613,-0.567]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.324,-1.092],[-0.613,-0.572],[-1.297,0],[-0.726,1.273],[0,1.553],[0.331,1.086],[0.62,0.566]],"v":[[711.7,167.278],[714.752,165.387],[715.837,159.991],[715.336,156.023],[713.92,153.527],[711.7,152.669],[708.663,154.587],[707.57,159.991],[708.057,163.95],[709.466,166.429]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[1.325,0],[0.93,0.718],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.724],[-1.304,0],[-0.923,-0.73],[-0.493,-1.378],[0,-1.939],[0.493,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.93,-0.724],[-0.493,-1.378],[0,-1.939],[0.493,-1.378],[0.937,-0.73],[1.311,0],[0.937,0.724],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.718]],"v":[[711.7,169.206],[708.331,168.128],[706.203,164.984],[705.463,159.991],[706.203,155.024],[708.339,151.872],[711.7,150.776],[715.055,151.872],[717.197,155.024],[717.937,159.991],[717.204,164.984],[715.076,168.128]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.874,0],[-0.719,1.261],[0,2.336],[0.331,1.092],[0.62,0.572],[0.867,0],[0.726,-1.279],[0,-2.33],[-0.331,-1.086],[-0.613,-0.567]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.331,-1.092],[-0.613,-0.572],[-1.297,0],[-0.733,1.273],[0,1.553],[0.324,1.086],[0.62,0.566]],"v":[[696.288,167.278],[699.332,165.387],[700.424,159.991],[699.924,156.023],[698.501,153.527],[696.288,152.669],[693.25,154.587],[692.151,159.991],[692.644,163.95],[694.054,166.429]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[1.318,0],[0.93,0.718],[0.493,1.372],[0,1.951],[-0.486,1.372],[-0.93,0.724],[-1.311,0],[-0.93,-0.73],[-0.486,-1.378],[0,-1.939],[0.493,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.923,-0.724],[-0.486,-1.378],[0,-1.939],[0.5,-1.378],[0.93,-0.73],[1.311,0],[0.937,0.724],[0.5,1.372],[0,1.951],[-0.486,1.372],[-0.923,0.718]],"v":[[696.288,169.206],[692.912,168.128],[690.784,164.984],[690.051,159.991],[690.784,155.024],[692.926,151.872],[696.288,150.776],[699.642,151.872],[701.778,155.024],[702.525,159.991],[701.785,164.984],[699.656,168.128]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0.296,0],[0.303,0.309],[0,0.432],[-0.31,0.309],[-0.43,0],[-0.31,-0.309],[0,-0.432],[0.148,-0.24],[0.24,-0.146]],"o":[[-0.43,0],[-0.31,-0.309],[0,-0.432],[0.303,-0.309],[0.437,0],[0.31,0.309],[0,0.286],[-0.141,0.24],[-0.233,0.14]],"v":[[685.809,169.1],[684.702,168.636],[684.237,167.523],[684.702,166.411],[685.809,165.947],[686.922,166.411],[687.387,167.523],[687.169,168.312],[686.598,168.89]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0],[-0.726,1.261],[0,2.336],[0.331,1.092],[0.62,0.572],[0.867,0],[0.733,-1.279],[0,-2.33],[-0.324,-1.086],[-0.613,-0.567]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.324,-1.092],[-0.613,-0.572],[-1.297,0],[-0.733,1.273],[0,1.553],[0.331,1.086],[0.62,0.566]],"v":[[675.329,167.278],[678.381,165.387],[679.466,159.991],[678.966,156.023],[677.549,153.527],[675.329,152.669],[672.292,154.587],[671.2,159.991],[671.686,163.95],[673.095,166.429]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[1.325,0],[0.93,0.718],[0.486,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.724],[-1.304,0],[-0.923,-0.73],[-0.493,-1.378],[0,-1.939],[0.486,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.93,-0.724],[-0.493,-1.378],[0,-1.939],[0.493,-1.378],[0.937,-0.73],[1.311,0],[0.937,0.724],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.718]],"v":[[675.329,169.206],[671.961,168.128],[669.832,164.984],[669.093,159.991],[669.832,155.024],[671.968,151.872],[675.329,150.776],[678.684,151.872],[680.826,155.024],[681.566,159.991],[680.833,164.984],[678.705,168.128]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.747,0.491],[1.085,0],[0.599,-0.257],[0.331,-0.45],[0,-0.572],[-0.226,-0.345],[-0.366,-0.228],[-0.395,-0.146],[-0.338,-0.087],[0,0],[-0.571,-0.216],[-0.521,-0.373],[-0.345,-0.578],[0,-0.841],[0.507,-0.783],[0.965,-0.461],[1.381,0],[0.937,0.414],[0.543,0.741],[0.07,0.981],[0,0],[-0.402,-0.443],[-0.613,-0.216],[-0.712,0],[-0.655,0.268],[-0.388,0.485],[0,0.654],[0.331,0.373],[0.543,0.233],[0.627,0.175],[0,0],[0.818,0.748],[0,1.209],[-0.543,0.747],[-0.923,0.414],[-1.142,0],[-0.902,-0.415],[-0.529,-0.712],[-0.028,-0.906]],"o":[[-0.106,-0.888],[-0.747,-0.491],[-0.796,0],[-0.585,0.257],[-0.324,0.45],[0,0.479],[0.233,0.338],[0.359,0.222],[0.402,0.14],[0,0],[0.465,0.123],[0.578,0.216],[0.536,0.368],[0.345,0.578],[0,0.97],[-0.5,0.782],[-0.965,0.462],[-1.283,0],[-0.937,-0.415],[-0.529,-0.742],[0,0],[0.056,0.677],[0.402,0.438],[0.62,0.21],[0.832,0],[0.662,-0.274],[0.38,-0.491],[0,-0.595],[-0.331,-0.374],[-0.543,-0.234],[0,0],[-1.395,-0.403],[-0.817,-0.747],[0,-1.004],[0.55,-0.753],[0.93,-0.421],[1.156,0],[0.895,0.409],[0.529,0.712],[0,0]],"v":[[562.595,155.506],[561.312,153.439],[558.564,152.703],[556.478,153.089],[555.096,154.148],[554.603,155.681],[554.948,156.917],[555.843,157.766],[556.978,158.318],[558.077,158.659],[559.896,159.15],[561.453,159.658],[563.109,160.542],[564.427,161.962],[564.941,164.09],[564.18,166.718],[561.975,168.583],[558.458,169.275],[555.125,168.654],[552.912,166.919],[552.01,164.335],[554.258,164.335],[554.941,166.017],[556.464,166.998],[558.458,167.313],[560.692,166.91],[562.264,165.771],[562.841,164.055],[562.341,162.601],[561.023,161.69],[559.268,161.077],[557.056,160.447],[553.729,158.721],[552.503,155.786],[553.321,153.159],[555.526,151.407],[558.634,150.776],[561.721,151.399],[563.856,153.08],[564.695,155.506]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[530.84,151.022],[533.433,151.022],[539.529,165.912],[539.741,165.912],[545.836,151.022],[548.43,151.022],[548.43,168.96],[546.393,168.96],[546.393,155.331],[546.224,155.331],[540.614,168.96],[538.655,168.96],[533.046,155.331],[532.87,155.331],[532.87,168.96],[530.84,168.96]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[514.751,168.96],[514.751,151.022],[516.922,151.022],[516.922,159.921],[517.133,159.921],[525.188,151.022],[528.028,151.022],[520.495,159.115],[528.028,168.96],[525.399,168.96],[519.163,160.621],[516.922,163.144],[516.922,168.96]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.747,0.491],[1.085,0],[0.599,-0.257],[0.331,-0.45],[0,-0.572],[-0.233,-0.345],[-0.359,-0.228],[-0.395,-0.146],[-0.331,-0.087],[0,0],[-0.571,-0.216],[-0.529,-0.373],[-0.345,-0.578],[0,-0.841],[0.507,-0.783],[0.973,-0.461],[1.381,0],[0.944,0.414],[0.536,0.741],[0.07,0.981],[0,0],[-0.395,-0.443],[-0.613,-0.216],[-0.712,0],[-0.662,0.268],[-0.381,0.485],[0,0.654],[0.331,0.373],[0.543,0.233],[0.634,0.175],[0,0],[0.818,0.748],[0,1.209],[-0.543,0.747],[-0.923,0.414],[-1.149,0],[-0.895,-0.415],[-0.529,-0.712],[-0.028,-0.906]],"o":[[-0.106,-0.888],[-0.747,-0.491],[-0.796,0],[-0.592,0.257],[-0.331,0.45],[0,0.479],[0.233,0.338],[0.366,0.222],[0.395,0.14],[0,0],[0.465,0.123],[0.578,0.216],[0.529,0.368],[0.345,0.578],[0,0.97],[-0.507,0.782],[-0.958,0.462],[-1.283,0],[-0.93,-0.415],[-0.529,-0.742],[0,0],[0.063,0.677],[0.402,0.438],[0.613,0.21],[0.832,0],[0.662,-0.274],[0.388,-0.491],[0,-0.595],[-0.338,-0.374],[-0.543,-0.234],[0,0],[-1.402,-0.403],[-0.817,-0.747],[0,-1.004],[0.55,-0.753],[0.923,-0.421],[1.156,0],[0.902,0.409],[0.529,0.712],[0,0]],"v":[[501.897,155.506],[500.614,153.439],[497.866,152.703],[495.78,153.089],[494.399,154.148],[493.905,155.681],[494.251,156.917],[495.139,157.766],[496.28,158.318],[497.373,158.659],[499.198,159.15],[500.755,159.658],[502.411,160.542],[503.722,161.962],[504.244,164.09],[503.483,166.718],[501.27,168.583],[497.76,169.275],[494.42,168.654],[492.214,166.919],[491.312,164.335],[493.553,164.335],[494.237,166.017],[495.766,166.998],[497.76,167.313],[499.994,166.91],[501.559,165.771],[502.137,164.055],[501.643,162.601],[500.325,161.69],[498.564,161.077],[496.358,160.447],[493.031,158.721],[491.805,155.786],[492.616,153.159],[494.829,151.407],[497.936,150.776],[501.016,151.399],[503.158,153.08],[503.997,155.506]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[471.932,168.96],[467.027,151.022],[469.233,151.022],[472.982,165.632],[473.158,165.632],[476.978,151.022],[479.43,151.022],[483.243,165.632],[483.419,165.632],[487.168,151.022],[489.381,151.022],[484.469,168.96],[482.228,168.96],[478.275,154.666],[478.134,154.666],[474.173,168.96]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[454.976,161.953],[464.159,161.953],[464.159,163.88],[454.976,163.88]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[454.138,168.96],[451.862,168.96],[458.444,151.022],[460.685,151.022],[467.274,168.96],[464.998,168.96],[459.635,153.86],[459.494,153.86]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-10.095,0],[0,0],[0,-10.095],[0,0],[10.095,0],[0,0],[0,10.095],[0,0]],"o":[[0,0],[10.095,0],[0,0],[0,10.095],[0,0],[-10.095,0],[0,0],[0,-10.095]],"v":[[46.334,142.225],[297.138,142.225],[315.417,160.504],[315.417,160.504],[297.138,178.783],[46.334,178.783],[28.055,160.504],[28.055,160.504]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.118,0.125,0.141,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-10.095,0],[0,0],[0,-10.095],[0,0],[10.095,0],[0,0],[0,10.095],[0,0]],"o":[[0,0],[10.095,0],[0,0],[0,10.095],[0,0],[-10.095,0],[0,0],[0,-10.095]],"v":[[445.563,142.225],[572.005,142.225],[590.285,160.504],[590.285,160.504],[572.005,178.783],[445.563,178.783],[427.284,160.504],[427.284,160.504]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.118,0.125,0.141,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":303,"st":0},{"ind":5,"ty":4,"nm":"L","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":287,"s":[100]},{"t":301,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-442.293,-170.005,0]},"a":{"a":0,"k":[-110.912,15.783,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.001,0],[0.014,1.448],[-0.847,0.49],[-2.553,1.476],[-0.88,-0.505],[-2.508,-1.499],[-0.016,-0.883],[-0.016,-0.928],[0.303,-0.171],[0.885,-0.541],[-0.01,0.529],[0.007,0.847],[0.731,0.448],[1.36,0.811],[0.864,-0.507],[1.28,-0.732],[-0.012,-1.061],[0.012,-1.502],[-0.881,-0.521],[-1.204,-0.752],[-1.015,0.635],[-4.528,2.747],[-1.034,-0.616],[-2.418,-1.381],[0.009,-1.157],[-0.023,-2.868],[0.975,-0.56],[2.492,-1.417],[0.865,0.496],[2.48,1.437],[-0.036,1.094],[0.078,0.618],[-0.71,0.341],[-0.666,0.428],[0.046,-0.783],[0.005,-0.737],[-0.821,-0.484],[-1.328,-0.758],[-0.851,0.505],[-1.239,0.747],[0.018,1.093],[-0.02,1.42],[0.96,0.553],[1.198,0.71],[0.998,-0.587],[4.41,-2.626],[1.282,0.797],[2.3,1.313],[-0.031,1.196],[0,1.42]],"o":[[0,-1.448],[-0.009,-0.962],[2.553,-1.476],[0.887,-0.513],[2.534,1.454],[0.756,0.452],[0.017,0.928],[0.006,0.337],[-0.904,0.51],[-0.464,0.284],[0.016,-0.846],[-0.007,-0.86],[-1.35,-0.827],[-0.845,-0.504],[-1.271,0.747],[-0.913,0.522],[0.017,1.502],[-0.008,1.026],[1.222,0.723],[1.005,0.627],[4.49,-2.812],[1.007,-0.611],[2.393,1.424],[1.001,0.572],[-0.022,2.868],[0.009,1.123],[-2.486,1.427],[-0.86,0.489],[-2.487,-1.425],[-0.935,-0.542],[0.021,-0.628],[-0.1,-0.795],[0.711,-0.342],[0.54,-0.347],[-0.043,0.735],[-0.007,0.959],[1.317,0.776],[0.852,0.487],[1.244,-0.738],[0.915,-0.552],[-0.023,-1.42],[0.016,-1.124],[-1.207,-0.695],[-0.987,-0.584],[-4.424,2.603],[-1.263,0.752],[-2.248,-1.398],[-1.026,-0.585],[0.037,-1.419],[0.001,0]],"v":[[-129.524,11.123],[-129.527,6.78],[-128.308,4.629],[-120.67,0.165],[-117.94,0.134],[-110.388,4.582],[-109.228,6.628],[-109.218,9.413],[-109.618,10.142],[-112.304,11.716],[-112.915,11.362],[-112.919,8.822],[-114.027,6.845],[-118.094,4.39],[-120.653,4.373],[-124.485,6.584],[-125.836,8.935],[-125.834,13.442],[-124.525,15.732],[-120.888,17.948],[-117.889,17.962],[-104.181,9.931],[-101.181,9.888],[-93.96,14.089],[-92.491,16.628],[-92.492,25.232],[-93.895,27.722],[-101.338,32.029],[-103.993,32.018],[-111.431,27.702],[-112.805,25.281],[-112.817,23.398],[-111.92,21.795],[-109.87,20.598],[-109.101,21.002],[-109.104,23.214],[-107.885,25.386],[-103.918,27.686],[-101.35,27.672],[-97.623,25.445],[-96.256,23.007],[-96.257,18.746],[-97.689,16.263],[-101.299,14.162],[-104.232,14.178],[-117.518,21.962],[-121.175,21.993],[-128.034,17.985],[-129.536,15.384],[-129.527,11.123]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.988,0.98,0.992,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.448],[0.001,0],[0.037,-1.419],[-1.026,-0.585],[-2.248,-1.398],[-1.263,0.752],[-4.424,2.603],[-0.987,-0.584],[-1.207,-0.695],[0.016,-1.124],[-0.023,-1.42],[0.915,-0.552],[1.244,-0.738],[0.852,0.487],[1.317,0.776],[-0.007,0.959],[-0.043,0.735],[0.54,-0.347],[0.711,-0.342],[-0.1,-0.795],[0.021,-0.628],[-0.935,-0.542],[-2.487,-1.425],[-0.86,0.489],[-2.486,1.427],[0.009,1.123],[-0.022,2.868],[1.001,0.572],[2.393,1.424],[1.007,-0.611],[4.49,-2.812],[1.005,0.627],[1.222,0.723],[-0.008,1.026],[0.017,1.502],[-0.913,0.522],[-1.271,0.747],[-0.845,-0.504],[-1.35,-0.827],[-0.007,-0.86],[0.016,-0.846],[-0.464,0.284],[-0.904,0.51],[0.006,0.337],[0.017,0.928],[0.756,0.452],[2.534,1.454],[0.887,-0.513],[2.553,-1.476],[-0.009,-0.962]],"o":[[-0.001,0],[0,1.42],[-0.031,1.196],[2.3,1.313],[1.282,0.797],[4.41,-2.626],[0.998,-0.587],[1.198,0.71],[0.96,0.553],[-0.02,1.42],[0.018,1.093],[-1.239,0.747],[-0.851,0.505],[-1.328,-0.758],[-0.821,-0.484],[0.005,-0.737],[0.046,-0.783],[-0.666,0.428],[-0.71,0.341],[0.078,0.618],[-0.036,1.094],[2.48,1.437],[0.865,0.496],[2.492,-1.417],[0.975,-0.56],[-0.023,-2.868],[0.009,-1.157],[-2.418,-1.381],[-1.034,-0.616],[-4.528,2.747],[-1.015,0.635],[-1.204,-0.752],[-0.881,-0.521],[0.012,-1.502],[-0.012,-1.061],[1.28,-0.732],[0.864,-0.507],[1.36,0.811],[0.731,0.448],[0.007,0.847],[-0.01,0.529],[0.885,-0.541],[0.303,-0.171],[-0.016,-0.928],[-0.016,-0.883],[-2.508,-1.499],[-0.88,-0.505],[-2.553,1.476],[-0.847,0.49],[0.014,1.448]],"v":[[-129.524,11.123],[-129.527,11.123],[-129.536,15.384],[-128.034,17.985],[-121.175,21.993],[-117.518,21.962],[-104.232,14.178],[-101.299,14.162],[-97.689,16.263],[-96.257,18.746],[-96.256,23.007],[-97.623,25.445],[-101.35,27.672],[-103.918,27.686],[-107.885,25.386],[-109.104,23.214],[-109.101,21.002],[-109.87,20.598],[-111.92,21.795],[-112.817,23.398],[-112.805,25.281],[-111.431,27.702],[-103.993,32.018],[-101.338,32.029],[-93.895,27.722],[-92.492,25.232],[-92.491,16.628],[-93.96,14.089],[-101.181,9.888],[-104.181,9.931],[-117.889,17.962],[-120.888,17.948],[-124.525,15.732],[-125.834,13.442],[-125.836,8.935],[-124.485,6.584],[-120.653,4.373],[-118.094,4.39],[-114.027,6.845],[-112.919,8.822],[-112.915,11.362],[-112.304,11.716],[-109.618,10.142],[-109.218,9.413],[-109.228,6.628],[-110.388,4.582],[-117.94,0.134],[-120.67,0.165],[-128.308,4.629],[-129.527,6.78]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.463,-1.387],[0,-3.005],[0.071,-0.303],[10.812,-3.281],[1.658,0.047],[2.314,0.386],[-2.369,15.173],[-14.691,-1.824],[-4.05,-11.02]],"o":[[0,3.005],[-0.278,0.237],[-2.583,11.002],[-1.577,0.479],[-2.373,-0.067],[-15.111,-2.518],[2.277,-14.585],[11.681,1.451],[0.506,1.378]],"v":[[-83.137,11.5],[-83.137,20.515],[-83.438,21.409],[-103.531,42.832],[-108.376,43.475],[-115.491,43.351],[-138.343,11.466],[-107.765,-11.77],[-84.262,7.268]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.514,0.282,0.898,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":22,"op":303,"st":22},{"ind":6,"ty":4,"nm":"L","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":287,"s":[100]},{"t":301,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-41.619,-171.043,0]},"a":{"a":0,"k":[416.291,14.417,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.283,0],[0.724,0.312],[0.493,0.575],[0.263,0.822],[0,1.003],[-0.263,0.822],[-0.493,0.575],[-0.707,0.312],[-0.904,0],[-0.773,-0.543],[-0.362,-0.872],[0,0],[0.543,0.362],[0.789,0],[0.46,-0.197],[0.312,-0.345],[0.164,-0.477],[0,-0.56],[0,0],[-0.148,-0.477],[-0.312,-0.345],[-0.46,-0.197],[-0.592,0],[-0.559,0.395],[-0.329,0.691],[0,0],[0.805,-0.56]],"o":[[-0.921,0],[-0.707,-0.329],[-0.493,-0.576],[-0.247,-0.822],[0,-1.004],[0.263,-0.822],[0.493,-0.592],[0.707,-0.313],[1.233,0],[0.773,0.543],[0,0],[-0.23,-0.658],[-0.526,-0.362],[-0.576,0],[-0.444,0.18],[-0.312,0.345],[-0.148,0.476],[0,0],[0,0.559],[0.164,0.476],[0.312,0.345],[0.46,0.18],[0.855,0],[0.559,-0.395],[0,0],[-0.378,0.855],[-0.789,0.559]],"v":[[278.725,23.874],[276.259,23.405],[274.458,22.049],[273.323,19.952],[272.953,17.214],[273.348,14.477],[274.483,12.38],[276.283,11.023],[278.7,10.555],[281.71,11.369],[283.411,13.49],[281.833,14.329],[280.674,12.799],[278.7,12.257],[277.147,12.553],[276.012,13.342],[275.297,14.575],[275.075,16.129],[275.075,18.3],[275.297,19.854],[276.012,21.087],[277.171,21.901],[278.75,22.172],[280.871,21.58],[282.203,19.952],[283.609,20.914],[281.833,23.035]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.444,0],[-0.625,0.691],[0,1.151],[0,0],[0.641,0.691],[1.151,0],[0.395,-0.116],[0.296,-0.23],[0.18,-0.329],[0,-0.428],[0,0],[-0.165,-0.329],[-0.296,-0.23],[-0.395,-0.116]],"o":[[1.151,0],[0.641,-0.708],[0,0],[0,-1.152],[-0.625,-0.708],[-0.444,0],[-0.395,0.115],[-0.296,0.214],[-0.165,0.312],[0,0],[0,0.427],[0.18,0.312],[0.296,0.214],[0.395,0.115]],"v":[[263.664,22.123],[266.328,21.087],[267.29,18.3],[267.29,16.129],[266.328,13.367],[263.664,12.306],[262.407,12.479],[261.371,12.997],[260.655,13.811],[260.409,14.92],[260.409,19.508],[260.655,20.643],[261.371,21.457],[262.407,21.95]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.793,0],[-0.872,-1.168],[0,-2.105],[0.888,-1.168],[1.562,0],[0.822,1.579],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.822,-1.579],[1.562,0],[0.888,1.167],[0,2.104],[-0.872,1.167],[-1.793,0],[0,0],[0,0],[0,0],[0,0]],"v":[[258.435,5.326],[260.409,5.326],[260.409,12.923],[260.507,12.923],[264.429,10.555],[268.08,12.306],[269.411,17.214],[268.08,22.123],[264.429,23.874],[260.507,21.506],[260.409,21.506],[260.409,23.578],[258.435,23.578]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.444,0],[-0.624,0.691],[0,1.151],[0,0],[0.641,0.691],[1.152,0],[0.395,-0.116],[0.296,-0.23],[0.181,-0.329],[0,-0.428],[0,0],[-0.164,-0.329],[-0.296,-0.23],[-0.395,-0.116]],"o":[[1.152,0],[0.641,-0.708],[0,0],[0,-1.152],[-0.624,-0.708],[-0.444,0],[-0.395,0.115],[-0.296,0.214],[-0.164,0.312],[0,0],[0,0.427],[0.181,0.312],[0.296,0.214],[0.395,0.115]],"v":[[248.874,22.123],[251.538,21.087],[252.5,18.3],[252.5,16.129],[251.538,13.367],[248.874,12.306],[247.617,12.479],[246.581,12.997],[245.865,13.811],[245.619,14.92],[245.619,19.508],[245.865,20.643],[246.581,21.457],[247.617,21.95]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.792,0],[-0.871,-1.168],[0,-2.105],[0.888,-1.168],[1.562,0],[0.822,1.579],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.822,-1.579],[1.562,0],[0.888,1.167],[0,2.104],[-0.871,1.167],[-1.792,0],[0,0],[0,0],[0,0],[0,0]],"v":[[243.645,5.326],[245.619,5.326],[245.619,12.923],[245.717,12.923],[249.639,10.555],[253.29,12.306],[254.621,17.214],[253.29,22.123],[249.639,23.874],[245.717,21.506],[245.619,21.506],[245.619,23.578],[243.645,23.578]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.592,0.526],[0,0.839],[0,0],[0.592,0.46],[0.937,0],[0.576,-0.412],[0.362,-0.658],[0,0],[-0.312,0.328],[-0.411,0.263],[-0.543,0.164],[-0.707,0],[-0.641,-0.197],[-0.477,-0.378],[-0.263,-0.543],[0,-0.691],[0.181,-0.444],[0.312,-0.329],[0.411,-0.23],[0.46,-0.116],[0,0],[-0.444,-0.23],[-0.345,-0.362],[-0.197,-0.51],[0,-0.641],[0.296,-0.625],[0.526,-0.444],[0.74,-0.247],[0.888,0],[0.592,0.164],[0.46,0.279],[0.345,0.345],[0.263,0.378],[0,0],[-0.247,-0.28],[-0.312,-0.214],[-0.411,-0.116],[-0.543,0],[-0.641,0.559],[0,1.036],[0,0],[0.641,0.559],[1.266,0],[0,0],[0,0]],"o":[[1.2,0],[0.608,-0.543],[0,0],[0,-0.921],[-0.576,-0.461],[-0.921,0],[-0.559,0.395],[0,0],[0.214,-0.345],[0.312,-0.345],[0.428,-0.264],[0.559,-0.165],[0.74,0],[0.641,0.18],[0.477,0.362],[0.28,0.543],[0,0.559],[-0.164,0.444],[-0.296,0.328],[-0.411,0.23],[0,0],[0.477,0.099],[0.444,0.214],[0.345,0.345],[0.214,0.493],[0,0.74],[-0.28,0.608],[-0.51,0.427],[-0.724,0.247],[-0.756,0],[-0.576,-0.165],[-0.444,-0.28],[-0.329,-0.345],[0,0],[0.23,0.345],[0.247,0.279],[0.329,0.197],[0.411,0.115],[1.217,0],[0.658,-0.56],[0,0],[0,-1.02],[-0.625,-0.56],[0,0],[0,0],[0,0]],"v":[[233.172,13.663],[235.861,12.873],[236.774,10.801],[236.774,10.629],[235.886,8.557],[233.616,7.866],[231.372,8.483],[229.991,10.061],[228.437,8.877],[229.226,7.866],[230.311,6.954],[231.767,6.312],[233.666,6.066],[235.738,6.362],[237.415,7.2],[238.525,8.557],[238.944,10.407],[238.673,11.911],[237.958,13.071],[236.897,13.909],[235.59,14.427],[235.59,14.526],[236.971,15.019],[238.155,15.882],[238.969,17.165],[239.289,18.867],[238.846,20.914],[237.637,22.493],[235.762,23.504],[233.345,23.874],[231.323,23.627],[229.769,22.961],[228.585,22.024],[227.697,20.939],[229.251,19.755],[229.966,20.692],[230.805,21.432],[231.915,21.901],[233.345,22.073],[236.132,21.235],[237.119,18.842],[237.119,18.645],[236.157,16.277],[233.32,15.438],[231.273,15.438],[231.273,13.663]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.543,0.789],[0,0.888],[0,0],[0.543,0.559],[1.068,0],[0.575,-0.543],[0.279,-0.888],[0,0],[-0.28,0.476],[-0.444,0.378],[-0.625,0.23],[-0.839,0],[-0.658,-0.247],[-0.444,-0.444],[-0.23,-0.609],[0,-0.724],[0.197,-0.576],[0.345,-0.526],[0.476,-0.51],[0.575,-0.493],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.839,-0.757],[0.543,-0.806],[0,0],[0,-1.036],[-0.543,-0.576],[-1.053,0],[-0.56,0.526],[0,0],[0.164,-0.51],[0.296,-0.493],[0.444,-0.378],[0.641,-0.23],[0.855,0],[0.674,0.247],[0.46,0.444],[0.247,0.608],[0,0.658],[-0.181,0.575],[-0.329,0.526],[-0.461,0.493],[0,0],[0,0],[0,0]],"v":[[224.969,23.578],[213.475,23.578],[213.475,21.457],[219.222,16.277],[221.294,13.959],[222.108,11.418],[222.108,11.122],[221.294,8.729],[218.876,7.866],[216.435,8.68],[215.177,10.801],[213.327,10.111],[213.993,8.631],[215.103,7.324],[216.706,6.411],[218.926,6.066],[221.195,6.436],[222.872,7.472],[223.908,9.05],[224.278,11.048],[223.982,12.898],[223.193,14.55],[221.984,16.104],[220.43,17.584],[215.621,21.777],[224.969,21.777]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[199.03,23.578],[199.03,21.777],[203.963,21.777],[203.963,7.891],[203.79,7.891],[199.449,11.936],[198.241,10.629],[202.804,6.362],[206.035,6.362],[206.035,21.777],[210.573,21.777],[210.573,23.578]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.576,0],[0.23,0.23],[0,0.362],[0,0],[-0.23,0.23],[-0.576,0],[-0.23,-0.247],[0,-0.362],[0,0],[0.23,-0.247]],"o":[[-0.576,0],[-0.23,-0.247],[0,0],[0,-0.362],[0.23,-0.247],[0.576,0],[0.23,0.23],[0,0],[0,0.362],[-0.23,0.23]],"v":[[191.813,8.039],[190.604,7.694],[190.259,6.781],[190.259,6.386],[190.604,5.498],[191.813,5.128],[193.022,5.498],[193.367,6.386],[193.367,6.781],[193.022,7.694]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.46,-0.543],[0.97,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0.855],[-0.444,0.543],[0,0],[0,0]],"v":[[184.66,26.834],[190.826,26.834],[190.826,12.528],[184.438,12.528],[184.438,10.851],[192.8,10.851],[192.8,25.601],[192.109,27.697],[189.988,28.511],[184.66,28.511]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[171.622,23.578],[178.356,8.138],[170.808,8.138],[170.808,11.344],[168.958,11.344],[168.958,6.362],[180.452,6.362],[180.452,8.187],[173.842,23.578]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,0],[-0.641,0.641],[0,1.167],[0,0],[0.658,0.641],[1.184,0],[0.658,-0.641],[0,-1.168],[0,0],[-0.641,-0.641]],"o":[[1.184,0],[0.658,-0.641],[0,0],[0,-1.168],[-0.641,-0.641],[-1.184,0],[-0.641,0.641],[0,0],[0,1.167],[0.658,0.641]],"v":[[159.964,15.364],[162.702,14.402],[163.689,11.689],[163.689,11.492],[162.702,8.779],[159.964,7.817],[157.202,8.779],[156.24,11.492],[156.24,11.689],[157.202,14.402]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.02],[0.395,-1.135],[0.609,-0.937],[0.74,-0.724],[0.708,-0.444],[0,0],[-0.723,0.641],[-0.559,0.691],[-0.378,0.789],[-0.247,1.003],[0,0],[0.674,-0.477],[1.069,0],[0.641,0.247],[0.461,0.46],[0.264,0.641],[0,0.822],[-0.263,0.691],[-0.51,0.493],[-0.707,0.279],[-0.871,0],[-0.723,-0.313],[-0.493,-0.576],[-0.263,-0.822]],"o":[[0,1.283],[-0.378,1.118],[-0.608,0.92],[-0.723,0.707],[0,0],[0.937,-0.674],[0.74,-0.641],[0.56,-0.708],[0.378,-0.806],[0,0],[-0.427,0.707],[-0.658,0.46],[-0.756,0],[-0.624,-0.247],[-0.444,-0.461],[-0.247,-0.658],[0,-0.839],[0.28,-0.708],[0.51,-0.51],[0.724,-0.28],[0.905,0],[0.724,0.296],[0.51,0.559],[0.28,0.822]],"v":[[165.785,12.676],[165.193,16.302],[163.714,19.385],[161.691,21.851],[159.545,23.578],[156.881,23.578],[159.372,21.605],[161.321,19.607],[162.727,17.362],[163.664,14.649],[163.541,14.6],[161.888,16.376],[159.298,17.066],[157.202,16.696],[155.574,15.636],[154.513,13.983],[154.143,11.763],[154.538,9.469],[155.722,7.669],[157.547,6.485],[159.94,6.066],[162.382,6.534],[164.207,7.842],[165.366,9.913]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,0],[-0.641,0.641],[0,1.167],[0,0],[0.658,0.641],[1.184,0],[0.658,-0.641],[0,-1.168],[0,0],[-0.641,-0.641]],"o":[[1.184,0],[0.658,-0.641],[0,0],[0,-1.168],[-0.641,-0.641],[-1.184,0],[-0.641,0.641],[0,0],[0,1.167],[0.658,0.641]],"v":[[145.175,22.123],[147.913,21.161],[148.9,18.448],[148.9,18.25],[147.913,15.537],[145.175,14.575],[142.413,15.537],[141.451,18.25],[141.451,18.448],[142.413,21.161]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0.872,0],[0.724,0.296],[0.509,0.559],[0.28,0.822],[0,1.019],[-0.378,1.118],[-0.592,0.92],[-0.74,0.707],[-0.707,0.444],[0,0],[0.74,-0.641],[0.559,-0.708],[0.378,-0.806],[0.247,-1.004],[0,0],[-0.674,0.46],[-1.069,0],[-0.625,-0.247],[-0.46,-0.461],[-0.247,-0.658],[0,-0.806],[0.28,-0.708],[0.51,-0.51],[0.724,-0.28]],"o":[[-0.904,0],[-0.724,-0.313],[-0.493,-0.576],[-0.263,-0.822],[0,-1.283],[0.395,-1.135],[0.608,-0.937],[0.74,-0.724],[0,0],[-0.937,0.674],[-0.724,0.641],[-0.559,0.691],[-0.378,0.789],[0,0],[0.411,-0.708],[0.674,-0.477],[0.756,0],[0.625,0.247],[0.46,0.46],[0.263,0.658],[0,0.839],[-0.28,0.691],[-0.493,0.493],[-0.707,0.279]],"v":[[145.2,23.874],[142.758,23.43],[140.908,22.123],[139.749,20.026],[139.354,17.264],[139.921,13.663],[141.401,10.579],[143.424,8.113],[145.594,6.362],[148.258,6.362],[145.742,8.335],[143.819,10.357],[142.413,12.602],[141.475,15.29],[141.599,15.34],[143.227,13.589],[145.841,12.873],[147.913,13.243],[149.541,14.304],[150.601,15.981],[150.996,18.176],[150.577,20.495],[149.393,22.295],[147.568,23.455]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.444,0.543],[-0.97,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-0.856],[0.46,-0.543],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[125.033,21.901],[129.325,21.901],[129.325,12.528],[124.787,12.528],[124.787,10.851],[129.325,10.851],[129.325,8.236],[129.991,6.14],[132.137,5.326],[136.404,5.326],[136.404,7.003],[131.298,7.003],[131.298,10.851],[136.404,10.851],[136.404,12.528],[131.298,12.528],[131.298,21.901],[135.837,21.901],[135.837,23.578],[125.033,23.578]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.526,0.328],[-0.92,0],[-0.624,-0.247],[-0.46,-0.461],[-0.263,-0.658],[0,-0.839],[0.264,-0.708],[0.51,-0.51],[0.724,-0.28],[0.921,0],[0.576,0.164],[0.444,0.279],[0.329,0.345],[0.264,0.378],[0,0],[-0.23,-0.28],[-0.312,-0.214],[-0.395,-0.116],[-0.526,0],[-0.624,0.641],[0,1.135],[0,0],[0.641,0.641],[1.201,0],[0.461,-0.28],[0.378,-0.412],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.428,-0.576],[0.526,-0.345],[0.757,0],[0.641,0.23],[0.461,0.46],[0.264,0.641],[0,0.839],[-0.263,0.691],[-0.51,0.493],[-0.723,0.279],[-0.723,0],[-0.559,-0.165],[-0.427,-0.28],[-0.328,-0.345],[0,0],[0.23,0.345],[0.247,0.279],[0.313,0.197],[0.395,0.115],[1.184,0],[0.641,-0.641],[0,0],[0,-1.135],[-0.641,-0.641],[-0.822,0],[-0.444,0.279],[0,0],[0,0],[0,0],[0,0]],"v":[[120.553,8.162],[112.858,8.162],[112.365,14.748],[112.537,14.748],[113.968,13.391],[116.138,12.873],[118.21,13.243],[119.863,14.279],[120.948,15.956],[121.343,18.176],[120.948,20.495],[119.789,22.295],[117.939,23.455],[115.472,23.874],[113.524,23.627],[112.019,22.961],[110.885,22.024],[109.997,20.939],[111.551,19.755],[112.241,20.692],[113.08,21.432],[114.14,21.901],[115.522,22.073],[118.235,21.111],[119.197,18.448],[119.197,18.25],[118.235,15.586],[115.472,14.624],[113.549,15.044],[112.315,16.08],[110.564,15.833],[111.181,6.362],[120.553,6.362]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.526,0.328],[-0.921,0],[-0.625,-0.247],[-0.46,-0.461],[-0.263,-0.658],[0,-0.839],[0.263,-0.708],[0.51,-0.51],[0.724,-0.28],[0.921,0],[0.576,0.164],[0.444,0.279],[0.329,0.345],[0.263,0.378],[0,0],[-0.23,-0.28],[-0.312,-0.214],[-0.395,-0.116],[-0.526,0],[-0.625,0.641],[0,1.135],[0,0],[0.641,0.641],[1.2,0],[0.46,-0.28],[0.378,-0.412],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.428,-0.576],[0.526,-0.345],[0.756,0],[0.641,0.23],[0.46,0.46],[0.263,0.641],[0,0.839],[-0.263,0.691],[-0.509,0.493],[-0.724,0.279],[-0.724,0],[-0.559,-0.165],[-0.428,-0.28],[-0.329,-0.345],[0,0],[0.23,0.345],[0.247,0.279],[0.312,0.197],[0.395,0.115],[1.184,0],[0.641,-0.641],[0,0],[0,-1.135],[-0.641,-0.641],[-0.822,0],[-0.444,0.279],[0,0],[0,0],[0,0],[0,0]],"v":[[105.764,8.162],[98.069,8.162],[97.575,14.748],[97.748,14.748],[99.179,13.391],[101.349,12.873],[103.421,13.243],[105.074,14.279],[106.159,15.956],[106.553,18.176],[106.159,20.495],[105,22.295],[103.15,23.455],[100.683,23.874],[98.735,23.627],[97.23,22.961],[96.095,22.024],[95.207,20.939],[96.761,19.755],[97.452,20.692],[98.291,21.432],[99.351,21.901],[100.732,22.073],[103.446,21.111],[104.408,18.448],[104.408,18.25],[103.446,15.586],[100.683,14.624],[98.759,15.044],[97.526,16.08],[95.775,15.833],[96.391,6.362],[105.764,6.362]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.152,0],[-0.395,0.115],[-0.296,0.214],[-0.165,0.312],[0,0.427],[0,0],[0.18,0.312],[0.296,0.214],[0.395,0.115],[0.444,0],[0.641,-0.708],[0,-1.152],[0,0],[-0.625,-0.708]],"o":[[0.444,0],[0.395,-0.116],[0.296,-0.23],[0.18,-0.329],[0,0],[0,-0.428],[-0.165,-0.329],[-0.296,-0.23],[-0.395,-0.116],[-1.152,0],[-0.625,0.691],[0,0],[0,1.151],[0.641,0.691]],"v":[[85.844,22.123],[87.102,21.95],[88.138,21.457],[88.829,20.643],[89.1,19.508],[89.1,14.92],[88.829,13.811],[88.138,12.997],[87.102,12.479],[85.844,12.306],[83.156,13.367],[82.219,16.129],[82.219,18.3],[83.156,21.087]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.792,0],[0.888,1.167],[0,2.104],[-0.872,1.167],[-1.562,0],[-0.822,-1.579],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.822,1.579],[-1.562,0],[-0.872,-1.168],[0,-2.105],[0.888,-1.168],[1.792,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[89.1,21.506],[89.002,21.506],[85.08,23.874],[81.405,22.123],[80.097,17.214],[81.405,12.306],[85.08,10.555],[89.002,12.923],[89.1,12.923],[89.1,5.326],[91.073,5.326],[91.073,23.578],[89.1,23.578]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[65.332,23.578],[70.068,17.116],[65.455,10.851],[67.823,10.851],[69.747,13.539],[71.276,15.66],[71.375,15.66],[72.855,13.539],[74.754,10.851],[77.023,10.851],[72.362,17.091],[77.147,23.578],[74.779,23.578],[72.633,20.594],[71.178,18.571],[71.079,18.571],[69.673,20.594],[67.601,23.578]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[0.576,0],[0.23,0.23],[0,0.328],[0,0],[-0.214,0.23],[-0.576,0],[-0.214,-0.23],[0,-0.329],[0,0],[0.23,-0.23]],"o":[[-0.576,0],[-0.214,-0.23],[0,0],[0,-0.329],[0.23,-0.23],[0.576,0],[0.23,0.23],[0,0],[0,0.328],[-0.214,0.23]],"v":[[56.438,16.425],[55.229,16.08],[54.908,15.241],[54.908,14.699],[55.229,13.86],[56.438,13.515],[57.622,13.86],[57.967,14.699],[57.967,15.241],[57.622,16.08]],"c":true}},"nm":"P"},{"ind":22,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.691,0],[-0.493,0.263],[-0.296,0.493],[-0.148,0.691],[0,0.871],[0,0],[0.148,0.707],[0.312,0.493],[0.493,0.263],[0.691,0],[0.493,-0.28],[0.312,-0.493],[0.148,-0.708],[0,-0.856],[0,0],[-0.148,-0.708],[-0.296,-0.493],[-0.493,-0.28]],"o":[[0.691,0],[0.493,-0.28],[0.312,-0.493],[0.148,-0.708],[0,0],[0,-0.856],[-0.148,-0.708],[-0.296,-0.493],[-0.493,-0.28],[-0.691,0],[-0.493,0.263],[-0.296,0.493],[-0.148,0.707],[0,0],[0,0.871],[0.148,0.691],[0.312,0.493],[0.493,0.263]],"v":[[56.438,22.073],[58.214,21.679],[59.398,20.52],[60.088,18.744],[60.31,16.376],[60.31,13.564],[60.088,11.221],[59.398,9.42],[58.214,8.285],[56.438,7.866],[54.662,8.285],[53.453,9.42],[52.787,11.221],[52.565,13.564],[52.565,16.376],[52.787,18.744],[53.453,20.52],[54.662,21.679]],"c":true}},"nm":"P"},{"ind":23,"ty":"sh","ks":{"a":0,"k":{"i":[[1.052,0],[0.756,0.395],[0.493,0.756],[0.23,1.101],[0,1.414],[-0.23,1.101],[-0.493,0.756],[-0.756,0.395],[-1.052,0],[-0.756,-0.412],[-0.493,-0.757],[-0.23,-1.118],[0,-1.398],[0.23,-1.102],[0.493,-0.757],[0.756,-0.412]],"o":[[-1.052,0],[-0.756,-0.412],[-0.493,-0.757],[-0.23,-1.102],[0,-1.398],[0.23,-1.118],[0.493,-0.757],[0.756,-0.412],[1.052,0],[0.756,0.395],[0.493,0.756],[0.23,1.101],[0,1.414],[-0.23,1.101],[-0.493,0.756],[-0.756,0.395]],"v":[[56.438,23.874],[53.725,23.282],[51.85,21.531],[50.765,18.744],[50.419,14.97],[50.765,11.221],[51.85,8.409],[53.725,6.682],[56.438,6.066],[59.151,6.682],[61.025,8.409],[62.111,11.221],[62.456,14.97],[62.111,18.744],[61.025,21.531],[59.151,23.282]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[790.615,22.873],[790.615,4.935],[792.793,4.935],[792.793,12.923],[802.356,12.923],[802.356,4.935],[804.526,4.935],[804.526,22.873],[802.356,22.873],[802.356,14.85],[792.793,14.85],[792.793,22.873]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[773.814,6.862],[773.814,4.935],[787.268,4.935],[787.268,6.862],[781.623,6.862],[781.623,22.873],[779.452,22.873],[779.452,6.862]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[760.051,22.873],[760.051,4.935],[770.876,4.935],[770.876,6.862],[762.222,6.862],[762.222,12.923],[770.319,12.923],[770.319,14.85],[762.222,14.85],[762.222,20.946],[771.017,20.946],[771.017,22.873]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[744.998,22.873],[744.998,18.651],[744.998,17.819],[744.998,4.935],[747.063,4.935],[747.063,22.873]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[736.556,19.195],[736.556,17.407],[744.435,4.935],[745.731,4.935],[745.731,7.703],[744.857,7.703],[738.902,17.127],[738.902,17.267],[749.516,17.267],[749.516,19.195]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[1.163,0],[0.902,0.397],[0.529,0.706],[0.042,0.94],[0,0],[-0.345,-0.42],[-0.571,-0.228],[-0.691,0],[-0.599,0.269],[-0.338,0.479],[0,0.631],[0.324,0.502],[0.634,0.286],[0.909,0],[0,0],[0,0],[0,0],[-0.536,0.257],[-0.303,0.467],[0,0.631],[0.268,0.45],[0.493,0.252],[0.655,0],[0.55,-0.228],[0.345,-0.426],[0.028,-0.595],[0,0],[-0.529,0.706],[-0.86,0.397],[-1.036,0],[-0.796,-0.45],[-0.43,-0.729],[0,-0.846],[0.536,-0.712],[0.902,-0.274],[0,0],[-0.634,-0.777],[0,-1.139],[0.529,-0.777],[0.909,-0.444]],"o":[[-1.156,0],[-0.902,-0.397],[-0.529,-0.712],[0,0],[0.049,0.578],[0.352,0.415],[0.564,0.228],[0.768,0],[0.592,-0.269],[0.345,-0.479],[0,-0.66],[-0.324,-0.508],[-0.627,-0.286],[0,0],[0,0],[0,0],[0.712,0],[0.543,-0.257],[0.31,-0.467],[0,-0.607],[-0.268,-0.45],[-0.479,-0.251],[-0.62,0],[-0.543,0.221],[-0.345,0.421],[0,0],[0.035,-0.94],[0.529,-0.712],[0.86,-0.397],[1.106,0],[0.796,0.444],[0.423,0.73],[0,1.011],[-0.522,0.713],[0,0],[1.135,0.187],[0.641,0.771],[0,0.975],[-0.529,0.771],[-0.909,0.444]],"v":[[727.331,23.119],[724.237,22.523],[722.095,20.868],[721.235,18.388],[723.441,18.388],[724.033,19.886],[725.414,20.85],[727.296,21.191],[729.346,20.789],[730.742,19.667],[731.256,18.003],[730.763,16.26],[729.325,15.069],[727.014,14.64],[725.576,14.64],[725.576,12.713],[727.014,12.713],[728.888,12.327],[730.157,11.241],[730.622,9.594],[730.22,8.009],[729.079,6.958],[727.366,6.581],[725.611,6.923],[724.279,7.895],[723.723,9.419],[721.616,9.419],[722.468,6.949],[724.554,5.285],[727.401,4.689],[730.255,5.364],[732.088,7.124],[732.722,9.489],[731.926,12.073],[729.783,13.553],[729.783,13.694],[732.433,15.139],[733.391,18.003],[732.595,20.631],[730.439,22.453]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0],[-0.726,1.261],[0,2.336],[0.331,1.092],[0.62,0.572],[0.867,0],[0.733,-1.279],[0,-2.33],[-0.324,-1.086],[-0.613,-0.567]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.324,-1.092],[-0.613,-0.572],[-1.297,0],[-0.726,1.273],[0,1.554],[0.331,1.087],[0.62,0.567]],"v":[[711.7,21.191],[714.752,19.3],[715.837,13.904],[715.336,9.936],[713.92,7.44],[711.7,6.581],[708.663,8.5],[707.57,13.904],[708.057,17.863],[709.466,20.342]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[1.325,0],[0.93,0.718],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.724],[-1.304,0],[-0.923,-0.73],[-0.493,-1.378],[0,-1.938],[0.493,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.93,-0.724],[-0.493,-1.378],[0,-1.938],[0.493,-1.378],[0.937,-0.73],[1.311,0],[0.937,0.724],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.718]],"v":[[711.7,23.119],[708.331,22.041],[706.203,18.897],[705.463,13.904],[706.203,8.937],[708.339,5.784],[711.7,4.689],[715.055,5.784],[717.197,8.937],[717.937,13.904],[717.204,18.897],[715.076,22.041]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.874,0],[-0.719,1.261],[0,2.336],[0.331,1.092],[0.62,0.572],[0.867,0],[0.726,-1.279],[0,-2.33],[-0.331,-1.086],[-0.613,-0.567]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.331,-1.092],[-0.613,-0.572],[-1.297,0],[-0.733,1.273],[0,1.554],[0.324,1.087],[0.62,0.567]],"v":[[696.288,21.191],[699.332,19.3],[700.424,13.904],[699.924,9.936],[698.501,7.44],[696.288,6.581],[693.25,8.5],[692.151,13.904],[692.644,17.863],[694.054,20.342]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[1.318,0],[0.93,0.718],[0.493,1.372],[0,1.951],[-0.486,1.372],[-0.93,0.724],[-1.311,0],[-0.93,-0.73],[-0.486,-1.378],[0,-1.938],[0.493,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.923,-0.724],[-0.486,-1.378],[0,-1.938],[0.5,-1.378],[0.93,-0.73],[1.311,0],[0.937,0.724],[0.5,1.372],[0,1.951],[-0.486,1.372],[-0.923,0.718]],"v":[[696.288,23.119],[692.912,22.041],[690.784,18.897],[690.051,13.904],[690.784,8.937],[692.926,5.784],[696.288,4.689],[699.642,5.784],[701.778,8.937],[702.525,13.904],[701.785,18.897],[699.656,22.041]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0.296,0],[0.303,0.309],[0,0.433],[-0.31,0.309],[-0.43,0],[-0.31,-0.309],[0,-0.432],[0.148,-0.24],[0.24,-0.146]],"o":[[-0.43,0],[-0.31,-0.309],[0,-0.432],[0.303,-0.309],[0.437,0],[0.31,0.309],[0,0.286],[-0.141,0.24],[-0.233,0.14]],"v":[[685.809,23.014],[684.702,22.549],[684.237,21.436],[684.702,20.324],[685.809,19.86],[686.922,20.324],[687.387,21.436],[687.169,22.225],[686.598,22.803]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0],[-0.726,1.261],[0,2.336],[0.331,1.092],[0.62,0.572],[0.867,0],[0.733,-1.279],[0,-2.33],[-0.324,-1.086],[-0.613,-0.567]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.324,-1.092],[-0.613,-0.572],[-1.297,0],[-0.733,1.273],[0,1.554],[0.331,1.087],[0.62,0.567]],"v":[[675.329,21.191],[678.381,19.3],[679.466,13.904],[678.966,9.936],[677.549,7.44],[675.329,6.581],[672.292,8.5],[671.2,13.904],[671.686,17.863],[673.095,20.342]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[1.325,0],[0.93,0.718],[0.486,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.724],[-1.304,0],[-0.923,-0.73],[-0.493,-1.378],[0,-1.938],[0.486,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.93,-0.724],[-0.493,-1.378],[0,-1.938],[0.493,-1.378],[0.937,-0.73],[1.311,0],[0.937,0.724],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.718]],"v":[[675.329,23.119],[671.961,22.041],[669.832,18.897],[669.093,13.904],[669.832,8.937],[671.968,5.784],[675.329,4.689],[678.684,5.784],[680.826,8.937],[681.566,13.904],[680.833,18.897],[678.705,22.041]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.747,0.49],[1.085,0],[0.599,-0.257],[0.331,-0.45],[0,-0.572],[-0.226,-0.345],[-0.366,-0.228],[-0.395,-0.147],[-0.338,-0.087],[0,0],[-0.571,-0.216],[-0.521,-0.374],[-0.345,-0.578],[0,-0.841],[0.507,-0.782],[0.965,-0.461],[1.381,0],[0.937,0.414],[0.543,0.741],[0.07,0.981],[0,0],[-0.402,-0.444],[-0.613,-0.216],[-0.712,0],[-0.655,0.269],[-0.388,0.484],[0,0.654],[0.331,0.374],[0.543,0.233],[0.627,0.175],[0,0],[0.818,0.748],[0,1.209],[-0.543,0.747],[-0.923,0.414],[-1.142,0],[-0.902,-0.415],[-0.529,-0.712],[-0.028,-0.905]],"o":[[-0.106,-0.888],[-0.747,-0.49],[-0.796,0],[-0.585,0.257],[-0.324,0.45],[0,0.479],[0.233,0.338],[0.359,0.221],[0.402,0.14],[0,0],[0.465,0.123],[0.578,0.216],[0.536,0.368],[0.345,0.578],[0,0.97],[-0.5,0.782],[-0.965,0.462],[-1.283,0],[-0.937,-0.415],[-0.529,-0.742],[0,0],[0.056,0.677],[0.402,0.438],[0.62,0.21],[0.832,0],[0.662,-0.274],[0.38,-0.49],[0,-0.596],[-0.331,-0.374],[-0.543,-0.234],[0,0],[-1.395,-0.403],[-0.817,-0.747],[0,-1.005],[0.55,-0.753],[0.93,-0.421],[1.156,0],[0.895,0.409],[0.529,0.712],[0,0]],"v":[[562.595,9.419],[561.312,7.352],[558.564,6.617],[556.478,7.002],[555.096,8.061],[554.603,9.594],[554.948,10.83],[555.843,11.679],[556.978,12.231],[558.077,12.572],[559.896,13.063],[561.453,13.571],[563.109,14.456],[564.427,15.875],[564.941,18.003],[564.18,20.631],[561.975,22.496],[558.458,23.188],[555.125,22.567],[552.912,20.832],[552.01,18.248],[554.258,18.248],[554.941,19.93],[556.464,20.911],[558.458,21.226],[560.692,20.823],[562.264,19.685],[562.841,17.968],[562.341,16.514],[561.023,15.603],[559.268,14.99],[557.056,14.36],[553.729,12.634],[552.503,9.7],[553.321,7.072],[555.526,5.32],[558.634,4.689],[561.721,5.312],[563.856,6.993],[564.695,9.419]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[530.84,4.935],[533.433,4.935],[539.529,19.825],[539.741,19.825],[545.836,4.935],[548.43,4.935],[548.43,22.873],[546.393,22.873],[546.393,9.244],[546.224,9.244],[540.614,22.873],[538.655,22.873],[533.046,9.244],[532.87,9.244],[532.87,22.873],[530.84,22.873]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[514.751,22.873],[514.751,4.935],[516.922,4.935],[516.922,13.834],[517.133,13.834],[525.188,4.935],[528.028,4.935],[520.495,13.028],[528.028,22.873],[525.399,22.873],[519.163,14.534],[516.922,17.057],[516.922,22.873]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.747,0.49],[1.085,0],[0.599,-0.257],[0.331,-0.45],[0,-0.572],[-0.233,-0.345],[-0.359,-0.228],[-0.395,-0.147],[-0.331,-0.087],[0,0],[-0.571,-0.216],[-0.529,-0.374],[-0.345,-0.578],[0,-0.841],[0.507,-0.782],[0.973,-0.461],[1.381,0],[0.944,0.414],[0.536,0.741],[0.07,0.981],[0,0],[-0.395,-0.444],[-0.613,-0.216],[-0.712,0],[-0.662,0.269],[-0.381,0.484],[0,0.654],[0.331,0.374],[0.543,0.233],[0.634,0.175],[0,0],[0.818,0.748],[0,1.209],[-0.543,0.747],[-0.923,0.414],[-1.149,0],[-0.895,-0.415],[-0.529,-0.712],[-0.028,-0.905]],"o":[[-0.106,-0.888],[-0.747,-0.49],[-0.796,0],[-0.592,0.257],[-0.331,0.45],[0,0.479],[0.233,0.338],[0.366,0.221],[0.395,0.14],[0,0],[0.465,0.123],[0.578,0.216],[0.529,0.368],[0.345,0.578],[0,0.97],[-0.507,0.782],[-0.958,0.462],[-1.283,0],[-0.93,-0.415],[-0.529,-0.742],[0,0],[0.063,0.677],[0.402,0.438],[0.613,0.21],[0.832,0],[0.662,-0.274],[0.388,-0.49],[0,-0.596],[-0.338,-0.374],[-0.543,-0.234],[0,0],[-1.402,-0.403],[-0.817,-0.747],[0,-1.005],[0.55,-0.753],[0.923,-0.421],[1.156,0],[0.902,0.409],[0.529,0.712],[0,0]],"v":[[501.897,9.419],[500.614,7.352],[497.866,6.617],[495.78,7.002],[494.399,8.061],[493.905,9.594],[494.251,10.83],[495.139,11.679],[496.28,12.231],[497.373,12.572],[499.198,13.063],[500.755,13.571],[502.411,14.456],[503.722,15.875],[504.244,18.003],[503.483,20.631],[501.27,22.496],[497.76,23.188],[494.42,22.567],[492.214,20.832],[491.312,18.248],[493.553,18.248],[494.237,19.93],[495.766,20.911],[497.76,21.226],[499.994,20.823],[501.559,19.685],[502.137,17.968],[501.643,16.514],[500.325,15.603],[498.564,14.99],[496.358,14.36],[493.031,12.634],[491.805,9.7],[492.616,7.072],[494.829,5.32],[497.936,4.689],[501.016,5.312],[503.158,6.993],[503.997,9.419]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[471.932,22.873],[467.027,4.935],[469.233,4.935],[472.982,19.545],[473.158,19.545],[476.978,4.935],[479.43,4.935],[483.243,19.545],[483.419,19.545],[487.168,4.935],[489.381,4.935],[484.469,22.873],[482.228,22.873],[478.275,8.579],[478.134,8.579],[474.173,22.873]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[454.976,15.866],[464.159,15.866],[464.159,17.793],[454.976,17.793]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[454.138,22.873],[451.862,22.873],[458.444,4.935],[460.685,4.935],[467.274,22.873],[464.998,22.873],[459.635,7.772],[459.494,7.772]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-10.095,0],[0,0],[0,-10.095],[0,0],[10.095,0],[0,0],[0,10.095],[0,0]],"o":[[0,0],[10.095,0],[0,0],[0,10.095],[0,0],[-10.095,0],[0,0],[0,-10.095]],"v":[[46.334,-3.863],[297.138,-3.863],[315.417,14.417],[315.417,14.417],[297.138,32.696],[46.334,32.696],[28.055,14.417],[28.055,14.417]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.118,0.125,0.141,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-10.095,0],[0,0],[0,-10.095],[0,0],[10.095,0],[0,0],[0,10.095],[0,0]],"o":[[0,0],[10.095,0],[0,0],[0,10.095],[0,0],[-10.095,0],[0,0],[0,-10.095]],"v":[[445.563,-3.863],[572.005,-3.863],[590.285,14.417],[590.285,14.417],[572.005,32.696],[445.563,32.696],[427.284,14.417],[427.284,14.417]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.118,0.125,0.141,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":22,"op":303,"st":22},{"ind":7,"ty":4,"nm":"L","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":169,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":182,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":287,"s":[100]},{"t":301,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-442.287,-283.403,0]},"a":{"a":0,"k":[-110.904,-133.426,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.096],[5.466,0],[-1.15,1.95],[-1.426,2.416],[-0.323,-0.55],[-2.561,-4.354]],"o":[[-5.355,0],[1.19,-2.028],[1.426,-2.416],[0.214,-0.363],[2.56,4.355],[0.023,0.038]],"v":[[-102.666,-128.228],[-118.846,-128.228],[-115.364,-134.161],[-111.077,-141.404],[-110.356,-141.486],[-102.669,-128.425]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.949,0.004,0.098,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.355,0],[0.023,0.038],[2.56,4.355],[0.214,-0.363],[1.426,-2.416],[1.19,-2.028]],"o":[[0,-0.096],[-2.561,-4.354],[-0.323,-0.55],[-1.426,2.416],[-1.15,1.95],[5.466,0]],"v":[[-102.666,-128.228],[-102.669,-128.425],[-110.356,-141.486],[-111.077,-141.404],[-115.364,-134.161],[-118.846,-128.228]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[5.706,0],[5.652,0.008],[0.183,0.268],[-0.14,0.238],[-4.531,7.665],[-1.142,1.958],[-0.343,-0.585],[-2.159,-3.647],[-2.819,-4.757],[-0.786,-1.256],[0.637,0.002]],"o":[[-5.652,0],[-0.284,0],[-0.212,-0.309],[4.523,-7.669],[1.153,-1.951],[0.29,-0.497],[2.143,3.657],[2.816,4.759],[0.756,1.275],[0.419,0.67],[-5.706,-0.014]],"v":[[-110.673,-122.319],[-127.628,-122.325],[-128.469,-122.434],[-128.168,-123.209],[-114.581,-146.206],[-111.129,-152.064],[-110.262,-152.107],[-103.814,-141.149],[-95.347,-126.883],[-93.102,-123.045],[-93.554,-122.311]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.996,0.98,0.98,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.652,0],[-5.706,-0.014],[0.419,0.67],[0.756,1.275],[2.816,4.759],[2.143,3.657],[0.29,-0.497],[1.153,-1.951],[4.523,-7.669],[-0.212,-0.309],[-0.284,0]],"o":[[5.706,0],[0.637,0.002],[-0.786,-1.256],[-2.819,-4.757],[-2.159,-3.647],[-0.343,-0.585],[-1.142,1.958],[-4.531,7.665],[-0.14,0.238],[0.183,0.268],[5.652,0.008]],"v":[[-110.673,-122.319],[-93.554,-122.311],[-93.102,-123.045],[-95.347,-126.883],[-103.814,-141.149],[-110.262,-152.107],[-111.129,-152.064],[-114.581,-146.206],[-128.168,-123.209],[-128.469,-122.434],[-127.628,-122.325]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.478,-0.459],[0,-2.841],[0.026,-0.17],[0.719,-1.697],[11.295,-1.277],[0.302,-0.369],[0.929,0],[0.426,0.032],[2.286,0.877],[3.201,4.054],[0.703,5.005],[-1.139,3.809],[-4.215,3.534],[-8.193,-1.019],[-2.532,-1.278],[-2.028,-8.834]],"o":[[0,2.841],[-0.292,0.007],[-0.282,1.819],[-4.425,10.44],[-0.373,0.042],[-0.929,0],[-0.344,-0.419],[-2.454,-0.183],[-4.813,-1.846],[-3.153,-3.993],[-0.552,-3.93],[1.582,-5.288],[6.364,-5.336],[2.803,0.349],[8.056,4.066],[0.126,0.549]],"v":[[-83.14,-137.662],[-83.14,-129.139],[-83.41,-128.722],[-84.883,-123.44],[-108.414,-105.808],[-109.531,-105.535],[-112.318,-105.535],[-113.584,-105.838],[-120.685,-107.484],[-132.702,-116.335],[-138.416,-129.872],[-137.457,-141.49],[-128.768,-154.754],[-106.828,-161.058],[-98.785,-158.61],[-83.586,-139.32]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.949,0.004,0.098,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":162,"op":303,"st":162},{"ind":8,"ty":4,"nm":"L","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":169,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":182,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":287,"s":[100]},{"t":301,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-49.088,-281.454,0]},"a":{"a":0,"k":[406.463,-130.86,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[770.96,-122.405],[770.96,-140.343],[773.138,-140.343],[773.138,-132.355],[782.701,-132.355],[782.701,-140.343],[784.872,-140.343],[784.872,-122.405],[782.701,-122.405],[782.701,-130.428],[773.138,-130.428],[773.138,-122.405]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[754.153,-138.416],[754.153,-140.343],[767.613,-140.343],[767.613,-138.416],[761.968,-138.416],[761.968,-122.405],[759.797,-122.405],[759.797,-138.416]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[740.396,-122.405],[740.396,-140.343],[751.221,-140.343],[751.221,-138.416],[742.567,-138.416],[742.567,-132.355],[750.664,-132.355],[750.664,-130.428],[742.567,-130.428],[742.567,-124.331],[751.362,-124.331],[751.362,-122.405]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[725.344,-122.405],[725.344,-126.626],[725.344,-127.458],[725.344,-140.343],[727.408,-140.343],[727.408,-122.405]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[716.894,-126.083],[716.894,-127.87],[724.78,-140.343],[726.076,-140.343],[726.076,-137.575],[725.203,-137.575],[719.248,-128.15],[719.248,-128.01],[729.861,-128.01],[729.861,-126.083]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[712.158,-140.343],[712.158,-122.405],[709.988,-122.405],[709.988,-138.066],[709.882,-138.066],[705.499,-135.157],[705.499,-137.365],[709.988,-140.343]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.874,0],[-0.719,1.261],[0,2.335],[0.331,1.092],[0.62,0.572],[0.867,0],[0.726,-1.278],[0,-2.33],[-0.331,-1.086],[-0.613,-0.566]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.331,-1.092],[-0.613,-0.572],[-1.297,0],[-0.733,1.273],[0,1.553],[0.324,1.086],[0.62,0.567]],"v":[[696.288,-124.086],[699.332,-125.978],[700.424,-131.374],[699.924,-135.341],[698.501,-137.838],[696.288,-138.697],[693.25,-136.778],[692.151,-131.374],[692.644,-127.415],[694.054,-124.936]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[1.318,0],[0.93,0.718],[0.493,1.372],[0,1.951],[-0.486,1.372],[-0.93,0.724],[-1.311,0],[-0.93,-0.729],[-0.486,-1.378],[0,-1.939],[0.493,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.923,-0.724],[-0.486,-1.378],[0,-1.939],[0.5,-1.378],[0.93,-0.729],[1.311,0],[0.937,0.724],[0.5,1.372],[0,1.951],[-0.486,1.372],[-0.923,0.718]],"v":[[696.288,-122.16],[692.912,-123.236],[690.784,-126.381],[690.051,-131.374],[690.784,-136.34],[692.926,-139.494],[696.288,-140.588],[699.642,-139.494],[701.778,-136.34],[702.525,-131.374],[701.785,-126.381],[699.656,-123.236]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.296,0],[0.303,0.31],[0,0.432],[-0.31,0.31],[-0.43,0],[-0.31,-0.309],[0,-0.432],[0.148,-0.24],[0.24,-0.146]],"o":[[-0.43,0],[-0.31,-0.309],[0,-0.432],[0.303,-0.309],[0.437,0],[0.31,0.31],[0,0.286],[-0.141,0.239],[-0.233,0.14]],"v":[[685.809,-122.264],[684.702,-122.729],[684.237,-123.841],[684.702,-124.954],[685.809,-125.417],[686.922,-124.954],[687.387,-123.841],[687.169,-123.052],[686.598,-122.475]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0],[-0.726,1.261],[0,2.335],[0.331,1.092],[0.62,0.572],[0.867,0],[0.733,-1.278],[0,-2.33],[-0.324,-1.086],[-0.613,-0.566]],"o":[[1.311,0],[0.726,-1.261],[0,-1.553],[-0.324,-1.092],[-0.613,-0.572],[-1.297,0],[-0.733,1.273],[0,1.553],[0.331,1.086],[0.62,0.567]],"v":[[675.329,-124.086],[678.381,-125.978],[679.466,-131.374],[678.966,-135.341],[677.549,-137.838],[675.329,-138.697],[672.292,-136.778],[671.2,-131.374],[671.686,-127.415],[673.095,-124.936]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[1.325,0],[0.93,0.718],[0.486,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.724],[-1.304,0],[-0.923,-0.729],[-0.493,-1.378],[0,-1.939],[0.486,-1.378],[0.93,-0.724]],"o":[[-1.318,0],[-0.93,-0.724],[-0.493,-1.378],[0,-1.939],[0.493,-1.378],[0.937,-0.729],[1.311,0],[0.937,0.724],[0.493,1.372],[0,1.951],[-0.493,1.372],[-0.93,0.718]],"v":[[675.329,-122.16],[671.961,-123.236],[669.832,-126.381],[669.093,-131.374],[669.832,-136.34],[671.968,-139.494],[675.329,-140.588],[678.684,-139.494],[680.826,-136.34],[681.566,-131.374],[680.833,-126.381],[678.705,-123.236]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.747,0.49],[1.085,0],[0.599,-0.257],[0.331,-0.45],[0,-0.572],[-0.226,-0.344],[-0.366,-0.228],[-0.395,-0.146],[-0.338,-0.087],[0,0],[-0.571,-0.216],[-0.521,-0.374],[-0.345,-0.579],[0,-0.841],[0.507,-0.782],[0.965,-0.462],[1.381,0],[0.937,0.415],[0.543,0.742],[0.07,0.981],[0,0],[-0.402,-0.444],[-0.613,-0.216],[-0.712,0],[-0.655,0.269],[-0.388,0.485],[0,0.654],[0.331,0.374],[0.543,0.234],[0.627,0.175],[0,0],[0.818,0.747],[0,1.209],[-0.543,0.748],[-0.923,0.414],[-1.142,0],[-0.902,-0.414],[-0.529,-0.712],[-0.028,-0.905]],"o":[[-0.106,-0.887],[-0.747,-0.49],[-0.796,0],[-0.585,0.257],[-0.324,0.45],[0,0.479],[0.233,0.339],[0.359,0.222],[0.402,0.14],[0,0],[0.465,0.123],[0.578,0.216],[0.536,0.368],[0.345,0.578],[0,0.969],[-0.5,0.783],[-0.965,0.461],[-1.283,0],[-0.937,-0.414],[-0.529,-0.741],[0,0],[0.056,0.677],[0.402,0.438],[0.62,0.211],[0.832,0],[0.662,-0.275],[0.38,-0.49],[0,-0.595],[-0.331,-0.374],[-0.543,-0.233],[0,0],[-1.395,-0.402],[-0.817,-0.748],[0,-1.004],[0.55,-0.753],[0.93,-0.421],[1.156,0],[0.895,0.409],[0.529,0.712],[0,0]],"v":[[562.595,-135.859],[561.312,-137.926],[558.564,-138.661],[556.478,-138.276],[555.096,-137.216],[554.603,-135.683],[554.948,-134.448],[555.843,-133.599],[556.978,-133.047],[558.077,-132.705],[559.896,-132.214],[561.453,-131.706],[563.109,-130.822],[564.427,-129.403],[564.941,-127.274],[564.18,-124.647],[561.975,-122.781],[558.458,-122.089],[555.125,-122.711],[552.912,-124.446],[552.01,-127.029],[554.258,-127.029],[554.941,-125.348],[556.464,-124.367],[558.458,-124.051],[560.692,-124.454],[562.264,-125.593],[562.841,-127.31],[562.341,-128.763],[561.023,-129.675],[559.268,-130.288],[557.056,-130.918],[553.729,-132.644],[552.503,-135.578],[553.321,-138.206],[555.526,-139.957],[558.634,-140.588],[561.721,-139.966],[563.856,-138.284],[564.695,-135.859]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[530.84,-140.343],[533.433,-140.343],[539.529,-125.453],[539.741,-125.453],[545.836,-140.343],[548.43,-140.343],[548.43,-122.405],[546.393,-122.405],[546.393,-136.033],[546.224,-136.033],[540.614,-122.405],[538.655,-122.405],[533.046,-136.033],[532.87,-136.033],[532.87,-122.405],[530.84,-122.405]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[514.751,-122.405],[514.751,-140.343],[516.922,-140.343],[516.922,-131.444],[517.133,-131.444],[525.188,-140.343],[528.028,-140.343],[520.495,-132.25],[528.028,-122.405],[525.399,-122.405],[519.163,-130.743],[516.922,-128.221],[516.922,-122.405]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.747,0.49],[1.085,0],[0.599,-0.257],[0.331,-0.45],[0,-0.572],[-0.233,-0.344],[-0.359,-0.228],[-0.395,-0.146],[-0.331,-0.087],[0,0],[-0.571,-0.216],[-0.529,-0.374],[-0.345,-0.579],[0,-0.841],[0.507,-0.782],[0.973,-0.462],[1.381,0],[0.944,0.415],[0.536,0.742],[0.07,0.981],[0,0],[-0.395,-0.444],[-0.613,-0.216],[-0.712,0],[-0.662,0.269],[-0.381,0.485],[0,0.654],[0.331,0.374],[0.543,0.234],[0.634,0.175],[0,0],[0.818,0.747],[0,1.209],[-0.543,0.748],[-0.923,0.414],[-1.149,0],[-0.895,-0.414],[-0.529,-0.712],[-0.028,-0.905]],"o":[[-0.106,-0.887],[-0.747,-0.49],[-0.796,0],[-0.592,0.257],[-0.331,0.45],[0,0.479],[0.233,0.339],[0.366,0.222],[0.395,0.14],[0,0],[0.465,0.123],[0.578,0.216],[0.529,0.368],[0.345,0.578],[0,0.969],[-0.507,0.783],[-0.958,0.461],[-1.283,0],[-0.93,-0.414],[-0.529,-0.741],[0,0],[0.063,0.677],[0.402,0.438],[0.613,0.211],[0.832,0],[0.662,-0.275],[0.388,-0.49],[0,-0.595],[-0.338,-0.374],[-0.543,-0.233],[0,0],[-1.402,-0.402],[-0.817,-0.748],[0,-1.004],[0.55,-0.753],[0.923,-0.421],[1.156,0],[0.902,0.409],[0.529,0.712],[0,0]],"v":[[501.897,-135.859],[500.614,-137.926],[497.866,-138.661],[495.78,-138.276],[494.399,-137.216],[493.905,-135.683],[494.251,-134.448],[495.139,-133.599],[496.28,-133.047],[497.373,-132.705],[499.198,-132.214],[500.755,-131.706],[502.411,-130.822],[503.722,-129.403],[504.244,-127.274],[503.483,-124.647],[501.27,-122.781],[497.76,-122.089],[494.42,-122.711],[492.214,-124.446],[491.312,-127.029],[493.553,-127.029],[494.237,-125.348],[495.766,-124.367],[497.76,-124.051],[499.994,-124.454],[501.559,-125.593],[502.137,-127.31],[501.643,-128.763],[500.325,-129.675],[498.564,-130.288],[496.358,-130.918],[493.031,-132.644],[491.805,-135.578],[492.616,-138.206],[494.829,-139.957],[497.936,-140.588],[501.016,-139.966],[503.158,-138.284],[503.997,-135.859]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[471.932,-122.405],[467.027,-140.343],[469.233,-140.343],[472.982,-125.733],[473.158,-125.733],[476.978,-140.343],[479.43,-140.343],[483.243,-125.733],[483.419,-125.733],[487.168,-140.343],[489.381,-140.343],[484.469,-122.405],[482.228,-122.405],[478.275,-136.699],[478.134,-136.699],[474.173,-122.405]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[454.976,-129.412],[464.159,-129.412],[464.159,-127.484],[454.976,-127.484]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[454.138,-122.405],[451.862,-122.405],[458.444,-140.343],[460.685,-140.343],[467.274,-122.405],[464.998,-122.405],[459.635,-137.505],[459.494,-137.505]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.283,0],[0.724,0.313],[0.493,0.576],[0.263,0.822],[0,1.004],[-0.263,0.822],[-0.493,0.576],[-0.707,0.313],[-0.904,0],[-0.773,-0.543],[-0.362,-0.871],[0,0],[0.543,0.362],[0.789,0],[0.46,-0.197],[0.312,-0.345],[0.164,-0.476],[0,-0.559],[0,0],[-0.148,-0.476],[-0.312,-0.345],[-0.46,-0.197],[-0.592,0],[-0.559,0.395],[-0.329,0.691],[0,0],[0.805,-0.559]],"o":[[-0.921,0],[-0.707,-0.328],[-0.493,-0.575],[-0.247,-0.822],[0,-1.003],[0.263,-0.822],[0.493,-0.592],[0.707,-0.312],[1.233,0],[0.773,0.543],[0,0],[-0.23,-0.658],[-0.526,-0.362],[-0.576,0],[-0.444,0.181],[-0.312,0.345],[-0.148,0.477],[0,0],[0,0.56],[0.164,0.477],[0.312,0.345],[0.46,0.181],[0.855,0],[0.559,-0.395],[0,0],[-0.378,0.856],[-0.789,0.56]],"v":[[278.725,-121.404],[276.259,-121.873],[274.458,-123.229],[273.323,-125.326],[272.953,-128.064],[273.348,-130.802],[274.483,-132.898],[276.283,-134.255],[278.7,-134.723],[281.71,-133.909],[283.411,-131.788],[281.833,-130.95],[280.674,-132.479],[278.7,-133.021],[277.147,-132.725],[276.012,-131.936],[275.297,-130.703],[275.075,-129.149],[275.075,-126.978],[275.297,-125.424],[276.012,-124.191],[277.171,-123.377],[278.75,-123.106],[280.871,-123.698],[282.203,-125.326],[283.609,-124.364],[281.833,-122.243]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.444,0],[-0.625,0.691],[0,1.152],[0,0],[0.641,0.691],[1.151,0],[0.395,-0.115],[0.296,-0.23],[0.18,-0.328],[0,-0.427],[0,0],[-0.165,-0.328],[-0.296,-0.23],[-0.395,-0.115]],"o":[[1.151,0],[0.641,-0.707],[0,0],[0,-1.151],[-0.625,-0.707],[-0.444,0],[-0.395,0.116],[-0.296,0.214],[-0.165,0.313],[0,0],[0,0.428],[0.18,0.313],[0.296,0.214],[0.395,0.116]],"v":[[263.664,-123.155],[266.328,-124.191],[267.29,-126.978],[267.29,-129.149],[266.328,-131.911],[263.664,-132.972],[262.407,-132.799],[261.371,-132.281],[260.655,-131.467],[260.409,-130.358],[260.409,-125.77],[260.655,-124.635],[261.371,-123.821],[262.407,-123.328]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.793,0],[-0.872,-1.167],[0,-2.104],[0.888,-1.167],[1.562,0],[0.822,1.579],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.822,-1.579],[1.562,0],[0.888,1.168],[0,2.105],[-0.872,1.168],[-1.793,0],[0,0],[0,0],[0,0],[0,0]],"v":[[258.435,-139.952],[260.409,-139.952],[260.409,-132.355],[260.507,-132.355],[264.429,-134.723],[268.08,-132.972],[269.411,-128.064],[268.08,-123.155],[264.429,-121.404],[260.507,-123.772],[260.409,-123.772],[260.409,-121.7],[258.435,-121.7]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.444,0],[-0.624,0.691],[0,1.152],[0,0],[0.641,0.691],[1.152,0],[0.395,-0.115],[0.296,-0.23],[0.181,-0.328],[0,-0.427],[0,0],[-0.164,-0.328],[-0.296,-0.23],[-0.395,-0.115]],"o":[[1.152,0],[0.641,-0.707],[0,0],[0,-1.151],[-0.624,-0.707],[-0.444,0],[-0.395,0.116],[-0.296,0.214],[-0.164,0.313],[0,0],[0,0.428],[0.181,0.313],[0.296,0.214],[0.395,0.116]],"v":[[248.874,-123.155],[251.538,-124.191],[252.5,-126.978],[252.5,-129.149],[251.538,-131.911],[248.874,-132.972],[247.617,-132.799],[246.581,-132.281],[245.865,-131.467],[245.619,-130.358],[245.619,-125.77],[245.865,-124.635],[246.581,-123.821],[247.617,-123.328]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.792,0],[-0.871,-1.167],[0,-2.104],[0.888,-1.167],[1.562,0],[0.822,1.579],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.822,-1.579],[1.562,0],[0.888,1.168],[0,2.105],[-0.871,1.168],[-1.792,0],[0,0],[0,0],[0,0],[0,0]],"v":[[243.645,-139.952],[245.619,-139.952],[245.619,-132.355],[245.717,-132.355],[249.639,-134.723],[253.29,-132.972],[254.621,-128.064],[253.29,-123.155],[249.639,-121.404],[245.717,-123.772],[245.619,-123.772],[245.619,-121.7],[243.645,-121.7]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-0.592,0.526],[0,0.839],[0,0],[0.592,0.461],[0.937,0],[0.576,-0.411],[0.362,-0.658],[0,0],[-0.312,0.329],[-0.411,0.264],[-0.543,0.165],[-0.707,0],[-0.641,-0.197],[-0.477,-0.378],[-0.263,-0.543],[0,-0.691],[0.181,-0.444],[0.312,-0.328],[0.411,-0.23],[0.46,-0.115],[0,0],[-0.444,-0.23],[-0.345,-0.362],[-0.197,-0.51],[0,-0.641],[0.296,-0.624],[0.526,-0.444],[0.74,-0.247],[0.888,0],[0.592,0.165],[0.46,0.28],[0.345,0.345],[0.263,0.378],[0,0],[-0.247,-0.279],[-0.312,-0.214],[-0.411,-0.115],[-0.543,0],[-0.641,0.56],[0,1.036],[0,0],[0.641,0.56],[1.266,0],[0,0],[0,0]],"o":[[1.2,0],[0.608,-0.543],[0,0],[0,-0.92],[-0.576,-0.46],[-0.921,0],[-0.559,0.395],[0,0],[0.214,-0.345],[0.312,-0.345],[0.428,-0.263],[0.559,-0.164],[0.74,0],[0.641,0.181],[0.477,0.362],[0.28,0.543],[0,0.56],[-0.164,0.444],[-0.296,0.329],[-0.411,0.23],[0,0],[0.477,0.099],[0.444,0.214],[0.345,0.345],[0.214,0.493],[0,0.74],[-0.28,0.609],[-0.51,0.428],[-0.724,0.247],[-0.756,0],[-0.576,-0.164],[-0.444,-0.279],[-0.329,-0.345],[0,0],[0.23,0.345],[0.247,0.28],[0.329,0.197],[0.411,0.116],[1.217,0],[0.658,-0.559],[0,0],[0,-1.019],[-0.625,-0.559],[0,0],[0,0],[0,0]],"v":[[233.172,-131.615],[235.861,-132.405],[236.774,-134.477],[236.774,-134.649],[235.886,-136.721],[233.616,-137.412],[231.372,-136.795],[229.991,-135.217],[228.437,-136.401],[229.226,-137.412],[230.311,-138.324],[231.767,-138.966],[233.666,-139.212],[235.738,-138.916],[237.415,-138.078],[238.525,-136.721],[238.944,-134.871],[238.673,-133.367],[237.958,-132.207],[236.897,-131.369],[235.59,-130.851],[235.59,-130.752],[236.971,-130.259],[238.155,-129.396],[238.969,-128.113],[239.289,-126.411],[238.846,-124.364],[237.637,-122.785],[235.762,-121.774],[233.345,-121.404],[231.323,-121.651],[229.769,-122.317],[228.585,-123.254],[227.697,-124.339],[229.251,-125.523],[229.966,-124.586],[230.805,-123.846],[231.915,-123.377],[233.345,-123.205],[236.132,-124.043],[237.119,-126.436],[237.119,-126.633],[236.157,-129.001],[233.32,-129.84],[231.273,-129.84],[231.273,-131.615]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.543,0.789],[0,0.888],[0,0],[0.543,0.56],[1.068,0],[0.575,-0.543],[0.279,-0.888],[0,0],[-0.28,0.477],[-0.444,0.378],[-0.625,0.23],[-0.839,0],[-0.658,-0.247],[-0.444,-0.444],[-0.23,-0.608],[0,-0.723],[0.197,-0.575],[0.345,-0.526],[0.476,-0.51],[0.575,-0.493],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.839,-0.756],[0.543,-0.805],[0,0],[0,-1.036],[-0.543,-0.575],[-1.053,0],[-0.56,0.526],[0,0],[0.164,-0.51],[0.296,-0.493],[0.444,-0.378],[0.641,-0.23],[0.855,0],[0.674,0.247],[0.46,0.444],[0.247,0.609],[0,0.658],[-0.181,0.576],[-0.329,0.526],[-0.461,0.493],[0,0],[0,0],[0,0]],"v":[[224.969,-121.7],[213.475,-121.7],[213.475,-123.821],[219.222,-129.001],[221.294,-131.319],[222.108,-133.86],[222.108,-134.156],[221.294,-136.549],[218.876,-137.412],[216.435,-136.598],[215.177,-134.477],[213.327,-135.167],[213.993,-136.647],[215.103,-137.954],[216.706,-138.867],[218.926,-139.212],[221.195,-138.842],[222.872,-137.806],[223.908,-136.228],[224.278,-134.23],[223.982,-132.38],[223.193,-130.728],[221.984,-129.174],[220.43,-127.694],[215.621,-123.501],[224.969,-123.501]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[199.03,-121.7],[199.03,-123.501],[203.963,-123.501],[203.963,-137.387],[203.79,-137.387],[199.449,-133.342],[198.241,-134.649],[202.804,-138.916],[206.035,-138.916],[206.035,-123.501],[210.573,-123.501],[210.573,-121.7]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0.576,0],[0.23,0.23],[0,0.362],[0,0],[-0.23,0.23],[-0.576,0],[-0.23,-0.247],[0,-0.362],[0,0],[0.23,-0.247]],"o":[[-0.576,0],[-0.23,-0.247],[0,0],[0,-0.362],[0.23,-0.247],[0.576,0],[0.23,0.23],[0,0],[0,0.362],[-0.23,0.23]],"v":[[191.813,-137.239],[190.604,-137.584],[190.259,-138.497],[190.259,-138.892],[190.604,-139.78],[191.813,-140.15],[193.022,-139.78],[193.367,-138.892],[193.367,-138.497],[193.022,-137.584]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.46,-0.543],[0.97,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0.856],[-0.444,0.543],[0,0],[0,0]],"v":[[184.66,-118.444],[190.826,-118.444],[190.826,-132.75],[184.438,-132.75],[184.438,-134.427],[192.8,-134.427],[192.8,-119.677],[192.109,-117.581],[189.988,-116.767],[184.66,-116.767]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[171.622,-121.7],[178.356,-137.141],[170.808,-137.141],[170.808,-133.934],[168.958,-133.934],[168.958,-138.916],[180.452,-138.916],[180.452,-137.091],[173.842,-121.7]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,0],[-0.641,0.641],[0,1.168],[0,0],[0.658,0.641],[1.184,0],[0.658,-0.641],[0,-1.167],[0,0],[-0.641,-0.641]],"o":[[1.184,0],[0.658,-0.641],[0,0],[0,-1.167],[-0.641,-0.641],[-1.184,0],[-0.641,0.641],[0,0],[0,1.168],[0.658,0.641]],"v":[[159.964,-129.914],[162.702,-130.876],[163.689,-133.589],[163.689,-133.786],[162.702,-136.499],[159.964,-137.461],[157.202,-136.499],[156.24,-133.786],[156.24,-133.589],[157.202,-130.876]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.019],[0.395,-1.135],[0.609,-0.937],[0.74,-0.723],[0.708,-0.444],[0,0],[-0.723,0.641],[-0.559,0.691],[-0.378,0.789],[-0.247,1.004],[0,0],[0.674,-0.476],[1.069,0],[0.641,0.247],[0.461,0.461],[0.264,0.641],[0,0.822],[-0.263,0.691],[-0.51,0.493],[-0.707,0.28],[-0.871,0],[-0.723,-0.312],[-0.493,-0.575],[-0.263,-0.822]],"o":[[0,1.283],[-0.378,1.118],[-0.608,0.921],[-0.723,0.708],[0,0],[0.937,-0.674],[0.74,-0.641],[0.56,-0.707],[0.378,-0.805],[0,0],[-0.427,0.708],[-0.658,0.461],[-0.756,0],[-0.624,-0.247],[-0.444,-0.46],[-0.247,-0.658],[0,-0.839],[0.28,-0.707],[0.51,-0.51],[0.724,-0.279],[0.905,0],[0.724,0.296],[0.51,0.56],[0.28,0.822]],"v":[[165.785,-132.602],[165.193,-128.976],[163.714,-125.893],[161.691,-123.427],[159.545,-121.7],[156.881,-121.7],[159.372,-123.673],[161.321,-125.671],[162.727,-127.916],[163.664,-130.629],[163.541,-130.678],[161.888,-128.902],[159.298,-128.212],[157.202,-128.582],[155.574,-129.642],[154.513,-131.295],[154.143,-133.515],[154.538,-135.809],[155.722,-137.609],[157.547,-138.793],[159.94,-139.212],[162.382,-138.744],[164.207,-137.436],[165.366,-135.365]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.184,0],[-0.641,0.641],[0,1.168],[0,0],[0.658,0.641],[1.184,0],[0.658,-0.641],[0,-1.167],[0,0],[-0.641,-0.641]],"o":[[1.184,0],[0.658,-0.641],[0,0],[0,-1.167],[-0.641,-0.641],[-1.184,0],[-0.641,0.641],[0,0],[0,1.168],[0.658,0.641]],"v":[[145.175,-123.155],[147.913,-124.117],[148.9,-126.83],[148.9,-127.028],[147.913,-129.741],[145.175,-130.703],[142.413,-129.741],[141.451,-127.028],[141.451,-126.83],[142.413,-124.117]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0.872,0],[0.724,0.296],[0.509,0.56],[0.28,0.822],[0,1.02],[-0.378,1.118],[-0.592,0.921],[-0.74,0.708],[-0.707,0.444],[0,0],[0.74,-0.641],[0.559,-0.707],[0.378,-0.805],[0.247,-1.003],[0,0],[-0.674,0.461],[-1.069,0],[-0.625,-0.247],[-0.46,-0.46],[-0.247,-0.658],[0,-0.805],[0.28,-0.707],[0.51,-0.51],[0.724,-0.279]],"o":[[-0.904,0],[-0.724,-0.312],[-0.493,-0.575],[-0.263,-0.822],[0,-1.283],[0.395,-1.135],[0.608,-0.937],[0.74,-0.723],[0,0],[-0.937,0.674],[-0.724,0.641],[-0.559,0.691],[-0.378,0.789],[0,0],[0.411,-0.707],[0.674,-0.476],[0.756,0],[0.625,0.247],[0.46,0.461],[0.263,0.658],[0,0.839],[-0.28,0.691],[-0.493,0.493],[-0.707,0.28]],"v":[[145.2,-121.404],[142.758,-121.848],[140.908,-123.155],[139.749,-125.252],[139.354,-128.014],[139.921,-131.615],[141.401,-134.699],[143.424,-137.165],[145.594,-138.916],[148.258,-138.916],[145.742,-136.943],[143.819,-134.921],[142.413,-132.676],[141.475,-129.988],[141.599,-129.938],[143.227,-131.689],[145.841,-132.405],[147.913,-132.035],[149.541,-130.974],[150.601,-129.297],[150.996,-127.102],[150.577,-124.783],[149.393,-122.983],[147.568,-121.823]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.444,0.543],[-0.97,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-0.855],[0.46,-0.543],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[125.033,-123.377],[129.325,-123.377],[129.325,-132.75],[124.787,-132.75],[124.787,-134.427],[129.325,-134.427],[129.325,-137.042],[129.991,-139.138],[132.137,-139.952],[136.404,-139.952],[136.404,-138.275],[131.298,-138.275],[131.298,-134.427],[136.404,-134.427],[136.404,-132.75],[131.298,-132.75],[131.298,-123.377],[135.837,-123.377],[135.837,-121.7],[125.033,-121.7]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.526,0.329],[-0.92,0],[-0.624,-0.247],[-0.46,-0.46],[-0.263,-0.658],[0,-0.839],[0.264,-0.707],[0.51,-0.51],[0.724,-0.279],[0.921,0],[0.576,0.165],[0.444,0.28],[0.329,0.345],[0.264,0.378],[0,0],[-0.23,-0.279],[-0.312,-0.214],[-0.395,-0.115],[-0.526,0],[-0.624,0.641],[0,1.135],[0,0],[0.641,0.641],[1.201,0],[0.461,-0.279],[0.378,-0.411],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.428,-0.575],[0.526,-0.345],[0.757,0],[0.641,0.23],[0.461,0.461],[0.264,0.641],[0,0.839],[-0.263,0.691],[-0.51,0.493],[-0.723,0.28],[-0.723,0],[-0.559,-0.164],[-0.427,-0.279],[-0.328,-0.345],[0,0],[0.23,0.345],[0.247,0.28],[0.313,0.197],[0.395,0.116],[1.184,0],[0.641,-0.641],[0,0],[0,-1.135],[-0.641,-0.641],[-0.822,0],[-0.444,0.28],[0,0],[0,0],[0,0],[0,0]],"v":[[120.553,-137.116],[112.858,-137.116],[112.365,-130.53],[112.537,-130.53],[113.968,-131.887],[116.138,-132.405],[118.21,-132.035],[119.863,-130.999],[120.948,-129.322],[121.343,-127.102],[120.948,-124.783],[119.789,-122.983],[117.939,-121.823],[115.472,-121.404],[113.524,-121.651],[112.019,-122.317],[110.885,-123.254],[109.997,-124.339],[111.551,-125.523],[112.241,-124.586],[113.08,-123.846],[114.14,-123.377],[115.522,-123.205],[118.235,-124.167],[119.197,-126.83],[119.197,-127.028],[118.235,-129.692],[115.472,-130.654],[113.549,-130.234],[112.315,-129.198],[110.564,-129.445],[111.181,-138.916],[120.553,-138.916]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.526,0.329],[-0.921,0],[-0.625,-0.247],[-0.46,-0.46],[-0.263,-0.658],[0,-0.839],[0.263,-0.707],[0.51,-0.51],[0.724,-0.279],[0.921,0],[0.576,0.165],[0.444,0.28],[0.329,0.345],[0.263,0.378],[0,0],[-0.23,-0.279],[-0.312,-0.214],[-0.395,-0.115],[-0.526,0],[-0.625,0.641],[0,1.135],[0,0],[0.641,0.641],[1.2,0],[0.46,-0.279],[0.378,-0.411],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.428,-0.575],[0.526,-0.345],[0.756,0],[0.641,0.23],[0.46,0.461],[0.263,0.641],[0,0.839],[-0.263,0.691],[-0.509,0.493],[-0.724,0.28],[-0.724,0],[-0.559,-0.164],[-0.428,-0.279],[-0.329,-0.345],[0,0],[0.23,0.345],[0.247,0.28],[0.312,0.197],[0.395,0.116],[1.184,0],[0.641,-0.641],[0,0],[0,-1.135],[-0.641,-0.641],[-0.822,0],[-0.444,0.28],[0,0],[0,0],[0,0],[0,0]],"v":[[105.764,-137.116],[98.069,-137.116],[97.575,-130.53],[97.748,-130.53],[99.179,-131.887],[101.349,-132.405],[103.421,-132.035],[105.074,-130.999],[106.159,-129.322],[106.553,-127.102],[106.159,-124.783],[105,-122.983],[103.15,-121.823],[100.683,-121.404],[98.735,-121.651],[97.23,-122.317],[96.095,-123.254],[95.207,-124.339],[96.761,-125.523],[97.452,-124.586],[98.291,-123.846],[99.351,-123.377],[100.732,-123.205],[103.446,-124.167],[104.408,-126.83],[104.408,-127.028],[103.446,-129.692],[100.683,-130.654],[98.759,-130.234],[97.526,-129.198],[95.775,-129.445],[96.391,-138.916],[105.764,-138.916]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.152,0],[-0.395,0.116],[-0.296,0.214],[-0.165,0.313],[0,0.428],[0,0],[0.18,0.313],[0.296,0.214],[0.395,0.116],[0.444,0],[0.641,-0.707],[0,-1.151],[0,0],[-0.625,-0.707]],"o":[[0.444,0],[0.395,-0.115],[0.296,-0.23],[0.18,-0.328],[0,0],[0,-0.427],[-0.165,-0.328],[-0.296,-0.23],[-0.395,-0.115],[-1.152,0],[-0.625,0.691],[0,0],[0,1.152],[0.641,0.691]],"v":[[85.844,-123.155],[87.102,-123.328],[88.138,-123.821],[88.829,-124.635],[89.1,-125.77],[89.1,-130.358],[88.829,-131.467],[88.138,-132.281],[87.102,-132.799],[85.844,-132.972],[83.156,-131.911],[82.219,-129.149],[82.219,-126.978],[83.156,-124.191]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.792,0],[0.888,1.168],[0,2.105],[-0.872,1.168],[-1.562,0],[-0.822,-1.579],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.822,1.579],[-1.562,0],[-0.872,-1.167],[0,-2.104],[0.888,-1.167],[1.792,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[89.1,-123.772],[89.002,-123.772],[85.08,-121.404],[81.405,-123.155],[80.097,-128.064],[81.405,-132.972],[85.08,-134.723],[89.002,-132.355],[89.1,-132.355],[89.1,-139.952],[91.073,-139.952],[91.073,-121.7],[89.1,-121.7]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[65.332,-121.7],[70.068,-128.162],[65.455,-134.427],[67.823,-134.427],[69.747,-131.739],[71.276,-129.618],[71.375,-129.618],[72.855,-131.739],[74.754,-134.427],[77.023,-134.427],[72.362,-128.187],[77.147,-121.7],[74.779,-121.7],[72.633,-124.685],[71.178,-126.707],[71.079,-126.707],[69.673,-124.685],[67.601,-121.7]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[0.576,0],[0.23,0.23],[0,0.329],[0,0],[-0.214,0.23],[-0.576,0],[-0.214,-0.23],[0,-0.328],[0,0],[0.23,-0.23]],"o":[[-0.576,0],[-0.214,-0.23],[0,0],[0,-0.328],[0.23,-0.23],[0.576,0],[0.23,0.23],[0,0],[0,0.329],[-0.214,0.23]],"v":[[56.438,-128.853],[55.229,-129.198],[54.908,-130.037],[54.908,-130.58],[55.229,-131.418],[56.438,-131.763],[57.622,-131.418],[57.967,-130.58],[57.967,-130.037],[57.622,-129.198]],"c":true}},"nm":"P"},{"ind":22,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.691,0],[-0.493,0.264],[-0.296,0.493],[-0.148,0.691],[0,0.872],[0,0],[0.148,0.708],[0.312,0.493],[0.493,0.264],[0.691,0],[0.493,-0.279],[0.312,-0.493],[0.148,-0.707],[0,-0.855],[0,0],[-0.148,-0.707],[-0.296,-0.493],[-0.493,-0.279]],"o":[[0.691,0],[0.493,-0.279],[0.312,-0.493],[0.148,-0.707],[0,0],[0,-0.855],[-0.148,-0.707],[-0.296,-0.493],[-0.493,-0.279],[-0.691,0],[-0.493,0.264],[-0.296,0.493],[-0.148,0.708],[0,0],[0,0.872],[0.148,0.691],[0.312,0.493],[0.493,0.264]],"v":[[56.438,-123.205],[58.214,-123.599],[59.398,-124.759],[60.088,-126.534],[60.31,-128.902],[60.31,-131.714],[60.088,-134.057],[59.398,-135.858],[58.214,-136.993],[56.438,-137.412],[54.662,-136.993],[53.453,-135.858],[52.787,-134.057],[52.565,-131.714],[52.565,-128.902],[52.787,-126.534],[53.453,-124.759],[54.662,-123.599]],"c":true}},"nm":"P"},{"ind":23,"ty":"sh","ks":{"a":0,"k":{"i":[[1.052,0],[0.756,0.395],[0.493,0.757],[0.23,1.102],[0,1.414],[-0.23,1.102],[-0.493,0.757],[-0.756,0.395],[-1.052,0],[-0.756,-0.411],[-0.493,-0.756],[-0.23,-1.118],[0,-1.397],[0.23,-1.101],[0.493,-0.756],[0.756,-0.411]],"o":[[-1.052,0],[-0.756,-0.411],[-0.493,-0.756],[-0.23,-1.101],[0,-1.397],[0.23,-1.118],[0.493,-0.756],[0.756,-0.411],[1.052,0],[0.756,0.395],[0.493,0.757],[0.23,1.102],[0,1.414],[-0.23,1.102],[-0.493,0.757],[-0.756,0.395]],"v":[[56.438,-121.404],[53.725,-121.996],[51.85,-123.747],[50.765,-126.534],[50.419,-130.308],[50.765,-134.057],[51.85,-136.869],[53.725,-138.596],[56.438,-139.212],[59.151,-138.596],[61.025,-136.869],[62.111,-134.057],[62.456,-130.308],[62.111,-126.534],[61.025,-123.747],[59.151,-121.996]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-10.095,0],[0,0],[0,-10.095],[0,0],[10.095,0],[0,0],[0,10.095],[0,0]],"o":[[0,0],[10.095,0],[0,0],[0,10.095],[0,0],[-10.095,0],[0,0],[0,-10.095]],"v":[[445.563,-149.14],[572.005,-149.14],[590.285,-130.86],[590.285,-130.86],[572.005,-112.581],[445.563,-112.581],[427.284,-130.86],[427.284,-130.86]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.118,0.125,0.141,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-10.095,0],[0,0],[0,-10.095],[0,0],[10.095,0],[0,0],[0,10.095],[0,0]],"o":[[0,0],[10.095,0],[0,0],[0,10.095],[0,0],[-10.095,0],[0,0],[0,-10.095]],"v":[[46.334,-149.14],[297.138,-149.14],[315.417,-130.86],[315.417,-130.86],[297.138,-112.581],[46.334,-112.581],[28.055,-130.86],[28.055,-130.86]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.118,0.125,0.141,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":162,"op":303,"st":162},{"ind":9,"ty":4,"nm":"L","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[473.099,261.804,0]},"a":{"a":0,"k":[323.814,-100.258,0]},"s":{"a":0,"k":[76,76,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-8.952],[0,0],[0,0],[0,0],[-8.951,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,-8.952],[0,0],[8.95,0]],"v":[[863.638,-179.449],[863.638,-65.009],[-216.007,-65.008],[-216.007,-179.449],[-199.799,-195.657],[847.43,-195.657]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-216.007,90.439],[863.638,90.439],[863.638,-63.599],[-216.007,-63.598]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-9.73,0],[0,0],[0,-9.73],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,-9.73],[0,0],[9.725,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-217.417,-179.449],[-199.799,-197.067],[847.43,-197.067],[865.048,-179.449],[865.048,212.614],[863.638,212.614],[863.638,91.848],[-216.007,91.848],[-216.007,212.614],[-217.417,212.614]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.196,0.196,0.196,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.909,0],[0.944,0.572],[0.507,1.034],[0,1.378],[-0.5,1.051],[-0.909,0.59],[-1.212,0],[-0.684,-0.234],[-0.564,-0.526],[-0.331,-0.858],[0,-1.255],[0,0],[0,0],[0,0],[0,0],[0.303,0.595],[0.557,0.345],[0.747,0],[0.599,-0.409],[0.317,-0.648],[0,-0.741],[0,0],[-0.352,-0.707],[-0.627,-0.368],[-0.832,0],[-0.437,0.152],[-0.324,0.31],[-0.169,0.467],[0,0],[0.5,-0.514],[0.733,-0.286]],"o":[[-1.297,0],[-0.93,-0.578],[-0.5,-1.039],[0,-1.378],[0.507,-1.056],[0.909,-0.595],[0.705,0],[0.684,0.233],[0.557,0.519],[0.331,0.858],[0,0],[0,0],[0,0],[0,0],[0,-0.76],[-0.303,-0.595],[-0.55,-0.345],[-0.825,0],[-0.592,0.402],[-0.324,0.648],[0,0],[0,1.016],[0.359,0.701],[0.634,0.362],[0.543,0],[0.444,-0.158],[0.317,-0.315],[0,0],[-0.211,0.678],[-0.493,0.508],[-0.726,0.28]],"v":[[753.053,-233.085],[749.699,-233.943],[747.535,-236.361],[746.781,-239.987],[747.535,-243.631],[749.656,-246.101],[752.842,-246.994],[754.921,-246.644],[756.788,-245.505],[758.127,-243.438],[758.628,-240.268],[758.628,-239.392],[748.254,-239.392],[748.254,-241.178],[756.521,-241.178],[756.069,-243.211],[754.787,-244.621],[752.842,-245.137],[750.707,-244.524],[749.332,-242.948],[748.853,-240.863],[748.853,-239.672],[749.375,-237.088],[750.855,-235.485],[753.053,-234.942],[754.526,-235.17],[755.675,-235.871],[756.415,-237.044],[758.416,-236.484],[757.352,-234.697],[755.513,-233.506]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.994,0],[0.909,0.595],[0.486,1.045],[0,1.343],[-0.5,1.045],[-0.909,0.59],[-1.212,0],[-0.761,-0.35],[-0.486,-0.631],[-0.12,-0.841],[0,0],[0.55,0.473],[0.909,0],[0.613,-0.421],[0.338,-0.759],[0,-1.016],[-0.324,-0.771],[-0.599,-0.426],[-0.818,0],[-0.437,0.187],[-0.303,0.35],[-0.134,0.49],[0,0],[0.458,-0.636],[0.747,-0.374]],"o":[[-1.261,0],[-0.909,-0.595],[-0.493,-1.046],[0,-1.366],[0.507,-1.051],[0.909,-0.595],[0.944,0],[0.761,0.351],[0.486,0.63],[0,0],[-0.162,-0.613],[-0.536,-0.479],[-0.803,0],[-0.599,0.414],[-0.331,0.753],[0,1.039],[0.331,0.77],[0.606,0.426],[0.536,0],[0.437,-0.187],[0.303,-0.35],[0,0],[-0.12,0.794],[-0.458,0.631],[-0.747,0.368]],"v":[[739.1,-233.085],[735.844,-233.979],[733.744,-236.44],[733.004,-240.022],[733.758,-243.64],[735.879,-246.101],[739.065,-246.994],[741.623,-246.469],[743.49,-244.997],[744.392,-242.79],[742.327,-242.79],[741.27,-244.419],[739.1,-245.137],[736.979,-244.507],[735.569,-242.746],[735.069,-240.092],[735.562,-237.377],[736.964,-235.581],[739.1,-234.942],[740.566,-235.223],[741.679,-236.028],[742.327,-237.289],[744.392,-237.289],[743.525,-235.144],[741.714,-233.637]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.783],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.641,0.414],[-1.015,0],[-0.684,-0.374],[-0.38,-0.753],[0,-1.145],[0,0],[0,0],[0,0],[0.55,0.59],[0.958,0],[0.521,-0.286],[0.296,-0.549]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.31,-0.683],[0.648,-0.421],[0.916,0],[0.684,0.368],[0.381,0.747],[0,0],[0,0],[0,0],[0,-1.056],[-0.543,-0.595],[-0.662,0],[-0.515,0.286],[-0.296,0.549]],"v":[[721.277,-241.459],[721.277,-233.366],[719.205,-233.366],[719.205,-246.819],[721.207,-246.819],[721.207,-244.717],[721.383,-244.717],[722.814,-246.363],[725.301,-246.994],[727.697,-246.434],[729.29,-244.752],[729.861,-241.914],[729.861,-233.366],[727.789,-233.366],[727.789,-241.774],[726.964,-244.244],[724.709,-245.137],[722.94,-244.708],[721.721,-243.456]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.824,0],[-0.564,0.321],[-0.282,0.508],[0,0.56],[0,0],[0.296,-0.087],[0.388,-0.064],[0.359,-0.047],[0.225,-0.03],[0.465,-0.157],[0.282,-0.309],[0,-0.525],[-0.529,-0.368]],"o":[[0.818,0],[0.564,-0.321],[0.296,-0.508],[0,0],[-0.092,0.105],[-0.296,0.082],[-0.373,0.059],[-0.359,0.041],[-0.536,0.07],[-0.465,0.152],[-0.282,0.304],[0,0.718],[0.536,0.362]],"v":[[709.586,-234.907],[711.651,-235.389],[712.926,-236.633],[713.37,-238.235],[713.37,-240.127],[712.792,-239.838],[711.771,-239.619],[710.664,-239.461],[709.79,-239.356],[708.289,-239.015],[707.169,-238.323],[706.746,-237.079],[707.542,-235.45]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0.782,0],[0.691,0.321],[0.409,0.613],[0,0.876],[-0.303,0.479],[-0.507,0.274],[-0.613,0.134],[-0.62,0.082],[-0.514,0.052],[-0.24,0.134],[0,0.333],[0,0],[0.472,0.479],[0.951,0],[0.557,-0.432],[0.226,-0.49],[0,0],[-0.585,0.455],[-0.698,0.181],[-0.677,0],[-0.557,-0.105],[-0.529,-0.316],[-0.345,-0.636],[0,-1.068],[0,0],[0,0],[0,0],[0,0],[0.331,-0.333],[0.543,-0.233]],"o":[[-0.853,0],[-0.698,-0.327],[-0.409,-0.619],[0,-0.771],[0.303,-0.484],[0.507,-0.275],[0.613,-0.14],[0.817,-0.105],[0.507,-0.058],[0.24,-0.135],[0,0],[0,-0.865],[-0.465,-0.479],[-0.987,0],[-0.564,0.432],[0,0],[0.352,-0.817],[0.592,-0.462],[0.698,-0.187],[0.43,0],[0.571,0.099],[0.529,0.315],[0.352,0.636],[0,0],[0,0],[0,0],[0,0],[-0.141,0.292],[-0.324,0.333],[-0.543,0.234]],"v":[[709.269,-233.05],[706.95,-233.532],[705.294,-234.942],[704.681,-237.184],[705.132,-239.059],[706.351,-240.197],[708.036,-240.81],[709.896,-241.144],[711.89,-241.38],[713.011,-241.669],[713.37,-242.37],[713.37,-242.44],[712.659,-244.454],[710.53,-245.172],[708.212,-244.524],[707.028,-243.141],[705.062,-243.841],[706.464,-245.75],[708.395,-246.714],[710.46,-246.994],[711.947,-246.837],[713.589,-246.215],[714.907,-244.787],[715.435,-242.23],[715.435,-233.366],[713.37,-233.366],[713.37,-235.187],[713.265,-235.187],[712.56,-234.25],[711.256,-233.401]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[701.524,-251.304],[701.524,-233.366],[699.459,-233.366],[699.459,-251.304]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.824,0],[-0.557,0.321],[-0.289,0.508],[0,0.56],[0,0],[0.296,-0.087],[0.38,-0.064],[0.359,-0.047],[0.219,-0.03],[0.465,-0.157],[0.282,-0.309],[0,-0.525],[-0.529,-0.368]],"o":[[0.818,0],[0.571,-0.321],[0.289,-0.508],[0,0],[-0.092,0.105],[-0.296,0.082],[-0.381,0.059],[-0.359,0.041],[-0.536,0.07],[-0.458,0.152],[-0.282,0.304],[0,0.718],[0.543,0.362]],"v":[[689.833,-234.907],[691.897,-235.389],[693.18,-236.633],[693.617,-238.235],[693.617,-240.127],[693.039,-239.838],[692.024,-239.619],[690.911,-239.461],[690.044,-239.356],[688.536,-239.015],[687.415,-238.323],[686.993,-237.079],[687.789,-235.45]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0.782,0],[0.691,0.321],[0.409,0.613],[0,0.876],[-0.31,0.479],[-0.507,0.274],[-0.613,0.134],[-0.627,0.082],[-0.507,0.052],[-0.233,0.134],[0,0.333],[0,0],[0.472,0.479],[0.951,0],[0.557,-0.432],[0.226,-0.49],[0,0],[-0.578,0.455],[-0.698,0.181],[-0.677,0],[-0.564,-0.105],[-0.529,-0.316],[-0.352,-0.636],[0,-1.068],[0,0],[0,0],[0,0],[0,0],[0.324,-0.333],[0.543,-0.233]],"o":[[-0.853,0],[-0.698,-0.327],[-0.409,-0.619],[0,-0.771],[0.303,-0.484],[0.507,-0.275],[0.62,-0.14],[0.818,-0.105],[0.514,-0.058],[0.24,-0.135],[0,0],[0,-0.865],[-0.465,-0.479],[-0.987,0],[-0.564,0.432],[0,0],[0.345,-0.817],[0.592,-0.462],[0.698,-0.187],[0.437,0],[0.564,0.099],[0.529,0.315],[0.345,0.636],[0,0],[0,0],[0,0],[0,0],[-0.141,0.292],[-0.331,0.333],[-0.543,0.234]],"v":[[689.515,-233.05],[687.197,-233.532],[685.541,-234.942],[684.928,-237.184],[685.386,-239.059],[686.598,-240.197],[688.282,-240.81],[690.15,-241.144],[692.137,-241.38],[693.258,-241.669],[693.617,-242.37],[693.617,-242.44],[692.905,-244.454],[690.777,-245.172],[688.458,-244.524],[687.274,-243.141],[685.315,-243.841],[686.711,-245.75],[688.642,-246.714],[690.706,-246.994],[692.2,-246.837],[693.835,-246.215],[695.16,-244.787],[695.682,-242.23],[695.682,-233.366],[693.617,-233.366],[693.617,-235.187],[693.511,-235.187],[692.814,-234.25],[691.503,-233.401]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.529,0.257],[-0.31,0.467],[0,0.631],[0.55,0.549],[1.191,0],[0,0]],"o":[[0,0],[0.655,0],[0.529,-0.257],[0.317,-0.467],[0,-0.789],[-0.55,-0.555],[0,0],[0,0]],"v":[[671.968,-243.421],[675.999,-243.421],[677.768,-243.806],[679.029,-244.892],[679.501,-246.539],[678.677,-248.545],[676.069,-249.377],[671.968,-249.377]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.592,0.549],[0,0.788],[0.31,0.514],[0.571,0.309],[0.782,0],[0,0]],"o":[[0,0],[1.417,0],[0.606,-0.555],[0,-0.607],[-0.303,-0.519],[-0.571,-0.316],[0,0],[0,0]],"v":[[671.968,-235.292],[676.281,-235.292],[679.297,-236.116],[680.199,-238.13],[679.734,-239.812],[678.416,-241.055],[676.379,-241.529],[671.968,-241.529]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.81,-0.432],[-0.402,-0.724],[0,-0.876],[0.275,-0.502],[0.444,-0.292],[0.514,-0.14],[0,0],[-0.557,-0.35],[-0.374,-0.654],[0,-0.946],[0.409,-0.719],[0.881,-0.42],[1.409,0]],"o":[[0,0],[0,0],[1.247,0],[0.817,0.426],[0.395,0.718],[0,0.771],[-0.268,0.502],[-0.437,0.292],[0,0],[0.543,0.035],[0.55,0.351],[0.373,0.654],[0,0.899],[-0.409,0.718],[-0.881,0.421],[0,0]],"v":[[669.797,-233.366],[669.797,-251.304],[676.069,-251.304],[679.156,-250.656],[680.974,-248.93],[681.566,-246.539],[681.157,-244.629],[680.086,-243.438],[678.663,-242.79],[678.663,-242.615],[680.319,-242.037],[681.707,-240.53],[682.271,-238.13],[681.658,-235.704],[679.72,-233.996],[676.281,-233.366]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.909,0],[0.944,0.572],[0.507,1.034],[0,1.378],[-0.5,1.051],[-0.909,0.59],[-1.212,0],[-0.684,-0.234],[-0.564,-0.526],[-0.331,-0.858],[0,-1.255],[0,0],[0,0],[0,0],[0,0],[0.303,0.595],[0.557,0.345],[0.747,0],[0.599,-0.409],[0.317,-0.648],[0,-0.741],[0,0],[-0.352,-0.707],[-0.627,-0.368],[-0.832,0],[-0.437,0.152],[-0.324,0.31],[-0.169,0.467],[0,0],[0.5,-0.514],[0.733,-0.286]],"o":[[-1.297,0],[-0.93,-0.578],[-0.5,-1.039],[0,-1.378],[0.507,-1.056],[0.909,-0.595],[0.705,0],[0.684,0.233],[0.557,0.519],[0.331,0.858],[0,0],[0,0],[0,0],[0,0],[0,-0.76],[-0.303,-0.595],[-0.55,-0.345],[-0.825,0],[-0.592,0.402],[-0.324,0.648],[0,0],[0,1.016],[0.359,0.701],[0.634,0.362],[0.543,0],[0.444,-0.158],[0.317,-0.315],[0,0],[-0.211,0.678],[-0.493,0.508],[-0.726,0.28]],"v":[[477.859,-233.085],[474.504,-233.943],[472.341,-236.361],[471.587,-239.987],[472.341,-243.631],[474.462,-246.101],[477.647,-246.994],[479.726,-246.644],[481.594,-245.505],[482.933,-243.438],[483.433,-240.268],[483.433,-239.392],[473.06,-239.392],[473.06,-241.178],[481.326,-241.178],[480.875,-243.211],[479.592,-244.621],[477.647,-245.137],[475.512,-244.524],[474.138,-242.948],[473.659,-240.863],[473.659,-239.672],[474.18,-237.088],[475.66,-235.485],[477.859,-234.942],[479.332,-235.17],[480.48,-235.871],[481.22,-237.044],[483.222,-236.484],[482.158,-234.697],[480.318,-233.506]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-1.004],[-0.303,-0.777],[-0.571,-0.438],[-0.832,0],[-0.578,0.455],[-0.296,0.777],[0,0.958],[0.289,0.76],[0.578,0.443],[0.874,0],[0.578,-0.426],[0.296,-0.76]],"o":[[0,1.016],[0.296,0.771],[0.571,0.432],[0.867,0],[0.585,-0.462],[0.296,-0.783],[0,-0.946],[-0.289,-0.765],[-0.578,-0.45],[-0.839,0],[-0.571,0.421],[-0.289,0.753]],"v":[[459.219,-240.092],[459.67,-237.404],[460.974,-235.59],[463.074,-234.942],[465.237,-235.625],[466.555,-237.482],[466.999,-240.092],[466.562,-242.65],[465.258,-244.463],[463.074,-245.137],[460.953,-244.498],[459.656,-242.729]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.275,0.362],[-0.507,0.286],[-0.874,0],[-0.867,-0.566],[-0.486,-1.039],[0,-1.413],[0.486,-1.045],[0.86,-0.572],[1.121,0],[0.521,0.286],[0.282,0.368],[0.155,0.245],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.155,-0.233],[0.275,-0.368],[0.515,-0.292],[1.135,0],[0.867,0.567],[0.486,1.039],[0,1.425],[-0.486,1.039],[-0.86,0.567],[-0.867,0],[-0.514,-0.292],[-0.282,-0.374],[0,0],[0,0],[0,0]],"v":[[457.189,-228.32],[457.189,-246.819],[459.184,-246.819],[459.184,-244.682],[459.43,-244.682],[460.065,-245.576],[461.234,-246.557],[463.32,-246.994],[466.315,-246.145],[468.338,-243.736],[469.064,-240.058],[468.338,-236.352],[466.323,-233.935],[463.356,-233.085],[461.277,-233.514],[460.079,-234.504],[459.43,-235.433],[459.254,-235.433],[459.254,-228.32]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.62,0],[0.275,0.058],[0.106,0.053],[0,0],[-0.381,0.035],[-0.303,0.309],[-0.254,0.684],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.381,-0.456],[0.5,-0.222]],"o":[[-0.352,0],[-0.275,-0.053],[0,0],[0.507,0.128],[0.388,-0.035],[0.303,-0.304],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.254,0.695],[-0.381,0.461],[-0.493,0.222]],"v":[[444.793,-228.32],[443.856,-228.408],[443.285,-228.566],[443.807,-230.387],[445.138,-230.247],[446.167,-230.764],[446.999,-232.244],[447.38,-233.295],[442.411,-246.819],[444.652,-246.819],[448.366,-236.098],[448.507,-236.098],[452.221,-246.819],[454.462,-246.819],[448.747,-231.404],[447.795,-229.678],[446.47,-228.653]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[428.472,-249.377],[428.472,-251.304],[441.925,-251.304],[441.925,-249.377],[436.287,-249.377],[436.287,-233.366],[434.117,-233.366],[434.117,-249.377]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-66.141,-233.366],[-71.396,-240.022],[-69.925,-241.459],[-63.513,-233.366]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-74.689,-233.366],[-74.689,-251.304],[-72.622,-251.304],[-72.622,-233.366]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-72.763,-238.27],[-72.798,-240.828],[-72.377,-240.828],[-66.491,-246.819],[-63.933,-246.819],[-70.205,-240.478],[-70.38,-240.478]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.642,0.415],[-0.806,0],[-0.228,-0.006],[-0.117,-0.012],[0,0],[0.251,0.035],[0.274,0],[0.514,-0.274],[0.298,-0.479],[0,-0.607],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.245,-0.666],[0.643,-0.414],[0.152,0],[0.228,0.006],[0,0],[-0.07,-0.018],[-0.245,-0.041],[-0.654,0],[-0.508,0.268],[-0.292,0.473],[0,0],[0,0]],"v":[[-83.867,-233.366],[-83.867,-246.819],[-81.87,-246.819],[-81.87,-244.787],[-81.73,-244.787],[-80.398,-246.408],[-78.226,-247.029],[-77.657,-247.021],[-77.14,-246.994],[-77.14,-244.892],[-77.622,-244.971],[-78.401,-245.032],[-80.153,-244.621],[-81.362,-243.499],[-81.799,-241.879],[-81.799,-233.366]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.923,0],[-0.595,0.473],[-0.286,0.771],[0,0.899],[0.286,0.777],[0.595,0.479],[0.922,0],[0.595,-0.479],[0.286,-0.777],[0,-0.899],[-0.286,-0.771],[-0.595,-0.473]],"o":[[0.922,0],[0.595,-0.473],[0.286,-0.771],[0,-0.899],[-0.286,-0.777],[-0.595,-0.479],[-0.923,0],[-0.595,0.479],[-0.286,0.777],[0,0.899],[0.286,0.771],[0.595,0.473]],"v":[[-93.119,-234.942],[-90.841,-235.652],[-89.518,-237.517],[-89.089,-240.022],[-89.518,-242.536],[-90.841,-244.419],[-93.119,-245.137],[-95.396,-244.419],[-96.718,-242.536],[-97.148,-240.022],[-96.718,-237.517],[-95.396,-235.652]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[1.215,0],[0.917,0.579],[0.514,1.039],[0,1.39],[-0.508,1.046],[-0.911,0.578],[-1.214,0],[-0.91,-0.578],[-0.508,-1.045],[0,-1.401],[0.514,-1.039],[0.917,-0.578]],"o":[[-1.214,0],[-0.911,-0.578],[-0.508,-1.039],[0,-1.401],[0.514,-1.045],[0.917,-0.578],[1.215,0],[0.917,0.578],[0.514,1.046],[0,1.39],[-0.508,1.039],[-0.91,0.579]],"v":[[-93.119,-233.085],[-96.315,-233.953],[-98.453,-236.378],[-99.215,-240.022],[-98.453,-243.693],[-96.315,-246.127],[-93.119,-246.994],[-89.93,-246.127],[-87.793,-243.693],[-87.022,-240.022],[-87.793,-236.378],[-89.93,-233.953]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-115.119,-233.366],[-119.218,-246.819],[-117.046,-246.819],[-114.138,-236.518],[-113.997,-236.518],[-111.125,-246.819],[-108.918,-246.819],[-106.08,-236.554],[-105.94,-236.554],[-103.031,-246.819],[-100.859,-246.819],[-104.959,-233.366],[-106.99,-233.366],[-109.933,-243.701],[-110.144,-243.701],[-113.087,-233.366]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.169,-0.292],[-0.269,-0.099],[-0.304,0],[-0.146,0.023],[-0.088,0.018],[0,0],[0.252,-0.052],[0.385,0],[0.56,0.252],[0.368,0.514],[0,0.782]],"o":[[0,0],[0,0],[0,0.584],[0.175,0.286],[0.274,0.094],[0.228,0],[0.147,-0.029],[0,0],[-0.14,0.052],[-0.251,0.059],[-0.584,0],[-0.555,-0.251],[-0.362,-0.514],[0,0]],"v":[[-126.217,-250.043],[-124.15,-250.043],[-124.15,-237.22],[-123.895,-235.905],[-123.229,-235.327],[-122.363,-235.187],[-121.802,-235.223],[-121.451,-235.292],[-121.031,-233.435],[-121.618,-233.278],[-122.573,-233.19],[-124.289,-233.567],[-125.673,-234.714],[-126.217,-236.659]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-121.277,-246.819],[-121.277,-245.067],[-128.248,-245.067],[-128.248,-246.819]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0.91,0],[0.941,0.572],[0.507,1.034],[0,1.378],[-0.502,1.051],[-0.905,0.59],[-1.214,0],[-0.683,-0.234],[-0.561,-0.526],[-0.333,-0.858],[0,-1.255],[0,0],[0,0],[0,0],[0,0],[0.304,0.595],[0.555,0.345],[0.748,0],[0.601,-0.409],[0.321,-0.648],[0,-0.741],[0,0],[-0.351,-0.707],[-0.631,-0.368],[-0.835,0],[-0.438,0.152],[-0.321,0.31],[-0.175,0.467],[0,0],[0.497,-0.514],[0.73,-0.286]],"o":[[-1.297,0],[-0.934,-0.578],[-0.502,-1.039],[0,-1.378],[0.507,-1.056],[0.911,-0.595],[0.701,0],[0.684,0.233],[0.56,0.519],[0.333,0.858],[0,0],[0,0],[0,0],[0,0],[0,-0.76],[-0.297,-0.595],[-0.549,-0.345],[-0.823,0],[-0.595,0.402],[-0.321,0.648],[0,0],[0,1.016],[0.356,0.701],[0.631,0.362],[0.543,0],[0.444,-0.158],[0.321,-0.315],[0,0],[-0.21,0.678],[-0.496,0.508],[-0.729,0.28]],"v":[[-135.843,-233.085],[-139.198,-233.943],[-141.36,-236.361],[-142.114,-239.987],[-141.36,-243.631],[-139.241,-246.101],[-136.053,-246.994],[-133.977,-246.644],[-132.111,-245.505],[-130.771,-243.438],[-130.272,-240.268],[-130.272,-239.392],[-140.642,-239.392],[-140.642,-241.178],[-132.374,-241.178],[-132.83,-243.211],[-134.108,-244.621],[-136.053,-245.137],[-138.19,-244.524],[-139.566,-242.948],[-140.047,-240.863],[-140.047,-239.672],[-139.521,-237.088],[-138.041,-235.485],[-135.843,-234.942],[-134.371,-235.17],[-133.224,-235.871],[-132.479,-237.044],[-130.482,-236.484],[-131.542,-234.697],[-133.382,-233.506]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-145.55,-251.304],[-145.55,-233.366],[-147.652,-233.366],[-157.427,-247.45],[-157.602,-247.45],[-157.602,-233.366],[-159.774,-233.366],[-159.774,-251.304],[-157.672,-251.304],[-147.862,-237.184],[-147.687,-237.184],[-147.687,-251.304]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,-0.958],[0,0],[0.228,0.292],[0.385,0.193],[0.602,0],[0.549,-0.379],[0,-0.578],[-0.373,-0.298],[-0.794,-0.199],[0,0],[-0.59,-0.602],[0,-0.94],[0.444,-0.607],[0.789,-0.35],[1.045,0],[0.899,0.595],[0.239,1.144],[0,0],[-0.52,-0.362],[-0.846,0],[-0.567,0.409],[0,0.578],[0.327,0.316],[0.677,0.158],[0,0],[0.579,0.613],[0,0.929],[-0.426,0.584],[-0.742,0.333],[-0.946,0],[-0.759,-0.584]],"o":[[0,0],[-0.117,-0.31],[-0.222,-0.297],[-0.385,-0.192],[-0.823,0],[-0.543,0.374],[0,0.514],[0.374,0.297],[0,0],[1.202,0.292],[0.59,0.595],[0,0.77],[-0.438,0.607],[-0.789,0.35],[-1.372,0],[-0.899,-0.595],[0,0],[0.187,0.724],[0.525,0.362],[0.964,0],[0.572,-0.415],[0,-0.467],[-0.327,-0.321],[0,0],[-1.232,-0.292],[-0.572,-0.619],[0,-0.759],[0.432,-0.584],[0.747,-0.333],[1.331,0],[0.765,0.584]],"v":[[200.813,-243.806],[198.956,-243.28],[198.439,-244.183],[197.528,-244.919],[196.048,-245.208],[193.989,-244.638],[193.175,-243.211],[193.735,-241.993],[195.487,-241.249],[197.485,-240.758],[200.173,-239.418],[201.058,-237.114],[200.392,-235.047],[198.553,-233.611],[195.802,-233.085],[192.395,-233.979],[190.688,-236.589],[192.649,-237.079],[193.709,-235.45],[195.767,-234.907],[198.062,-235.52],[198.921,-237.009],[198.43,-238.183],[196.924,-238.901],[194.681,-239.427],[191.966,-240.784],[191.108,-243.106],[191.747,-245.12],[193.508,-246.495],[196.048,-246.994],[199.184,-246.118]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.321,-0.958],[0,0],[0.228,0.292],[0.385,0.193],[0.602,0],[0.549,-0.379],[0,-0.578],[-0.373,-0.298],[-0.794,-0.199],[0,0],[-0.59,-0.602],[0,-0.94],[0.444,-0.607],[0.788,-0.35],[1.045,0],[0.899,0.595],[0.239,1.144],[0,0],[-0.52,-0.362],[-0.846,0],[-0.567,0.409],[0,0.578],[0.327,0.316],[0.677,0.158],[0,0],[0.578,0.613],[0,0.929],[-0.426,0.584],[-0.742,0.333],[-0.946,0],[-0.76,-0.584]],"o":[[0,0],[-0.117,-0.31],[-0.222,-0.297],[-0.385,-0.192],[-0.823,0],[-0.543,0.374],[0,0.514],[0.374,0.297],[0,0],[1.203,0.292],[0.59,0.595],[0,0.77],[-0.438,0.607],[-0.789,0.35],[-1.372,0],[-0.899,-0.595],[0,0],[0.187,0.724],[0.525,0.362],[0.964,0],[0.572,-0.415],[0,-0.467],[-0.327,-0.321],[0,0],[-1.232,-0.292],[-0.572,-0.619],[0,-0.759],[0.433,-0.584],[0.747,-0.333],[1.331,0],[0.765,0.584]],"v":[[187.926,-243.806],[186.069,-243.28],[185.552,-244.183],[184.642,-244.919],[183.161,-245.208],[181.103,-244.638],[180.288,-243.211],[180.849,-241.993],[182.601,-241.249],[184.597,-240.758],[187.287,-239.418],[188.171,-237.114],[187.506,-235.047],[185.666,-233.611],[182.916,-233.085],[179.509,-233.979],[177.801,-236.589],[179.763,-237.079],[180.823,-235.45],[182.881,-234.907],[185.176,-235.52],[186.034,-237.009],[185.544,-238.183],[184.037,-238.901],[181.795,-239.427],[179.079,-240.784],[178.221,-243.106],[178.86,-245.12],[180.621,-246.495],[183.161,-246.994],[186.297,-246.118]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0.911,0],[0.94,0.572],[0.508,1.034],[0,1.378],[-0.502,1.051],[-0.905,0.59],[-1.215,0],[-0.683,-0.234],[-0.561,-0.526],[-0.333,-0.858],[0,-1.255],[0,0],[0,0],[0,0],[0,0],[0.304,0.595],[0.555,0.345],[0.747,0],[0.601,-0.409],[0.321,-0.648],[0,-0.741],[0,0],[-0.35,-0.707],[-0.631,-0.368],[-0.835,0],[-0.438,0.152],[-0.321,0.31],[-0.175,0.467],[0,0],[0.496,-0.514],[0.73,-0.286]],"o":[[-1.297,0],[-0.934,-0.578],[-0.502,-1.039],[0,-1.378],[0.508,-1.056],[0.911,-0.595],[0.7,0],[0.684,0.233],[0.56,0.519],[0.333,0.858],[0,0],[0,0],[0,0],[0,0],[0,-0.76],[-0.297,-0.595],[-0.549,-0.345],[-0.824,0],[-0.595,0.402],[-0.321,0.648],[0,0],[0,1.016],[0.356,0.701],[0.631,0.362],[0.543,0],[0.444,-0.158],[0.321,-0.315],[0,0],[-0.21,0.678],[-0.497,0.508],[-0.729,0.28]],"v":[[169.681,-233.085],[166.327,-233.943],[164.163,-236.361],[163.41,-239.987],[164.163,-243.631],[166.282,-246.101],[169.471,-246.994],[171.547,-246.644],[173.413,-245.505],[174.752,-243.438],[175.252,-240.268],[175.252,-239.392],[164.881,-239.392],[164.881,-241.178],[173.15,-241.178],[172.694,-243.211],[171.415,-244.621],[169.471,-245.137],[167.334,-244.524],[165.959,-242.948],[165.477,-240.863],[165.477,-239.672],[166.003,-237.088],[167.482,-235.485],[169.681,-234.942],[171.153,-235.17],[172.3,-235.871],[173.045,-237.044],[175.041,-236.484],[173.982,-234.697],[172.142,-233.506]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.642,0.415],[-0.805,0],[-0.228,-0.006],[-0.117,-0.012],[0,0],[0.251,0.035],[0.274,0],[0.514,-0.274],[0.297,-0.479],[0,-0.607],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.245,-0.666],[0.643,-0.414],[0.152,0],[0.228,0.006],[0,0],[-0.07,-0.018],[-0.245,-0.041],[-0.654,0],[-0.508,0.268],[-0.292,0.473],[0,0],[0,0]],"v":[[155.272,-233.366],[155.272,-246.819],[157.27,-246.819],[157.27,-244.787],[157.41,-244.787],[158.741,-246.408],[160.913,-247.029],[161.482,-247.021],[162,-246.994],[162,-244.892],[161.518,-244.971],[160.738,-245.032],[158.986,-244.621],[157.778,-243.499],[157.339,-241.879],[157.339,-233.366]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.864,0],[-0.572,0.432],[-0.297,0.771],[0,1.016],[0.292,0.753],[0.572,0.421],[0.841,0],[0.584,-0.45],[0.292,-0.765],[0,-0.946],[-0.292,-0.783],[-0.578,-0.462]],"o":[[0.829,0],[0.572,-0.438],[0.298,-0.777],[0,-1.004],[-0.292,-0.76],[-0.572,-0.426],[-0.875,0],[-0.578,0.443],[-0.286,0.76],[0,0.958],[0.297,0.777],[0.584,0.455]],"v":[[145.313,-234.942],[147.415,-235.59],[148.721,-237.404],[149.167,-240.092],[148.73,-242.729],[147.433,-244.498],[145.313,-245.137],[143.124,-244.463],[141.819,-242.65],[141.389,-240.092],[141.828,-237.482],[143.141,-235.625]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0.864,0],[0.858,0.567],[0.484,1.039],[0,1.425],[-0.485,1.039],[-0.865,0.567],[-1.133,0],[-0.508,-0.292],[-0.269,-0.368],[-0.152,-0.233],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.28,-0.374],[0.52,-0.292]],"o":[[-1.121,0],[-0.858,-0.572],[-0.485,-1.045],[0,-1.413],[0.484,-1.039],[0.864,-0.566],[0.876,0],[0.514,0.286],[0.274,0.362],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.152,0.245],[-0.28,0.368],[-0.519,0.286]],"v":[[145.033,-233.085],[142.064,-233.935],[140.05,-236.352],[139.322,-240.058],[140.05,-243.736],[142.073,-246.145],[145.068,-246.994],[147.144,-246.557],[148.318,-245.576],[148.957,-244.682],[149.133,-244.682],[149.133,-251.304],[151.2,-251.304],[151.2,-233.366],[149.203,-233.366],[149.203,-235.433],[148.957,-235.433],[148.309,-234.504],[147.109,-233.514]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.864,0],[-0.572,0.432],[-0.298,0.771],[0,1.016],[0.292,0.753],[0.572,0.421],[0.841,0],[0.584,-0.45],[0.292,-0.765],[0,-0.946],[-0.292,-0.783],[-0.579,-0.462]],"o":[[0.829,0],[0.572,-0.438],[0.298,-0.777],[0,-1.004],[-0.292,-0.76],[-0.572,-0.426],[-0.876,0],[-0.578,0.443],[-0.286,0.76],[0,0.958],[0.298,0.777],[0.584,0.455]],"v":[[129.994,-234.942],[132.096,-235.59],[133.401,-237.404],[133.848,-240.092],[133.41,-242.729],[132.114,-244.498],[129.994,-245.137],[127.804,-244.463],[126.499,-242.65],[126.07,-240.092],[126.508,-237.482],[127.822,-235.625]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0.865,0],[0.858,0.567],[0.485,1.039],[0,1.425],[-0.484,1.039],[-0.864,0.567],[-1.132,0],[-0.508,-0.292],[-0.269,-0.368],[-0.152,-0.233],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.28,-0.374],[0.52,-0.292]],"o":[[-1.121,0],[-0.858,-0.572],[-0.484,-1.045],[0,-1.413],[0.485,-1.039],[0.865,-0.566],[0.876,0],[0.514,0.286],[0.275,0.362],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.152,0.245],[-0.28,0.368],[-0.519,0.286]],"v":[[129.713,-233.085],[126.744,-233.935],[124.73,-236.352],[124.003,-240.058],[124.73,-243.736],[126.753,-246.145],[129.749,-246.994],[131.825,-246.557],[132.998,-245.576],[133.638,-244.682],[133.813,-244.682],[133.813,-251.304],[135.88,-251.304],[135.88,-233.366],[133.883,-233.366],[133.883,-235.433],[133.638,-235.433],[132.99,-234.504],[131.79,-233.514]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[109.822,-240.373],[119.002,-240.373],[119.002,-238.446],[109.822,-238.446]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[108.981,-233.366],[106.704,-233.366],[113.291,-251.304],[115.533,-251.304],[122.12,-233.366],[119.842,-233.366],[114.482,-248.466],[114.342,-248.466]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.169,-0.292],[-0.269,-0.099],[-0.304,0],[-0.147,0.023],[-0.088,0.018],[0,0],[0.251,-0.052],[0.385,0],[0.56,0.252],[0.368,0.514],[0,0.782]],"o":[[0,0],[0,0],[0,0.584],[0.175,0.286],[0.274,0.094],[0.228,0],[0.146,-0.029],[0,0],[-0.14,0.052],[-0.252,0.059],[-0.584,0],[-0.555,-0.251],[-0.362,-0.514],[0,0]],"v":[[92.978,-250.043],[95.046,-250.043],[95.046,-237.22],[95.3,-235.905],[95.966,-235.327],[96.832,-235.187],[97.393,-235.223],[97.744,-235.292],[98.164,-233.435],[97.577,-233.278],[96.622,-233.19],[94.906,-233.567],[93.522,-234.714],[92.978,-236.659]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[97.918,-246.819],[97.918,-245.067],[90.947,-245.067],[90.947,-246.819]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[0.911,0],[0.94,0.572],[0.508,1.034],[0,1.378],[-0.502,1.051],[-0.905,0.59],[-1.215,0],[-0.683,-0.234],[-0.561,-0.526],[-0.333,-0.858],[0,-1.255],[0,0],[0,0],[0,0],[0,0],[0.304,0.595],[0.555,0.345],[0.747,0],[0.601,-0.409],[0.321,-0.648],[0,-0.741],[0,0],[-0.35,-0.707],[-0.631,-0.368],[-0.835,0],[-0.438,0.152],[-0.321,0.31],[-0.175,0.467],[0,0],[0.496,-0.514],[0.73,-0.286]],"o":[[-1.297,0],[-0.934,-0.578],[-0.502,-1.039],[0,-1.378],[0.508,-1.056],[0.911,-0.595],[0.7,0],[0.684,0.233],[0.56,0.519],[0.333,0.858],[0,0],[0,0],[0,0],[0,0],[0,-0.76],[-0.297,-0.595],[-0.549,-0.345],[-0.824,0],[-0.595,0.402],[-0.321,0.648],[0,0],[0,1.016],[0.356,0.701],[0.631,0.362],[0.543,0],[0.444,-0.158],[0.321,-0.315],[0,0],[-0.21,0.678],[-0.497,0.508],[-0.729,0.28]],"v":[[83.353,-233.085],[79.998,-233.943],[77.835,-236.361],[77.081,-239.987],[77.835,-243.631],[79.954,-246.101],[83.143,-246.994],[85.218,-246.644],[87.084,-245.505],[88.424,-243.438],[88.923,-240.268],[88.923,-239.392],[78.553,-239.392],[78.553,-241.178],[86.821,-241.178],[86.365,-243.211],[85.087,-244.621],[83.143,-245.137],[81.005,-244.524],[79.63,-242.948],[79.148,-240.863],[79.148,-239.672],[79.674,-237.088],[81.154,-235.485],[83.353,-234.942],[84.824,-235.17],[85.971,-235.871],[86.716,-237.044],[88.713,-236.484],[87.653,-234.697],[85.813,-233.506]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[73.925,-251.304],[73.925,-233.366],[71.858,-233.366],[71.858,-251.304]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.073,-251.304],[68.073,-233.366],[66.005,-233.366],[66.005,-251.304]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.823,0],[-0.56,0.321],[-0.286,0.508],[0,0.56],[0,0],[0.298,-0.087],[0.385,-0.064],[0.362,-0.047],[0.222,-0.03],[0.467,-0.157],[0.286,-0.309],[0,-0.525],[-0.531,-0.368]],"o":[[0.817,0],[0.567,-0.321],[0.292,-0.508],[0,0],[-0.087,0.105],[-0.292,0.082],[-0.379,0.059],[-0.357,0.041],[-0.537,0.07],[-0.461,0.152],[-0.28,0.304],[0,0.718],[0.537,0.362]],"v":[[56.381,-234.907],[58.448,-235.389],[59.727,-236.633],[60.165,-238.235],[60.165,-240.127],[59.587,-239.838],[58.571,-239.619],[57.459,-239.461],[56.591,-239.356],[55.085,-239.015],[53.964,-238.323],[53.543,-237.079],[54.34,-235.45]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[0.782,0],[0.695,0.321],[0.409,0.613],[0,0.876],[-0.304,0.479],[-0.508,0.274],[-0.613,0.134],[-0.624,0.082],[-0.508,0.052],[-0.234,0.134],[0,0.333],[0,0],[0.473,0.479],[0.952,0],[0.56,-0.432],[0.228,-0.49],[0,0],[-0.584,0.455],[-0.695,0.181],[-0.677,0],[-0.561,-0.105],[-0.526,-0.316],[-0.35,-0.636],[0,-1.068],[0,0],[0,0],[0,0],[0,0],[0.327,-0.333],[0.543,-0.233]],"o":[[-0.853,0],[-0.695,-0.327],[-0.409,-0.619],[0,-0.771],[0.304,-0.484],[0.508,-0.275],[0.619,-0.14],[0.817,-0.105],[0.514,-0.058],[0.239,-0.135],[0,0],[0,-0.865],[-0.467,-0.479],[-0.987,0],[-0.561,0.432],[0,0],[0.35,-0.817],[0.59,-0.462],[0.701,-0.187],[0.432,0],[0.567,0.099],[0.531,0.315],[0.35,0.636],[0,0],[0,0],[0,0],[0,0],[-0.14,0.292],[-0.327,0.333],[-0.543,0.234]],"v":[[56.066,-233.05],[53.745,-233.532],[52.09,-234.942],[51.476,-237.184],[51.932,-239.059],[53.149,-240.197],[54.831,-240.81],[56.696,-241.144],[58.685,-241.38],[59.806,-241.669],[60.165,-242.37],[60.165,-242.44],[59.456,-244.454],[57.327,-245.172],[55.006,-244.524],[53.824,-243.141],[51.862,-243.841],[53.263,-245.75],[55.19,-246.714],[57.257,-246.994],[58.746,-246.837],[60.384,-246.215],[61.707,-244.787],[62.233,-242.23],[62.233,-233.366],[60.165,-233.366],[60.165,-235.187],[60.06,-235.187],[59.36,-234.25],[58.054,-233.401]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[33.486,-233.366],[28.58,-251.304],[30.787,-251.304],[34.536,-236.694],[34.712,-236.694],[38.531,-251.304],[40.983,-251.304],[44.802,-236.694],[44.977,-236.694],[48.726,-251.304],[50.933,-251.304],[46.028,-233.366],[43.786,-233.366],[39.827,-247.66],[39.686,-247.66],[35.727,-233.366]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":70},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.318,-1.686],[0,0],[0.301,0.378],[0.499,0.232],[0.722,0],[0.662,-0.421],[-0.008,-0.671],[-0.43,-0.361],[-1.006,-0.232],[0,0],[-0.912,-0.877],[-0.008,-1.419],[0.722,-0.955],[1.273,-0.533],[1.651,0],[1.479,1.015],[0.284,1.823],[0,0],[-0.671,-0.456],[-1.075,0],[-0.671,0.455],[0,0.671],[0.438,0.369],[0.911,0.197],[0,0],[0.912,0.937],[-0.008,1.445],[-0.671,0.894],[-1.204,0.49],[-1.582,0],[-1.333,-0.989]],"o":[[0,0],[-0.121,-0.43],[-0.292,-0.378],[-0.499,-0.233],[-0.972,0],[-0.653,0.421],[-0.008,0.576],[0.439,0.362],[0,0],[1.875,0.405],[0.92,0.877],[-0.008,1.247],[-0.714,0.946],[-1.273,0.533],[-2.425,0],[-1.479,-1.023],[0,0],[0.206,0.894],[0.671,0.455],[1.109,0],[0.679,-0.456],[0,-0.568],[-0.43,-0.37],[0,0],[-1.901,-0.395],[-0.911,-0.946],[-0.008,-1.221],[0.679,-0.903],[1.212,-0.499],[2.322,0],[1.341,0.989]],"v":[[71.866,-342.039],[67.61,-341.574],[66.978,-342.787],[65.791,-343.703],[63.959,-344.051],[61.508,-343.419],[60.541,-341.781],[61.173,-340.375],[63.34,-339.485],[66.72,-338.763],[70.899,-336.84],[72.292,-333.396],[71.196,-330.094],[68.216,-327.875],[63.83,-327.075],[57.974,-328.598],[55.329,-332.868],[59.883,-333.306],[61.199,-331.281],[63.818,-330.597],[66.488,-331.281],[67.507,-332.97],[66.849,-334.376],[64.837,-335.228],[61.457,-335.937],[57.238,-337.937],[55.884,-341.523],[56.877,-344.696],[59.703,-346.786],[63.894,-347.534],[69.377,-346.051]],"c":true}},"nm":"P"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.19,-0.335],[-0.319,-0.12],[-0.387,0],[-0.241,0.043],[-0.129,0.035],[0,0],[0.464,-0.104],[0.662,-0.017],[0.937,0.387],[0.55,0.826],[-0.008,1.239]],"o":[[0,0],[0,0],[0,0.628],[0.197,0.327],[0.318,0.12],[0.292,0],[0.249,-0.043],[0,0],[-0.249,0.086],[-0.455,0.103],[-1.17,0.035],[-0.937,-0.396],[-0.542,-0.825],[0,0]],"v":[[44.007,-352.023],[48.677,-352.023],[48.677,-333.422],[48.961,-331.977],[49.734,-331.307],[50.792,-331.126],[51.592,-331.19],[52.159,-331.307],[52.947,-327.656],[51.875,-327.372],[50.199,-327.192],[47.038,-327.72],[44.807,-329.553],[44.007,-332.648]],"c":true}},"nm":"P"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[52.585,-347.276],[52.585,-343.664],[41.195,-343.664],[41.195,-347.276]],"c":true}},"nm":"P"},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[1.54,0],[1.445,0.825],[0.774,1.522],[0,2.073],[-0.774,1.54],[-1.402,0.86],[-1.892,0],[-1.083,-0.396],[-0.834,-0.817],[-0.481,-1.264],[0,-1.736],[0,0],[0,0],[0,0],[0,0],[0.378,0.696],[0.679,0.404],[0.894,0],[0.722,-0.464],[0.405,-0.748],[0.008,-0.886],[0,0],[-0.421,-0.825],[-0.757,-0.438],[-1.015,0],[-0.55,0.19],[-0.404,0.378],[-0.206,0.559],[0,0],[0.774,-0.86],[1.195,-0.473]],"o":[[-1.986,0],[-1.436,-0.834],[-0.774,-1.531],[0,-2.038],[0.782,-1.548],[1.402,-0.868],[1.221,0],[1.092,0.387],[0.843,0.817],[0.482,1.255],[0,0],[0,0],[0,0],[0,0],[-0.009,-0.894],[-0.378,-0.705],[-0.671,-0.405],[-0.954,0],[-0.722,0.455],[-0.395,0.74],[0,0],[0,1.152],[0.421,0.817],[0.757,0.43],[0.679,0],[0.55,-0.197],[0.405,-0.378],[0,0],[-0.276,1.153],[-0.766,0.851],[-1.195,0.464]],"v":[[29.93,-327.075],[24.784,-328.314],[21.469,-331.849],[20.308,-337.253],[21.469,-342.62],[24.745,-346.231],[29.686,-347.534],[33.142,-346.941],[36.032,-345.135],[38.018,-342.013],[38.741,-337.524],[38.741,-336.092],[22.5,-336.092],[22.5,-339.24],[34.265,-339.24],[33.684,-341.626],[32.098,-343.29],[29.75,-343.896],[27.235,-343.2],[25.545,-341.394],[24.939,-338.956],[24.939,-336.208],[25.571,-333.242],[27.338,-331.358],[29.995,-330.713],[31.839,-330.997],[33.271,-331.861],[34.188,-333.267],[38.548,-332.777],[36.974,-329.758],[34.032,-327.772]],"c":true}},"nm":"P"},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.357,-353.88],[16.357,-327.462],[11.688,-327.462],[11.688,-353.88]],"c":true}},"nm":"P"},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.886,-353.88],[6.886,-327.462],[2.216,-327.462],[2.216,-353.88]],"c":true}},"nm":"P"},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.972,0],[-0.689,0.37],[-0.37,0.619],[0,0.731],[0,0],[0.352,-0.103],[0.431,-0.077],[0.421,-0.06],[0.31,-0.043],[0.55,-0.215],[0.318,-0.387],[0,-0.602],[-0.628,-0.439]],"o":[[0.937,0],[0.688,-0.378],[0.378,-0.619],[0,0],[-0.146,0.12],[-0.344,0.103],[-0.43,0.078],[-0.421,0.061],[-0.696,0.094],[-0.55,0.215],[-0.319,0.378],[0,0.86],[0.627,0.438]],"v":[[-11.728,-330.494],[-9.29,-331.049],[-7.703,-332.545],[-7.136,-334.57],[-7.136,-336.905],[-7.884,-336.569],[-9.045,-336.299],[-10.322,-336.092],[-11.419,-335.937],[-13.289,-335.473],[-14.591,-334.57],[-15.069,-333.099],[-14.127,-331.152]],"c":true}},"nm":"P"},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[1.032,0],[1.006,0.448],[0.584,0.886],[0,1.298],[-0.413,0.731],[-0.714,0.438],[-0.895,0.224],[-0.963,0.103],[-0.722,0.094],[-0.326,0.206],[0,0.447],[0,0],[0.576,0.533],[1.084,0],[0.671,-0.498],[0.233,-0.679],[0,0],[-0.791,0.808],[-1.144,0.404],[-1.384,0],[-0.946,-0.224],[-0.783,-0.516],[-0.473,-0.877],[0,-1.316],[0,0],[0,0],[0,0],[0,0],[0.517,-0.481],[0.774,-0.292]],"o":[[-1.256,0],[-0.998,-0.455],[-0.576,-0.886],[0,-1.118],[0.413,-0.731],[0.713,-0.438],[0.903,-0.232],[1.161,-0.121],[0.722,-0.103],[0.335,-0.215],[0,0],[0,-0.972],[-0.576,-0.533],[-1.144,0],[-0.662,0.499],[0,0],[0.345,-1.204],[0.791,-0.817],[1.144,-0.413],[0.955,0],[0.946,0.224],[0.782,0.507],[0.482,0.877],[0,0],[0,0],[0,0],[0,0],[-0.284,0.55],[-0.507,0.473],[-0.765,0.284]],"v":[[-12.94,-327.063],[-16.333,-327.734],[-18.706,-329.746],[-19.571,-333.022],[-18.951,-335.796],[-17.262,-337.55],[-14.849,-338.543],[-12.05,-339.046],[-9.226,-339.369],[-7.652,-339.833],[-7.149,-340.826],[-7.149,-340.904],[-8.013,-343.161],[-10.503,-343.961],[-13.224,-343.213],[-14.566,-341.445],[-18.926,-342.065],[-17.223,-345.083],[-14.321,-346.915],[-10.529,-347.534],[-7.677,-347.199],[-5.085,-346.089],[-3.202,-344.013],[-2.479,-340.723],[-2.479,-327.462],[-6.968,-327.462],[-6.968,-330.184],[-7.123,-330.184],[-8.323,-328.636],[-10.245,-327.488]],"c":true}},"nm":"P"},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-47.427,-327.462],[-54.883,-353.88],[-49.736,-353.88],[-44.976,-334.467],[-44.731,-334.467],[-39.648,-353.88],[-34.966,-353.88],[-29.871,-334.454],[-29.639,-334.454],[-24.879,-353.88],[-19.732,-353.88],[-27.188,-327.462],[-31.909,-327.462],[-37.197,-345.999],[-37.404,-345.999],[-42.706,-327.462]],"c":true}},"nm":"P"},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.023,0],[-0.697,0.533],[-0.362,0.963],[0,1.281],[0.361,0.946],[0.696,0.525],[1.006,0],[0.697,-0.542],[0.353,-0.955],[0,-1.23],[-0.352,-0.972],[-0.697,-0.559]],"o":[[0.989,0],[0.696,-0.542],[0.361,-0.963],[0,-1.281],[-0.352,-0.946],[-0.688,-0.524],[-1.041,0],[-0.696,0.542],[-0.352,0.954],[0,1.238],[0.362,0.963],[0.705,0.55]],"v":[[-76.428,-330.945],[-73.899,-331.745],[-72.313,-334.002],[-71.771,-337.369],[-72.313,-340.71],[-73.887,-342.916],[-76.428,-343.703],[-79.034,-342.89],[-80.608,-340.646],[-81.136,-337.369],[-80.608,-334.054],[-79.021,-331.771]],"c":true}},"nm":"P"},{"ind":10,"ty":"sh","ks":{"a":0,"k":{"i":[[1.135,0],[1.23,0.8],[0.714,1.521],[0,2.175],[-0.722,1.514],[-1.238,0.774],[-1.522,0],[-0.748,-0.396],[-0.438,-0.55],[-0.241,-0.482],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.456,-0.541],[0.748,-0.378]],"o":[[-1.556,0],[-1.23,-0.8],[-0.714,-1.522],[0,-2.202],[0.731,-1.522],[1.238,-0.782],[1.161,0],[0.748,0.387],[0.438,0.541],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.241,0.481],[-0.455,0.533],[-0.748,0.378]],"v":[[-77.731,-327.114],[-81.91,-328.314],[-84.825,-331.796],[-85.896,-337.343],[-84.813,-342.916],[-81.859,-346.36],[-77.718,-347.534],[-74.854,-346.941],[-73.074,-345.534],[-72.055,-343.999],[-71.861,-343.999],[-71.861,-353.88],[-67.179,-353.88],[-67.179,-327.462],[-71.771,-327.462],[-71.771,-330.584],[-72.055,-330.584],[-73.1,-329.049],[-74.906,-327.682]],"c":true}},"nm":"P"},{"ind":11,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-0.955],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.998,0.654],[-1.479,0],[-1.015,-0.585],[-0.559,-1.109],[0.008,-1.582],[0,0],[0,0],[0,0],[0.689,0.748],[1.204,0],[0.636,-0.361],[0.362,-0.67]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.455,-1.109],[1.006,-0.654],[1.367,0],[1.023,0.585],[0.567,1.109],[0,0],[0,0],[0,0],[0,-1.324],[-0.679,-0.748],[-0.817,0],[-0.627,0.353],[-0.352,0.671]],"v":[[-102.549,-339.072],[-102.549,-327.462],[-107.219,-327.462],[-107.219,-347.276],[-102.756,-347.276],[-102.756,-343.909],[-102.523,-343.909],[-100.343,-346.554],[-96.615,-347.534],[-93.043,-346.657],[-90.669,-344.116],[-89.83,-340.078],[-89.83,-327.462],[-94.5,-327.462],[-94.5,-339.356],[-95.532,-342.464],[-98.357,-343.586],[-100.537,-343.045],[-102.021,-341.51]],"c":true}},"nm":"P"},{"ind":12,"ty":"sh","ks":{"a":0,"k":{"i":[[1.54,0],[1.445,0.825],[0.774,1.522],[0,2.073],[-0.774,1.54],[-1.402,0.86],[-1.892,0],[-1.083,-0.396],[-0.834,-0.817],[-0.481,-1.264],[0,-1.736],[0,0],[0,0],[0,0],[0,0],[0.378,0.696],[0.679,0.404],[0.894,0],[0.722,-0.464],[0.405,-0.748],[0.008,-0.886],[0,0],[-0.421,-0.825],[-0.757,-0.438],[-1.015,0],[-0.55,0.19],[-0.404,0.378],[-0.206,0.559],[0,0],[0.774,-0.86],[1.195,-0.473]],"o":[[-1.986,0],[-1.436,-0.834],[-0.774,-1.531],[0,-2.038],[0.782,-1.548],[1.402,-0.868],[1.221,0],[1.092,0.387],[0.843,0.817],[0.482,1.255],[0,0],[0,0],[0,0],[0,0],[-0.009,-0.894],[-0.378,-0.705],[-0.671,-0.405],[-0.954,0],[-0.722,0.455],[-0.395,0.74],[0,0],[0,1.152],[0.421,0.817],[0.757,0.43],[0.679,0],[0.55,-0.197],[0.405,-0.378],[0,0],[-0.276,1.153],[-0.766,0.851],[-1.195,0.464]],"v":[[-119.98,-327.075],[-125.126,-328.314],[-128.441,-331.849],[-129.602,-337.253],[-128.441,-342.62],[-125.165,-346.231],[-120.224,-347.534],[-116.768,-346.941],[-113.878,-345.135],[-111.892,-342.013],[-111.169,-337.524],[-111.169,-336.092],[-127.41,-336.092],[-127.41,-339.24],[-115.645,-339.24],[-116.226,-341.626],[-117.812,-343.29],[-120.16,-343.896],[-122.675,-343.2],[-124.365,-341.394],[-124.971,-338.956],[-124.971,-336.208],[-124.339,-333.242],[-122.573,-331.358],[-119.915,-330.713],[-118.071,-330.997],[-116.639,-331.861],[-115.723,-333.267],[-111.363,-332.777],[-112.936,-329.758],[-115.878,-327.772]],"c":true}},"nm":"P"},{"ind":13,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-136.181,-327.462],[-142.631,-336.479],[-139.483,-339.768],[-130.596,-327.462]],"c":true}},"nm":"P"},{"ind":14,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-148.616,-327.462],[-148.616,-353.88],[-143.947,-353.88],[-143.947,-327.462]],"c":true}},"nm":"P"},{"ind":15,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-144.359,-333.68],[-144.372,-339.317],[-143.624,-339.317],[-136.504,-347.276],[-131.048,-347.276],[-139.806,-337.524],[-140.773,-337.524]],"c":true}},"nm":"P"},{"ind":16,"ty":"sh","ks":{"a":0,"k":{"i":[[1.66,0],[1.419,0.869],[0.765,1.531],[0,2.004],[-0.774,1.54],[-1.41,0.86],[-1.934,0],[-1.238,-0.593],[-0.739,-1.075],[-0.103,-1.427],[0,0],[0.679,0.636],[1.127,0],[0.722,-0.517],[0.404,-0.954],[0,-1.333],[-0.395,-0.972],[-0.714,-0.524],[-0.972,0],[-0.542,0.258],[-0.37,0.499],[-0.137,0.714],[0,0],[0.714,-1.084],[1.23,-0.611]],"o":[[-1.978,0],[-1.41,-0.868],[-0.757,-1.539],[0,-2.012],[0.774,-1.548],[1.419,-0.868],[1.608,0],[1.247,0.585],[0.74,1.066],[0,0],[-0.18,-0.954],[-0.671,-0.645],[-0.955,0],[-0.722,0.507],[-0.395,0.955],[0,1.35],[0.395,0.963],[0.722,0.516],[0.688,0],[0.55,-0.266],[0.37,-0.499],[0,0],[-0.111,1.402],[-0.714,1.075],[-1.23,0.602]],"v":[[-160.938,-327.075],[-166.034,-328.378],[-169.297,-331.977],[-170.432,-337.292],[-169.271,-342.62],[-165.995,-346.231],[-160.964,-347.534],[-156.695,-346.644],[-153.715,-344.154],[-152.451,-340.414],[-156.914,-340.414],[-158.203,-342.8],[-160.9,-343.768],[-163.415,-342.993],[-165.105,-340.801],[-165.698,-337.369],[-165.105,-333.887],[-163.441,-331.655],[-160.9,-330.881],[-159.055,-331.268],[-157.675,-332.416],[-156.914,-334.235],[-152.451,-334.235],[-153.689,-330.507],[-156.604,-327.978]],"c":true}},"nm":"P"},{"ind":17,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.971,0],[-0.688,0.37],[-0.369,0.619],[0,0.731],[0,0],[0.352,-0.103],[0.43,-0.077],[0.421,-0.06],[0.309,-0.043],[0.55,-0.215],[0.318,-0.387],[0,-0.602],[-0.628,-0.439]],"o":[[0.938,0],[0.688,-0.378],[0.378,-0.619],[0,0],[-0.147,0.12],[-0.344,0.103],[-0.43,0.078],[-0.421,0.061],[-0.697,0.094],[-0.55,0.215],[-0.319,0.378],[0,0.86],[0.628,0.438]],"v":[[-183.525,-330.494],[-181.087,-331.049],[-179.501,-332.545],[-178.933,-334.57],[-178.933,-336.905],[-179.681,-336.569],[-180.842,-336.299],[-182.119,-336.092],[-183.215,-335.937],[-185.086,-335.473],[-186.389,-334.57],[-186.866,-333.099],[-185.924,-331.152]],"c":true}},"nm":"P"},{"ind":18,"ty":"sh","ks":{"a":0,"k":{"i":[[1.032,0],[1.006,0.448],[0.585,0.886],[0,1.298],[-0.413,0.731],[-0.714,0.438],[-0.894,0.224],[-0.963,0.103],[-0.722,0.094],[-0.327,0.206],[0,0.447],[0,0],[0.576,0.533],[1.084,0],[0.671,-0.498],[0.232,-0.679],[0,0],[-0.791,0.808],[-1.144,0.404],[-1.385,0],[-0.946,-0.224],[-0.782,-0.516],[-0.474,-0.877],[0,-1.316],[0,0],[0,0],[0,0],[0,0],[0.516,-0.481],[0.774,-0.292]],"o":[[-1.256,0],[-0.998,-0.455],[-0.576,-0.886],[0,-1.118],[0.413,-0.731],[0.714,-0.438],[0.903,-0.232],[1.161,-0.121],[0.723,-0.103],[0.335,-0.215],[0,0],[0,-0.972],[-0.576,-0.533],[-1.144,0],[-0.662,0.499],[0,0],[0.344,-1.204],[0.791,-0.817],[1.144,-0.413],[0.954,0],[0.946,0.224],[0.783,0.507],[0.481,0.877],[0,0],[0,0],[0,0],[0,0],[-0.284,0.55],[-0.507,0.473],[-0.765,0.284]],"v":[[-184.738,-327.063],[-188.13,-327.734],[-190.504,-329.746],[-191.368,-333.022],[-190.749,-335.796],[-189.059,-337.55],[-186.647,-338.543],[-183.848,-339.046],[-181.023,-339.369],[-179.449,-339.833],[-178.946,-340.826],[-178.946,-340.904],[-179.81,-343.161],[-182.3,-343.961],[-185.022,-343.213],[-186.363,-341.445],[-190.723,-342.065],[-189.02,-345.083],[-186.118,-346.915],[-182.325,-347.534],[-179.475,-347.199],[-176.882,-346.089],[-174.998,-344.013],[-174.276,-340.723],[-174.276,-327.462],[-178.765,-327.462],[-178.765,-330.184],[-178.92,-330.184],[-180.12,-328.636],[-182.042,-327.488]],"c":true}},"nm":"P"},{"ind":19,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.662,0.301],[-0.378,0.56],[0,0.774],[0.722,0.662],[1.41,0],[0,0]],"o":[[0,0],[0.826,0],[0.662,-0.309],[0.387,-0.567],[0,-1.023],[-0.714,-0.662],[0,0],[0,0]],"v":[[-209.321,-342.645],[-204.587,-342.645],[-202.355,-343.097],[-200.794,-344.4],[-200.214,-346.412],[-201.297,-348.94],[-204.483,-349.933],[-209.321,-349.933]],"c":true}},"nm":"P"},{"ind":20,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.765,0.662],[0,1.049],[0.387,0.628],[0.714,0.362],[0.989,0],[0,0]],"o":[[0,0],[1.737,0],[0.774,-0.671],[0,-0.782],[-0.387,-0.636],[-0.713,-0.37],[0,0],[0,0]],"v":[[-209.321,-331.462],[-204.174,-331.462],[-200.42,-332.455],[-199.259,-335.035],[-199.84,-337.15],[-201.491,-338.646],[-204.045,-339.201],[-209.321,-339.201]],"c":true}},"nm":"P"},{"ind":21,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.264,-0.602],[-0.628,-1.032],[0,-1.307],[0.412,-0.765],[0.697,-0.473],[0.86,-0.206],[0,0],[-0.86,-0.524],[-0.55,-0.946],[0,-1.342],[0.662,-1.092],[1.333,-0.628],[2.021,0]],"o":[[0,0],[0,0],[1.909,0],[1.273,0.593],[0.636,1.032],[0,1.075],[-0.413,0.757],[-0.696,0.473],[0,0],[0.938,0.051],[0.868,0.517],[0.55,0.946],[0,1.367],[-0.662,1.084],[-1.333,0.627],[0,0]],"v":[[-214.106,-327.462],[-214.106,-353.88],[-203.993,-353.88],[-199.233,-352.977],[-196.382,-350.539],[-195.428,-347.031],[-196.047,-344.271],[-197.712,-342.426],[-200.046,-341.407],[-200.046,-341.149],[-197.35,-340.285],[-195.222,-338.092],[-194.396,-334.66],[-195.39,-330.971],[-198.382,-328.404],[-203.413,-327.462]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.392,0.392,0.392,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-18.251,0],[0,0],[0,-18.251],[0,0],[18.251,0],[0,0],[0,18.251],[0,0]],"o":[[0,0],[18.251,0],[0,0],[0,18.251],[0,0],[-18.251,0],[0,0],[0,-18.251]],"v":[[-242.194,-415.127],[889.826,-415.127],[922.873,-382.079],[922.873,181.563],[889.826,214.611],[-242.194,214.611],[-275.242,181.563],[-275.242,-382.079]],"c":true}},"nm":"P"},{"ty":"st","c":{"a":0,"k":[0.196,0.196,0.196,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2.78},"lc":1,"lj":1,"ml":4,"nm":"S"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-19.019,0],[0,0],[0,-19.019],[0,0],[19.019,0],[0,0],[0,19.019],[0,0]],"o":[[0,0],[19.019,0],[0,0],[0,19.019],[0,0],[-19.019,0],[0,0],[0,-19.019]],"v":[[-242.194,-416.516],[889.823,-416.516],[924.26,-382.079],[924.26,181.563],[889.823,216],[-242.194,216],[-276.631,181.563],[-276.631,-382.079]],"c":true}},"nm":"P"},{"ty":"fl","c":{"a":0,"k":[0.031,0.031,0.035,1]},"o":{"a":0,"k":100},"r":1,"nm":"F"},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"T"}],"nm":"G"}],"ip":0,"op":1193,"st":0}],"markers":[],"chars":[{"ch":"Q","size":8.849,"style":"Light","w":75.67,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[49.325,-6.357],[50.817,-4.368],[59.197,6.818],[66.584,6.818],[55.149,-8.345],[53.587,-10.405],[44.283,-22.727],[36.896,-22.727]],"c":true}},"nm":"Q"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.699,5.599],[4.723,3.066],[6.131,0],[4.735,-3.066],[2.687,-5.599],[0,-7.576],[-2.687,-5.599],[-4.723,-3.066],[-6.132,0],[-4.723,3.066],[-2.699,5.599],[0,7.576]],"o":[[-2.699,-5.599],[-4.723,-3.066],[-6.108,0],[-4.735,3.066],[-2.687,5.599],[0,7.576],[2.687,5.599],[4.723,3.066],[6.131,0],[4.723,-3.066],[2.699,-5.599],[0,-7.576]],"v":[[65.234,-56.126],[54.102,-69.123],[37.82,-73.722],[21.555,-69.123],[10.423,-56.126],[6.392,-36.364],[10.423,-16.602],[21.538,-3.604],[37.82,0.994],[54.102,-3.604],[65.234,-16.602],[69.283,-36.364]],"c":true}},"nm":"Q"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[2.178,-4.652],[3.776,-2.462],[4.782,0],[3.764,2.474],[2.178,4.64],[0,6.511],[-2.19,4.64],[-3.764,2.462],[-4.759,0],[-3.764,-2.462],[-2.178,-4.652],[0,-6.51]],"o":[[-2.178,4.652],[-3.776,2.462],[-4.782,0],[-3.764,-2.474],[-2.178,-4.64],[0,-6.534],[2.189,-4.64],[3.764,-2.462],[4.782,0],[3.764,2.462],[2.178,4.652],[0.023,6.511]],"v":[[59.588,-19.62],[50.657,-8.949],[37.82,-5.256],[25,-8.967],[16.087,-19.638],[12.82,-36.364],[16.104,-53.125],[25.036,-63.778],[37.82,-67.472],[50.639,-63.778],[59.553,-53.107],[62.82,-36.364]],"c":true}},"nm":"Q"}],"nm":"Q"}]},"fFamily":"Inter"},{"ch":"u","size":8.849,"style":"Light","w":57.67,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.468,-2.284],[2.273,-1.184],[2.462,0],[2.509,2.592],[0,4.261],[0,0],[0,0],[0,0],[-1.539,-2.959],[-2.699,-1.527],[-3.48,0],[-2.77,1.859],[-1.278,2.794],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[-1.468,2.285],[-2.273,1.184],[-3.93,0],[-2.51,-2.592],[0,0],[0,0],[0,0],[0,4.309],[1.539,2.96],[2.699,1.527],[4.001,0],[2.77,-1.858],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,3.338]],"v":[[40.803,-12.411],[35.192,-7.209],[28.089,-5.433],[18.43,-9.322],[14.666,-19.602],[14.666,-54.545],[8.345,-54.545],[8.345,-19.212],[10.653,-8.31],[17.01,-1.58],[26.278,0.71],[36.435,-2.077],[42.507,-9.055],[43.004,-9.055],[43.004,0],[49.325,0],[49.325,-54.545],[43.004,-54.545],[43.004,-20.845]],"c":true}},"nm":"u"}],"nm":"u"}]},"fFamily":"Inter"},{"ch":"e","size":8.849,"style":"Light","w":58.06,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.805,1.172],[-1.882,1.941],[-0.829,2.297],[0,0],[1.337,-1.361],[1.953,-0.805],[2.58,0],[2.77,1.776],[1.503,3.232],[0,4.332],[0,0],[-1.48,3.031],[-2.628,1.847],[-3.457,0],[-2.498,-1.634],[-1.409,-2.805],[0,-3.503],[0,0],[0,0],[0,0],[0,0],[1.278,3.35],[2.189,2.214],[2.746,1.078],[2.959,0],[3.587,-2.426],[2.024,-4.273],[0,-5.492],[-2.024,-4.226],[-3.717,-2.379],[-5.09,0]],"o":[[2.805,-1.172],[1.882,-1.941],[0,0],[-0.687,1.634],[-1.338,1.362],[-1.953,0.805],[-3.788,0],[-2.77,-1.776],[-1.504,-3.232],[0,0],[0.023,-3.598],[1.479,-3.03],[2.628,-1.847],[3.267,0],[2.497,1.634],[1.408,2.805],[0,0],[0,0],[0,0],[0,0],[0,-4.569],[-1.278,-3.35],[-2.19,-2.213],[-2.747,-1.077],[-4.711,0],[-3.587,2.427],[-2.024,4.274],[0,5.516],[2.024,4.226],[3.716,2.379],[3.645,0]],"v":[[40.075,-0.621],[47.106,-5.291],[51.172,-11.648],[45.17,-13.601],[42.134,-9.109],[37.198,-5.859],[30.398,-4.652],[20.561,-7.315],[14.151,-14.826],[11.896,-26.172],[11.896,-29.51],[14.151,-39.453],[20.312,-46.768],[29.439,-49.538],[38.086,-47.088],[43.945,-40.43],[46.058,-30.966],[9.908,-30.966],[9.908,-25.391],[52.521,-25.391],[52.521,-28.516],[50.604,-40.394],[45.401,-48.739],[37.997,-53.675],[29.439,-55.291],[16.992,-51.651],[8.576,-41.602],[5.54,-26.953],[8.576,-12.34],[17.188,-2.433],[30.398,1.136]],"c":true}},"nm":"e"}],"nm":"e"}]},"fFamily":"Inter"},{"ch":"d","size":8.849,"style":"Light","w":61.33,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.214,1.184],[-1.349,1.74],[-0.734,1.657],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.326,1.728],[2.202,1.172],[3.314,0],[3.385,-2.355],[1.882,-4.226],[0,-5.611],[-1.882,-4.238],[-3.362,-2.367],[-4.474,0]],"o":[[2.213,-1.184],[1.349,-1.74],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.734,-1.634],[-1.326,-1.728],[-2.202,-1.172],[-4.498,0],[-3.386,2.356],[-1.882,4.226],[0,5.635],[1.882,4.238],[3.361,2.368],[3.314,0]],"v":[[36.275,-0.639],[41.619,-5.025],[44.744,-10.121],[45.49,-10.121],[45.49,0],[51.669,0],[51.669,-72.727],[45.312,-72.727],[45.312,-44.141],[44.744,-44.141],[41.655,-49.183],[36.364,-53.533],[28.089,-55.291],[16.264,-51.758],[8.363,-41.886],[5.54,-27.131],[8.363,-12.322],[16.229,-2.415],[27.983,1.136]],"c":true}},"nm":"d"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.497,2.001],[1.302,3.409],[0,4.238],[-1.291,3.362],[-2.498,1.977],[-3.646,0],[-2.486,-1.905],[-1.302,-3.35],[0,-4.356],[1.314,-3.397],[2.486,-1.929],[3.527,0]],"o":[[-2.498,-2],[-1.302,-3.409],[0,-4.19],[1.29,-3.361],[2.497,-1.976],[3.551,0],[2.486,1.906],[1.302,3.35],[0,4.403],[-1.314,3.397],[-2.486,1.93],[-3.622,0]],"v":[[19.549,-7.653],[13.849,-15.767],[11.896,-27.237],[13.832,-38.565],[19.513,-46.573],[28.729,-49.538],[37.784,-46.68],[43.466,-38.796],[45.419,-27.237],[43.448,-15.536],[37.749,-7.546],[28.729,-4.652]],"c":true}},"nm":"d"}],"nm":"d"}]},"fFamily":"Inter"},{"ch":"T","size":8.849,"style":"Light","w":63.25,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.303,-66.761],[28.303,0],[34.943,0],[34.943,-66.761],[57.99,-66.761],[57.99,-72.727],[5.256,-72.727],[5.256,-66.761]],"c":true}},"nm":"T"}],"nm":"T"}]},"fFamily":"Inter"},{"ch":"x","size":8.849,"style":"Light","w":52.66,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.936,-54.545],[22.266,-27.273],[4.936,0],[12.251,0],[26.314,-22.514],[40.376,0],[47.727,0],[30.185,-27.273],[47.727,-54.545],[40.376,-54.545],[26.314,-31.286],[12.251,-54.545]],"c":true}},"nm":"x"}],"nm":"x"}]},"fFamily":"Inter"},{"ch":" ","size":8.849,"style":"Light","w":28.12,"data":{},"fFamily":"Inter"},{"ch":"H","size":8.849,"style":"Light","w":73.86,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16.3,0],[16.3,-33.416],[57.564,-33.416],[57.564,0],[64.205,0],[64.205,-72.727],[57.564,-72.727],[57.564,-39.382],[16.3,-39.382],[16.3,-72.727],[9.659,-72.727],[9.659,0]],"c":true}},"nm":"H"}],"nm":"H"}]},"fFamily":"Inter"},{"ch":"a","size":8.849,"style":"Light","w":55.65,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.249,0.97],[-1.491,1.515],[-0.758,1.61],[0,0],[0,0],[0,0],[0,0],[1.207,2.379],[1.941,1.338],[2.261,0.545],[2.083,0],[2.699,-0.793],[2.178,-1.787],[1.231,-2.983],[0,0],[-2.474,1.728],[-3.93,0],[-2.214,-2.142],[0,-3.716],[0,0],[1.113,-0.615],[2.118,-0.284],[3.054,-0.378],[2.557,-0.686],[1.87,-1.184],[1.018,-1.847],[0,-2.699],[-1.61,-2.45],[-2.723,-1.29],[-3.291,0]],"o":[[2.249,-0.97],[1.491,-1.515],[0,0],[0,0],[0,0],[0,0],[0,-3.645],[-1.207,-2.379],[-1.941,-1.337],[-2.261,-0.544],[-2.77,0],[-2.699,0.793],[-2.178,1.788],[0,0],[0.994,-2.344],[2.474,-1.728],[4.143,0],[2.213,2.143],[0,0],[0,1.373],[-1.113,0.616],[-2.119,0.284],[-3.078,0.379],[-2.557,0.687],[-1.87,1.184],[-1.018,1.847],[0,3.504],[1.61,2.45],[2.722,1.29],[3.03,0]],"v":[[31.499,-0.213],[37.109,-3.942],[40.483,-8.629],[40.874,-8.629],[40.874,0],[47.195,0],[47.195,-37.038],[45.384,-46.076],[40.661,-51.651],[34.357,-54.474],[27.841,-55.291],[19.638,-54.102],[12.322,-50.231],[7.209,-43.075],[13.21,-40.909],[18.413,-47.017],[28.018,-49.609],[37.553,-46.396],[40.874,-37.607],[40.874,-36.328],[39.205,-33.345],[34.357,-31.996],[26.598,-31.001],[18.146,-29.403],[11.506,-26.598],[7.173,-22.053],[5.646,-15.234],[8.061,-6.303],[14.56,-0.692],[23.58,1.243]],"c":true}},"nm":"a"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.367,1.811],[0,3.315],[-1.16,1.409],[-2.178,0.805],[-3.078,0.379],[-1.42,0.19],[-1.433,0.272],[-1.101,0.355],[-0.474,0.45],[0,0],[1.337,-2.474],[2.462,-1.491],[3.361,0]],"o":[[-2.368,-1.811],[0,-2.202],[1.16,-1.408],[2.178,-0.805],[1.136,-0.142],[1.42,-0.189],[1.432,-0.272],[1.101,-0.355],[0,0],[0,2.983],[-1.338,2.474],[-2.462,1.491],[-3.575,0]],"v":[[15.518,-7.262],[11.967,-14.95],[13.707,-20.366],[18.714,-23.686],[26.598,-25.462],[30.433,-25.959],[34.712,-26.651],[38.512,-27.592],[40.874,-28.8],[40.874,-20.916],[38.867,-12.731],[33.168,-6.783],[24.432,-4.545]],"c":true}},"nm":"a"}],"nm":"a"}]},"fFamily":"Inter"},{"ch":"s","size":8.849,"style":"Light","w":51.28,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.995,2.261],[4.995,0],[2.864,-1.302],[1.634,-2.284],[0,-3.006],[-2.273,-2.462],[-4.735,-1.136],[0,0],[-1.468,-1.503],[0,-2.202],[2.509,-1.882],[4.19,0],[2.284,1.657],[0.781,3.244],[0,0],[-3.457,-2.403],[-5.327,0],[-3.042,1.361],[-1.705,2.391],[0,3.078],[2.284,2.415],[4.569,1.113],[0,0],[1.621,1.456],[0,2.344],[-2.368,1.752],[-3.693,0],[-1.669,-0.781],[-1.042,-1.326],[-0.568,-1.634],[0,0]],"o":[[-2.995,-2.261],[-3.67,0],[-2.865,1.302],[-1.634,2.285],[0,3.646],[2.273,2.462],[0,0],[2.983,0.71],[1.468,1.504],[0,2.841],[-2.51,1.882],[-3.741,0],[-2.285,-1.657],[0,0],[0.97,4.545],[3.456,2.403],[4.001,0],[3.042,-1.361],[1.705,-2.391],[0,-3.645],[-2.285,-2.415],[0,0],[-3.386,-0.852],[-1.622,-1.456],[0,-2.77],[2.367,-1.752],[2.462,0],[1.669,0.781],[1.041,1.326],[0,0],[-1.326,-3.953]],"v":[[38.512,-51.9],[26.527,-55.291],[16.726,-53.338],[9.979,-47.958],[7.528,-40.021],[10.938,-30.859],[21.449,-25.462],[30.362,-23.331],[37.038,-20.011],[39.24,-14.453],[35.476,-7.369],[25.426,-4.545],[16.388,-7.031],[11.79,-14.382],[5.717,-12.891],[12.358,-2.468],[25.533,1.136],[36.097,-0.906],[43.217,-6.534],[45.774,-14.737],[42.347,-23.828],[32.067,-29.119],[23.828,-31.143],[16.317,-34.606],[13.885,-40.305],[17.436,-47.088],[26.527,-49.716],[32.724,-48.544],[36.79,-45.384],[39.205,-40.945],[44.993,-42.578]],"c":true}},"nm":"s"}],"nm":"s"}]},"fFamily":"Inter"},{"ch":"h","size":8.849,"style":"Light","w":58.35,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.314,2.308],[-2.273,1.231],[-2.912,0],[-2.498,-2.592],[0,-4.498],[0,0],[0,0],[0,0],[1.562,2.96],[2.793,1.515],[3.693,0],[2.687,-1.681],[1.278,-2.817],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[1.314,-2.308],[2.273,-1.231],[4.238,0],[2.497,2.592],[0,0],[0,0],[0,0],[0,-4.332],[-1.562,-2.959],[-2.794,-1.515],[-4.119,0],[-2.687,1.681],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-3.172]],"v":[[16.637,-42.312],[22.017,-47.621],[29.794,-49.467],[39.897,-45.579],[43.643,-34.943],[43.643,0],[50,0],[50,-35.334],[47.656,-46.271],[41.122,-52.983],[31.392,-55.256],[21.183,-52.734],[15.234,-45.987],[14.666,-45.987],[14.666,-72.727],[8.345,-72.727],[8.345,0],[14.666,0],[14.666,-34.091]],"c":true}},"nm":"h"}],"nm":"h"}]},"fFamily":"Inter"},{"ch":"S","size":8.849,"style":"Light","w":62.93,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.047,2.9],[3.48,1.657],[4.522,0],[3.587,-1.669],[2.095,-2.971],[0,-3.906],[-3.149,-3.006],[-5.706,-1.705],[0,0],[-2.285,-1.136],[-1.278,-1.669],[0,-2.462],[1.621,-2.189],[2.829,-1.219],[3.622,0],[2.651,1.03],[1.657,1.989],[0.236,2.865],[0,0],[-2.084,-2.912],[-3.646,-1.645],[-4.948,0],[-3.764,1.811],[-2.012,3.102],[0,3.883],[1.172,2.166],[1.929,1.504],[2.32,0.994],[2.32,0.639],[0,0],[1.716,0.734],[1.408,1.03],[0.828,1.444],[0,1.918],[-1.456,2.048],[-2.569,1.16],[-3.386,0],[-3.173,-2.391],[-0.403,-4.048]],"o":[[-0.142,-3.693],[-2.048,-2.9],[-3.48,-1.657],[-4.474,0],[-3.587,1.669],[-2.095,2.971],[0,4.664],[3.148,3.007],[0,0],[3.006,0.876],[2.284,1.136],[1.278,1.669],[0,2.912],[-1.622,2.19],[-2.829,1.22],[-3.267,0],[-2.652,-1.03],[-1.657,-1.989],[0,0],[0.26,3.835],[2.083,2.912],[3.645,1.645],[5.256,0],[3.764,-1.811],[2.012,-3.101],[0,-3.03],[-1.172,-2.166],[-1.93,-1.503],[-2.32,-0.994],[0,0],[-1.752,-0.497],[-1.717,-0.734],[-1.409,-1.03],[-0.829,-1.444],[0,-2.604],[1.456,-2.047],[2.568,-1.16],[4.806,0],[3.172,2.391],[0,0]],"v":[[55.575,-54.545],[52.29,-64.435],[43.999,-71.271],[31.996,-73.757],[19.904,-71.254],[11.381,-64.293],[8.239,-53.977],[12.962,-42.472],[26.243,-35.405],[34.943,-32.848],[42.88,-29.83],[48.224,-25.621],[50.142,-19.425],[47.71,-11.772],[41.033,-6.658],[31.357,-4.83],[22.479,-6.374],[16.016,-10.902],[13.175,-18.182],[6.357,-18.182],[9.872,-8.061],[18.466,-1.225],[31.357,1.243],[44.886,-1.474],[53.551,-8.842],[56.57,-19.318],[54.812,-27.113],[50.16,-32.617],[43.786,-36.364],[36.825,-38.814],[29.155,-41.016],[23.952,-42.862],[19.265,-45.508],[15.909,-49.219],[14.666,-54.261],[16.85,-61.239],[22.887,-66.051],[31.818,-67.791],[43.786,-64.205],[49.148,-54.545]],"c":true}},"nm":"S"}],"nm":"S"}]},"fFamily":"Inter"},{"ch":"t","size":8.849,"style":"Light","w":35.83,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3.8,-54.545],[3.8,-49.041],[29.83,-49.041],[29.83,-54.545]],"c":true}},"nm":"t"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-1.373,-2.012],[-2.143,-1.018],[-2.32,0],[-0.9,0.201],[-0.616,0.236],[0,0],[0.591,-0.107],[0.828,0],[1.255,0.533],[0.781,1.291],[0,2.273],[0,0],[0,0]],"o":[[0,2.983],[1.373,2.012],[2.142,1.018],[1.326,0],[0.899,-0.201],[0,0],[-0.45,0.119],[-0.592,0.107],[-1.42,0],[-1.255,-0.533],[-0.781,-1.29],[0,0],[0,0],[0,0]],"v":[[11.932,-12.749],[13.991,-5.256],[19.265,-0.71],[25.959,0.817],[29.297,0.515],[31.57,-0.142],[30.22,-5.859],[28.658,-5.522],[26.527,-5.362],[22.514,-6.161],[19.46,-8.896],[18.288,-14.24],[18.288,-67.614],[11.932,-67.614]],"c":true}},"nm":"t"}],"nm":"t"}]},"fFamily":"Inter"},{"ch":"1","size":7,"style":"Light","w":44.57,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23.615,-72.727],[6.428,-61.328],[6.428,-54.439],[23.473,-65.767],[23.899,-65.767],[23.899,0],[30.54,0],[30.54,-72.727]],"c":true}},"nm":"1"}],"nm":"1"}]},"fFamily":"Inter"},{"ch":"0","size":7,"style":"Light","w":61.36,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.611,2.947],[-1.93,5.587],[0,7.836],[1.929,5.575],[3.634,2.971],[5.066,0],[3.634,-2.971],[1.929,-5.575],[0,-7.812],[-1.93,-5.587],[-3.611,-2.947],[-5.114,0]],"o":[[3.61,-2.947],[1.929,-5.587],[0,-7.812],[-1.93,-5.575],[-3.634,-2.971],[-5.066,0],[-3.634,2.971],[-1.93,5.575],[0,7.836],[1.929,5.587],[3.61,2.947],[5.114,0]],"v":[[43.768,-3.427],[52.077,-16.229],[54.972,-36.364],[52.077,-56.445],[43.732,-69.265],[30.682,-73.722],[17.631,-69.265],[9.286,-56.445],[6.392,-36.364],[9.286,-16.229],[17.596,-3.427],[30.682,0.994]],"c":true}},"nm":"0"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.663,2.462],[1.432,4.688],[0,6.629],[-3.173,5.528],[-5.564,0],[-2.663,-2.486],[-1.433,-4.699],[0,-6.628],[3.148,-5.48],[5.611,0]],"o":[[-2.663,-2.462],[-1.433,-4.688],[0,-9.943],[3.172,-5.528],[3.716,0],[2.663,2.486],[1.432,4.7],[0,9.967],[-3.149,5.481],[-3.717,0]],"v":[[21.112,-8.665],[14.968,-19.389],[12.82,-36.364],[17.578,-59.57],[30.682,-67.862],[40.252,-64.134],[46.396,-53.356],[48.544,-36.364],[43.821,-13.192],[30.682,-4.972]],"c":true}},"nm":"0"}],"nm":"0"}]},"fFamily":"Inter"},{"ch":"c","size":7,"style":"Light","w":55.65,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.947,1.468],[-1.859,2.569],[-0.474,3.291],[0,0],[1.361,-1.681],[2,-0.911],[2.415,0],[2.663,1.918],[1.468,3.397],[0,4.427],[-1.504,3.35],[-2.676,1.882],[-3.48,0],[-2.521,-2.189],[-0.663,-3.077],[0,0],[1.929,2.545],[2.959,1.409],[3.645,0],[3.598,-2.426],[2.024,-4.261],[0,-5.469],[-1.989,-4.238],[-3.611,-2.438],[-4.877,0]],"o":[[2.947,-1.468],[1.858,-2.568],[0,0],[-0.474,2.32],[-1.362,1.681],[-2.001,0.912],[-3.575,0],[-2.663,-1.918],[-1.468,-3.397],[0,-4.403],[1.503,-3.35],[2.675,-1.882],[3.882,0],[2.521,2.19],[0,0],[-0.497,-3.385],[-1.93,-2.545],[-2.96,-1.408],[-4.759,0],[-3.599,2.427],[-2.024,4.261],[0,5.422],[1.989,4.238],[3.61,2.439],[3.788,0]],"v":[[39.755,-1.065],[46.964,-7.12],[50.462,-15.909],[44.07,-15.909],[41.317,-9.908],[36.275,-6.019],[29.652,-4.652],[20.295,-7.528],[14.098,-15.501],[11.896,-27.237],[14.151,-38.867],[20.419,-46.715],[29.652,-49.538],[39.258,-46.254],[44.034,-38.352],[50.426,-38.352],[46.786,-47.248],[39.453,-53.178],[29.545,-55.291],[17.01,-51.651],[8.576,-41.619],[5.54,-27.024],[8.523,-12.536],[16.921,-2.521],[29.652,1.136]],"c":true}},"nm":"c"}],"nm":"c"}]},"fFamily":"Inter"},{"ch":"o","size":7,"style":"Light","w":59.09,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.611,2.391],[-2.036,4.226],[0,5.54],[2.047,4.238],[3.598,2.391],[4.711,0],[3.61,-2.379],[2.036,-4.249],[0,-5.587],[-2.036,-4.226],[-3.611,-2.391],[-4.711,0]],"o":[[3.61,-2.391],[2.036,-4.226],[0,-5.587],[-2.048,-4.238],[-3.599,-2.391],[-4.711,0],[-3.611,2.379],[-2.036,4.25],[0,5.54],[2.036,4.226],[3.61,2.391],[4.711,0]],"v":[[42.028,-2.45],[50.497,-12.376],[53.551,-27.024],[50.479,-41.761],[42.01,-51.705],[29.545,-55.291],[17.063,-51.722],[8.594,-41.779],[5.54,-27.024],[8.594,-12.376],[17.063,-2.45],[29.545,1.136]],"c":true}},"nm":"o"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.628,2.036],[1.361,3.386],[0,4.072],[-1.362,3.409],[-2.64,2.06],[-3.764,0],[-2.628,-2.06],[-1.362,-3.409],[0,-4.072],[1.361,-3.385],[2.628,-2.036],[3.788,0]],"o":[[-2.628,-2.036],[-1.362,-3.385],[0,-4.072],[1.361,-3.409],[2.639,-2.06],[3.788,0],[2.628,2.06],[1.361,3.409],[0,4.072],[-1.362,3.386],[-2.628,2.036],[-3.788,0]],"v":[[19.922,-7.706],[13.938,-15.838],[11.896,-27.024],[13.938,-38.246],[19.94,-46.449],[29.545,-49.538],[39.169,-46.449],[45.153,-38.246],[47.195,-27.024],[45.153,-15.838],[39.169,-7.706],[29.545,-4.652]],"c":true}},"nm":"o"}],"nm":"o"}]},"fFamily":"Inter"},{"ch":"n","size":7,"style":"Light","w":57.95,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.291,2.308],[-2.226,1.231],[-2.865,0],[-2.498,-2.604],[0,-4.474],[0,0],[0,0],[0,0],[1.55,2.96],[2.782,1.527],[3.669,0],[2.711,-1.692],[1.278,-2.793],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[1.29,-2.308],[2.225,-1.231],[4.19,0],[2.497,2.605],[0,0],[0,0],[0,0],[0,-4.309],[-1.551,-2.959],[-2.782,-1.527],[-4.001,0],[-2.711,1.693],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-3.172]],"v":[[16.602,-42.312],[21.875,-47.621],[29.51,-49.467],[39.542,-45.561],[43.288,-34.943],[43.288,0],[49.609,0],[49.609,-35.334],[47.283,-46.236],[40.785,-52.965],[31.108,-55.256],[21.04,-52.717],[15.057,-45.987],[14.489,-45.987],[14.489,-54.545],[8.345,-54.545],[8.345,0],[14.666,0],[14.666,-34.091]],"c":true}},"nm":"n"}],"nm":"n"}]},"fFamily":"Inter"},{"ch":"g","size":7,"style":"Light","w":60.09,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.386,1.432],[-1.965,2.983],[0,4.616],[0,0],[0,0],[0,0],[0,0],[1.337,1.728],[2.202,1.172],[3.338,0],[3.385,-2.344],[1.882,-4.19],[0,-5.516],[-1.93,-4.013],[-3.374,-2.154],[-4.356,0],[-2.214,1.089],[-1.373,1.646],[-0.734,1.657],[0,0],[0,0],[2.971,-2.415],[4.83,0],[2.118,0.876],[1.314,1.326],[0.781,1.373],[0,0],[-1.918,-1.657],[-2.794,-0.959],[-3.717,0]],"o":[[3.385,-1.433],[1.965,-2.983],[0,0],[0,0],[0,0],[0,0],[-0.758,-1.634],[-1.338,-1.728],[-2.202,-1.172],[-4.498,0],[-3.386,2.344],[-1.882,4.19],[0,5.564],[1.929,4.013],[3.374,2.155],[3.267,0],[2.213,-1.089],[1.373,-1.645],[0,0],[0,0],[0,5.09],[-2.971,2.415],[-3.102,0],[-2.119,-0.876],[-1.314,-1.326],[0,0],[1.065,2.06],[1.918,1.657],[2.793,0.959],[4.309,0]],"v":[[40.696,19.442],[48.722,12.82],[51.669,1.42],[51.669,-54.545],[45.49,-54.545],[45.49,-44.141],[44.851,-44.141],[41.708,-49.183],[36.399,-53.533],[28.089,-55.291],[16.264,-51.776],[8.363,-41.974],[5.54,-27.415],[8.434,-13.05],[16.388,-3.8],[27.983,-0.568],[36.204,-2.202],[41.584,-6.303],[44.744,-11.257],[45.312,-11.257],[45.312,1.03],[40.856,12.287],[29.155,15.909],[21.325,14.595],[16.175,11.293],[13.033,7.244],[7.848,10.653],[12.322,16.229],[19.389,20.153],[29.155,21.591]],"c":true}},"nm":"g"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.509,1.788],[1.302,3.184],[0,4.167],[-1.278,3.326],[-2.51,1.965],[-3.646,0],[-2.474,-1.905],[-1.302,-3.303],[0,-4.261],[1.326,-3.172],[2.486,-1.692],[3.503,0]],"o":[[-2.51,-1.787],[-1.302,-3.184],[0,-4.095],[1.278,-3.326],[2.509,-1.965],[3.574,0],[2.474,1.906],[1.302,3.303],[0,4.38],[-1.326,3.173],[-2.486,1.693],[-3.599,0]],"v":[[19.567,-9.038],[13.849,-16.495],[11.896,-27.521],[13.814,-38.654],[19.496,-46.591],[28.729,-49.538],[37.802,-46.68],[43.466,-38.867],[45.419,-27.521],[43.43,-16.193],[37.713,-8.896],[28.729,-6.357]],"c":true}},"nm":"g"}],"nm":"g"}]},"fFamily":"Inter"},{"ch":"2","size":7,"style":"Light","w":61.04,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-2.273,3.078],[-0.936,2.51],[0,2.676],[1.799,2.983],[3.148,1.74],[4.048,0],[3.232,-1.776],[1.858,-3.113],[0,-4.024],[0,0],[-1.231,2.226],[-2.237,1.278],[-2.983,0],[-2.249,-1.16],[-1.291,-2.071],[0,-2.77],[0.864,-2.107],[1.894,-2.486],[3.101,-3.503],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[4.024,-4.451],[2.273,-3.077],[0.935,-2.509],[0,-3.693],[-1.799,-2.983],[-3.149,-1.74],[-4.096,0],[-3.232,1.776],[-1.859,3.113],[0,0],[0,-2.888],[1.231,-2.225],[2.237,-1.278],[2.817,0],[2.249,1.16],[1.29,2.072],[0,2.273],[-0.864,2.107],[-1.894,2.486],[0,0],[0,0],[0,0]],"v":[[53.303,0],[53.303,-5.966],[17.33,-5.966],[17.33,-6.428],[35.369,-26.562],[44.815,-37.855],[49.627,-46.236],[51.03,-54.013],[48.331,-64.027],[40.909,-71.112],[30.114,-73.722],[19.123,-71.058],[11.488,-63.725],[8.7,-53.018],[15.057,-53.018],[16.903,-60.689],[22.106,-65.945],[29.936,-67.862],[37.536,-66.122],[42.844,-61.275],[44.78,-54.013],[43.484,-47.443],[39.347,-40.554],[31.854,-31.57],[8.097,-4.865],[8.097,0]],"c":true}},"nm":"2"}],"nm":"2"}]},"fFamily":"Inter"},{"ch":"3","size":7,"style":"Light","w":62.89,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.539,1.787],[-2.036,3.089],[0,3.883],[2.663,3.184],[4.64,0.923],[0,0],[-2.249,2.947],[0,4.143],[1.716,2.9],[3.125,1.752],[4.285,0],[3.326,-1.621],[2,-2.876],[0.094,-3.788],[0,0],[-1.433,1.989],[-2.344,1.089],[-2.818,0],[-2.19,-1.16],[-1.207,-2.036],[0,-2.675],[1.397,-2.083],[2.426,-1.148],[3.148,0],[0,0],[0,0],[0,0],[-2.782,-1.255],[-1.491,-2.249],[0,-2.935],[1.456,-2.189],[2.568,-1.255],[3.361,0],[2.509,1.101],[1.515,1.977],[0.118,2.652],[0,0],[-2.06,-2.888],[-3.528,-1.621],[-4.474,0]],"o":[[3.539,-1.787],[2.036,-3.089],[0,-4.616],[-2.663,-3.184],[0,0],[3.811,-1.136],[2.249,-2.947],[0,-3.48],[-1.717,-2.9],[-3.125,-1.752],[-4.048,0],[-3.326,1.622],[-2.001,2.876],[0,0],[0.094,-2.722],[1.432,-1.989],[2.344,-1.089],[2.912,0],[2.189,1.16],[1.207,2.036],[0,2.818],[-1.397,2.084],[-2.427,1.149],[0,0],[0,0],[0,0],[3.859,0],[2.782,1.255],[1.491,2.249],[0,2.77],[-1.456,2.19],[-2.569,1.255],[-3.078,0],[-2.51,-1.101],[-1.515,-1.976],[0,0],[0.118,3.764],[2.06,2.889],[3.527,1.621],[4.569,0]],"v":[[43.874,-1.687],[52.237,-9.002],[55.291,-19.46],[51.296,-31.161],[40.341,-37.322],[40.341,-37.784],[49.432,-43.91],[52.805,-54.545],[50.231,-64.116],[42.969,-71.094],[31.854,-73.722],[20.792,-71.289],[12.802,-64.542],[9.659,-54.545],[16.087,-54.545],[18.377,-61.612],[24.041,-66.229],[31.783,-67.862],[39.435,-66.122],[44.531,-61.328],[46.342,-54.261],[44.247,-46.911],[38.512,-42.063],[30.149,-40.341],[25.888,-40.341],[25.888,-34.375],[30.149,-34.375],[40.11,-32.493],[46.52,-27.237],[48.757,-19.46],[46.573,-12.021],[40.536,-6.854],[31.641,-4.972],[23.26,-6.623],[17.223,-11.239],[14.773,-18.182],[8.061,-18.182],[11.328,-8.203],[19.709,-1.438],[31.712,0.994]],"c":true}},"nm":"3"}],"nm":"3"}]},"fFamily":"Inter"},{"ch":"4","size":7,"style":"Light","w":62.64,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[56.286,-15.625],[56.286,-21.591],[13.778,-21.591],[13.778,-22.053],[39.808,-63.672],[42.756,-63.672],[42.756,-72.727],[38.778,-72.727],[6.357,-21.023],[6.357,-15.625]],"c":true}},"nm":"4"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[46.626,0],[46.626,-72.727],[40.305,-72.727],[40.305,-19.815],[40.305,-17.33],[40.305,0]],"c":true}},"nm":"4"}],"nm":"4"}]},"fFamily":"Inter"},{"ch":"5","size":7,"style":"Light","w":59.55,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.492,2.084],[-2.001,3.611],[0,4.593],[2,3.611],[3.421,2.06],[4.285,0],[2.308,-0.852],[1.61,-1.349],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-2.344,0.829],[-2.439,-0.023],[-2.592,-1.539],[-1.515,-2.711],[-0.024,-3.551],[1.432,-2.711],[2.533,-1.55],[3.243,0],[2.817,2.474],[0.213,3.859],[0,0],[-1.882,-2.888],[-3.184,-1.645],[-4.048,0]],"o":[[3.492,-2.083],[2,-3.61],[0,-4.688],[-2.001,-3.61],[-3.421,-2.06],[-2.581,0],[-2.308,0.852],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.562,-1.302],[2.344,-0.828],[3.219,0],[2.592,1.539],[1.515,2.711],[0,3.409],[-1.433,2.711],[-2.534,1.551],[-4.167,0],[-2.818,-2.474],[0,0],[0.118,3.717],[1.882,2.889],[3.184,1.645],[4.474,0]],"v":[[41.317,-2.131],[49.556,-10.671],[52.557,-22.976],[49.556,-35.423],[41.424,-43.928],[29.865,-47.017],[22.532,-45.739],[16.655,-42.436],[16.3,-42.436],[19.212,-66.761],[49.574,-66.761],[49.574,-72.727],[13.636,-72.727],[9.268,-37.393],[15.909,-36.541],[21.768,-39.737],[28.942,-40.945],[37.66,-38.636],[43.821,-32.262],[46.129,-22.869],[43.981,-13.69],[38.033,-7.298],[29.368,-4.972],[18.892,-8.683],[14.347,-18.182],[7.919,-18.182],[10.92,-8.274],[18.519,-1.474],[29.368,0.994]],"c":true}},"nm":"5"}],"nm":"5"}]},"fFamily":"Inter"},{"ch":"6","size":7,"style":"Light","w":60.97,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.445,2.155],[-1.906,3.646],[0,4.332],[2.012,3.563],[3.361,2.048],[4.048,0],[2.344,-0.888],[1.834,-1.574],[1.16,-2.154],[0,0],[-3.267,5.528],[-5.966,0],[-2.486,-2.486],[-0.663,-3.835],[0,0],[1.87,2.889],[3.006,1.622],[3.93,0],[3.125,-1.976],[2.083,-3.598],[1.041,-4.924],[0,-5.918],[-1.349,-4.38],[-2.297,-2.663],[-2.865,-1.195],[-3.007,-0.024]],"o":[[3.445,-2.154],[1.905,-3.645],[0,-4.569],[-2.012,-3.563],[-3.362,-2.047],[-2.581,0],[-2.344,0.888],[-1.835,1.575],[0,0],[0.023,-10.156],[3.267,-5.528],[4.166,0],[2.486,2.486],[0,0],[-0.474,-3.764],[-1.87,-2.888],[-3.007,-1.621],[-4.19,0],[-3.125,1.977],[-2.084,3.599],[-1.042,4.924],[0,6.392],[1.349,4.38],[2.296,2.663],[2.864,1.195],[4.64,0.023]],"v":[[43.129,-2.202],[51.154,-10.902],[54.013,-22.869],[50.994,-35.067],[42.933,-43.484],[31.818,-46.555],[24.432,-45.224],[18.164,-41.531],[13.672,-35.938],[13.21,-35.938],[18.146,-59.464],[31.996,-67.756],[41.974,-64.027],[46.697,-54.545],[53.232,-54.545],[49.716,-64.524],[42.401,-71.289],[31.996,-73.722],[21.023,-70.756],[13.21,-62.393],[8.523,-49.609],[6.96,-33.345],[8.984,-17.188],[14.453,-6.623],[22.195,-0.835],[31.001,0.994]],"c":true}},"nm":"6"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.403,1.515],[1.479,2.64],[0.26,3.338],[-0.793,2.178],[-1.527,1.693],[-2.084,0.983],[-2.415,0],[-2.498,-1.586],[-1.444,-2.675],[0,-3.29],[1.444,-2.711],[2.497,-1.61],[3.172,0]],"o":[[-2.403,-1.515],[-1.48,-2.639],[-0.19,-2.391],[0.793,-2.178],[1.527,-1.692],[2.083,-0.982],[3.172,0],[2.497,1.586],[1.444,2.676],[0,3.291],[-1.444,2.711],[-2.498,1.61],[-3.007,0]],"v":[[22.887,-7.244],[17.063,-13.477],[14.453,-22.443],[15.359,-29.297],[18.839,-35.103],[24.254,-39.116],[31.001,-40.589],[39.506,-38.21],[45.419,-31.818],[47.585,-22.869],[45.419,-13.867],[39.506,-7.386],[31.001,-4.972]],"c":true}},"nm":"6"}],"nm":"6"}]},"fFamily":"Inter"},{"ch":"7","size":7,"style":"Light","w":58.31,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17.188,0],[50.284,-66.477],[50.284,-72.727],[5.149,-72.727],[5.149,-66.761],[43.324,-66.761],[43.324,-66.3],[10.192,0]],"c":true}},"nm":"7"}],"nm":"7"}]},"fFamily":"Inter"},{"ch":"8","size":7,"style":"Light","w":61.19,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.611,1.752],[-2.072,3.042],[0,3.835],[1.278,2.616],[2.178,1.799],[2.746,0.521],[0,0],[-2.178,3.089],[-0.024,3.883],[1.882,2.865],[3.219,1.669],[4.048,0],[3.232,-1.669],[1.87,-2.864],[-0.024,-3.622],[-2.178,-3.066],[-3.575,-1.041],[0,0],[2.202,-1.787],[1.255,-2.616],[0,-3.006],[-2.06,-3.042],[-3.622,-1.752],[-4.64,0]],"o":[[3.61,-1.752],[2.071,-3.042],[0,-3.006],[-1.278,-2.616],[-2.178,-1.799],[0,0],[3.551,-1.018],[2.178,-3.089],[-0.024,-3.622],[-1.882,-2.864],[-3.22,-1.669],[-4.072,0],[-3.232,1.669],[-1.87,2.865],[-0.024,3.906],[2.178,3.066],[0,0],[-2.747,0.545],[-2.202,1.788],[-1.255,2.616],[0,3.835],[2.06,3.042],[3.622,1.752],[4.64,0]],"v":[[42.951,-1.634],[51.474,-8.825],[54.581,-19.141],[52.663,-27.575],[47.479,-34.197],[40.092,-37.678],[40.092,-38.068],[48.686,-44.229],[51.989,-54.688],[49.13,-64.418],[41.477,-71.218],[30.575,-73.722],[19.62,-71.218],[11.967,-64.418],[9.197,-54.688],[12.429,-44.229],[21.058,-38.068],[21.058,-37.678],[13.636,-34.18],[8.452,-27.575],[6.57,-19.141],[9.659,-8.825],[18.182,-1.634],[30.575,0.994]],"c":true}},"nm":"8"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.639,1.243],[1.456,2.178],[0,2.818],[-1.527,2.285],[-2.64,1.338],[-3.315,0],[-2.628,-1.337],[-1.539,-2.284],[0,-2.912],[1.479,-2.178],[2.616,-1.243],[3.456,0]],"o":[[-2.64,-1.243],[-1.456,-2.178],[0,-2.912],[1.527,-2.284],[2.639,-1.337],[3.314,0],[2.628,1.338],[1.539,2.285],[0,2.818],[-1.48,2.178],[-2.616,1.243],[-3.457,0]],"v":[[21.431,-6.836],[15.288,-11.967],[13.104,-19.46],[15.394,-27.255],[21.644,-32.688],[30.575,-34.695],[39.489,-32.688],[45.739,-27.255],[48.047,-19.46],[45.827,-11.967],[39.684,-6.836],[30.575,-4.972]],"c":true}},"nm":"8"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[2.261,1.207],[1.314,2.095],[-0.024,2.676],[-1.291,2.048],[-2.261,1.149],[-2.889,0],[-2.237,-1.148],[-1.302,-2.047],[-0.024,-2.651],[1.314,-2.095],[2.249,-1.207],[2.841,0]],"o":[[-2.261,-1.207],[-1.314,-2.095],[-0.024,-2.651],[1.29,-2.047],[2.261,-1.148],[2.888,0],[2.237,1.149],[1.302,2.048],[-0.024,2.676],[-1.314,2.095],[-2.249,1.207],[-2.841,0]],"v":[[22.923,-42.188],[17.56,-47.141],[15.625,-54.297],[17.525,-61.346],[22.852,-66.14],[30.575,-67.862],[38.264,-66.14],[43.572,-61.346],[45.561,-54.297],[43.555,-47.141],[38.21,-42.188],[30.575,-40.376]],"c":true}},"nm":"8"}],"nm":"8"}]},"fFamily":"Inter"},{"ch":"9","size":7,"style":"Light","w":60.97,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.445,-2.166],[1.905,-3.61],[0,-4.309],[-2.012,-3.563],[-3.362,-2.047],[-4.048,0],[-2.344,0.888],[-1.835,1.586],[-1.136,2.131],[0,0],[3.29,-5.54],[5.942,0],[2.497,2.51],[0.639,3.883],[0,0],[-1.87,-2.9],[-3.018,-1.634],[-3.906,0],[-3.137,1.976],[-2.072,3.611],[-1.042,4.948],[0,5.943],[1.349,4.368],[2.296,2.64],[2.853,1.196],[3.03,0.024]],"o":[[-3.445,2.166],[-1.906,3.611],[0,4.569],[2.012,3.563],[3.361,2.048],[2.604,0],[2.344,-0.888],[1.834,-1.586],[0,0],[0,10.227],[-3.291,5.54],[-4.143,0],[-2.498,-2.509],[0,0],[0.449,3.812],[1.87,2.9],[3.018,1.634],[4.19,0],[3.137,-1.976],[2.071,-3.61],[1.041,-4.948],[0,-6.368],[-1.349,-4.368],[-2.297,-2.639],[-2.853,-1.195],[-4.64,-0.047]],"v":[[17.844,-70.543],[9.819,-61.879],[6.96,-50],[9.979,-37.802],[18.04,-29.386],[29.155,-26.314],[36.577,-27.646],[42.844,-31.357],[47.301,-36.932],[47.763,-36.932],[42.827,-13.281],[28.977,-4.972],[19.016,-8.736],[14.311,-18.324],[7.777,-18.324],[11.257,-8.256],[18.59,-1.456],[28.977,0.994],[39.968,-1.971],[47.781,-10.352],[52.45,-23.189],[54.013,-39.524],[51.989,-55.629],[46.52,-66.14],[38.796,-71.893],[29.972,-73.722]],"c":true}},"nm":"9"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.403,-1.503],[-1.48,-2.616],[-0.284,-3.314],[0.793,-2.166],[1.527,-1.705],[2.083,-0.982],[2.415,0],[2.497,1.575],[1.456,2.687],[0,3.291],[-1.456,2.687],[-2.498,1.598],[-3.149,0]],"o":[[2.403,1.504],[1.479,2.616],[0.165,2.391],[-0.793,2.166],[-1.527,1.705],[-2.084,0.983],[-3.149,0],[-2.498,-1.574],[-1.456,-2.687],[0,-3.267],[1.456,-2.687],[2.497,-1.598],[3.006,0]],"v":[[38.086,-65.501],[43.91,-59.322],[46.555,-50.426],[45.614,-43.59],[42.134,-37.784],[36.719,-33.754],[29.972,-32.28],[21.502,-34.641],[15.572,-41.033],[13.388,-50],[15.572,-58.931],[21.502,-65.359],[29.972,-67.756]],"c":true}},"nm":"9"}],"nm":"9"}]},"fFamily":"Inter"},{"ch":"0","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.9,6.034],[0,12],[3.9,6.034],[8.066,0],[3.9,-6.033],[0,-12],[-3.9,-6.033],[-8.067,0]],"o":[[3.9,-6.033],[0,-12],[-3.9,-6.033],[-8.067,0],[-3.9,6.034],[0,12],[3.9,6.034],[8.066,0]],"v":[[47.95,-7.85],[53.8,-34.9],[47.95,-61.95],[30,-71],[12.05,-61.95],[6.2,-34.9],[12.05,-7.85],[30,1.2]],"c":true}},"nm":"0"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.8,4.567],[0,8.334],[0,0],[-2.8,4.6],[-6,0],[-2.8,-4.6],[0,-8.266],[0,0],[2.8,-4.566],[6,0]],"o":[[-2.8,-4.566],[0,0],[0,-8.266],[2.8,-4.6],[6,0],[2.8,4.6],[0,0],[0,8.334],[-2.8,4.567],[-6,0]],"v":[[16.8,-10.85],[12.6,-30.2],[12.6,-39.6],[16.8,-58.9],[30,-65.8],[43.2,-58.9],[47.4,-39.6],[47.4,-30.2],[43.2,-10.85],[30,-4]],"c":true}},"nm":"0"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.734,0.741],[0,1.078],[0,0],[0.733,0.741],[1.733,0],[0.733,-0.741],[0,-1.078],[0,0],[-0.734,-0.741],[-1.734,0]],"o":[[0.733,-0.741],[0,0],[0,-1.078],[-0.734,-0.741],[-1.734,0],[-0.734,0.741],[0,0],[0,1.078],[0.733,0.741],[1.733,0]],"v":[[33.7,-31.411],[34.8,-34.141],[34.8,-35.759],[33.7,-38.488],[30,-39.6],[26.3,-38.488],[25.2,-35.759],[25.2,-34.141],[26.3,-31.411],[30,-30.3]],"c":true}},"nm":"0"}],"nm":"0"}]},"fFamily":"IBM Plex Mono"},{"ch":"x","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13.8,0],[29.6,-21.9],[29.9,-21.9],[46,0],[52.9,0],[33.3,-26.2],[52.4,-51.6],[45.9,-51.6],[30.4,-30.4],[30.1,-30.4],[14.5,-51.6],[7.6,-51.6],[26.6,-26.1],[7.2,0]],"c":true}},"nm":"x"}],"nm":"x"}]},"fFamily":"IBM Plex Mono"},{"ch":"e","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.467,2.3],[-1.534,3.8],[0,0],[2.7,-1.733],[3.8,0],[3,3.367],[0,5.534],[0,0],[0,0],[0,0],[1,3.134],[1.9,2.267],[2.733,1.234],[3.466,0],[2.8,-1.233],[1.966,-2.3],[1.066,-3.366],[0,-4.266],[-4.1,-4.7],[-7.2,0]],"o":[[3.466,-2.3],[0,0],[-1.467,3.4],[-2.7,1.734],[-5.4,0],[-3,-3.366],[0,0],[0,0],[0,0],[0,-3.8],[-1,-3.133],[-1.9,-2.266],[-2.734,-1.233],[-3.4,0],[-2.8,1.234],[-1.967,2.3],[-1.067,3.367],[0,8.534],[4.1,4.7],[5.066,0]],"v":[[43.6,-2.25],[51.1,-11.4],[46.8,-14.1],[40.55,-6.4],[30.8,-3.8],[18.2,-8.85],[13.7,-22.2],[13.7,-24.7],[52.4,-24.7],[52.4,-27.2],[50.9,-37.6],[46.55,-45.7],[39.6,-50.95],[30.3,-52.8],[21,-50.95],[13.85,-45.65],[9.3,-37.15],[7.7,-25.7],[13.85,-5.85],[30.8,1.2]],"c":true}},"nm":"e"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.834,-3.266],[0,-5.6],[0,0],[0,0],[0,0],[-0.8,2.267],[-1.434,1.6],[-2.034,0.9],[-2.534,0]],"o":[[2.833,3.267],[0,0],[0,0],[0,0],[0,-2.733],[0.8,-2.266],[1.433,-1.6],[2.033,-0.9],[5,0]],"v":[[42.05,-43.1],[46.3,-29.8],[46.3,-29],[13.7,-29],[13.7,-29.6],[14.9,-37.1],[18.25,-42.9],[23.45,-46.65],[30.3,-48]],"c":true}},"nm":"e"}],"nm":"e"}]},"fFamily":"IBM Plex Mono"},{"ch":"6","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.8,1.1],[-1.934,1.967],[-1.067,2.767],[0,3.4],[1,2.634],[1.866,1.834],[2.566,1],[3.133,0],[2.866,-1.833],[1.733,-3.133],[0,0],[-1.5,3.4],[-2.267,2.967],[-3.034,2.667],[-3.934,2.667],[0,0],[3.133,-2.966],[2.433,-3.8],[1.5,-4.633],[0,-5.4],[-0.967,-3.166],[-1.934,-2.233],[-2.834,-1.233],[-3.734,0]],"o":[[2.8,-1.1],[1.933,-1.966],[1.066,-2.766],[0,-3.266],[-1,-2.633],[-1.867,-1.833],[-2.567,-1],[-4.267,0],[-2.867,1.834],[0,0],[0.866,-4.066],[1.5,-3.4],[2.266,-2.966],[3.033,-2.666],[0,0],[-3.267,2.067],[-3.134,2.967],[-2.434,3.8],[-1.5,4.634],[0,3.8],[0.966,3.167],[1.933,2.234],[2.833,1.233],[3.4,0]],"v":[[39.4,-0.45],[46.5,-5.05],[51,-12.15],[52.6,-21.4],[51.1,-30.25],[46.8,-36.95],[40.15,-41.2],[31.6,-42.7],[20.9,-39.95],[14,-32.5],[13.6,-32.6],[17.15,-43.8],[22.8,-53.35],[30.75,-61.8],[41.2,-69.8],[33.4,-69.8],[23.8,-62.25],[15.45,-52.1],[9.55,-39.45],[7.3,-24.4],[8.75,-13.95],[13.1,-5.85],[20.25,-0.65],[30.1,1.2]],"c":true}},"nm":"6"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.9,2.892],[0,4.853],[0,0],[-2.9,2.892],[-5.267,0],[-2.9,-2.891],[0,-4.852],[0,0],[2.9,-2.891],[5.2,0]],"o":[[-2.9,-2.891],[0,0],[0,-4.852],[2.9,-2.891],[5.2,0],[2.9,2.892],[0,0],[0,4.853],[-2.9,2.892],[-5.267,0]],"v":[[17.75,-8.337],[13.4,-19.953],[13.4,-21.747],[17.75,-33.363],[30,-37.7],[42.15,-33.363],[46.5,-21.747],[46.5,-19.953],[42.15,-8.337],[30,-4]],"c":true}},"nm":"6"}],"nm":"6"}]},"fFamily":"IBM Plex Mono"},{"ch":"5","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.934,0.767],[-1.1,0.567],[-1.4,0.3],[-1.867,0],[-2.767,-2.866],[0,-4.866],[0,0],[2.833,-2.933],[5.2,0],[2.633,1.7],[1.933,3],[0,0],[-1.4,-1.4],[-1.767,-1.033],[-2.234,-0.566],[-2.734,0],[-2.8,1.067],[-1.967,1.972],[-1.034,2.773],[0,3.409],[1,2.641],[1.8,1.837],[2.566,0.969],[3.066,0],[2.366,-1.233],[1.8,-2.466],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.866,-1],[0.933,-0.766],[1.1,-0.566],[1.4,-0.3],[5.2,0],[2.766,2.867],[0,0],[0,4.8],[-2.834,2.934],[-4.4,0],[-2.634,-1.7],[0,0],[1.066,1.6],[1.4,1.4],[1.766,1.034],[2.233,0.566],[3.466,0],[2.8,-1.069],[1.966,-1.97],[1.033,-2.772],[0,-3.341],[-1,-2.639],[-1.8,-1.837],[-2.567,-0.969],[-3.734,0],[-2.367,1.234],[0,0],[0,0],[0,0],[0,0]],"v":[[49.3,-69.8],[12.8,-69.8],[10.3,-31.9],[15.5,-31.1],[18.2,-33.75],[21.25,-35.75],[25,-37.05],[29.9,-37.5],[41.85,-33.2],[46,-21.6],[46,-20],[41.75,-8.4],[29.7,-4],[19.15,-6.55],[12.3,-13.6],[7.7,-10.2],[11.4,-5.7],[16.15,-2.05],[22.15,0.35],[29.6,1.2],[39,-0.403],[46.15,-4.964],[50.65,-12.08],[52.2,-21.352],[50.7,-30.322],[46.5,-37.038],[39.95,-41.247],[31.5,-42.7],[22.35,-40.85],[16.1,-35.3],[15.5,-35.4],[17.7,-64.6],[49.3,-64.6]],"c":true}},"nm":"5"}],"nm":"5"}]},"fFamily":"IBM Plex Mono"},{"ch":"b","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-2.634,-1.719],[-3.934,0],[-3.6,4.634],[0,8.734],[3.6,4.634],[6.466,0],[2.633,-1.719],[1.466,-2.775],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.466,2.777],[2.633,1.719],[6.466,0],[3.6,-4.633],[0,-8.733],[-3.6,-4.633],[-3.934,0],[-2.634,1.719],[0,0],[0,0],[0,0],[0,0]],"v":[[10.7,0],[16.4,0],[16.4,-8.12],[16.7,-8.12],[22.85,-1.378],[32.7,1.2],[47.8,-5.75],[53.2,-25.8],[47.8,-45.85],[32.7,-52.8],[22.85,-50.222],[16.7,-43.48],[16.4,-43.48],[16.4,-74],[10.7,-74]],"c":true}},"nm":"b"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.733,0.536],[1.333,1.005],[0.766,1.473],[0,1.809],[0,0],[-0.767,1.473],[-1.334,1.005],[-1.734,0.536],[-1.934,0],[-2.834,-3.281],[0,-5.691],[0,0],[2.833,-3.281],[5.2,0]],"o":[[-1.734,-0.536],[-1.334,-1.003],[-0.767,-1.473],[0,0],[0,-1.808],[0.766,-1.473],[1.333,-1.003],[1.733,-0.536],[5.2,0],[2.833,3.281],[0,0],[0,5.692],[-2.834,3.281],[-1.934,0]],"v":[[25.3,-4.603],[20.7,-6.914],[17.55,-10.63],[16.4,-15.553],[16.4,-36.047],[17.55,-40.969],[20.7,-44.686],[25.3,-46.995],[30.8,-47.8],[42.85,-42.877],[47.1,-29.417],[47.1,-22.183],[42.85,-8.722],[30.8,-3.8]],"c":true}},"nm":"b"}],"nm":"b"}]},"fFamily":"IBM Plex Mono"},{"ch":"8","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.967,1],[-2.034,1.734],[-1.034,2.434],[0,2.867],[2.633,2.967],[4.466,1],[0,0],[-2.234,2.867],[0,4.2],[3.8,3.167],[6.8,0],[3.8,-3.166],[0,-5.333],[-2.234,-2.866],[-3.8,-1.066],[0,0],[2.633,-2.966],[0,-4.866],[-1.034,-2.433],[-2.034,-1.733],[-2.967,-1],[-3.8,0]],"o":[[2.966,-1],[2.033,-1.733],[1.033,-2.433],[0,-4.866],[-2.634,-2.966],[0,0],[3.8,-1.066],[2.233,-2.866],[0,-5.333],[-3.8,-3.166],[-6.8,0],[-3.8,3.167],[0,4.2],[2.233,2.867],[0,0],[-4.467,1],[-2.634,2.967],[0,2.867],[1.033,2.434],[2.033,1.734],[2.966,1],[3.8,0]],"v":[[40.15,-0.3],[47.65,-4.4],[52.25,-10.65],[53.8,-18.6],[49.85,-30.35],[39.2,-36.3],[39.2,-37],[48.25,-42.9],[51.6,-53.5],[45.9,-66.25],[30,-71],[14.1,-66.25],[8.4,-53.5],[11.75,-42.9],[20.8,-37],[20.8,-36.3],[10.15,-30.35],[6.2,-18.6],[7.75,-10.65],[12.35,-4.4],[19.85,-0.3],[30,1.2]],"c":true}},"nm":"8"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[3.166,2.525],[0,4.253],[0,0],[-3.134,2.492],[-5.467,0],[-3.134,-2.491],[0,-4.319],[0,0],[3.166,-2.525],[5.4,0]],"o":[[-3.167,-2.525],[0,0],[0,-4.319],[3.133,-2.491],[5.466,0],[3.133,2.492],[0,0],[0,4.253],[-3.167,2.525],[-5.4,0]],"v":[[17.15,-7.788],[12.4,-17.953],[12.4,-20.247],[17.1,-30.462],[30,-34.2],[42.9,-30.462],[47.6,-20.247],[47.6,-17.953],[42.85,-7.788],[30,-4]],"c":true}},"nm":"8"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[2.733,2.225],[0,3.853],[0,0],[-2.767,2.225],[-4.8,0],[-2.767,-2.225],[0,-3.852],[0,0],[2.733,-2.225],[4.866,0]],"o":[[-2.734,-2.225],[0,0],[0,-3.852],[2.766,-2.225],[4.8,0],[2.766,2.225],[0,0],[0,3.853],[-2.734,2.225],[-4.867,0]],"v":[[18.6,-42.438],[14.5,-51.553],[14.5,-53.347],[18.65,-62.463],[30,-65.8],[41.35,-62.463],[45.5,-53.347],[45.5,-51.553],[41.4,-42.438],[30,-39.1]],"c":true}},"nm":"8"}],"nm":"8"}]},"fFamily":"IBM Plex Mono"},{"ch":".","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.867,0.866],[0,1.4],[0,0],[0.866,0.9],[2.133,0],[0.866,-0.9],[0,-1.333],[0,0],[-0.867,-0.866],[-2.134,0]],"o":[[0.866,-0.866],[0,0],[0,-1.333],[-0.867,-0.9],[-2.134,0],[-0.867,0.9],[0,0],[0,1.4],[0.866,0.866],[2.133,0]],"v":[[34.5,-0.6],[35.8,-4],[35.8,-5.4],[34.5,-8.75],[30,-10.1],[25.5,-8.75],[24.2,-5.4],[24.2,-4],[25.5,-0.6],[30,0.7]],"c":true}},"nm":"."}],"nm":"."}]},"fFamily":"IBM Plex Mono"},{"ch":"9","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.966,3.167],[1.9,2.234],[2.833,1.234],[3.733,0],[2.8,-1.1],[1.966,-1.966],[1.066,-2.766],[0,-3.4],[-1,-2.633],[-1.867,-1.833],[-2.567,-1],[-3.134,0],[-2.867,1.834],[-1.734,3.134],[0,0],[1.533,-3.366],[2.266,-2.966],[3.066,-2.666],[3.866,-2.666],[0,0],[-3.1,2.967],[-2.467,3.8],[-1.5,4.634],[0,5.4]],"o":[[-0.967,-3.166],[-1.9,-2.233],[-2.834,-1.233],[-3.4,0],[-2.8,1.1],[-1.967,1.967],[-1.067,2.767],[0,3.267],[1,2.634],[1.866,1.834],[2.566,1],[4.266,0],[2.866,-1.833],[0,0],[-0.867,4.134],[-1.534,3.367],[-2.267,2.967],[-3.067,2.667],[0,0],[3.266,-2.066],[3.1,-2.966],[2.466,-3.8],[1.5,-4.633],[0,-3.8]],"v":[[51.35,-55.85],[47.05,-63.95],[39.95,-69.15],[30.1,-71],[20.8,-69.35],[13.65,-64.75],[9.1,-57.65],[7.5,-48.4],[9,-39.55],[13.3,-32.85],[19.95,-28.6],[28.5,-27.1],[39.2,-29.85],[46.1,-37.3],[46.6,-37.2],[43,-25.95],[37.3,-16.45],[29.3,-8],[18.9,0],[26.7,0],[36.25,-7.55],[44.6,-17.7],[50.55,-30.35],[52.8,-45.4]],"c":true}},"nm":"9"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.933,2.9],[0,4.867],[0,0],[-2.934,2.9],[-5.2,0],[-2.9,-2.9],[0,-4.866],[0,0],[2.9,-2.9],[5.2,0]],"o":[[-2.934,-2.9],[0,0],[0,-4.866],[2.933,-2.9],[5.2,0],[2.9,2.9],[0,0],[0,4.867],[-2.9,2.9],[-5.2,0]],"v":[[18,-36.45],[13.6,-48.1],[13.6,-49.8],[18,-61.45],[30.2,-65.8],[42.35,-61.45],[46.7,-49.8],[46.7,-48.1],[42.35,-36.45],[30.2,-32.1]],"c":true}},"nm":"9"}],"nm":"9"}]},"fFamily":"IBM Plex Mono"},{"ch":"4","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.8,0],[44.8,-14.6],[55.7,-14.6],[55.7,-19.5],[44.8,-19.5],[44.8,-69.8],[36.4,-69.8],[3.9,-19.9],[3.9,-14.6],[39.1,-14.6],[39.1,0]],"c":true}},"nm":"4"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[38.8,-64.7],[39.1,-64.7],[39.1,-19.5],[9.3,-19.5]],"c":true}},"nm":"4"}],"nm":"4"}]},"fFamily":"IBM Plex Mono"},{"ch":"M","size":7,"style":"Bold","w":91.48,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.321,0],[21.236,0],[21.236,-47.514],[21.839,-47.514],[40.661,-0.355],[50.817,-0.355],[69.638,-47.337],[70.241,-47.337],[70.241,0],[85.156,0],[85.156,-72.727],[66.193,-72.727],[46.165,-23.864],[45.312,-23.864],[25.284,-72.727],[6.321,-72.727]],"c":true}},"nm":"M"}],"nm":"M"}]},"fFamily":"Inter"},{"ch":"I","size":7,"style":"Bold","w":28.05,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6.321,-72.727],[6.321,0],[21.697,0],[21.697,-72.727]],"c":true}},"nm":"I"}],"nm":"I"}]},"fFamily":"Inter"},{"ch":"N","size":7,"style":"Bold","w":73.51,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[51.847,-72.727],[51.847,-26.989],[51.207,-26.989],[19.815,-72.727],[6.321,-72.727],[6.321,0],[21.697,0],[21.697,-45.774],[22.23,-45.774],[53.871,0],[67.152,0],[67.152,-72.727]],"c":true}},"nm":"N"}],"nm":"N"}]},"fFamily":"Inter"},{"ch":"E","size":7,"style":"Bold","w":61.26,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[55.469,0],[55.469,-12.678],[21.697,-12.678],[21.697,-30.043],[52.805,-30.043],[52.805,-42.72],[21.697,-42.72],[21.697,-60.05],[55.327,-60.05],[55.327,-72.727],[6.321,-72.727],[6.321,0]],"c":true}},"nm":"E"}],"nm":"E"}]},"fFamily":"Inter"},{"ch":"D","size":7,"style":"Bold","w":72.73,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.315,2.912],[-2.853,5.445],[0,7.576],[2.853,5.422],[5.279,2.9],[7.315,0],[0,0],[0,0],[0,0]],"o":[[5.314,-2.912],[2.853,-5.445],[0,-7.552],[-2.853,-5.421],[-5.28,-2.9],[0,0],[0,0],[0,0],[7.386,0]],"v":[[51.154,-4.368],[63.406,-16.903],[67.685,-36.435],[63.406,-55.895],[51.207,-68.377],[32.315,-72.727],[6.321,-72.727],[6.321,0],[32.102,0]],"c":true}},"nm":"D"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[-3.102,-1.61],[-1.575,-3.409],[0,-5.374],[1.574,-3.421],[3.113,-1.621],[4.545,0],[0,0]],"o":[[0,0],[4.545,0],[3.101,1.61],[1.574,3.409],[0,5.422],[-1.575,3.421],[-3.113,1.622],[0,0],[0,0]],"v":[[21.697,-59.553],[31.499,-59.553],[42.969,-57.138],[49.982,-49.609],[52.344,-36.435],[49.982,-23.171],[42.951,-15.607],[31.463,-13.175],[21.697,-13.175]],"c":true}},"nm":"D"}],"nm":"D"}]},"fFamily":"Inter"},{"ch":"3","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-2.834,-2.5],[0,-4.4],[0,0],[2.933,-2.566],[5.133,0],[2.733,1.7],[1.933,3],[0,0],[-1.4,-1.4],[-1.8,-1.033],[-2.267,-0.566],[-2.8,0],[-2.8,0.966],[-2,1.734],[-1.067,2.5],[0,3],[0.8,2.067],[1.366,1.467],[1.866,0.9],[2.066,0.334],[0,0],[-1.7,0.9],[-1.234,1.334],[-0.7,1.867],[0,2.334],[1.033,2.167],[1.8,1.5],[2.5,0.8],[2.933,0],[2.166,-0.6],[1.633,-1.066],[1.233,-1.366],[0.8,-1.466],[0,0],[-2.467,1.7],[-4.134,0],[-2.634,-2.166],[0,-4],[0,0],[2.733,-2.366],[4.933,0]],"o":[[0,0],[0,0],[5.4,0],[2.833,2.5],[0,0],[0,4.4],[-2.934,2.567],[-4.4,0],[-2.734,-1.7],[0,0],[1.066,1.6],[1.4,1.4],[1.8,1.034],[2.266,0.566],[3.466,0],[2.8,-0.966],[2,-1.733],[1.066,-2.5],[0,-2.6],[-0.8,-2.066],[-1.367,-1.466],[-1.867,-0.9],[0,0],[1.933,-0.466],[1.7,-0.9],[1.233,-1.333],[0.7,-1.866],[0,-2.733],[-1.034,-2.166],[-1.8,-1.5],[-2.5,-0.8],[-2.734,0],[-2.167,0.6],[-1.634,1.067],[-1.234,1.367],[0,0],[1.466,-2.8],[2.466,-1.7],[4.2,0],[2.633,2.167],[0,0],[0,3.8],[-2.734,2.367],[0,0]],"v":[[19,-39.2],[19,-34],[27.8,-34],[40.15,-30.25],[44.4,-19.9],[44.4,-18.3],[40,-7.85],[27.9,-4],[17.2,-6.55],[10.2,-13.6],[5.7,-10.2],[9.4,-5.7],[14.2,-2.05],[20.3,0.35],[27.9,1.2],[37.3,-0.25],[44.5,-4.3],[49.1,-10.65],[50.7,-18.9],[49.5,-25.9],[46.25,-31.2],[41.4,-34.75],[35.5,-36.6],[35.5,-37],[40.95,-39.05],[45.35,-42.4],[48.25,-47.2],[49.3,-53.5],[47.75,-60.85],[43.5,-66.35],[37.05,-69.8],[28.9,-71],[21.55,-70.1],[15.85,-67.6],[11.55,-63.95],[8.5,-59.7],[13,-56.5],[18.9,-63.25],[28.8,-65.8],[39.05,-62.55],[43,-53.3],[43,-52],[38.9,-42.75],[27.4,-39.2]],"c":true}},"nm":"3"}],"nm":"3"}]},"fFamily":"IBM Plex Mono"},{"ch":"f","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.3,-1.5],[0,-2.533],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-2.8,0],[-1.3,1.5],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8.7,0],[51.7,0],[51.7,-5],[32.6,-5],[32.6,-46.6],[54,-46.6],[54,-51.6],[32.6,-51.6],[32.6,-69],[54,-69],[54,-74],[35,-74],[28.85,-71.75],[26.9,-65.7],[26.9,-51.6],[7.7,-51.6],[7.7,-46.6],[26.9,-46.6],[26.9,-5],[8.7,-5]],"c":true}},"nm":"f"}],"nm":"f"}]},"fFamily":"IBM Plex Mono"},{"ch":"a","size":7,"style":"Light","w":60,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[3.333,3.034],[5.866,0],[3.166,-2.033],[1.333,-3],[0,0],[-7.067,0],[-2.367,-2.122],[0,-4.309],[0,0],[0,0],[2.666,-0.7],[1.7,-1.266],[0.766,-1.833],[0,-2.266],[-3.1,-2.633],[-5.4,0],[-2.6,1.733],[-1.134,2.734],[0,0],[0,0],[-1,-1.133],[-2.334,0]],"o":[[0,0],[0,0],[0,0],[0,-5.4],[-3.334,-3.033],[-5,0],[-3.167,2.034],[0,0],[2.8,-5.6],[4.2,0],[2.366,2.122],[0,0],[0,0],[-3.867,0],[-2.667,0.7],[-1.7,1.267],[-0.767,1.834],[0,4.8],[3.1,2.634],[4.466,0],[2.6,-1.733],[0,0],[0,0],[0.133,1.934],[1,1.134],[0,0]],"v":[[54.3,0],[54.3,-5],[46.6,-5],[46.6,-35.6],[41.6,-48.25],[27.8,-52.8],[15.55,-49.75],[8.8,-42.2],[12.7,-39.4],[27.5,-47.8],[37.35,-44.616],[40.9,-34.967],[40.9,-28.7],[28.3,-28.7],[18.5,-27.65],[11.95,-24.7],[8.25,-20.05],[7.1,-13.9],[11.75,-2.75],[24.5,1.2],[35.1,-1.4],[40.7,-8.1],[41.2,-8.1],[41.2,-6.3],[42.9,-1.7],[47.9,0]],"c":true}},"nm":"a"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.233,1.534],[0,3],[0,0],[-2.367,1.634],[-5.4,0],[0,0],[0,0],[0.8,-1.4],[1.4,-0.966],[1.866,-0.533],[2.2,0]],"o":[[-2.234,-1.533],[0,0],[0,-2.8],[2.366,-1.633],[0,0],[0,0],[0,1.734],[-0.8,1.4],[-1.4,0.967],[-1.867,0.534],[-3.734,0]],"v":[[16.45,-5.9],[13.1,-12.7],[13.1,-15.3],[16.65,-21.95],[28.3,-24.4],[40.9,-24.4],[40.9,-14.9],[39.7,-10.2],[36.4,-6.65],[31.5,-4.4],[25.4,-3.6]],"c":true}},"nm":"a"}],"nm":"a"}]},"fFamily":"IBM Plex Mono"},{"ch":"Q","size":7,"style":"Bold","w":78.27,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[45.028,-10.44],[49.325,-4.332],[57.706,5.966],[72.053,5.966],[59.872,-9.304],[53.409,-16.832],[46.839,-25.284],[33.771,-25.284]],"c":true}},"nm":"Q"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.995,5.564],[5.149,2.924],[6.415,0],[5.137,-2.924],[2.983,-5.563],[0,-7.931],[-2.983,-5.563],[-5.137,-2.935],[-6.463,0],[-5.149,2.924],[-2.995,5.564],[0,7.931]],"o":[[-2.995,-5.563],[-5.149,-2.924],[-6.463,0],[-5.137,2.924],[-2.983,5.564],[0,7.907],[2.983,5.564],[5.137,2.936],[6.415,0],[5.149,-2.924],[2.995,-5.563],[0,-7.931]],"v":[[68.661,-56.605],[56.445,-69.336],[39.098,-73.722],[21.697,-69.336],[9.517,-56.605],[5.043,-36.364],[9.517,-16.158],[21.697,-3.409],[39.098,0.994],[56.445,-3.391],[68.661,-16.122],[73.153,-36.364]],"c":true}},"nm":"Q"},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[1.527,-3.527],[2.77,-1.823],[3.716,0],[2.77,1.823],[1.527,3.528],[0,5.137],[-1.527,3.528],[-2.77,1.823],[-3.717,0],[-2.77,-1.823],[-1.527,-3.527],[0,-5.137]],"o":[[-1.527,3.528],[-2.77,1.823],[-3.717,0],[-2.77,-1.823],[-1.527,-3.527],[0,-5.137],[1.527,-3.527],[2.77,-1.823],[3.716,0],[2.77,1.823],[1.527,3.528],[0,5.137]],"v":[[55.273,-23.366],[48.828,-15.341],[39.098,-12.607],[29.368,-15.341],[22.923,-23.366],[20.632,-36.364],[22.923,-49.361],[29.368,-57.386],[39.098,-60.121],[48.828,-57.386],[55.273,-49.361],[57.564,-36.364]],"c":true}},"nm":"Q"}],"nm":"Q"}]},"fFamily":"Inter"},{"ch":"U","size":7,"style":"Bold","w":72.94,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.219,-2.154],[2.213,-1.231],[2.983,0],[2.225,1.231],[1.219,2.155],[0,2.77],[0,0],[0,0],[0,0],[-2.51,-3.977],[-4.522,-2.213],[-6.037,0],[-4.522,2.214],[-2.521,3.977],[0,5.303],[0,0],[0,0]],"o":[[0,2.77],[-1.22,2.155],[-2.214,1.231],[-2.96,0],[-2.226,-1.231],[-1.22,-2.154],[0,0],[0,0],[0,0],[0,5.303],[2.509,3.977],[4.522,2.214],[6.013,0],[4.522,-2.213],[2.521,-3.977],[0,0],[0,0],[0,0]],"v":[[51.243,-26.811],[49.414,-19.425],[44.265,-14.347],[36.47,-12.5],[28.693,-14.347],[23.526,-19.425],[21.697,-26.811],[21.697,-72.727],[6.321,-72.727],[6.321,-25.497],[10.085,-11.577],[20.632,-2.29],[36.47,1.03],[52.273,-2.29],[62.837,-11.577],[66.619,-25.497],[66.619,-72.727],[51.243,-72.727]],"c":true}},"nm":"U"}],"nm":"U"}]},"fFamily":"Inter"},{"ch":"S","size":7,"style":"Bold","w":65.48,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[2.249,3.291],[4.036,1.847],[5.398,0],[4.166,-1.847],[2.379,-3.29],[-0.024,-4.403],[-3.551,-3.172],[-6.132,-1.491],[0,0],[-1.835,-0.781],[-0.959,-1.113],[0,-1.634],[1.065,-1.349],[1.929,-0.757],[2.604,0],[2.095,0.817],[1.243,1.622],[0.165,2.439],[0,0],[-2.427,-3.539],[-4.345,-1.799],[-5.872,0],[-4.203,1.787],[-2.237,3.255],[-0.024,4.451],[1.077,2.344],[1.941,1.728],[2.651,1.184],[3.172,0.71],[0,0],[1.397,0.509],[1.065,0.699],[0.604,0.971],[-0.048,1.302],[-0.912,1.231],[-1.728,0.699],[-2.51,0],[-2.155,-1.586],[-0.284,-2.864]],"o":[[-0.071,-4.332],[-2.249,-3.29],[-4.037,-1.847],[-5.303,0],[-4.167,1.847],[-2.379,3.291],[-0.024,5.374],[3.551,3.173],[0,0],[2.651,0.639],[1.834,0.781],[0.959,1.113],[0,1.752],[-1.065,1.349],[-1.93,0.758],[-2.652,0],[-2.095,-0.817],[-1.243,-1.621],[0,0],[0.118,5.232],[2.426,3.539],[4.344,1.799],[5.918,0],[4.202,-1.787],[2.237,-3.255],[-0.024,-3.03],[-1.078,-2.344],[-1.941,-1.728],[-2.652,-1.184],[0,0],[-1.586,-0.355],[-1.397,-0.509],[-1.065,-0.698],[-0.604,-0.97],[0,-1.562],[0.911,-1.231],[1.728,-0.698],[3.693,0],[2.154,1.586],[0,0]],"v":[[60.511,-51.811],[57.031,-63.246],[47.603,-70.952],[33.452,-73.722],[19.247,-70.952],[9.428,-63.246],[5.895,-51.705],[11.186,-38.885],[25.71,-31.889],[33.629,-29.901],[40.359,-27.77],[44.549,-24.929],[45.987,-20.81],[44.389,-16.158],[39.897,-12.997],[33.097,-11.861],[25.977,-13.086],[20.969,-16.744],[18.857,-22.834],[3.977,-22.834],[7.795,-9.677],[17.951,-1.669],[33.274,1.03],[48.455,-1.651],[58.114,-9.215],[61.506,-20.774],[59.854,-28.835],[55.327,-34.943],[48.438,-39.311],[39.702,-42.152],[33.168,-43.714],[28.693,-45.011],[25,-46.822],[22.496,-49.325],[21.662,-52.734],[23.029,-56.925],[26.989,-59.819],[33.345,-60.866],[42.116,-58.487],[45.774,-51.811]],"c":true}},"nm":"S"}],"nm":"S"}]},"fFamily":"Inter"},{"ch":"T","size":7,"style":"Bold","w":66.83,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[25.817,-60.05],[25.817,0],[41.016,0],[41.016,-60.05],[63.281,-60.05],[63.281,-72.727],[3.551,-72.727],[3.551,-60.05]],"c":true}},"nm":"T"}],"nm":"T"}]},"fFamily":"Inter"}]} \ No newline at end of file diff --git a/apps/dashboard/public/assets/product-pages/engine/mobile-hero.png b/apps/dashboard/public/assets/product-pages/engine/mobile-hero.png new file mode 100644 index 00000000000..e63a0453d46 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/mobile-hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/smart-contracts.png b/apps/dashboard/public/assets/product-pages/engine/smart-contracts.png new file mode 100644 index 00000000000..2f7eaae86a9 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/smart-contracts.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/treasure.png b/apps/dashboard/public/assets/product-pages/engine/treasure.png new file mode 100644 index 00000000000..3d8cf70cd4f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/treasure.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/wallet-management.png b/apps/dashboard/public/assets/product-pages/engine/wallet-management.png new file mode 100644 index 00000000000..7b4bb135815 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/wallet-management.png differ diff --git a/apps/dashboard/public/assets/product-pages/engine/web3-auth.png b/apps/dashboard/public/assets/product-pages/engine/web3-auth.png new file mode 100644 index 00000000000..9110ffea84f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/engine/web3-auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/extensions/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/extensions/hero-icon-1.png new file mode 100644 index 00000000000..d3a89048dda Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/extensions/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/extensions/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/extensions/hero-icon-2.png new file mode 100644 index 00000000000..adc81dc2a32 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/extensions/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/extensions/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/extensions/hero-icon-3.png new file mode 100644 index 00000000000..9654ec26024 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/extensions/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/extensions/hero.png b/apps/dashboard/public/assets/product-pages/extensions/hero.png new file mode 100644 index 00000000000..928ab3e396c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/extensions/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-aa.png b/apps/dashboard/public/assets/product-pages/hero/desktop-aa.png new file mode 100644 index 00000000000..a1e5e0b9d3a Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-aa.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-appchain-api.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-appchain-api.png new file mode 100644 index 00000000000..37d87369bf7 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-appchain-api.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-auth.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-auth.png new file mode 100644 index 00000000000..38887c5192e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-build.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-build.png new file mode 100644 index 00000000000..960d02b5fd3 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-build.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-chains.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-chains.png new file mode 100644 index 00000000000..d8b92aadad4 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-chains.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-checkout.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-checkout.png new file mode 100644 index 00000000000..17bcc41f94f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-checkout.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-connect-wallet.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-connect-wallet.png new file mode 100644 index 00000000000..7664e31af2e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-connect-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-deploy.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-deploy.png new file mode 100644 index 00000000000..f21d39ebf3e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-deploy.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-embedded-wallets.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-embedded-wallets.png new file mode 100644 index 00000000000..15cd6299577 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-embedded-wallets.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-explore.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-explore.png new file mode 100644 index 00000000000..91ec6ddb87f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-explore.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-gaming.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-gaming.png new file mode 100644 index 00000000000..8159041b0d1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-gaming.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-interact.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-interact.png new file mode 100644 index 00000000000..45a28a2ad57 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-interact.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-loyalty.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-loyalty.png new file mode 100644 index 00000000000..dc5d8a204ab Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-loyalty.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-marketplace.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-marketplace.png new file mode 100644 index 00000000000..286fd8d0470 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-marketplace.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-minting.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-minting.png new file mode 100644 index 00000000000..bf3f66809e6 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-minting.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-publish.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-publish.png new file mode 100644 index 00000000000..14922641b0e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-publish.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-rpc-edge.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-rpc-edge.png new file mode 100644 index 00000000000..c1afb4f91f9 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-rpc-edge.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-sponsored-transactions.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-sponsored-transactions.png new file mode 100644 index 00000000000..fa9b58483ee Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-sponsored-transactions.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-storage.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-storage.png new file mode 100644 index 00000000000..1aaee8930f1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-storage.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-hero-web2-onboarding.png b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-web2-onboarding.png new file mode 100644 index 00000000000..fd973be481d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-hero-web2-onboarding.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-in-app-wallets-v2.png b/apps/dashboard/public/assets/product-pages/hero/desktop-in-app-wallets-v2.png new file mode 100644 index 00000000000..cc8933ebb9c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-in-app-wallets-v2.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/desktop-pay.png b/apps/dashboard/public/assets/product-pages/hero/desktop-pay.png new file mode 100644 index 00000000000..a027193e6f5 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/desktop-pay.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-aa.png b/apps/dashboard/public/assets/product-pages/hero/mobile-aa.png new file mode 100644 index 00000000000..8f4a9be7c63 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-aa.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-appchain-api.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-appchain-api.png new file mode 100644 index 00000000000..72119bc60f6 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-appchain-api.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-auth.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-auth.png new file mode 100644 index 00000000000..7590338852e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-auth.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-build.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-build.png new file mode 100644 index 00000000000..fd438710842 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-build.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-chains.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-chains.png new file mode 100644 index 00000000000..95dbb0a433b Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-chains.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-checkout.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-checkout.png new file mode 100644 index 00000000000..1eca3f522d0 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-checkout.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-connect-wallet.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-connect-wallet.png new file mode 100644 index 00000000000..e4faa2c2414 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-connect-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-deploy.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-deploy.png new file mode 100644 index 00000000000..bddc51ecd7f Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-deploy.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-embedded-wallets.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-embedded-wallets.png new file mode 100644 index 00000000000..12890f40938 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-embedded-wallets.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-explore.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-explore.png new file mode 100644 index 00000000000..181560a74bd Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-explore.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-gaming.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-gaming.png new file mode 100644 index 00000000000..121a6a92086 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-gaming.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-interact.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-interact.png new file mode 100644 index 00000000000..9b69b86c0c6 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-interact.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-loyalty.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-loyalty.png new file mode 100644 index 00000000000..07abe647101 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-loyalty.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-marketplace.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-marketplace.png new file mode 100644 index 00000000000..470e0f4e8ca Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-marketplace.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-minting.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-minting.png new file mode 100644 index 00000000000..667c8490700 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-minting.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-publish.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-publish.png new file mode 100644 index 00000000000..4c770cbf58e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-publish.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-rpc-edge.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-rpc-edge.png new file mode 100644 index 00000000000..588763d87e1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-rpc-edge.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-sponsored-transactions.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-sponsored-transactions.png new file mode 100644 index 00000000000..8dfa20b56d7 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-sponsored-transactions.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-storage.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-storage.png new file mode 100644 index 00000000000..17acd588f76 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-storage.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-hero-web2-onboarding.png b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-web2-onboarding.png new file mode 100644 index 00000000000..2731b91ccaf Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-hero-web2-onboarding.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-in-app-wallets-v2.png b/apps/dashboard/public/assets/product-pages/hero/mobile-in-app-wallets-v2.png new file mode 100644 index 00000000000..1ce305994f3 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-in-app-wallets-v2.png differ diff --git a/apps/dashboard/public/assets/product-pages/hero/mobile-pay.png b/apps/dashboard/public/assets/product-pages/hero/mobile-pay.png new file mode 100644 index 00000000000..e0e47f9517c Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/hero/mobile-pay.png differ diff --git a/apps/dashboard/public/assets/product-pages/mission/icon-control.svg b/apps/dashboard/public/assets/product-pages/mission/icon-control.svg new file mode 100644 index 00000000000..25c2fce11ce --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/mission/icon-control.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/mission/icon-key.svg b/apps/dashboard/public/assets/product-pages/mission/icon-key.svg new file mode 100644 index 00000000000..1dafaaa12b7 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/mission/icon-key.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/mission/icon-open-source.svg b/apps/dashboard/public/assets/product-pages/mission/icon-open-source.svg new file mode 100644 index 00000000000..dc2f9594398 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/mission/icon-open-source.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/mission/icon-simple-click.svg b/apps/dashboard/public/assets/product-pages/mission/icon-simple-click.svg new file mode 100644 index 00000000000..5741eee7182 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/mission/icon-simple-click.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/mission/icon-unlock.svg b/apps/dashboard/public/assets/product-pages/mission/icon-unlock.svg new file mode 100644 index 00000000000..6f3a33540ea --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/mission/icon-unlock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-1.png new file mode 100644 index 00000000000..bdb7289bd60 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-2.png new file mode 100644 index 00000000000..b434ceda186 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-3.png new file mode 100644 index 00000000000..443da175458 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/pre-builts/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/pre-builts/hero.png b/apps/dashboard/public/assets/product-pages/pre-builts/hero.png new file mode 100644 index 00000000000..80f710e303d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/pre-builts/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/pre-builts/solution-cut.png b/apps/dashboard/public/assets/product-pages/pre-builts/solution-cut.png new file mode 100644 index 00000000000..89a9c0d2a28 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/pre-builts/solution-cut.png differ diff --git a/apps/dashboard/public/assets/product-pages/pre-builts/solution.png b/apps/dashboard/public/assets/product-pages/pre-builts/solution.png new file mode 100644 index 00000000000..5cf8ea6f1d1 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/pre-builts/solution.png differ diff --git a/apps/dashboard/public/assets/product-pages/publish/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/publish/hero-icon-1.png new file mode 100644 index 00000000000..06d1dfccba4 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/publish/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/publish/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/publish/hero-icon-2.png new file mode 100644 index 00000000000..b82f8823c90 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/publish/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/publish/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/publish/hero-icon-3.png new file mode 100644 index 00000000000..f822a67dc31 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/publish/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/publish/hero.png b/apps/dashboard/public/assets/product-pages/publish/hero.png new file mode 100644 index 00000000000..e1491f4cc10 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/publish/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/sdk/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/sdk/hero-icon-1.png new file mode 100644 index 00000000000..acb524a187d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/sdk/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/sdk/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/sdk/hero-icon-2.png new file mode 100644 index 00000000000..8c8e08c35e8 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/sdk/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/sdk/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/sdk/hero-icon-3.png new file mode 100644 index 00000000000..5ad5c2d6004 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/sdk/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/sdk/hero.png b/apps/dashboard/public/assets/product-pages/sdk/hero.png new file mode 100644 index 00000000000..ead632db97b Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/sdk/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/account-abstraction.png b/apps/dashboard/public/assets/product-pages/smart-wallet/account-abstraction.png new file mode 100644 index 00000000000..ee635e97211 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/account-abstraction.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/batch-txns.png b/apps/dashboard/public/assets/product-pages/smart-wallet/batch-txns.png new file mode 100644 index 00000000000..d973202790d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/batch-txns.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/dashboard.png b/apps/dashboard/public/assets/product-pages/smart-wallet/dashboard.png new file mode 100644 index 00000000000..2db74c7437d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/dashboard.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/desktop-hero.png b/apps/dashboard/public/assets/product-pages/smart-wallet/desktop-hero.png new file mode 100644 index 00000000000..3f920f6e946 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/desktop-hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/full-programmability.png b/apps/dashboard/public/assets/product-pages/smart-wallet/full-programmability.png new file mode 100644 index 00000000000..6fcaffb02e2 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/full-programmability.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/fully-programmable.png b/apps/dashboard/public/assets/product-pages/smart-wallet/fully-programmable.png new file mode 100644 index 00000000000..6fcaffb02e2 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/fully-programmable.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/get-started.png b/apps/dashboard/public/assets/product-pages/smart-wallet/get-started.png new file mode 100644 index 00000000000..bd8e13a8dd4 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/get-started.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/invisible-wallet.png b/apps/dashboard/public/assets/product-pages/smart-wallet/invisible-wallet.png new file mode 100644 index 00000000000..f32e9c58273 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/invisible-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/managed-infrastructure.png b/apps/dashboard/public/assets/product-pages/smart-wallet/managed-infrastructure.png new file mode 100644 index 00000000000..0b103a0bf58 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/managed-infrastructure.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/mobile-hero.png b/apps/dashboard/public/assets/product-pages/smart-wallet/mobile-hero.png new file mode 100644 index 00000000000..d115d0bef2e Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/mobile-hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/pair-any-wallet.png b/apps/dashboard/public/assets/product-pages/smart-wallet/pair-any-wallet.png new file mode 100644 index 00000000000..de478e56046 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/pair-any-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/smart-contracts.png b/apps/dashboard/public/assets/product-pages/smart-wallet/smart-contracts.png new file mode 100644 index 00000000000..e2f0cfc0786 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/smart-contracts.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/ui-components.png b/apps/dashboard/public/assets/product-pages/smart-wallet/ui-components.png new file mode 100644 index 00000000000..d003603c7c7 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/ui-components.png differ diff --git a/apps/dashboard/public/assets/product-pages/smart-wallet/which-contract.png b/apps/dashboard/public/assets/product-pages/smart-wallet/which-contract.png new file mode 100644 index 00000000000..45791631eca Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/smart-wallet/which-contract.png differ diff --git a/apps/dashboard/public/assets/product-pages/storage/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/storage/hero-icon-1.png new file mode 100644 index 00000000000..c3d8dd8a06a Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/storage/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/storage/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/storage/hero-icon-2.png new file mode 100644 index 00000000000..a1f8d321bc3 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/storage/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/storage/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/storage/hero-icon-3.png new file mode 100644 index 00000000000..511600486e2 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/storage/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/storage/hero.png b/apps/dashboard/public/assets/product-pages/storage/hero.png new file mode 100644 index 00000000000..1ce2ac952be Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/storage/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-1.png b/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-1.png new file mode 100644 index 00000000000..bb668db4e2d Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-2.png b/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-2.png new file mode 100644 index 00000000000..02f17636533 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-3.png b/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-3.png new file mode 100644 index 00000000000..b53194033ce Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/ui-components/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/product-pages/ui-components/hero.png b/apps/dashboard/public/assets/product-pages/ui-components/hero.png new file mode 100644 index 00000000000..cf87071feea Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/ui-components/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/connect-wallet.png b/apps/dashboard/public/assets/product-pages/wallet-sdk/connect-wallet.png new file mode 100644 index 00000000000..d3c21807be9 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/wallet-sdk/connect-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/email-sign-in.svg b/apps/dashboard/public/assets/product-pages/wallet-sdk/email-sign-in.svg new file mode 100644 index 00000000000..d661e66d493 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/wallet-sdk/email-sign-in.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/hero.png b/apps/dashboard/public/assets/product-pages/wallet-sdk/hero.png new file mode 100644 index 00000000000..86d9a2376f8 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/wallet-sdk/hero.png differ diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/how-it-works.png b/apps/dashboard/public/assets/product-pages/wallet-sdk/how-it-works.png new file mode 100644 index 00000000000..c591f3c2e52 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/wallet-sdk/how-it-works.png differ diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/invisible-wallet-experience.svg b/apps/dashboard/public/assets/product-pages/wallet-sdk/invisible-wallet-experience.svg new file mode 100644 index 00000000000..32a094cf82a --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/wallet-sdk/invisible-wallet-experience.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/local-wallet.png b/apps/dashboard/public/assets/product-pages/wallet-sdk/local-wallet.png new file mode 100644 index 00000000000..fe5e7c2a0a6 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/wallet-sdk/local-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/smart-wallet.png b/apps/dashboard/public/assets/product-pages/wallet-sdk/smart-wallet.png new file mode 100644 index 00000000000..0aedbfdf312 Binary files /dev/null and b/apps/dashboard/public/assets/product-pages/wallet-sdk/smart-wallet.png differ diff --git a/apps/dashboard/public/assets/product-pages/wallet-sdk/smart-wallet.svg b/apps/dashboard/public/assets/product-pages/wallet-sdk/smart-wallet.svg new file mode 100644 index 00000000000..443c3e8ec91 --- /dev/null +++ b/apps/dashboard/public/assets/product-pages/wallet-sdk/smart-wallet.svg @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solana-gradient.png b/apps/dashboard/public/assets/solana-gradient.png new file mode 100644 index 00000000000..22837b58791 Binary files /dev/null and b/apps/dashboard/public/assets/solana-gradient.png differ diff --git a/apps/dashboard/public/assets/solutions-icons/appchain-api.svg b/apps/dashboard/public/assets/solutions-icons/appchain-api.svg new file mode 100644 index 00000000000..acb80f250df --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/appchain-api.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-icons/chains.svg b/apps/dashboard/public/assets/solutions-icons/chains.svg new file mode 100644 index 00000000000..7eb0632b377 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/chains.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-icons/gaming.svg b/apps/dashboard/public/assets/solutions-icons/gaming.svg new file mode 100644 index 00000000000..d1084004b22 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/gaming.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-icons/loyalty.svg b/apps/dashboard/public/assets/solutions-icons/loyalty.svg new file mode 100644 index 00000000000..e6740b3f8d5 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/loyalty.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-icons/marketplace.svg b/apps/dashboard/public/assets/solutions-icons/marketplace.svg new file mode 100644 index 00000000000..bdacf1579de --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/marketplace.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-icons/minting.svg b/apps/dashboard/public/assets/solutions-icons/minting.svg new file mode 100644 index 00000000000..2ddc7d85557 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/minting.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-icons/web2-onboarding.svg b/apps/dashboard/public/assets/solutions-icons/web2-onboarding.svg new file mode 100644 index 00000000000..94eb9df65b8 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-icons/web2-onboarding.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/chains/mini-icon.png b/apps/dashboard/public/assets/solutions-pages/chains/mini-icon.png new file mode 100644 index 00000000000..55827705efa Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/chains/mini-icon.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/chains/pencil.svg b/apps/dashboard/public/assets/solutions-pages/chains/pencil.svg new file mode 100644 index 00000000000..6a93266594a --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/chains/pencil.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/chains/plat-tier.png b/apps/dashboard/public/assets/solutions-pages/chains/plat-tier.png new file mode 100644 index 00000000000..5f14ac495e8 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/chains/plat-tier.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/chains/rocket.svg b/apps/dashboard/public/assets/solutions-pages/chains/rocket.svg new file mode 100644 index 00000000000..39114997c6a --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/chains/rocket.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/chains/stack.svg b/apps/dashboard/public/assets/solutions-pages/chains/stack.svg new file mode 100644 index 00000000000..b404d0e2a60 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/chains/stack.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-1.png b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-1.png new file mode 100644 index 00000000000..810825dff67 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-1.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-2.png b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-2.png new file mode 100644 index 00000000000..c2ca69be0d8 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-2.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-3.png b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-3.png new file mode 100644 index 00000000000..431d7ab2336 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-3.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-4.png b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-4.png new file mode 100644 index 00000000000..15ac9d28864 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/hero-icon-4.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/hero.png b/apps/dashboard/public/assets/solutions-pages/commerce/hero.png new file mode 100644 index 00000000000..9c8e342b7bf Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/hero.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/reimagine.png b/apps/dashboard/public/assets/solutions-pages/commerce/reimagine.png new file mode 100644 index 00000000000..3ca7724dae4 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/reimagine.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/commerce/shopify.png b/apps/dashboard/public/assets/solutions-pages/commerce/shopify.png new file mode 100644 index 00000000000..75e21edefc4 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/commerce/shopify.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/2d-rpg.png b/apps/dashboard/public/assets/solutions-pages/gaming/2d-rpg.png new file mode 100644 index 00000000000..15977a0b2e5 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/2d-rpg.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/3d-racer.png b/apps/dashboard/public/assets/solutions-pages/gaming/3d-racer.png new file mode 100644 index 00000000000..3d238fea66a Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/3d-racer.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/case-study-gala.png b/apps/dashboard/public/assets/solutions-pages/gaming/case-study-gala.png new file mode 100644 index 00000000000..640f1d183f8 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/case-study-gala.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/case-study-ztx.png b/apps/dashboard/public/assets/solutions-pages/gaming/case-study-ztx.png new file mode 100644 index 00000000000..7260307d656 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/case-study-ztx.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/catattack-square.png b/apps/dashboard/public/assets/solutions-pages/gaming/catattack-square.png new file mode 100644 index 00000000000..b8e6c01d0d5 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/catattack-square.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/catattack.png b/apps/dashboard/public/assets/solutions-pages/gaming/catattack.png new file mode 100644 index 00000000000..59046db6b47 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/catattack.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/gaming-phone.png b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-phone.png new file mode 100644 index 00000000000..4e78a2e2869 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-phone.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/gaming-speed-racer.png b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-speed-racer.png new file mode 100644 index 00000000000..3a39c7f5103 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-speed-racer.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/gaming-unity.png b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-unity.png new file mode 100644 index 00000000000..82bfa7e8a70 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-unity.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/gaming-unreal.png b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-unreal.png new file mode 100644 index 00000000000..e333656208f Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/gaming-unreal.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/grow-community.png b/apps/dashboard/public/assets/solutions-pages/gaming/grow-community.png new file mode 100644 index 00000000000..8e74b751eb8 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/grow-community.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/hero.png b/apps/dashboard/public/assets/solutions-pages/gaming/hero.png new file mode 100644 index 00000000000..baa78bdf06e Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/hero.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/marketplace.png b/apps/dashboard/public/assets/solutions-pages/gaming/marketplace.png new file mode 100644 index 00000000000..8e521ff93a5 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/marketplace.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/mobile-case-study-gala.png b/apps/dashboard/public/assets/solutions-pages/gaming/mobile-case-study-gala.png new file mode 100644 index 00000000000..c6fe97c728f Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/mobile-case-study-gala.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/mobile-case-study-ztx.png b/apps/dashboard/public/assets/solutions-pages/gaming/mobile-case-study-ztx.png new file mode 100644 index 00000000000..7260307d656 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/mobile-case-study-ztx.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/nft-lootbox.png b/apps/dashboard/public/assets/solutions-pages/gaming/nft-lootbox.png new file mode 100644 index 00000000000..0b716c26fd9 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/nft-lootbox.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/revenue-streams.png b/apps/dashboard/public/assets/solutions-pages/gaming/revenue-streams.png new file mode 100644 index 00000000000..2fb58f57616 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/revenue-streams.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/user-loyalty.png b/apps/dashboard/public/assets/solutions-pages/gaming/user-loyalty.png new file mode 100644 index 00000000000..257ed931910 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/user-loyalty.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/gaming/web3warriors.png b/apps/dashboard/public/assets/solutions-pages/gaming/web3warriors.png new file mode 100644 index 00000000000..fb3ab9a4e3a Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/gaming/web3warriors.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/icons/accility.svg b/apps/dashboard/public/assets/solutions-pages/icons/accility.svg new file mode 100644 index 00000000000..ddd4cc1d076 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/accility.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-build.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-build.svg new file mode 100644 index 00000000000..3b3bd492f2e --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-build.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-contract.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-contract.svg new file mode 100644 index 00000000000..a9ae8f5225e --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-contract.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-credit.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-credit.svg new file mode 100644 index 00000000000..15814fef5c2 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-credit.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-custom.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-custom.svg new file mode 100644 index 00000000000..cd62d3f2664 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-custom.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-dashboard.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-dashboard.svg new file mode 100644 index 00000000000..5da97ea8f16 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-dashboard.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-digital-collectible.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-digital-collectible.svg new file mode 100644 index 00000000000..5bfcaa09d29 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-digital-collectible.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-efficient.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-efficient.svg new file mode 100644 index 00000000000..8598dd51be5 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-efficient.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-email-signin.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-email-signin.svg new file mode 100644 index 00000000000..adc638a2cc8 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-email-signin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-fee.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-fee.svg new file mode 100644 index 00000000000..31aa0ca0d14 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-fee.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-game.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-game.svg new file mode 100644 index 00000000000..43b661f6deb --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-game.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-grow.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-grow.svg new file mode 100644 index 00000000000..069d6e9da16 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-grow.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-guest.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-guest.svg new file mode 100644 index 00000000000..ee0a012c1d8 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-guest.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-library.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-library.svg new file mode 100644 index 00000000000..a74c4601181 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-library.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-marketplace.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-marketplace.svg new file mode 100644 index 00000000000..b29a16b8d89 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-marketplace.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-scale.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-scale.svg new file mode 100644 index 00000000000..407ba0954f6 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-scale.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-ship.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-ship.svg new file mode 100644 index 00000000000..dcfa7406745 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-ship.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-simple-click.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-simple-click.svg new file mode 100644 index 00000000000..72e4a731055 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-simple-click.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-smart-wallet.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-smart-wallet.svg new file mode 100644 index 00000000000..90da50bf573 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-smart-wallet.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-tool.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-tool.svg new file mode 100644 index 00000000000..31f2219fd63 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-tool.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-verified-user.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-verified-user.svg new file mode 100644 index 00000000000..eb684bd715f --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-verified-user.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/icon-verified.svg b/apps/dashboard/public/assets/solutions-pages/icons/icon-verified.svg new file mode 100644 index 00000000000..fdc67dcb7f1 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/icon-verified.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/support.svg b/apps/dashboard/public/assets/solutions-pages/icons/support.svg new file mode 100644 index 00000000000..2d783c5e750 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/support.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/icons/worldclass.svg b/apps/dashboard/public/assets/solutions-pages/icons/worldclass.svg new file mode 100644 index 00000000000..7b5a8a39b7b --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/icons/worldclass.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/commerce-sdk-desktop.png b/apps/dashboard/public/assets/solutions-pages/loyalty/commerce-sdk-desktop.png new file mode 100644 index 00000000000..d8777ae2a24 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/commerce-sdk-desktop.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/commerce-sdk-mobile.png b/apps/dashboard/public/assets/solutions-pages/loyalty/commerce-sdk-mobile.png new file mode 100644 index 00000000000..3dde00cf9d3 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/commerce-sdk-mobile.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/cross-brand-activations-desktop.png b/apps/dashboard/public/assets/solutions-pages/loyalty/cross-brand-activations-desktop.png new file mode 100644 index 00000000000..626c9f239de Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/cross-brand-activations-desktop.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/cross-brand-activations-mobile.png b/apps/dashboard/public/assets/solutions-pages/loyalty/cross-brand-activations-mobile.png new file mode 100644 index 00000000000..4ced3eae083 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/cross-brand-activations-mobile.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/evolving-loyalty-contract-desktop.png b/apps/dashboard/public/assets/solutions-pages/loyalty/evolving-loyalty-contract-desktop.png new file mode 100644 index 00000000000..fb3efd5fc9b Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/evolving-loyalty-contract-desktop.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/frictionless-onboarding-experience-desktop.png b/apps/dashboard/public/assets/solutions-pages/loyalty/frictionless-onboarding-experience-desktop.png new file mode 100644 index 00000000000..e519e9eeefa Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/frictionless-onboarding-experience-desktop.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/frictionless-onboarding-experience-mobile.png b/apps/dashboard/public/assets/solutions-pages/loyalty/frictionless-onboarding-experience-mobile.png new file mode 100644 index 00000000000..3185b31a61f Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/frictionless-onboarding-experience-mobile.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-1.png b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-1.png new file mode 100644 index 00000000000..78b148b1878 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-1.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-2.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-2.svg new file mode 100644 index 00000000000..f1172c7e75c --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-2.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-3.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-3.svg new file mode 100644 index 00000000000..4bbaa0e856d --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-3.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-4.png b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-4.png new file mode 100644 index 00000000000..5527af5552b Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-4.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-5.png b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-5.png new file mode 100644 index 00000000000..dac158f44a1 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-5.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-6.png b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-6.png new file mode 100644 index 00000000000..fca17cc7f9a Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-6.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-7.png b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-7.png new file mode 100644 index 00000000000..2f1f5dc67fd Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-7.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-digital-collectible.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-digital-collectible.svg new file mode 100644 index 00000000000..6be293d588f --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-digital-collectible.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-fee.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-fee.svg new file mode 100644 index 00000000000..0fc4f875446 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-fee.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-grow.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-grow.svg new file mode 100644 index 00000000000..fb43694359f --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-grow.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-scale.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-scale.svg new file mode 100644 index 00000000000..8aaec45792b --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-scale.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-smart-wallet.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-smart-wallet.svg new file mode 100644 index 00000000000..f3d6c036248 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-smart-wallet.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/icon-tool.svg b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-tool.svg new file mode 100644 index 00000000000..237c260f141 --- /dev/null +++ b/apps/dashboard/public/assets/solutions-pages/loyalty/icon-tool.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/token-bound-acc-desktop.png b/apps/dashboard/public/assets/solutions-pages/loyalty/token-bound-acc-desktop.png new file mode 100644 index 00000000000..24ff8772971 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/token-bound-acc-desktop.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/loyalty/token-bound-acc-mobile.png b/apps/dashboard/public/assets/solutions-pages/loyalty/token-bound-acc-mobile.png new file mode 100644 index 00000000000..4df8df59dc1 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/loyalty/token-bound-acc-mobile.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/hero.png b/apps/dashboard/public/assets/solutions-pages/minting/hero.png new file mode 100644 index 00000000000..cfa17ee4b2c Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/hero.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/mint-nft-placeholder.png b/apps/dashboard/public/assets/solutions-pages/minting/mint-nft-placeholder.png new file mode 100644 index 00000000000..e7ea41fa4e5 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/mint-nft-placeholder.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/paper-minting.png b/apps/dashboard/public/assets/solutions-pages/minting/paper-minting.png new file mode 100644 index 00000000000..5329444368b Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/paper-minting.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/polygon-0xmint.png b/apps/dashboard/public/assets/solutions-pages/minting/polygon-0xmint.png new file mode 100644 index 00000000000..9573fb40b82 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/polygon-0xmint.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/warner-bros.png b/apps/dashboard/public/assets/solutions-pages/minting/warner-bros.png new file mode 100644 index 00000000000..87668c52f1b Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/warner-bros.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/what-can-you-build-mobile.png b/apps/dashboard/public/assets/solutions-pages/minting/what-can-you-build-mobile.png new file mode 100644 index 00000000000..e85438ddd47 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/what-can-you-build-mobile.png differ diff --git a/apps/dashboard/public/assets/solutions-pages/minting/what-can-you-build.png b/apps/dashboard/public/assets/solutions-pages/minting/what-can-you-build.png new file mode 100644 index 00000000000..ae43cbfa0e5 Binary files /dev/null and b/apps/dashboard/public/assets/solutions-pages/minting/what-can-you-build.png differ diff --git a/apps/dashboard/public/assets/superchain/frame-1.png b/apps/dashboard/public/assets/superchain/frame-1.png new file mode 100644 index 00000000000..ac33ef4d96c Binary files /dev/null and b/apps/dashboard/public/assets/superchain/frame-1.png differ diff --git a/apps/dashboard/public/assets/superchain/frame-2.png b/apps/dashboard/public/assets/superchain/frame-2.png new file mode 100644 index 00000000000..38f5043000b Binary files /dev/null and b/apps/dashboard/public/assets/superchain/frame-2.png differ diff --git a/apps/dashboard/public/assets/superchain/frame-3.png b/apps/dashboard/public/assets/superchain/frame-3.png new file mode 100644 index 00000000000..c45ee7109d4 Binary files /dev/null and b/apps/dashboard/public/assets/superchain/frame-3.png differ diff --git a/apps/dashboard/public/assets/superchain/frame-4.png b/apps/dashboard/public/assets/superchain/frame-4.png new file mode 100644 index 00000000000..7e796074e6b Binary files /dev/null and b/apps/dashboard/public/assets/superchain/frame-4.png differ diff --git a/apps/dashboard/public/assets/superchain/frame-5.png b/apps/dashboard/public/assets/superchain/frame-5.png new file mode 100644 index 00000000000..7ef585db13e Binary files /dev/null and b/apps/dashboard/public/assets/superchain/frame-5.png differ diff --git a/apps/dashboard/public/assets/support/account.svg b/apps/dashboard/public/assets/support/account.svg new file mode 100644 index 00000000000..8d86babc3c4 --- /dev/null +++ b/apps/dashboard/public/assets/support/account.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/support/contracts.png b/apps/dashboard/public/assets/support/contracts.png new file mode 100644 index 00000000000..be595d9b583 Binary files /dev/null and b/apps/dashboard/public/assets/support/contracts.png differ diff --git a/apps/dashboard/public/assets/support/contracts.svg b/apps/dashboard/public/assets/support/contracts.svg new file mode 100644 index 00000000000..6e23dcbb995 --- /dev/null +++ b/apps/dashboard/public/assets/support/contracts.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/support/discord-illustration.png b/apps/dashboard/public/assets/support/discord-illustration.png new file mode 100644 index 00000000000..bf9f4090729 Binary files /dev/null and b/apps/dashboard/public/assets/support/discord-illustration.png differ diff --git a/apps/dashboard/public/assets/support/engine.png b/apps/dashboard/public/assets/support/engine.png new file mode 100644 index 00000000000..bb83199f0a6 Binary files /dev/null and b/apps/dashboard/public/assets/support/engine.png differ diff --git a/apps/dashboard/public/assets/support/engine.svg b/apps/dashboard/public/assets/support/engine.svg new file mode 100644 index 00000000000..318aabb73ca --- /dev/null +++ b/apps/dashboard/public/assets/support/engine.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/support/misc.svg b/apps/dashboard/public/assets/support/misc.svg new file mode 100644 index 00000000000..eb8a769ff8c --- /dev/null +++ b/apps/dashboard/public/assets/support/misc.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/dashboard/public/assets/support/payments.svg b/apps/dashboard/public/assets/support/payments.svg new file mode 100644 index 00000000000..748b3444543 --- /dev/null +++ b/apps/dashboard/public/assets/support/payments.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/support/wallets.png b/apps/dashboard/public/assets/support/wallets.png new file mode 100644 index 00000000000..b9738457f4e Binary files /dev/null and b/apps/dashboard/public/assets/support/wallets.png differ diff --git a/apps/dashboard/public/assets/support/wallets.svg b/apps/dashboard/public/assets/support/wallets.svg new file mode 100644 index 00000000000..eb91ba994f0 --- /dev/null +++ b/apps/dashboard/public/assets/support/wallets.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/dashboard/public/assets/templates/cat-attack.png b/apps/dashboard/public/assets/templates/cat-attack.png new file mode 100644 index 00000000000..d8ea427258a Binary files /dev/null and b/apps/dashboard/public/assets/templates/cat-attack.png differ diff --git a/apps/dashboard/public/assets/templates/engine-nft-checkout.png b/apps/dashboard/public/assets/templates/engine-nft-checkout.png new file mode 100644 index 00000000000..ac7ef247dce Binary files /dev/null and b/apps/dashboard/public/assets/templates/engine-nft-checkout.png differ diff --git a/apps/dashboard/public/assets/templates/expo-starter.png b/apps/dashboard/public/assets/templates/expo-starter.png new file mode 100644 index 00000000000..3e98779f610 Binary files /dev/null and b/apps/dashboard/public/assets/templates/expo-starter.png differ diff --git a/apps/dashboard/public/assets/templates/loyalty-card.png b/apps/dashboard/public/assets/templates/loyalty-card.png new file mode 100644 index 00000000000..156e7aaaf13 Binary files /dev/null and b/apps/dashboard/public/assets/templates/loyalty-card.png differ diff --git a/apps/dashboard/public/assets/templates/marketplace.png b/apps/dashboard/public/assets/templates/marketplace.png new file mode 100644 index 00000000000..4867da21c75 Binary files /dev/null and b/apps/dashboard/public/assets/templates/marketplace.png differ diff --git a/apps/dashboard/public/assets/templates/mintcaster.png b/apps/dashboard/public/assets/templates/mintcaster.png new file mode 100644 index 00000000000..55a76fdd459 Binary files /dev/null and b/apps/dashboard/public/assets/templates/mintcaster.png differ diff --git a/apps/dashboard/public/assets/templates/next-starter.png b/apps/dashboard/public/assets/templates/next-starter.png new file mode 100644 index 00000000000..8c0a9073361 Binary files /dev/null and b/apps/dashboard/public/assets/templates/next-starter.png differ diff --git a/apps/dashboard/public/assets/templates/nft-drop.png b/apps/dashboard/public/assets/templates/nft-drop.png new file mode 100644 index 00000000000..e8d8245109e Binary files /dev/null and b/apps/dashboard/public/assets/templates/nft-drop.png differ diff --git a/apps/dashboard/public/assets/templates/nft-gallery.png b/apps/dashboard/public/assets/templates/nft-gallery.png new file mode 100644 index 00000000000..b23295ffbf1 Binary files /dev/null and b/apps/dashboard/public/assets/templates/nft-gallery.png differ diff --git a/apps/dashboard/public/assets/templates/nft-gated-site.png b/apps/dashboard/public/assets/templates/nft-gated-site.png new file mode 100644 index 00000000000..228c43c49aa Binary files /dev/null and b/apps/dashboard/public/assets/templates/nft-gated-site.png differ diff --git a/apps/dashboard/public/assets/templates/node-starter.png b/apps/dashboard/public/assets/templates/node-starter.png new file mode 100644 index 00000000000..7e4dff22e9e Binary files /dev/null and b/apps/dashboard/public/assets/templates/node-starter.png differ diff --git a/apps/dashboard/public/assets/templates/phygital-experience.png b/apps/dashboard/public/assets/templates/phygital-experience.png new file mode 100644 index 00000000000..b9e02be9bee Binary files /dev/null and b/apps/dashboard/public/assets/templates/phygital-experience.png differ diff --git a/apps/dashboard/public/assets/templates/speed-racer.png b/apps/dashboard/public/assets/templates/speed-racer.png new file mode 100644 index 00000000000..e79760aadd0 Binary files /dev/null and b/apps/dashboard/public/assets/templates/speed-racer.png differ diff --git a/apps/dashboard/public/assets/templates/thirdweb-eth.png b/apps/dashboard/public/assets/templates/thirdweb-eth.png new file mode 100644 index 00000000000..e2e66d18b35 Binary files /dev/null and b/apps/dashboard/public/assets/templates/thirdweb-eth.png differ diff --git a/apps/dashboard/public/assets/templates/unity-blockventure.png b/apps/dashboard/public/assets/templates/unity-blockventure.png new file mode 100644 index 00000000000..6a21c9a3ed5 Binary files /dev/null and b/apps/dashboard/public/assets/templates/unity-blockventure.png differ diff --git a/apps/dashboard/public/assets/templates/unity-iap.png b/apps/dashboard/public/assets/templates/unity-iap.png new file mode 100644 index 00000000000..b284fbf8826 Binary files /dev/null and b/apps/dashboard/public/assets/templates/unity-iap.png differ diff --git a/apps/dashboard/public/assets/templates/unity-pioneer.png b/apps/dashboard/public/assets/templates/unity-pioneer.png new file mode 100644 index 00000000000..af282d910a0 Binary files /dev/null and b/apps/dashboard/public/assets/templates/unity-pioneer.png differ diff --git a/apps/dashboard/public/assets/templates/unity-take-flight.png b/apps/dashboard/public/assets/templates/unity-take-flight.png new file mode 100644 index 00000000000..a59d8b86fa9 Binary files /dev/null and b/apps/dashboard/public/assets/templates/unity-take-flight.png differ diff --git a/apps/dashboard/public/assets/templates/vite-starter.png b/apps/dashboard/public/assets/templates/vite-starter.png new file mode 100644 index 00000000000..cac56947d2c Binary files /dev/null and b/apps/dashboard/public/assets/templates/vite-starter.png differ diff --git a/apps/dashboard/public/assets/templates/web3-warriors.png b/apps/dashboard/public/assets/templates/web3-warriors.png new file mode 100644 index 00000000000..236a265f465 Binary files /dev/null and b/apps/dashboard/public/assets/templates/web3-warriors.png differ diff --git a/apps/dashboard/public/assets/tw-icons/access-nft.png b/apps/dashboard/public/assets/tw-icons/access-nft.png new file mode 100644 index 00000000000..3c52a051fe6 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/access-nft.png differ diff --git a/apps/dashboard/public/assets/tw-icons/advanced-nfts.png b/apps/dashboard/public/assets/tw-icons/advanced-nfts.png new file mode 100644 index 00000000000..ba26aa6ddb8 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/advanced-nfts.png differ diff --git a/apps/dashboard/public/assets/tw-icons/airdrops.png b/apps/dashboard/public/assets/tw-icons/airdrops.png new file mode 100644 index 00000000000..f73dd0bc61a Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/airdrops.png differ diff --git a/apps/dashboard/public/assets/tw-icons/analytics.png b/apps/dashboard/public/assets/tw-icons/analytics.png new file mode 100644 index 00000000000..2fa8d2ba62f Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/analytics.png differ diff --git a/apps/dashboard/public/assets/tw-icons/blur.png b/apps/dashboard/public/assets/tw-icons/blur.png new file mode 100644 index 00000000000..316ff7dbd95 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/blur.png differ diff --git a/apps/dashboard/public/assets/tw-icons/data.png b/apps/dashboard/public/assets/tw-icons/data.png new file mode 100644 index 00000000000..72a6c367aa5 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/data.png differ diff --git a/apps/dashboard/public/assets/tw-icons/datastore.png b/apps/dashboard/public/assets/tw-icons/datastore.png new file mode 100644 index 00000000000..7b2a4bcd11c Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/datastore.png differ diff --git a/apps/dashboard/public/assets/tw-icons/docs.svg b/apps/dashboard/public/assets/tw-icons/docs.svg new file mode 100644 index 00000000000..cd487e0228d --- /dev/null +++ b/apps/dashboard/public/assets/tw-icons/docs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/tw-icons/dynamic-nft.png b/apps/dashboard/public/assets/tw-icons/dynamic-nft.png new file mode 100644 index 00000000000..e84bb45ff43 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/dynamic-nft.png differ diff --git a/apps/dashboard/public/assets/tw-icons/edition-drop.png b/apps/dashboard/public/assets/tw-icons/edition-drop.png new file mode 100644 index 00000000000..1bc7f242b44 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/edition-drop.png differ diff --git a/apps/dashboard/public/assets/tw-icons/edition.png b/apps/dashboard/public/assets/tw-icons/edition.png new file mode 100644 index 00000000000..277d7ccd48d Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/edition.png differ diff --git a/apps/dashboard/public/assets/tw-icons/events.png b/apps/dashboard/public/assets/tw-icons/events.png new file mode 100644 index 00000000000..3ca461c5de8 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/events.png differ diff --git a/apps/dashboard/public/assets/tw-icons/general.png b/apps/dashboard/public/assets/tw-icons/general.png new file mode 100644 index 00000000000..51d6c67654d Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/general.png differ diff --git a/apps/dashboard/public/assets/tw-icons/guides.svg b/apps/dashboard/public/assets/tw-icons/guides.svg new file mode 100644 index 00000000000..ee525070b13 --- /dev/null +++ b/apps/dashboard/public/assets/tw-icons/guides.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/dashboard/public/assets/tw-icons/keys.png b/apps/dashboard/public/assets/tw-icons/keys.png new file mode 100644 index 00000000000..c0ec2606874 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/keys.png differ diff --git a/apps/dashboard/public/assets/tw-icons/market.png b/apps/dashboard/public/assets/tw-icons/market.png new file mode 100644 index 00000000000..63d9717c3a4 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/market.png differ diff --git a/apps/dashboard/public/assets/tw-icons/marketplace.png b/apps/dashboard/public/assets/tw-icons/marketplace.png new file mode 100644 index 00000000000..63d9717c3a4 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/marketplace.png differ diff --git a/apps/dashboard/public/assets/tw-icons/mission.svg b/apps/dashboard/public/assets/tw-icons/mission.svg new file mode 100644 index 00000000000..c8697f4a74f --- /dev/null +++ b/apps/dashboard/public/assets/tw-icons/mission.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/tw-icons/nft-collection.png b/apps/dashboard/public/assets/tw-icons/nft-collection.png new file mode 100644 index 00000000000..ce36c417227 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/nft-collection.png differ diff --git a/apps/dashboard/public/assets/tw-icons/nft-drop.png b/apps/dashboard/public/assets/tw-icons/nft-drop.png new file mode 100644 index 00000000000..386671c154f Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/nft-drop.png differ diff --git a/apps/dashboard/public/assets/tw-icons/noWallets.png b/apps/dashboard/public/assets/tw-icons/noWallets.png new file mode 100644 index 00000000000..d304f8e4ddf Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/noWallets.png differ diff --git a/apps/dashboard/public/assets/tw-icons/opensource.svg b/apps/dashboard/public/assets/tw-icons/opensource.svg new file mode 100644 index 00000000000..a9c46afca49 --- /dev/null +++ b/apps/dashboard/public/assets/tw-icons/opensource.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/tw-icons/pack.png b/apps/dashboard/public/assets/tw-icons/pack.png new file mode 100644 index 00000000000..387493cf092 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/pack.png differ diff --git a/apps/dashboard/public/assets/tw-icons/permissions.png b/apps/dashboard/public/assets/tw-icons/permissions.png new file mode 100644 index 00000000000..4916eb27212 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/permissions.png differ diff --git a/apps/dashboard/public/assets/tw-icons/split.png b/apps/dashboard/public/assets/tw-icons/split.png new file mode 100644 index 00000000000..fcc957e7c57 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/split.png differ diff --git a/apps/dashboard/public/assets/tw-icons/templates.svg b/apps/dashboard/public/assets/tw-icons/templates.svg new file mode 100644 index 00000000000..1a4e7cda68b --- /dev/null +++ b/apps/dashboard/public/assets/tw-icons/templates.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/tw-icons/token.png b/apps/dashboard/public/assets/tw-icons/token.png new file mode 100644 index 00000000000..eb3d3fbdfd0 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/token.png differ diff --git a/apps/dashboard/public/assets/tw-icons/vote.png b/apps/dashboard/public/assets/tw-icons/vote.png new file mode 100644 index 00000000000..eabc33fc932 Binary files /dev/null and b/apps/dashboard/public/assets/tw-icons/vote.png differ diff --git a/apps/dashboard/public/assets/videos/early-access-blue.mp4 b/apps/dashboard/public/assets/videos/early-access-blue.mp4 new file mode 100644 index 00000000000..caade2773b2 Binary files /dev/null and b/apps/dashboard/public/assets/videos/early-access-blue.mp4 differ diff --git a/apps/dashboard/public/assets/videos/early-access-gold.mp4 b/apps/dashboard/public/assets/videos/early-access-gold.mp4 new file mode 100644 index 00000000000..51789cc25b4 Binary files /dev/null and b/apps/dashboard/public/assets/videos/early-access-gold.mp4 differ diff --git a/apps/dashboard/public/assets/videos/early-access-silver.mp4 b/apps/dashboard/public/assets/videos/early-access-silver.mp4 new file mode 100644 index 00000000000..2f80c0dfc67 Binary files /dev/null and b/apps/dashboard/public/assets/videos/early-access-silver.mp4 differ diff --git a/apps/dashboard/public/assets/wallet-playground/nouns-dao-app-icon.png b/apps/dashboard/public/assets/wallet-playground/nouns-dao-app-icon.png new file mode 100644 index 00000000000..799d1b620ba Binary files /dev/null and b/apps/dashboard/public/assets/wallet-playground/nouns-dao-app-icon.png differ diff --git a/apps/dashboard/public/assets/wallet-playground/nouns-dao-splash.png b/apps/dashboard/public/assets/wallet-playground/nouns-dao-splash.png new file mode 100644 index 00000000000..0d7ff66ad19 Binary files /dev/null and b/apps/dashboard/public/assets/wallet-playground/nouns-dao-splash.png differ diff --git a/apps/dashboard/public/assets/wallet-playground/nouns-dao-tiny-icon.svg b/apps/dashboard/public/assets/wallet-playground/nouns-dao-tiny-icon.svg new file mode 100644 index 00000000000..5a5bc544073 --- /dev/null +++ b/apps/dashboard/public/assets/wallet-playground/nouns-dao-tiny-icon.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/wallet-playground/tw-app-icon.png b/apps/dashboard/public/assets/wallet-playground/tw-app-icon.png new file mode 100644 index 00000000000..ea0d34c94fa Binary files /dev/null and b/apps/dashboard/public/assets/wallet-playground/tw-app-icon.png differ diff --git a/apps/dashboard/public/assets/wallet-playground/w3w.svg b/apps/dashboard/public/assets/wallet-playground/w3w.svg new file mode 100644 index 00000000000..03375da54da --- /dev/null +++ b/apps/dashboard/public/assets/wallet-playground/w3w.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/dashboard/public/assets/wallet-playground/web3-warriors-app-icon.png b/apps/dashboard/public/assets/wallet-playground/web3-warriors-app-icon.png new file mode 100644 index 00000000000..02b08a0d61f Binary files /dev/null and b/apps/dashboard/public/assets/wallet-playground/web3-warriors-app-icon.png differ diff --git a/apps/dashboard/public/assets/wallet-playground/web3-warriors-splash.png b/apps/dashboard/public/assets/wallet-playground/web3-warriors-splash.png new file mode 100644 index 00000000000..e6ff51f4119 Binary files /dev/null and b/apps/dashboard/public/assets/wallet-playground/web3-warriors-splash.png differ diff --git a/apps/dashboard/public/brand/thirdweb-audited-2.png b/apps/dashboard/public/brand/thirdweb-audited-2.png new file mode 100644 index 00000000000..e01fca99f95 Binary files /dev/null and b/apps/dashboard/public/brand/thirdweb-audited-2.png differ diff --git a/apps/dashboard/public/brand/thirdweb-audited.png b/apps/dashboard/public/brand/thirdweb-audited.png new file mode 100644 index 00000000000..231832e1997 Binary files /dev/null and b/apps/dashboard/public/brand/thirdweb-audited.png differ diff --git a/apps/dashboard/public/brand/thirdweb-brand-dark.png b/apps/dashboard/public/brand/thirdweb-brand-dark.png new file mode 100644 index 00000000000..89a01896c17 Binary files /dev/null and b/apps/dashboard/public/brand/thirdweb-brand-dark.png differ diff --git a/apps/dashboard/public/brand/thirdweb-grey.png b/apps/dashboard/public/brand/thirdweb-grey.png new file mode 100644 index 00000000000..6c0f2af3d0a Binary files /dev/null and b/apps/dashboard/public/brand/thirdweb-grey.png differ diff --git a/apps/dashboard/public/brand/thirdweb-icon.png b/apps/dashboard/public/brand/thirdweb-icon.png new file mode 100644 index 00000000000..258f7ab2045 Binary files /dev/null and b/apps/dashboard/public/brand/thirdweb-icon.png differ diff --git a/apps/dashboard/public/brand/thirdweb-icon.svg b/apps/dashboard/public/brand/thirdweb-icon.svg new file mode 100644 index 00000000000..e49ee9cf872 --- /dev/null +++ b/apps/dashboard/public/brand/thirdweb-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/brand/thirdweb-logo-full.svg b/apps/dashboard/public/brand/thirdweb-logo-full.svg new file mode 100644 index 00000000000..f25535b6ca1 --- /dev/null +++ b/apps/dashboard/public/brand/thirdweb-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/brand/thirdweb-logo-square.png b/apps/dashboard/public/brand/thirdweb-logo-square.png new file mode 100644 index 00000000000..a7724478b9e Binary files /dev/null and b/apps/dashboard/public/brand/thirdweb-logo-square.png differ diff --git a/apps/dashboard/public/brand/thirdweb-wordmark.svg b/apps/dashboard/public/brand/thirdweb-wordmark.svg new file mode 100644 index 00000000000..8eeb4c705d4 --- /dev/null +++ b/apps/dashboard/public/brand/thirdweb-wordmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/early-access-gold.png b/apps/dashboard/public/early-access-gold.png new file mode 100644 index 00000000000..243a81d5abc Binary files /dev/null and b/apps/dashboard/public/early-access-gold.png differ diff --git a/apps/dashboard/public/early-access-silver.png b/apps/dashboard/public/early-access-silver.png new file mode 100644 index 00000000000..2b20eb988c9 Binary files /dev/null and b/apps/dashboard/public/early-access-silver.png differ diff --git a/apps/dashboard/public/example-with-ipfs.csv b/apps/dashboard/public/example-with-ipfs.csv new file mode 100644 index 00000000000..d46ea39a909 --- /dev/null +++ b/apps/dashboard/public/example-with-ipfs.csv @@ -0,0 +1,2 @@ +name,description,image,animation_url,external_url,background_color,youtube_url,additional,properties,can be,added +Token 0 Name,Token 0 Description,ipfs://ipfsHash/0,ipfs://ipfsHash/0,https://thirdweb.com,#0098EE,,every,row,is a ,property diff --git a/apps/dashboard/public/example-with-maps.csv b/apps/dashboard/public/example-with-maps.csv new file mode 100644 index 00000000000..fd1879f1422 --- /dev/null +++ b/apps/dashboard/public/example-with-maps.csv @@ -0,0 +1,4 @@ +name,description,image,animation_url,external_url,background_color,youtube_url,additional,properties,can be,added +Token 0 Name,Token 0 Description,0.png,0.mp4,https://thirdweb.com,#0098EE,,every,row,is a ,property +Token 1 Name,Token 1 Description,0.png,0.mp4,https://thirdweb.com,#0098EE,,every,row,is a ,property +Token 2 Name,Token 2 Description,0.png,0.mp4,https://thirdweb.com,#0098EE,,every,row,is a ,property diff --git a/apps/dashboard/public/example.csv b/apps/dashboard/public/example.csv new file mode 100644 index 00000000000..cae352ddcf2 --- /dev/null +++ b/apps/dashboard/public/example.csv @@ -0,0 +1,2 @@ +name,description,external_url,background_color,youtube_url,additional,properties,can be,added +Token 0 Name,Token 0 Description,https://thirdweb.com,#0098EE,,every,row,is a ,property \ No newline at end of file diff --git a/apps/dashboard/public/example.json b/apps/dashboard/public/example.json new file mode 100644 index 00000000000..c1e21a9ef18 --- /dev/null +++ b/apps/dashboard/public/example.json @@ -0,0 +1,72 @@ +[ + { + "name": "Your Collection #1", + "description": "Remember to replace this description", + "image": "ipfs://NewUriToReplace/1.png", + "attributes": [ + { + "trait_type": "Background", + "value": "Black" + }, + { + "trait_type": "Eyeball", + "value": "White" + }, + { + "trait_type": "Eye color", + "value": "Yellow" + }, + { + "trait_type": "Iris", + "value": "Medium" + }, + { + "trait_type": "Shine", + "value": "Shapes" + }, + { + "trait_type": "Bottom lid", + "value": "Middle" + }, + { + "trait_type": "Top lid", + "value": "High" + } + ] + }, + { + "name": "Your Collection #2", + "description": "Remember to replace this description", + "image": "ipfs://NewUriToReplace/2.png", + "attributes": [ + { + "trait_type": "Background", + "value": "Black" + }, + { + "trait_type": "Eyeball", + "value": "White" + }, + { + "trait_type": "Eye color", + "value": "Red" + }, + { + "trait_type": "Iris", + "value": "Small" + }, + { + "trait_type": "Shine", + "value": "Shapes" + }, + { + "trait_type": "Bottom lid", + "value": "Low" + }, + { + "trait_type": "Top lid", + "value": "Middle" + } + ] + } +] diff --git a/apps/dashboard/public/favicon-16x16.png b/apps/dashboard/public/favicon-16x16.png new file mode 100644 index 00000000000..bcd451b626e Binary files /dev/null and b/apps/dashboard/public/favicon-16x16.png differ diff --git a/apps/dashboard/public/favicon-32x32.png b/apps/dashboard/public/favicon-32x32.png new file mode 100644 index 00000000000..238d9bb7268 Binary files /dev/null and b/apps/dashboard/public/favicon-32x32.png differ diff --git a/apps/dashboard/public/favicon.ico b/apps/dashboard/public/favicon.ico new file mode 100644 index 00000000000..55c8bb8b3da Binary files /dev/null and b/apps/dashboard/public/favicon.ico differ diff --git a/apps/dashboard/public/logos/coinbase-wallet-logo.svg b/apps/dashboard/public/logos/coinbase-wallet-logo.svg new file mode 100644 index 00000000000..cc54004d92e --- /dev/null +++ b/apps/dashboard/public/logos/coinbase-wallet-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/logos/gnosis-logo.svg b/apps/dashboard/public/logos/gnosis-logo.svg new file mode 100644 index 00000000000..52c2914b2e1 --- /dev/null +++ b/apps/dashboard/public/logos/gnosis-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/logos/magic-logo.svg b/apps/dashboard/public/logos/magic-logo.svg new file mode 100644 index 00000000000..c3ef0805b35 --- /dev/null +++ b/apps/dashboard/public/logos/magic-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/logos/metamask-fox.svg b/apps/dashboard/public/logos/metamask-fox.svg new file mode 100644 index 00000000000..a6cffef03d8 --- /dev/null +++ b/apps/dashboard/public/logos/metamask-fox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dashboard/public/logos/paper-logo-icon.svg b/apps/dashboard/public/logos/paper-logo-icon.svg new file mode 100644 index 00000000000..652015d141d --- /dev/null +++ b/apps/dashboard/public/logos/paper-logo-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/dashboard/public/logos/wallet.png b/apps/dashboard/public/logos/wallet.png new file mode 100644 index 00000000000..8297fc14389 Binary files /dev/null and b/apps/dashboard/public/logos/wallet.png differ diff --git a/apps/dashboard/public/logos/walletconnect-logo.svg b/apps/dashboard/public/logos/walletconnect-logo.svg new file mode 100644 index 00000000000..87c20c0eaee --- /dev/null +++ b/apps/dashboard/public/logos/walletconnect-logo.svg @@ -0,0 +1 @@ +WalletConnectCreated with Sketch. \ No newline at end of file diff --git a/apps/dashboard/public/portal.png b/apps/dashboard/public/portal.png new file mode 100644 index 00000000000..02eab680ef2 Binary files /dev/null and b/apps/dashboard/public/portal.png differ diff --git a/apps/dashboard/public/robots.txt b/apps/dashboard/public/robots.txt new file mode 100644 index 00000000000..2fd4519be71 --- /dev/null +++ b/apps/dashboard/public/robots.txt @@ -0,0 +1,9 @@ +# * +User-agent: * +Allow: / + +# Host +Host: https://thirdweb.com + +# Sitemaps +Sitemap: https://thirdweb.com/sitemap.xml diff --git a/apps/dashboard/public/snapshot-with-maxclaimable.csv b/apps/dashboard/public/snapshot-with-maxclaimable.csv new file mode 100644 index 00000000000..6db267cebd0 --- /dev/null +++ b/apps/dashboard/public/snapshot-with-maxclaimable.csv @@ -0,0 +1,3 @@ +address,maxClaimable +0x0000000000000000000000000000000000000000,2 +0x000000000000000000000000000000000000dEaD,5 \ No newline at end of file diff --git a/apps/dashboard/public/snapshot-with-overrides.csv b/apps/dashboard/public/snapshot-with-overrides.csv new file mode 100644 index 00000000000..29c581674f2 --- /dev/null +++ b/apps/dashboard/public/snapshot-with-overrides.csv @@ -0,0 +1,3 @@ +address,maxClaimable,price,currencyAddress +0x0000000000000000000000000000000000000000,2,0.1,0x0000000000000000000000000000000000000000 +0x000000000000000000000000000000000000dEaD,5,2.5,0x0000000000000000000000000000000000000000 \ No newline at end of file diff --git a/apps/dashboard/public/snapshot.csv b/apps/dashboard/public/snapshot.csv new file mode 100644 index 00000000000..7a2c24783ce --- /dev/null +++ b/apps/dashboard/public/snapshot.csv @@ -0,0 +1,3 @@ +address +0x0000000000000000000000000000000000000000 +0x000000000000000000000000000000000000dEaD \ No newline at end of file diff --git a/apps/dashboard/public/thirdweb-explore.png b/apps/dashboard/public/thirdweb-explore.png new file mode 100644 index 00000000000..96968610f4c Binary files /dev/null and b/apps/dashboard/public/thirdweb-explore.png differ diff --git a/apps/dashboard/public/thirdweb-the-complete-web3-development-platform.png b/apps/dashboard/public/thirdweb-the-complete-web3-development-platform.png new file mode 100644 index 00000000000..3f4150ad816 Binary files /dev/null and b/apps/dashboard/public/thirdweb-the-complete-web3-development-platform.png differ diff --git a/apps/dashboard/public/thirdweb.png b/apps/dashboard/public/thirdweb.png new file mode 100644 index 00000000000..7e421597040 Binary files /dev/null and b/apps/dashboard/public/thirdweb.png differ diff --git a/apps/dashboard/public/thirdweb_Privacy_Policy_May_2022.pdf b/apps/dashboard/public/thirdweb_Privacy_Policy_May_2022.pdf new file mode 100644 index 00000000000..3f1d41a6c54 Binary files /dev/null and b/apps/dashboard/public/thirdweb_Privacy_Policy_May_2022.pdf differ diff --git a/apps/dashboard/public/thirdwebxcoinbase.png b/apps/dashboard/public/thirdwebxcoinbase.png new file mode 100644 index 00000000000..5d31f37eb9d Binary files /dev/null and b/apps/dashboard/public/thirdwebxcoinbase.png differ diff --git a/apps/dashboard/public/thirdwebxshopify.png b/apps/dashboard/public/thirdwebxshopify.png new file mode 100644 index 00000000000..381e5f4e3e7 Binary files /dev/null and b/apps/dashboard/public/thirdwebxshopify.png differ diff --git a/apps/dashboard/public/thirdwebxsolana.png b/apps/dashboard/public/thirdwebxsolana.png new file mode 100644 index 00000000000..e7ca0429f81 Binary files /dev/null and b/apps/dashboard/public/thirdwebxsolana.png differ diff --git a/apps/dashboard/redirects.js b/apps/dashboard/redirects.js new file mode 100644 index 00000000000..24f3bdb3d1c --- /dev/null +++ b/apps/dashboard/redirects.js @@ -0,0 +1,276 @@ +/** @type {import('next').NextConfig['redirects']} */ +function redirects() { + return [ + { + source: "/portal/:match*", + destination: "https://portal.thirdweb.com/:match*", + permanent: true, + }, + { + source: "/solutions/appchain-api", + destination: "/solutions/chains", + permanent: true, + }, + { + source: "/dashboard/publish/:path*", + destination: "/contracts/publish/:path*", + permanent: false, + }, + { + source: "/dashboard/mumbai/publish/:path*", + destination: "/contracts/publish/:path*", + permanent: false, + }, + { + source: "/contracts/release", + destination: "/contracts/publish", + permanent: false, + }, + { + source: "/contracts/release/:path*", + destination: "/contracts/publish/:path*", + permanent: false, + }, + { + source: "/release", + destination: "/publish", + permanent: false, + }, + { + source: "/release/:path*", + destination: "/publish/:path*", + permanent: false, + }, + { + source: "/authentication", + destination: "/auth", + permanent: false, + }, + { + source: "/checkout", + destination: "/connect", + permanent: false, + }, + { + source: "/extensions", + destination: "/build", + permanent: false, + }, + { + source: "/contractkit", + destination: "/build", + permanent: true, + }, + // old (deprecated) routes + { + source: + "/:network/(edition|nft-collection|token|nft-drop|signature-drop|edition-drop|token-drop|vote)/:address", + destination: "/:network/:address", + permanent: false, + }, + // prebuilt contract deploys + { + source: "/contracts/new/:slug*", + destination: "/explore", + permanent: false, + }, + // deployer to non-deployer url + // handled directly in SSR as well + { + source: "/deployer.thirdweb.eth", + destination: "/thirdweb.eth", + permanent: true, + }, + { + source: "/deployer.thirdweb.eth/:path*", + destination: "/thirdweb.eth/:path*", + permanent: true, + }, + { + source: "/chains", + destination: "/chainlist", + permanent: true, + }, + // polygon zkevm beta to non-beta + { + source: "/polygon-zkevm-beta", + destination: "/polygon-zkevm", + permanent: false, + }, + { + source: "/settings", + destination: "/dashboard/settings/api-keys", + permanent: false, + }, + // backwards compat: page moved to pages/settings/api-key + { + source: "/dashboard/api-keys", + destination: "/dashboard/settings/api-keys", + permanent: false, + }, + // backwards compat: page moved to pages/settings/devices + { + source: "/dashboard/settings/account", + destination: "/dashboard/settings/devices", + permanent: false, + }, + { + source: "/template/nft-drop", + destination: "/template/erc721", + permanent: false, + }, + { + source: "/abuse", + destination: "https://forms.gle/v9UJtHbVw8fXypcd7", + permanent: false, + }, + { + source: "/create-api-key", + destination: "/dashboard/settings/api-keys", + permanent: false, + }, + { + source: "/dashboard/settings", + destination: "/dashboard/settings/api-keys", + permanent: false, + }, + { + source: "/dashboard/connect", + destination: "/dashboard/connect/playground", + permanent: false, + }, + { + source: "/dashboard/wallet", + destination: "/dashboard/connect/playground", + permanent: false, + }, + { + source: "/dashboard/rpc", + destination: "/dashboard/infrastructure/rpc-edge", + permanent: false, + }, + { + source: "/dashboard/storage", + destination: "/dashboard/infrastructure/storage", + permanent: false, + }, + { + source: "/smart-wallet", + destination: "/account-abstraction", + permanent: false, + }, + { + source: "/dashboard/published", + destination: "/dashboard/publish", + permanent: false, + }, + { + source: "/dashboard/wallets", + destination: "/dashboard/connect/playground", + permanent: false, + }, + { + source: "/dashboard/wallets/analytics", + destination: "/dashboard/connect/analytics", + permanent: false, + }, + { + source: "/dashboard/wallets/embedded", + destination: "/dashboard/connect/embedded-wallets", + permanent: false, + }, + { + source: "/dashboard/wallets/smart-wallet", + destination: "/dashboard/connect/account-abstraction", + permanent: false, + }, + { + source: "/dashboard/wallets/connect", + destination: "/dashboard/connect/playground", + permanent: false, + }, + { + source: "/dashboard/infrastructure", + destination: "/dashboard/settings/storage", + permanent: false, + }, + { + source: "/dashboard/infrastructure/storage", + destination: "/dashboard/settings/storage", + permanent: false, + }, + { + source: "/dashboard/infrastructure/rpc-edge", + destination: "/chainlist", + permanent: false, + }, + { + source: "/dashboard/contracts", + destination: "/dashboard/contracts/deploy", + permanent: false, + }, + { + source: "/solidity-sdk", + destination: "/build", + permanent: false, + }, + { + source: "/connect-wallet", + destination: "/connect", + permanent: false, + }, + { + source: "/wallet-sdk", + destination: "https://portal.thirdweb.com/wallet-sdk/latest", + permanent: false, + }, + { + source: "/solutions/commerce", + destination: "/solutions/loyalty", + permanent: false, + }, + { + source: "/hackathon/base-consumer-crypto", + destination: "/hackathon/consumer-crypto", + permanent: false, + }, + { + source: "/bear-market-airdrop", + destination: "/", + permanent: false, + }, + { + source: "/drops/optimism", + destination: "/optimism", + permanent: false, + }, + { + source: "/dashboard/payments/settings", + destination: "/dashboard/connect/pay?tab=checkouts", + permanent: false, + }, + { + source: "/dashboard/payments/contracts", + destination: "/dashboard/connect/pay?tab=checkouts", + permanent: false, + }, + // Redirecting as ambassadors lives in community now + { + source: "/ambassadors", + destination: "/community/ambassadors", + permanent: false, + }, + { + source: "/dashboard/connect/embedded-wallets", + destination: "/dashboard/connect/in-app-wallets", + permanent: false, + }, + { + source: "/embedded-wallets", + destination: "/in-app-wallets", + permanent: false, + }, + ]; +} + +module.exports = redirects; diff --git a/apps/dashboard/sentry.client.config.ts b/apps/dashboard/sentry.client.config.ts new file mode 100644 index 00000000000..aa8b26ff8fa --- /dev/null +++ b/apps/dashboard/sentry.client.config.ts @@ -0,0 +1,97 @@ +// This file configures the initialization of Sentry on the client. +// The config you add here will be used whenever a users loads a page in their browser. +// https://docs.sentry.io/platforms/javascript/guides/nextjs/ + +import * as Sentry from "@sentry/nextjs"; + +Sentry.init({ + dsn: "https://8813f5d93c8c4aa89eda86816f0b1bbf@o1378374.ingest.sentry.io/6690186", + + // Adjust this value in production, or use tracesSampler for greater control + tracesSampleRate: 0.1, + + // Setting this option to true will print useful information to the console while you're setting up Sentry. + debug: false, + + replaysOnErrorSampleRate: 1.0, + + // This sets the sample rate to be 10%. You may want this to be 100% while + // in development and sample at a lower rate in production + replaysSessionSampleRate: 0.1, + + // You can remove this option if you're not planning to use the Sentry Session Replay feature: + integrations: [ + Sentry.replayIntegration({ + // Additional Replay configuration goes in here, for example: + maskAllText: true, + blockAllMedia: true, + }), + ], + ignoreErrors: [ + // Random plugins/extensions + "top.GLOBALS", + // See: http://blog.errorception.com/2012/03/tale-of-unfindable-js-error.html + "originalCreateNotification", + "canvas.contentDocument", + "MyApp_RemoveAllHighlights", + "http://tt.epicplay.com", + "Can't find variable: ZiteReader", + "jigsaw is not defined", + "ComboSearch is not defined", + "http://loading.retry.widdit.com/", + "atomicFindClose", + // Facebook borked + "fb_xd_fragment", + // ISP "optimizing" proxy - `Cache-Control: no-transform` seems to reduce this. (thanks @acdha) + // See http://stackoverflow.com/questions/4113268/how-to-stop-javascript-injection-from-vodafone-proxy + "bmi_SafeAddOnload", + "EBCallBackMessageReceived", + // See http://toolbar.conduit.com/Developer/HtmlAndGadget/Methods/JSInjection.aspx + "conduitPage", + // Avast extension error + "_avast_submit", + // Common non-actionable errors + "rejected transaction", + "User closed modal", + "Loading chunk", + "Failed to execute '", + "NetworkError when attempting to fetch resource.", + "googlefc is not defined", + "__cmp is not defined", + "Cannot read properties of undefined (reading 'cmp')", + "Cannot read properties of undefined (reading 'outputCurrentConfiguration')", + "apstagLOADED is not defined", + "moat_px is not defined", + "window.ReactNativeWebView.postMessage is not a function", + "_reportEvent is not defined", + "requestAnimationFrame is not defined", + "window.requestAnimationFrame is not a function", + "tronLink.setAddress is not a function", + // benign errors + "ResizeObserver loop limit exceeded", + // cannot do anything with these errors + "Non-Error promise rejection captured", + ], + denyUrls: [ + // Google Adsense + /pagead\/js/i, + // Facebook flakiness + /graph\.facebook\.com/i, + // Facebook blocked + /connect\.facebook\.net\/en_US\/all\.js/i, + // Woopra flakiness + /eatdifferent\.com\.woopra-ns\.com/i, + /static\.woopra\.com\/js\/woopra\.js/i, + // Chrome extensions + /extensions\//i, + /^chrome:\/\//i, + // Other plugins + // Cacaoweb + /127\.0\.0\.1:4001\/isrunning/i, + /webappstoolbarba\.texthelp\.com\//i, + /metrics\.itunes\.apple\.com\.edgesuite\.net\//i, + // injected (extensions) + /inject/i, + ], + allowUrls: [/thirdweb-dev\.com/i, /thirdweb\.com/, /thirdweb-preview\.com/], +}); diff --git a/apps/dashboard/src/@/components/color-mode-toggle.tsx b/apps/dashboard/src/@/components/color-mode-toggle.tsx new file mode 100644 index 00000000000..fa27f0a82ca --- /dev/null +++ b/apps/dashboard/src/@/components/color-mode-toggle.tsx @@ -0,0 +1,31 @@ +"use client"; + +import * as React from "react"; +import { Moon, Sun } from "lucide-react"; +import { useTheme } from "next-themes"; +import { Button } from "@/components/ui/button"; +import { ClientOnly } from "../../components/ClientOnly/ClientOnly"; +import { Skeleton } from "./ui/skeleton"; + +export function ColorModeToggle() { + const { setTheme, theme } = useTheme(); + + return ( + + ); +} diff --git a/apps/dashboard/src/@/components/theme-provider.tsx b/apps/dashboard/src/@/components/theme-provider.tsx new file mode 100644 index 00000000000..b0ff2660c67 --- /dev/null +++ b/apps/dashboard/src/@/components/theme-provider.tsx @@ -0,0 +1,9 @@ +"use client"; + +import * as React from "react"; +import { ThemeProvider as NextThemesProvider } from "next-themes"; +import { type ThemeProviderProps } from "next-themes/dist/types"; + +export function ThemeProvider({ children, ...props }: ThemeProviderProps) { + return {children}; +} diff --git a/apps/dashboard/src/@/components/ui/CopyButton.tsx b/apps/dashboard/src/@/components/ui/CopyButton.tsx new file mode 100644 index 00000000000..5f29473a9a6 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/CopyButton.tsx @@ -0,0 +1,39 @@ +"use client"; + +import { CheckIcon, CopyIcon } from "lucide-react"; +import { Button } from "./button"; +import { useState } from "react"; +import { cn } from "../../lib/utils"; +import { ToolTipLabel } from "./tooltip"; + +export function CopyButton(props: { + text: string; + className?: string; + iconClassName?: string; +}) { + const [isCopied, setIsCopied] = useState(false); + return ( + + + + ); +} diff --git a/apps/dashboard/src/@/components/ui/ScrollShadow/ScrollShadow.module.css b/apps/dashboard/src/@/components/ui/ScrollShadow/ScrollShadow.module.css new file mode 100644 index 00000000000..9ca62735248 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/ScrollShadow/ScrollShadow.module.css @@ -0,0 +1,40 @@ +.scrollShadowY { + position: absolute; + left: 0; + z-index: 100; + width: 100%; + height: 40px; + --shadow: hsl(var(--background)); + pointer-events: none; +} + +.scrollShadowX { + position: absolute; + top: 0; + z-index: 100; + width: 40px; + height: 100%; + --shadow: hsl(var(--background)); + pointer-events: none; +} + +.scrollShadowTop { + top: 0; + background: linear-gradient(to bottom, var(--shadow), transparent); + opacity: 0; +} + +.scrollShadowBottom { + bottom: 0; + background: linear-gradient(to top, var(--shadow), transparent); +} + +.scrollShadowLeft { + left: 0; + background: linear-gradient(to right, var(--shadow), transparent); +} + +.scrollShadowRight { + right: 0; + background: linear-gradient(to left, var(--shadow), transparent); +} diff --git a/apps/dashboard/src/@/components/ui/ScrollShadow/ScrollShadow.tsx b/apps/dashboard/src/@/components/ui/ScrollShadow/ScrollShadow.tsx new file mode 100644 index 00000000000..08634f17543 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/ScrollShadow/ScrollShadow.tsx @@ -0,0 +1,116 @@ +/* eslint-disable react/forbid-dom-props */ +"use client"; + +import { cn } from "@/lib/utils"; +import { useLayoutEffect, useRef } from "react"; +import styles from "./ScrollShadow.module.css"; + +export function ScrollShadow(props: { + children: React.ReactNode; + className?: string; + scrollableClassName?: string; +}) { + const scrollableEl = useRef(null); + const shadowTopEl = useRef(null); + const shadowBottomEl = useRef(null); + const shadowLeftEl = useRef(null); + const shadowRightEl = useRef(null); + const wrapperEl = useRef(null); + + useLayoutEffect(() => { + const content = scrollableEl.current; + const shadowTop = shadowTopEl.current; + const shadowBottom = shadowBottomEl.current; + const wrapper = wrapperEl.current; + const shadowLeft = shadowLeftEl.current; + const shadowRight = shadowRightEl.current; + + if (!content || !shadowTop || !shadowBottom || !wrapper) { + return; + } + + const contentScrollHeight = content.scrollHeight - wrapper.offsetHeight; + const contentScrollWidth = content.scrollWidth - wrapper.offsetWidth; + + function handleScroll() { + if ( + !content || + !shadowTop || + !shadowBottom || + !shadowLeft || + !shadowRight + ) { + return; + } + + if (contentScrollHeight > 10) { + const currentScroll = content.scrollTop / contentScrollHeight; + shadowTop.style.opacity = `${currentScroll}`; + shadowBottom.style.opacity = `${1 - currentScroll}`; + } else { + shadowTop.style.opacity = "0"; + shadowBottom.style.opacity = "0"; + } + + if (contentScrollWidth > 10) { + const currentScrollX = content.scrollLeft / contentScrollWidth; + shadowLeft.style.opacity = `${currentScrollX}`; + shadowRight.style.opacity = `${1 - currentScrollX}`; + } else { + shadowLeft.style.opacity = "0"; + shadowRight.style.opacity = "0"; + } + } + + handleScroll(); + content.addEventListener("scroll", handleScroll); + return () => { + content.removeEventListener("scroll", handleScroll); + }; + }, []); + + return ( +
+
+
+
+
+
+ {props.children} +
+
+ ); +} diff --git a/apps/dashboard/src/@/components/ui/Spinner/Spinner.module.css b/apps/dashboard/src/@/components/ui/Spinner/Spinner.module.css new file mode 100644 index 00000000000..0adc57ba75e --- /dev/null +++ b/apps/dashboard/src/@/components/ui/Spinner/Spinner.module.css @@ -0,0 +1,39 @@ +.loader { + border-radius: 50%; + position: relative; + animation: rotate 1s linear infinite; + animation: rotate 2s linear infinite; +} + +.loader circle { + content: ""; + box-sizing: border-box; + position: absolute; + inset: 0px; + border-radius: 50%; + border: 4px solid #fff; + animation: prixClipFix 2s linear infinite; + stroke-linecap: round; + animation: dash 1.5s ease-in-out infinite; +} + +@keyframes rotate { + 100% { + transform: rotate(360deg); + } +} + +@keyframes dash { + 0% { + stroke-dasharray: 1, 150; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -35; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -124; + } +} diff --git a/apps/dashboard/src/@/components/ui/Spinner/Spinner.tsx b/apps/dashboard/src/@/components/ui/Spinner/Spinner.tsx new file mode 100644 index 00000000000..d50e46b188e --- /dev/null +++ b/apps/dashboard/src/@/components/ui/Spinner/Spinner.tsx @@ -0,0 +1,19 @@ +import style from "./Spinner.module.css"; + +export function Spinner(props: { className?: string }) { + return ( + + + + ); +} diff --git a/apps/dashboard/src/@/components/ui/badge.tsx b/apps/dashboard/src/@/components/ui/badge.tsx new file mode 100644 index 00000000000..d3d5d6040f6 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/badge.tsx @@ -0,0 +1,36 @@ +import * as React from "react"; +import { cva, type VariantProps } from "class-variance-authority"; + +import { cn } from "@/lib/utils"; + +const badgeVariants = cva( + "inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2", + { + variants: { + variant: { + default: + "border-transparent bg-primary text-primary-foreground hover:bg-primary/80", + secondary: + "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80", + destructive: + "border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80", + outline: "text-foreground", + }, + }, + defaultVariants: { + variant: "default", + }, + }, +); + +export interface BadgeProps + extends React.HTMLAttributes, + VariantProps {} + +function Badge({ className, variant, ...props }: BadgeProps) { + return ( +
+ ); +} + +export { Badge, badgeVariants }; diff --git a/apps/dashboard/src/@/components/ui/button.tsx b/apps/dashboard/src/@/components/ui/button.tsx new file mode 100644 index 00000000000..52769f69785 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/button.tsx @@ -0,0 +1,58 @@ +import * as React from "react"; +import { Slot } from "@radix-ui/react-slot"; +import { cva, type VariantProps } from "class-variance-authority"; + +import { cn } from "@/lib/utils"; + +const buttonVariants = cva( + "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", + { + variants: { + variant: { + primary: + "bg-primary text-primary-foreground hover:bg-primary/90 text-semibold", + default: "bg-foreground text-background hover:bg-foreground/90", + destructive: + "bg-destructive text-destructive-foreground hover:bg-destructive/90 text-semibold", + outline: + "border border-input bg-transaprent hover:bg-accent hover:text-accent-foreground text-semibold", + secondary: + "bg-secondary text-secondary-foreground hover:bg-secondary/80 text-semibold", + ghost: "hover:bg-accent hover:text-accent-foreground text-semibold", + link: "text-primary underline-offset-4 hover:underline text-semibold", + }, + size: { + default: "h-10 px-4 py-2", + sm: "h-9 rounded-md px-3", + lg: "h-11 rounded-md px-8", + icon: "h-10 w-10", + }, + }, + defaultVariants: { + variant: "default", + size: "default", + }, + }, +); + +export interface ButtonProps + extends React.ButtonHTMLAttributes, + VariantProps { + asChild?: boolean; +} + +const Button = React.forwardRef( + ({ className, variant, size, asChild = false, ...props }, ref) => { + const Comp = asChild ? Slot : "button"; + return ( + + ); + }, +); +Button.displayName = "Button"; + +export { Button }; diff --git a/apps/dashboard/src/@/components/ui/card.tsx b/apps/dashboard/src/@/components/ui/card.tsx new file mode 100644 index 00000000000..0e4aa27817a --- /dev/null +++ b/apps/dashboard/src/@/components/ui/card.tsx @@ -0,0 +1,82 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +const Card = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)); +Card.displayName = "Card"; + +const CardHeader = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)); +CardHeader.displayName = "CardHeader"; + +const CardTitle = React.forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)); +CardTitle.displayName = "CardTitle"; + +const CardDescription = React.forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)); +CardDescription.displayName = "CardDescription"; + +const CardContent = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)); +CardContent.displayName = "CardContent"; + +const CardFooter = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)); +CardFooter.displayName = "CardFooter"; + +export { + Card, + CardHeader, + CardFooter, + CardTitle, + CardDescription, + CardContent, +}; diff --git a/apps/dashboard/src/@/components/ui/checkbox.tsx b/apps/dashboard/src/@/components/ui/checkbox.tsx new file mode 100644 index 00000000000..d467de838d6 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/checkbox.tsx @@ -0,0 +1,30 @@ +"use client"; + +import * as React from "react"; +import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; +import { Check } from "lucide-react"; + +import { cn } from "@/lib/utils"; + +const Checkbox = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, ...props }, ref) => ( + + + + + +)); +Checkbox.displayName = CheckboxPrimitive.Root.displayName; + +export { Checkbox }; diff --git a/apps/dashboard/src/@/components/ui/input.tsx b/apps/dashboard/src/@/components/ui/input.tsx new file mode 100644 index 00000000000..9d631e7fa36 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/input.tsx @@ -0,0 +1,25 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +export interface InputProps + extends React.InputHTMLAttributes {} + +const Input = React.forwardRef( + ({ className, type, ...props }, ref) => { + return ( + + ); + }, +); +Input.displayName = "Input"; + +export { Input }; diff --git a/apps/dashboard/src/@/components/ui/label.tsx b/apps/dashboard/src/@/components/ui/label.tsx new file mode 100644 index 00000000000..84f8b0c7075 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/label.tsx @@ -0,0 +1,26 @@ +"use client"; + +import * as React from "react"; +import * as LabelPrimitive from "@radix-ui/react-label"; +import { cva, type VariantProps } from "class-variance-authority"; + +import { cn } from "@/lib/utils"; + +const labelVariants = cva( + "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70", +); + +const Label = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef & + VariantProps +>(({ className, ...props }, ref) => ( + +)); +Label.displayName = LabelPrimitive.Root.displayName; + +export { Label }; diff --git a/apps/dashboard/src/@/components/ui/pagination.tsx b/apps/dashboard/src/@/components/ui/pagination.tsx new file mode 100644 index 00000000000..e093f258876 --- /dev/null +++ b/apps/dashboard/src/@/components/ui/pagination.tsx @@ -0,0 +1,115 @@ +import * as React from "react"; +import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react"; + +import { cn } from "@/lib/utils"; +import { Button, ButtonProps } from "@/components/ui/button"; + +const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => ( +
+ + {/* Active line */} +
+ + {/* Bottom line */} +
+
+ ); +} diff --git a/apps/dashboard/src/@/components/ui/tooltip.tsx b/apps/dashboard/src/@/components/ui/tooltip.tsx new file mode 100644 index 00000000000..42697365acf --- /dev/null +++ b/apps/dashboard/src/@/components/ui/tooltip.tsx @@ -0,0 +1,52 @@ +"use client"; + +import * as React from "react"; +import * as TooltipPrimitive from "@radix-ui/react-tooltip"; + +import { cn } from "@/lib/utils"; + +const TooltipProvider = TooltipPrimitive.Provider; + +const Tooltip = TooltipPrimitive.Root; + +const TooltipTrigger = TooltipPrimitive.Trigger; + +const TooltipContent = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, sideOffset = 4, ...props }, ref) => ( + +)); +TooltipContent.displayName = TooltipPrimitive.Content.displayName; + +export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }; + +export function ToolTipLabel(props: { + children: React.ReactNode; + label: string; + rightIcon?: React.ReactNode; + leftIcon?: React.ReactNode; +}) { + return ( + + + {props.children} + +
+ {props.leftIcon} + {props.label} + {props.rightIcon} +
+
+
+
+ ); +} diff --git a/apps/dashboard/src/@/constants/client.ts b/apps/dashboard/src/@/constants/client.ts new file mode 100644 index 00000000000..b6b42b08294 --- /dev/null +++ b/apps/dashboard/src/@/constants/client.ts @@ -0,0 +1,11 @@ +import { createThirdwebClient } from "thirdweb"; +import { DASHBOARD_THIRDWEB_CLIENT_ID, IPFS_GATEWAY_URL } from "./env"; + +export const thirdwebClient = createThirdwebClient({ + clientId: DASHBOARD_THIRDWEB_CLIENT_ID, + config: { + storage: { + gatewayUrl: IPFS_GATEWAY_URL, + }, + }, +}); diff --git a/apps/dashboard/src/@/constants/env.ts b/apps/dashboard/src/@/constants/env.ts new file mode 100644 index 00000000000..b0d7b24bb2c --- /dev/null +++ b/apps/dashboard/src/@/constants/env.ts @@ -0,0 +1,9 @@ +export const DASHBOARD_THIRDWEB_CLIENT_ID = + process.env.NEXT_PUBLIC_DASHBOARD_CLIENT_ID || ""; + +export const DASHBOARD_THIRDWEB_SECRET_KEY = + process.env.DASHBOARD_SECRET_KEY || ""; + +export const IPFS_GATEWAY_URL = + (process.env.NEXT_PUBLIC_IPFS_GATEWAY_URL as string) || + "https://{clientId}.ipfscdn.io/ipfs/{cid}/{path}"; diff --git a/apps/dashboard/src/@/lib/utils.ts b/apps/dashboard/src/@/lib/utils.ts new file mode 100644 index 00000000000..365058cebd7 --- /dev/null +++ b/apps/dashboard/src/@/lib/utils.ts @@ -0,0 +1,6 @@ +import { type ClassValue, clsx } from "clsx"; +import { twMerge } from "tailwind-merge"; + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)); +} diff --git a/apps/dashboard/src/@/styles/globals.css b/apps/dashboard/src/@/styles/globals.css new file mode 100644 index 00000000000..96575e7c81b --- /dev/null +++ b/apps/dashboard/src/@/styles/globals.css @@ -0,0 +1,65 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + :root { + --background: 0 0% 91.5%; + --foreground: 0 0% 3.9%; + --card: 0 0% 97%; + --card-foreground: 0 0% 3.9%; + --popover: 0 0% 100%; + --popover-foreground: 240 10% 3.9%; + --primary: 221.21deg 83.19% 53.33%; + --primary-foreground: 221.21deg 83.19% 53.33%; + --secondary: 0 0% 94%; + --secondary-foreground: 0 0% 30%; + --muted: 0 0% 96%; + --muted-foreground: 0 0% 40%; + --accent: 0 0% 100%; + --accent-foreground: 0 0% 9%; + --destructive: 0 84.2% 60.2%; + --success-foreground: 142.09 70.56% 35.29%; + --destructive-foreground: 0 84.24% 60.2%; + --border: 0 0% 80%; + --input: 0 0% 80%; + --ring: 215.88 100% 60%; + --radius: 0.5rem; + --inverted: var(--foreground); + --inverted-foreground: var(--background); + --warning-foreground: 40.61deg 96.12% 40.4%; + } + + .dark { + --background: 0 0% 4.5%; + --foreground: 0 0% 98%; + --card: 0 0% 6%; + --card-foreground: 0 0% 98%; + --popover: 0 0% 3.9%; + --popover-foreground: 0 0% 98%; + --primary: 215.88 100% 60%; + --primary-foreground: 215.88 100% 65%; + --secondary: 0 0% 6%; + --secondary-foreground: 0 0% 75%; + --muted: 0 0% 8%; + --muted-foreground: 0 0% 63.9%; + --accent: 0 0% 12%; + --accent-foreground: 0 0% 98%; + --destructive: 0 62.8% 30.6%; + --destructive-foreground: 0 84.24% 60.2%; + --success-foreground: 156.2 71.6% 66.86%; + --border: 0 0% 14.9%; + --input: 0 0% 14.9%; + --ring: 215.88 100% 60%; + --warning-foreground: 45.4deg 93.39% 47.45%; + } +} + +@layer base { + * { + @apply border-border; + } + body { + @apply bg-background text-foreground; + } +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/cache-keys.ts b/apps/dashboard/src/@3rdweb-sdk/react/cache-keys.ts new file mode 100644 index 00000000000..f807d79f75a --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/cache-keys.ts @@ -0,0 +1,185 @@ +import type { ContractType } from "@thirdweb-dev/sdk"; +import { constants } from "ethers"; + +export const networkKeys = { + all: ["network"] as const, + chain: (chainId?: number) => [...networkKeys.all, chainId] as const, + multiChainRegistry: ["multi-chain-registry"] as const, +}; + +export const accountKeys = { + all: ["account"] as const, + wallet: (walletAddress: string) => + [...accountKeys.all, walletAddress] as const, + me: (walletAddress: string) => + [...accountKeys.wallet(walletAddress), "me"] as const, + usage: (walletAddress: string) => + [...accountKeys.wallet(walletAddress), "usage"] as const, + walletStats: (walletAddress: string, clientId: string) => + [...accountKeys.wallet(walletAddress), "wallets", clientId] as const, + credits: (walletAddress: string) => + [...accountKeys.wallet(walletAddress), "credits"] as const, + billingSession: (walletAddress: string) => + [...accountKeys.wallet(walletAddress), "billing-session"] as const, +}; + +export const apiKeys = { + all: ["api"] as const, + wallet: (walletAddress: string) => [...apiKeys.all, walletAddress] as const, + keys: (walletAddress: string) => + [...apiKeys.wallet(walletAddress), "keys"] as const, + key: (id: string, walletAddress: string) => + [...apiKeys.keys(walletAddress), id] as const, +}; + +export const authorizedWallets = { + all: ["authorizedWallets"] as const, + wallet: (walletAddress: string) => + [...authorizedWallets.all, walletAddress] as const, + authorizedWallets: (walletAddress: string) => + [...authorizedWallets.wallet(walletAddress), "authorizedWallets"] as const, +}; + +export const embeddedWalletsKeys = { + all: ["embeddedWallets"] as const, + wallet: (walletAddress: string) => + [...embeddedWalletsKeys.all, walletAddress] as const, + embeddedWallets: (walletAddress: string, clientId: string | undefined) => + [...embeddedWalletsKeys.wallet(walletAddress), clientId] as const, +}; + +export const engineKeys = { + all: ["engine"] as const, + instances: (address: string) => + [...engineKeys.all, address, "instances"] as const, + backendWallets: (instance: string) => + [...engineKeys.all, instance, "backendWallets"] as const, + transactions: (instance: string) => + [...engineKeys.all, instance, "transactions"] as const, + permissions: (instance: string) => + [...engineKeys.all, instance, "permissions"] as const, + accessTokens: (instance: string) => + [...engineKeys.all, instance, "accessTokens"] as const, + keypairs: (instance: string) => + [...engineKeys.all, instance, "keypairs"] as const, + relayers: (instance: string) => + [...engineKeys.all, instance, "relayers"] as const, + webhooks: (instance: string) => + [...engineKeys.all, instance, "webhooks"] as const, + webhookEventTypes: (instance: string) => + [...engineKeys.all, instance, "webhookEventTypes"] as const, + walletConfig: (instance: string) => + [...engineKeys.all, instance, "walletConfig"] as const, + backendWallet: (address: string, chainId: number) => + ["backendWallet", address, chainId] as const, + backendWalletBalance: (address: string, chainId: number) => + [...engineKeys.backendWallet(address, chainId), "balance"] as const, + corsUrls: (instance: string) => + [...engineKeys.all, instance, "corsUrls"] as const, + contractSubscriptions: (instance: string) => + [...engineKeys.all, instance, "contractSubscriptions"] as const, + contractSubscriptionsLastBlock: (instance: string, chainId: number) => + [ + ...engineKeys.all, + instance, + "contractSubscriptionsLastBlock", + chainId, + ] as const, + health: (instance: string) => + [...engineKeys.all, instance, "health"] as const, + latestVersion: () => [...engineKeys.all, "latestVersion"] as const, + metrics: (engineId: string) => + [...engineKeys.all, engineId, "metrics"] as const, +}; + +export const paymentsKeys = { + all: ["payments"] as const, + kybStatus: (walletAddress: string) => + [...paymentsKeys.all, "kybStatus", walletAddress] as const, + kycStatus: (walletAddress: string) => + [...paymentsKeys.all, "kycStatus", walletAddress] as const, + verificationSession: (walletAddress: string) => + [...paymentsKeys.all, "verificationSession", walletAddress] as const, + contracts: (walletAddress: string) => + [...paymentsKeys.all, "contracts", walletAddress] as const, + contractByAddressAndChain: (contractAddress: string, chainId: number) => + [ + ...paymentsKeys.all, + "contractByAddressAndChain", + contractAddress, + chainId, + ] as const, + checkouts: (contractAddress: string, walletAddress: string) => + [...paymentsKeys.all, "checkouts", contractAddress, walletAddress] as const, + detailedAnalytics: (checkoutId: string) => + [...paymentsKeys.all, "checkout", checkoutId] as const, + settings: (paymentsSellerId: string) => + [...paymentsKeys.all, "settings", paymentsSellerId] as const, + webhooks: (paymentsSellerId: string) => + [...paymentsKeys.all, "webhooks", paymentsSellerId] as const, + webhookSecret: (paymentsSellerId: string) => + [...paymentsKeys.all, "webhooks", "secretKey", paymentsSellerId] as const, +}; + +export const contractKeys = { + all: ["contract"] as const, + lists: () => [...contractKeys.all, "list"] as const, + list: (address = constants.AddressZero) => + [...contractKeys.lists(), address] as const, + listWithFilters: ( + address = constants.AddressZero, + filters?: ContractType[], + ) => [...contractKeys.list(address), { filters }] as const, + details: () => [...contractKeys.all, "detail"] as const, + detail: (address: string = constants.AddressZero) => + [...contractKeys.details(), address] as const, +}; + +export const walletKeys = { + all: ["balance"] as const, + balances: (walletAddress: string) => + [...splitsKeys.all, walletAddress] as const, +}; + +export const splitsKeys = { + all: ["splits"] as const, + lists: () => [...splitsKeys.all, "list"] as const, + list: (address = constants.AddressZero) => + [...splitsKeys.lists(), address] as const, + detail: (address = constants.AddressZero) => + [...splitsKeys.all, address] as const, + currencies: (address = constants.AddressZero) => + [...splitsKeys.detail(address), "currencies"] as const, + balances: (address = constants.AddressZero) => + [...splitsKeys.detail(address), "balances"] as const, +}; + +export const voteKeys = { + all: ["vote"] as const, + detail: (address = constants.AddressZero) => + [...voteKeys.all, address] as const, + proposals: (address = constants.AddressZero) => + [...voteKeys.detail(address), "proposals"] as const, + proposal: (proposalId = "-1", address = constants.AddressZero) => + [...voteKeys.proposals(address), proposalId] as const, + balances: (address = constants.AddressZero, addresses = [] as string[]) => + [...voteKeys.detail(address), "balances", { addresses }] as const, + delegations: (address = constants.AddressZero) => + [...voteKeys.detail(address), "delegations"] as const, + delegation: ( + address = constants.AddressZero, + userAddress = constants.AddressZero, + ) => [...voteKeys.delegations(address), userAddress] as const, + userHasVotedOnProposal: ( + proposalId = "-1", + address = constants.AddressZero, + userAddress = constants.AddressZero, + ) => + [ + ...voteKeys.proposal(proposalId, address), + "hasVotedOnProposal", + userAddress, + ] as const, + canExecuteProposal: (proposalId = "-1", address = constants.AddressZero) => + [...voteKeys.proposal(proposalId, address), "canExecute"] as const, +}; diff --git a/apps/dashboard/src/@3rdweb-sdk/react/components/connect-wallet/index.tsx b/apps/dashboard/src/@3rdweb-sdk/react/components/connect-wallet/index.tsx new file mode 100644 index 00000000000..4057f259340 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/components/connect-wallet/index.tsx @@ -0,0 +1,191 @@ +"use client"; + +/* eslint-disable react/forbid-dom-props */ +import { popularChains } from "../popularChains"; +import { useTheme } from "next-themes"; +import { ConnectWallet } from "@thirdweb-dev/react"; +import { + useAddRecentlyUsedChainId, + useRecentlyUsedChains, +} from "hooks/chains/recentlyUsedChains"; +import { useSetIsNetworkConfigModalOpen } from "hooks/networkConfigModal"; +import { ComponentProps, useCallback } from "react"; +import Link from "next/link"; +import Image from "next/image"; +import { useTrack } from "../../../../hooks/analytics/useTrack"; +import { CustomChainRenderer } from "../../../../components/selects/CustomChainRenderer"; +import { useFavoriteChains } from "../../hooks/useFavoriteChains"; + +export interface ConnectWalletProps { + shrinkMobile?: boolean; + upsellTestnet?: boolean; + onChainSelect?: (chainId: number) => void; + auth?: ComponentProps["auth"]; + disableChainConfig?: boolean; + disableAddCustomNetwork?: boolean; +} + +export const CustomConnectWallet: React.FC = ({ + auth, + disableChainConfig, + disableAddCustomNetwork, +}) => { + const { theme } = useTheme(); + const recentChains = useRecentlyUsedChains(); + const addRecentlyUsedChainId = useAddRecentlyUsedChainId(); + const setIsNetworkConfigModalOpen = useSetIsNetworkConfigModalOpen(); + const t = theme === "light" ? "light" : "dark"; + const favChainsQuery = useFavoriteChains(); + + return ( + { + return ; + }} + termsOfServiceUrl="/tos" + privacyPolicyUrl="/privacy" + hideTestnetFaucet={false} + networkSelector={{ + sections: [ + { + label: "Recently used", + chains: recentChains, + }, + { + label: "Favorites", + chains: favChainsQuery.data ?? [], + }, + { + label: "Popular", + chains: popularChains, + }, + ], + onSwitch(chain) { + addRecentlyUsedChainId(chain.chainId); + }, + onCustomClick: disableAddCustomNetwork + ? undefined + : () => { + setIsNetworkConfigModalOpen(true); + }, + + renderChain(props) { + return ( + + ); + }, + }} + showThirdwebBranding={false} + /> + ); +}; + +export function ConnectWalletWelcomeScreen(props: { + theme: "light" | "dark"; + subtitle?: string; +}) { + const fontColor = props.theme === "light" ? "black" : "white"; + const subtitle = props.subtitle ?? "Connect your wallet to get started"; + + return ( +
+
+
+
+ +
+ +
+

+ Welcome to thirdweb +

+ +
+ +

+ {subtitle} +

+
+
+ + + New to Wallets? + +
+ ); +} + +/** + * A link component extends the `Link` component and adds tracking. + */ +function TrackedAnchorLink(props: { + category: string; + label?: string; + trackingProps?: Record; + href: string; + target?: string; + children: React.ReactNode; + className?: string; + style?: React.CSSProperties; +}) { + const trackEvent = useTrack(); + const { category, label, trackingProps } = props; + + const onClick = useCallback(() => { + trackEvent({ category, action: "click", label, ...trackingProps }); + }, [trackEvent, category, label, trackingProps]); + + return ( + + {props.children} + + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/components/popularChains.ts b/apps/dashboard/src/@3rdweb-sdk/react/components/popularChains.ts new file mode 100644 index 00000000000..6cbebbcc9da --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/components/popularChains.ts @@ -0,0 +1,35 @@ +import { + Arbitrum, + ArbitrumSepolia, + Avalanche, + AvalancheFuji, + Base, + BaseSepoliaTestnet, + Binance, + BinanceTestnet, + Ethereum, + Localhost, + OpSepoliaTestnet, + Optimism, + Polygon, + PolygonAmoyTestnet, + Sepolia, +} from "@thirdweb-dev/chains"; + +export const popularChains = [ + Ethereum, + Sepolia, + Polygon, + PolygonAmoyTestnet, + Base, + BaseSepoliaTestnet, + Arbitrum, + ArbitrumSepolia, + Optimism, + OpSepoliaTestnet, + Binance, + BinanceTestnet, + Avalanche, + AvalancheFuji, + Localhost, +]; diff --git a/apps/dashboard/src/@3rdweb-sdk/react/components/roles/admin-only.tsx b/apps/dashboard/src/@3rdweb-sdk/react/components/roles/admin-only.tsx new file mode 100644 index 00000000000..5a1340d7a1a --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/components/roles/admin-only.tsx @@ -0,0 +1,44 @@ +import { + useIsAdmin, + useIsAdminOrSelf, +} from "@3rdweb-sdk/react/hooks/useContractRoles"; +import { ValidContractInstance } from "@thirdweb-dev/sdk"; +import { ComponentWithChildren } from "types/component-with-children"; + +interface AdminOnlyProps { + contract?: ValidContractInstance; + fallback?: JSX.Element; +} + +export const AdminOnly: ComponentWithChildren = ({ + children, + contract, + fallback, +}) => { + const isAdmin = useIsAdmin(contract); + if (!isAdmin) { + return fallback ?? null; + } + return <>{children}; +}; + +interface AdminOrSelfOnlyProps extends AdminOnlyProps { + /** + * The address of the account to check against + */ + self: string; +} + +export const AdminOrSelfOnly: ComponentWithChildren = ({ + children, + self, + fallback, + contract, +}) => { + const isAdminOrSelf = useIsAdminOrSelf(contract, self); + + if (!isAdminOrSelf) { + return fallback ?? null; + } + return <>{children}; +}; diff --git a/apps/dashboard/src/@3rdweb-sdk/react/components/roles/lister-only.tsx b/apps/dashboard/src/@3rdweb-sdk/react/components/roles/lister-only.tsx new file mode 100644 index 00000000000..bc76ac788f7 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/components/roles/lister-only.tsx @@ -0,0 +1,18 @@ +import { useIsLister } from "@3rdweb-sdk/react/hooks/useContractRoles"; +import { ValidContractInstance } from "@thirdweb-dev/sdk"; +import { ComponentWithChildren } from "types/component-with-children"; + +interface IListerOnlyProps { + contract?: ValidContractInstance; +} + +export const ListerOnly: ComponentWithChildren = ({ + children, + contract, +}) => { + const isLister = useIsLister(contract); + if (!isLister) { + return null; + } + return <>{children}; +}; diff --git a/apps/dashboard/src/@3rdweb-sdk/react/components/roles/minter-only.tsx b/apps/dashboard/src/@3rdweb-sdk/react/components/roles/minter-only.tsx new file mode 100644 index 00000000000..6aad740d357 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/components/roles/minter-only.tsx @@ -0,0 +1,18 @@ +import { useIsMinter } from "@3rdweb-sdk/react/hooks/useContractRoles"; +import { ValidContractInstance } from "@thirdweb-dev/sdk"; +import { ComponentWithChildren } from "types/component-with-children"; + +interface IMinterOnlyProps { + contract?: ValidContractInstance; +} + +export const MinterOnly: ComponentWithChildren = ({ + children, + contract, +}) => { + const isMinter = useIsMinter(contract); + if (!isMinter) { + return null; + } + return <>{children}; +}; diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/index.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/index.ts new file mode 100644 index 00000000000..40a0d8ba202 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/index.ts @@ -0,0 +1,3 @@ +export * from "./useActiveChainId"; +export * from "./useCommon"; +export * from "./useWalletNFTs"; diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/query/useQueryWithNetwork.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/query/useQueryWithNetwork.ts new file mode 100644 index 00000000000..0a07c79078b --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/query/useQueryWithNetwork.ts @@ -0,0 +1,90 @@ +import { networkKeys, useDashboardEVMChainId } from "@3rdweb-sdk/react"; +import { + MutationFunction, + QueryFunction, + QueryKey, + UseMutationOptions, + UseQueryOptions, + UseQueryResult, + useMutation, + useQuery, + useQueryClient, +} from "@tanstack/react-query"; +import { useCallback } from "react"; + +export function useQueryWithNetwork< + TQueryFnData = unknown, + TError = unknown, + TData = TQueryFnData, + TQueryKey extends QueryKey = QueryKey, +>( + queryKey: TQueryKey, + queryFn: QueryFunction, + options?: Omit< + UseQueryOptions, + "queryKey" | "queryFn" + >, +): UseQueryResult { + const activeChainId = useDashboardEVMChainId(); + + const mergedOptions: Omit< + UseQueryOptions, + "queryKey" | "queryFn" + > = { + ...options, + enabled: !!(activeChainId && options?.enabled), + }; + + const combinedQueryKey = ( + networkKeys.chain(activeChainId) as readonly unknown[] + ).concat(queryKey) as unknown as TQueryKey; + + return useQuery(combinedQueryKey, queryFn, mergedOptions); +} +export function useMutationWithInvalidate< + TData = unknown, + TError = unknown, + TVariables = void, + TContext = unknown, + TQueryKey extends QueryKey = QueryKey, +>( + mutationFn: MutationFunction, + options?: Omit< + UseMutationOptions, + "mutationFn" | "onSuccess" + > & { + onSuccess?: ( + data: TData, + variables: TVariables, + context: TContext | undefined, + wrapCacheKeys: (cacheKeysToInvalidate: TQueryKey[]) => Promise, + ) => Promise | void; + }, +) { + const activeChainId = useDashboardEVMChainId(); + const queryClient = useQueryClient(); + + const invalidate = useCallback( + (cacheKeysToInvalidate: TQueryKey[]) => { + return Promise.all( + cacheKeysToInvalidate.map((cacheKey) => { + return queryClient.invalidateQueries( + (networkKeys.chain(activeChainId) as readonly unknown[]).concat( + cacheKey, + ) as unknown[], + ); + }), + ); + }, + [queryClient, activeChainId], + ); + + return useMutation(mutationFn, { + ...options, + onSuccess: (...args) => { + if (options?.onSuccess) { + options.onSuccess(...args, invalidate); + } + }, + }); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useActiveChainId.tsx b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useActiveChainId.tsx new file mode 100644 index 00000000000..cfc75432b37 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useActiveChainId.tsx @@ -0,0 +1,87 @@ +import { Chain } from "@thirdweb-dev/chains"; +import { + createContext, + useCallback, + useContext, + useEffect, + useState, +} from "react"; +import invariant from "tiny-invariant"; + +export type EVMContractInfo = { + // using null instead of undefined here so that this type can be JSON stringified + chain: Chain | null; + chainSlug: string; + contractAddress: string; +}; + +type SetEVMContractInfo = (info: EVMContractInfo) => void; + +const EVMContractInfoContext = createContext( + undefined, +); + +const SetEVMContractInfoContext = createContext( + undefined, +); + +// TODO let's move this out of here eventually +export function EVMContractInfoProvider(props: { + children: React.ReactNode; + value?: EVMContractInfo; +}) { + const [value, setValue] = useState(props.value); + + // keep the state in sync with the props.value + // this is required when route changes and page goes from fallback to actual page + + const _setValue = useCallback((info?: EVMContractInfo) => { + setValue((prevValue) => { + if ( + prevValue?.chainSlug === info?.chainSlug && + prevValue?.contractAddress === info?.contractAddress && + info?.chain === null + ) { + return prevValue; + } + return info; + }); + }, []); + + // no better way right now - this whole file is going away with RSC migration + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + _setValue(props.value); + }, [_setValue, props.value]); + // when we move from rendering the fallback page to the actual page, props.value is correct value but state lags behind with undefined value + // in that case we use the props.value instead of providing undefined and update the state with effect afterwards + // this only happens ONCE, when the page is not yet created on server. once it is created and cached. value will always be defined + const providedValue = value || props.value; + + return ( + + + {props.children} + + + ); +} + +export function useEVMContractInfo() { + return useContext(EVMContractInfoContext); +} + +export function useSetEVMContractInfo() { + const setter = useContext(SetEVMContractInfoContext); + invariant( + setter, + "useSetEVMContractInfo must be used inside EVMContractInfoProvider", + ); + return setter; +} + +// for EVM - get network info from context +export function useDashboardEVMChainId() { + const contractInfo = useEVMContractInfo(); + return contractInfo?.chain?.chainId; +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useActivity.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useActivity.ts new file mode 100644 index 00000000000..d19cf3d27fc --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useActivity.ts @@ -0,0 +1,55 @@ +import { useContract, useContractEvents } from "@thirdweb-dev/react"; +import { ContractEvent } from "@thirdweb-dev/sdk"; +import { useMemo } from "react"; + +interface InternalTransaction { + transactionHash: ContractEvent["transaction"]["transactionHash"]; + blockNumber: ContractEvent["transaction"]["blockNumber"]; + events: ContractEvent[]; +} + +export function useActivity(contractAddress?: string, autoUpdate?: boolean) { + // const provider = useProvider(); + const contractQuery = useContract(contractAddress); + + const eventsQuery = useContractEvents(contractQuery.contract, undefined, { + subscribe: autoUpdate, + queryFilter: { + fromBlock: -20000, + }, + }); + + return useMemo(() => { + if (!eventsQuery.data) { + return []; + } + + const obj = eventsQuery.data.slice(0, 100).reduce( + (acc, curr) => { + if (acc[curr.transaction.transactionHash]) { + acc[curr.transaction.transactionHash].events.push(curr); + acc[curr.transaction.transactionHash].events.sort( + (a: any, b: any) => b.transaction.logIndex - a.transaction.logIndex, + ); + if ( + acc[curr.transaction.transactionHash].blockNumber > + curr.transaction.blockNumber + ) { + acc[curr.transaction.transactionHash].blockNumber = + curr.transaction.blockNumber; + } + } else { + acc[curr.transaction.transactionHash] = { + transactionHash: curr.transaction.transactionHash, + blockNumber: curr.transaction.blockNumber, + events: [curr], + }; + } + + return acc; + }, + {} as Record, + ); + return Object.values(obj).sort((a, b) => b.blockNumber - a.blockNumber); + }, [eventsQuery.data]); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts new file mode 100644 index 00000000000..237b7e9d0de --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts @@ -0,0 +1,1168 @@ +import { + Query, + useMutation, + useQuery, + useQueryClient, +} from "@tanstack/react-query"; +import { useEffect, useState } from "react"; +import { THIRDWEB_API_HOST } from "../../../constants/urls"; +import { accountKeys, apiKeys, authorizedWallets } from "../cache-keys"; +import { useMutationWithInvalidate } from "./query/useQueryWithNetwork"; +import type { Chain } from "@thirdweb-dev/chains"; +import invariant from "tiny-invariant"; +import { useLoggedInUser } from "./useLoggedInUser"; + +// FIXME: We keep repeating types, API server should provide them + +export enum AccountStatus { + NoCustomer = "noCustomer", + NoPayment = "noPayment", + PaymentVerification = "paymentVerification", + ValidPayment = "validPayment", + InvalidPayment = "invalidPayment", + InvalidPaymentMethod = "invalidPaymentMethod", +} + +export enum AccountPlan { + Free = "free", + Growth = "growth", + Pro = "pro", + Enterprise = "enterprise", +} + +export type AuthorizedWallet = { + id: string; + accountId: string; + walletAddress: string; + revoked: boolean; + createdAt: string; + updatedAt: string; + deviceName: string; +}; + +// Account +export type Account = { + id: string; + isStaff: boolean; + creatorWalletAddress: string; + status: AccountStatus; + plan: AccountPlan; + name?: string; + email?: string; + advancedEnabled: boolean; + currentBillingPeriodStartsAt: string; + currentBillingPeriodEndsAt: string; + emailConfirmedAt?: string; + unconfirmedEmail?: string; + trialPeriodEndedAt?: string; + emailConfirmationWalletAddress?: string; + stripePaymentActionUrl?: string; + onboardSkipped?: boolean; + paymentAttemptCount?: number; + notificationPreferences?: { + billing: "email" | "none"; + updates: "email" | "none"; + }; + recurringPaymentFailures: { + subscriptionId: string; + subscriptionDescription: string; + paymentFailureCode: string; + serviceCutoffDate: string; + }[]; +}; + +interface UpdateAccountInput { + name?: string; + email?: string; + plan?: AccountPlan; + linkWallet?: boolean; + subscribeToUpdates?: boolean; + onboardSkipped?: boolean; +} + +interface UpdateAccountNotificationsInput { + billing: "email" | "none"; + updates: "email" | "none"; +} + +interface ConfirmEmailInput { + confirmationToken: string; +} + +type ApiKeyRecoverShareManagement = "AWS_MANAGED" | "USER_MANAGED"; +type ApiKeyCustomAuthentication = { + jwksUri: string; + aud: string; +}; +type ApiKeyCustomAuthEndpoint = { + authEndpoint: string; + customHeaders: { key: string; value: string }[]; +}; + +// MAP to api-server types in PolicyService.ts +export type ApiKeyServicePolicy = { + allowedChainIds?: number[] | null; + allowedContractAddresses?: string[] | null; + allowedWallets?: string[] | null; + blockedWallets?: string[] | null; + bypassWallets?: string[] | null; + serverVerifier?: { + url: string; + headers: { key: string; value: string }[] | null; + } | null; + limits?: ApiKeyServicePolicyLimits | null; +}; + +export type ApiKeyServicePolicyLimits = { + global?: { + // in dollars or ETH + maxSpend: string; + maxSpendUnit: "usd" | "native"; + } | null; + // ---------------------- + // TODO implement perUser limits + perUserSpend?: { + // in dollars or ETH + maxSpend: string | null; + maxSpendUnit: "usd" | "native"; + maxSpendPeriod: "day" | "week" | "month"; + } | null; + perUserTransactions?: { + maxTransactions: number; + maxTransactionsPeriod: "day" | "week" | "month"; + } | null; +}; + +export type ApiKeyService = { + id: string; + name: string; + targetAddresses: string[]; + actions: string[]; + // If updating here, need to update validation logic in `validation.ts` as well for recoveryShareManagement + // EMBEDDED WALLET + recoveryShareManagement?: ApiKeyRecoverShareManagement; + customAuthentication?: ApiKeyCustomAuthentication; + customAuthEndpoint?: ApiKeyCustomAuthEndpoint; + applicationName?: string; + applicationImageUrl?: string; + // PAY + payoutAddress?: string; +}; + +export type ApiKey = { + id: string; + name: string; + key: string; + secret?: string; + secretMasked: string; + accountId: string; + creatorWalletAddress: string; + walletAddresses: string[]; + domains: string[]; + bundleIds: string[]; + redirectUrls: string[]; + revokedAt: string; + lastAccessedAt: string; + createdAt: string; + updatedAt: string; + services?: ApiKeyService[]; +}; + +interface UpdateKeyServiceInput { + name: string; + targetAddresses: string[]; + actions?: string[]; +} + +interface CreateKeyInput { + name?: string; + domains?: string[]; + bundleIds?: string[]; + walletAddresses?: string[]; + services?: UpdateKeyServiceInput[]; +} + +interface UpdateKeyInput { + id: string; + name: string; + domains: string[]; + bundleIds: string[]; + walletAddresses?: string[]; + services?: UpdateKeyServiceInput[]; +} + +interface UsageBundler { + chainId: number; + sumTransactionFee: string; +} + +interface UsageStorage { + sumFileSizeBytes: number; +} + +interface UsageEmbeddedWallets { + countWalletAddresses: number; +} + +interface UsageCheckout { + sumTransactionFeeUsd: number; +} + +export interface UsageBillableByService { + usage: { + bundler: UsageBundler[]; + storage: UsageStorage; + embeddedWallets: UsageEmbeddedWallets; + checkout: UsageCheckout; + }; + billableUsd: { + bundler: number; + storage: number; + embeddedWallets: number; + checkout: number; + }; + limits: { + storage: number; + embeddedWallets: number; + checkout: number; + }; + rateLimits: { + storage: number; + rpc: number; + }; + rateLimitedAt: { + storage?: string; + rpc?: string; + }; +} + +interface WalletStats { + timeSeries: { + dayTime: string; + clientId: string; + walletType: string; + totalWallets: number; + uniqueWallets: number; + }[]; +} + +interface BillingProduct { + name: string; + id: string; +} + +export interface BillingCredit { + originalGrantUsdCents: number; + remainingValueUsdCents: number; + name: string; + couponId: string; + products: BillingProduct[]; + expiresAt: string; + redeemedAt: string; + isActive: boolean; +} + +interface UseAccountInput { + refetchInterval?: + | number + | (( + data: Account | undefined, + query: Query< + Account, + unknown, + Account, + readonly ["account", string, "me"] + >, + ) => number | false); +} + +export function useAccount({ refetchInterval }: UseAccountInput = {}) { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + accountKeys.me(user?.address as string), + async () => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/me`, { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data as Account; + }, + { + enabled: !!user?.address && isLoggedIn, + refetchInterval: refetchInterval ?? false, + }, + ); +} + +export function useAccountUsage() { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + accountKeys.usage(user?.address as string), + async () => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/usage`, { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data as UsageBillableByService; + }, + { enabled: !!user?.address && isLoggedIn }, + ); +} + +export function useAccountCredits() { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + accountKeys.credits(user?.address as string), + async () => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/credits`, { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + const credits = (json.data as BillingCredit[]).filter( + (credit) => + credit.remainingValueUsdCents > 0 && + credit.expiresAt > new Date().toISOString() && + credit.isActive, + ); + + return credits; + }, + { enabled: !!user?.address && isLoggedIn }, + ); +} + +export function useWalletStats(clientId: string | undefined) { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + accountKeys.walletStats(user?.address as string, clientId as string), + async () => { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/account/wallets?clientId=${clientId}`, + { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data as WalletStats; + }, + { enabled: !!clientId && !!user?.address && isLoggedIn }, + ); +} + +export function useUpdateAccount() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: UpdateAccountInput) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account`, { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(input), + }); + + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + accountKeys.me(user?.address as string), + ); + }, + }, + ); +} + +export function useUpdateAccountPlan(waitForWebhook?: boolean) { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: { plan: string; feedback?: string; useTrial?: boolean }) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/plan`, { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(input), + }); + + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + // Wait for account plan to update via stripe webhook + // TODO: find a better way to notify the client that the plan has been updated + if (waitForWebhook) { + await new Promise((resolve) => setTimeout(resolve, 1000 * 10)); + } + + return json.data; + }, + { + onSuccess: () => { + // invalidate usage data as limits are different + queryClient.invalidateQueries(accountKeys.me(user?.address as string)); + + return queryClient.invalidateQueries( + accountKeys.usage(user?.address as string), + ); + }, + }, + ); +} + +export function useUpdateNotifications() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: UpdateAccountNotificationsInput) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/notifications`, { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ preferences: input }), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + accountKeys.me(user?.address as string), + ); + }, + }, + ); +} + +export function useCreateBillingSession(enabled: boolean = false) { + const { user } = useLoggedInUser(); + + return useQuery( + accountKeys.billingSession(user?.address as string), + async () => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/account/billingSession`, + { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { enabled }, + ); +} + +export function useConfirmEmail() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: ConfirmEmailInput) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/confirmEmail`, { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + // invalidate related cache, since could be relinking account + queryClient.invalidateQueries(apiKeys.keys(user?.address as string)); + queryClient.invalidateQueries( + accountKeys.usage(user?.address as string), + ); + + return queryClient.invalidateQueries( + accountKeys.me(user?.address as string), + ); + }, + }, + ); +} + +export type CreateTicketInput = { + markdown: string; + product: string; + files?: File[]; +} & Record; + +export function useCreateTicket() { + const { user } = useLoggedInUser(); + const account = useAccount(); + return useMutationWithInvalidate(async (input: CreateTicketInput) => { + invariant(user?.address, "walletAddress is required"); + invariant(account?.data, "Account not found"); + const { name, email, plan } = account.data; + const formData = new FormData(); + const planToCustomerId: Record = { + free: process.env.NEXT_PUBLIC_UNTHREAD_FREE_TIER_ID as string, + growth: process.env.NEXT_PUBLIC_UNTHREAD_GROWTH_TIER_ID as string, + pro: process.env.NEXT_PUBLIC_UNTHREAD_PRO_TIER_ID as string, + }; + const customerId = planToCustomerId[plan] || undefined; + if (input.files?.length) { + input.files.forEach((file) => formData.append("attachments", file)); + } + const title = + input.product && input["extraInfo_Problem_Area"] + ? `${input.product}: ${input.extraInfo_Problem_Area} (${email})` + : `New ticket from ${name} (${email})`; + + // Update `markdown` to include the infos from the form + const extraInfo = Object.keys(input) + .filter((key) => key.startsWith("extraInfo_")) + .map((key) => { + const prettifiedKey = `# ${key.replace("extraInfo_", "").replaceAll("_", " ")}`; + return `${prettifiedKey}: ${input[key] ?? "N/A"}\n`; + }) + .join(""); + const markdown = `# Email: ${email} +# Address: ${user.address} +# Product: ${input.product} +${extraInfo} +# Message: +${input.markdown} +`; + const content = { + type: "email", + title, + markdown, + status: "open", + onBehalfOf: { + email, + name, + }, + customerId, + emailInboxId: process.env.NEXT_PUBLIC_UNTHREAD_EMAIL_INBOX_ID, + triageChannelId: process.env.NEXT_PUBLIC_UNTHREAD_TRIAGE_CHANNEL_ID, + }; + formData.append("json", JSON.stringify(content)); + + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/account/create-unthread-ticket`, + { + method: "POST", + credentials: "include", + body: formData, + }, + ); + const json = await res.json(); + if (json.error) { + throw new Error(json.error.message); + } + return json.data; + }); +} + +export function useConfirmEmbeddedWallet() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async ({ ewsJwt }: { ewsJwt: string }) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/account/confirmEmbeddedWallet`, + { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ paperJwt: ewsJwt }), + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + // invalidate related cache, since could be relinking account + queryClient.invalidateQueries(apiKeys.keys(user?.address as string)); + queryClient.invalidateQueries( + accountKeys.usage(user?.address as string), + ); + + return queryClient.invalidateQueries( + accountKeys.me(user?.address as string), + ); + }, + }, + ); +} + +export function useResendEmailConfirmation() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async () => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/account/resendEmailConfirmation`, + { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({}), + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + accountKeys.me(user?.address as string), + ); + }, + }, + ); +} + +export function useCreatePaymentMethod() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (paymentMethodId: string) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/account/paymentMethod`, { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + paymentMethodId, + }), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + accountKeys.me(user?.address as string), + ); + }, + }, + ); +} + +export function useApiKeys() { + const { user, isLoggedIn } = useLoggedInUser(); + return useQuery( + apiKeys.keys(user?.address as string), + async () => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/keys`, { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + return json.data as ApiKey[]; + }, + { enabled: !!user?.address && isLoggedIn }, + ); +} + +export function useCreateApiKey() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutation( + async (input: CreateKeyInput) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/keys`, { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data as ApiKey; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + apiKeys.keys(user?.address as string), + ); + }, + }, + ); +} + +export function useUpdateApiKey() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: UpdateKeyInput) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/keys/${input.id}`, { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(input), + }); + + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + apiKeys.keys(user?.address as string), + ); + }, + }, + ); +} + +export function useRevokeApiKey() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (id: string) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/keys/${id}/revoke`, { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({}), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + apiKeys.keys(user?.address as string), + ); + }, + }, + ); +} + +export const usePolicies = (serviceId?: string) => { + return useQuery({ + queryKey: ["policies", serviceId], + queryFn: async () => { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/policies?serviceId=${serviceId}`, + { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }, + ); + const json = await res.json(); + if (json.error) { + throw new Error(json.error.message); + } + return json.data as ApiKeyServicePolicy; + }, + enabled: !!serviceId, + }); +}; + +export const useUpdatePolicies = () => { + const queryClient = useQueryClient(); + return useMutationWithInvalidate( + async (input: { serviceId: string; data: ApiKeyServicePolicy }) => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/policies`, { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + serviceId: input.serviceId, + data: input.data, + }), + }); + const json = await res.json(); + if (json.error) { + throw new Error(json.error.message); + } + return json.data as ApiKeyServicePolicy; + }, + { + onSuccess: (_, variables) => { + return queryClient.invalidateQueries(["policies", variables.serviceId]); + }, + }, + ); +}; + +export function useAuthorizeWalletWithAccount() { + const { user } = useLoggedInUser(); + + return useMutationWithInvalidate( + async (variables: { token: string; deviceName?: string }) => { + invariant(user?.address, "walletAddress is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/jwt/authorize-wallet`, { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + authorization: `Bearer ${variables.token}`, + }, + body: JSON.stringify({ + deviceName: variables.deviceName, + }), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + ); +} + +export function useRevokeAuthorizedWallet() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (variables: { authorizedWalletId: string }) => { + invariant(user?.address, "walletAddress is required"); + + const { authorizedWalletId } = variables; + + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/authorized-wallets/${authorizedWalletId}/revoke`, + { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({}), + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + authorizedWallets.authorizedWallets(user?.address as string), + ); + }, + }, + ); +} + +export function useAuthorizedWallets() { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + authorizedWallets.authorizedWallets(user?.address as string), + async () => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/authorized-wallets`, { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data as AuthorizedWallet[]; + }, + { enabled: !!user?.address && isLoggedIn, cacheTime: 0 }, + ); +} + +type FetchAuthTokenResponse = { + jwt: string; + paymentsSellerId?: string; +}; + +const TOKEN_PROMISE_MAP = new Map>(); + +async function fetchAuthToken( + address: string, + abortController?: AbortController, +): Promise { + if (!address) { + throw new Error("address is required"); + } + if (TOKEN_PROMISE_MAP.has(address)) { + return TOKEN_PROMISE_MAP.get(address) as Promise; + } + const promise = new Promise((resolve, reject) => { + return fetch(`${THIRDWEB_API_HOST}/v1/auth/token`, { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + signal: abortController?.signal, + }) + .then((res) => res.json()) + .then((json) => { + if (json.error) { + throw new Error(json.error.message); + } + return { + jwt: json.data.jwt as string, + paymentsSellerId: json.data.paymentsSellerId, + }; + }) + .then(resolve) + .catch(reject); + }); + TOKEN_PROMISE_MAP.set(address, promise); + return promise; +} + +// keep the promise around so we don't fetch it multiple times even if the hook gets called from different places +let inflightPromise: Promise | null = null; +export function useApiAuthToken() { + const { user } = useLoggedInUser(); + const [token, setToken] = useState(null); + const [paymentsSellerId, setPaymentsSellerId] = useState(null); + const [isLoading, setIsLoading] = useState(false); + const [error, setError] = useState(null); + + // not using a query because we don't want to store this in any cache + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + let mounted = true; + setError(null); + setIsLoading(false); + if (!user?.address) { + return; + } + setIsLoading(true); + + const abortController = new AbortController(); + + if (!inflightPromise) { + inflightPromise = fetchAuthToken(user.address, abortController); + } + + // eslint-disable-next-line promise/catch-or-return + inflightPromise + .then((t) => { + // eslint-disable-next-line promise/always-return + if (mounted) { + setToken(t.jwt); + if (t.paymentsSellerId) { + setPaymentsSellerId(t.paymentsSellerId); + } + } + }) + .catch((err) => { + if (mounted) { + setError(err); + } + }) + .finally(() => { + if (mounted) { + inflightPromise = null; + setIsLoading(false); + } + }); + + return () => { + mounted = false; + // cancel the fetch if it's still in flight + abortController.abort(); + inflightPromise = null; + setToken(null); + }; + }, [user?.address]); + + return { error, isLoading, token, paymentsSellerId }; +} + +/** + * + */ +export async function fetchChainsFromApi() { + // always fetch from prod for chains for now + // TODO: re-visit this + const res = await fetch(`https://api.thirdweb.com/v1/chains`, { + method: "GET", + // do not inclue credentials for chains endpoint + // credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.data as Chain[]; +} + +export function useApiChains() { + return useQuery(["all-chains"], async () => { + return fetchChainsFromApi(); + }); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useBalanceForAddress.tsx b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useBalanceForAddress.tsx new file mode 100644 index 00000000000..0c59afc68f9 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useBalanceForAddress.tsx @@ -0,0 +1,13 @@ +import { useQuery } from "@tanstack/react-query"; +import { useSDK } from "@thirdweb-dev/react"; +import invariant from "tiny-invariant"; +import { walletKeys } from "../cache-keys"; + +export function useBalanceForAddress(address: string | undefined) { + const sdk = useSDK(); + invariant(address, "Address is not provided"); + return useQuery(walletKeys.balances(address), async () => { + invariant(sdk, "SDK is not initialized"); + return await sdk.getBalance(address); + }); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useCommon.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useCommon.ts new file mode 100644 index 00000000000..dbc15b7099d --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useCommon.ts @@ -0,0 +1,33 @@ +export function usePascalCaseContractName(contractName: string) { + if (!contractName) { + return null; + } else if (contractName === "nft-drop") { + return "NFTDrop"; + } else if (contractName === "edition-drop") { + return "EditionDrop"; + } else if (contractName === "nft-collection") { + return "NFTCollection"; + } else if (contractName === "edition") { + return "Edition"; + } else if (contractName === "token") { + return "Token"; + } else if (contractName === "marketplace") { + return "Marketplace"; + } else if (contractName === "vote") { + return "Vote"; + } else if (contractName === "split") { + return "Split"; + } else if (contractName === "token-drop") { + return "TokenDrop"; + } else if (contractName === "signature-drop") { + return "SignatureDrop"; + } else if (contractName === "pack") { + return "Pack"; + } else if (contractName === "multiwrap") { + return "Multiwrap"; + } else if (contractName === "marketplace-v3") { + return "MarketplaceV3"; + } else { + return contractName; + } +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useContractRoles.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useContractRoles.ts new file mode 100644 index 00000000000..eec24504a3e --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useContractRoles.ts @@ -0,0 +1,110 @@ +import { + ContractWithRoles, + RequiredParam, + RolesForContract, + useAddress, + useContractType, + useRoleMembers, +} from "@thirdweb-dev/react"; +import { ValidContractInstance } from "@thirdweb-dev/sdk"; +import { constants } from "ethers"; + +function isContractWithRoles( + contract: RequiredParam, +): contract is ContractWithRoles { + if (contract && "roles" in contract) { + return true; + } + return false; +} + +function useIsAccountRole( + role: RolesForContract[number], + contract: RequiredParam, + account: RequiredParam, +): boolean { + const contractHasRoles = isContractWithRoles(contract); + const { data } = useRoleMembers(contract, role); + + if (contractHasRoles === false) { + return false; + } + + if (data?.includes(constants.AddressZero)) { + return true; + } + + return !!(account && data?.includes(account)); +} + +export function useIsAdmin( + contract: RequiredParam, +) { + const address = useAddress(); + const { data: contractType } = useContractType(contract?.getAddress()); + + const contractHasRoles = isContractWithRoles(contract); + const isAccountRole = useIsAccountRole( + "admin", + contractHasRoles ? contract : undefined, + address, + ); + + if (contractType === "custom") { + return true; + } + return isAccountRole; +} + +export function useIsAdminOrSelf( + contract: RequiredParam, + self: RequiredParam, +) { + const address = useAddress(); + const { data: contractType } = useContractType(contract?.getAddress()); + const isAdmin = useIsAdmin(contract); + + if (address === self) { + return true; + } + if (contractType === "custom") { + return true; + } + return isAdmin; +} + +export function useIsMinter( + contract: RequiredParam, +) { + const address = useAddress(); + const { data: contractType } = useContractType(contract?.getAddress()); + const contractHasRoles = isContractWithRoles(contract); + const isAccountRole = useIsAccountRole( + "minter", + contractHasRoles ? contract : undefined, + address, + ); + + if (contractType === "custom") { + return true; + } + return isAccountRole; +} + +export function useIsLister( + contract: RequiredParam, +) { + const address = useAddress(); + const { data: contractType } = useContractType(contract?.getAddress()); + const contractHasRoles = isContractWithRoles(contract); + const isAccountRole = useIsAccountRole( + "lister", + contractHasRoles ? contract : undefined, + address, + ); + + if (contractType === "custom") { + return true; + } + return isAccountRole; +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useEmbeddedWallets.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useEmbeddedWallets.ts new file mode 100644 index 00000000000..f63276a335d --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useEmbeddedWallets.ts @@ -0,0 +1,51 @@ +import { useQuery } from "@tanstack/react-query"; +import { embeddedWalletsKeys } from "../cache-keys"; +import { THIRDWEB_EWS_API_HOST } from "constants/urls"; +import { useLoggedInUser } from "./useLoggedInUser"; + +// FIXME: Make API to return camelCase or transform +export type EmbeddedWalletUser = { + id: string; + client_id: string; + created_at: string; + last_accessed_at: string; + embedded_wallet?: { + id: string; + address: string; + chain: string; + wallet_user_id: string; + }[]; + ews_authed_user: { + id: string; + authed_user_id: string; + email: string; + }[]; +}; + +export function useEmbeddedWallets(clientId: string) { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + embeddedWalletsKeys.embeddedWallets( + user?.address as string, + clientId as string, + ), + async () => { + const res = await fetch( + `${THIRDWEB_EWS_API_HOST}/api/thirdweb/embedded-wallet?clientId=${clientId}&lastAccessedAt=0`, + { + method: "GET", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + }, + ); + + const json = await res.json(); + + return json.walletUsers as EmbeddedWalletUser[]; + }, + { enabled: !!user?.address && isLoggedIn && !!clientId }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useEngine.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useEngine.ts new file mode 100644 index 00000000000..43c669e9f6a --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useEngine.ts @@ -0,0 +1,1427 @@ +import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; +import { engineKeys } from "../cache-keys"; +import { useMutationWithInvalidate } from "./query/useQueryWithNetwork"; +import invariant from "tiny-invariant"; +import { useApiAuthToken } from "./useApi"; +import { useAddress, useChainId } from "@thirdweb-dev/react"; +import { THIRDWEB_API_HOST } from "constants/urls"; +import { useLoggedInUser } from "./useLoggedInUser"; +import { useState } from "react"; + +export function useEngineConnectedInstance() { + const [instance, setInstance] = useState(null); + + return { instance, setInstance }; +} + +export type EngineTier = "STARTER" | "PREMIUM" | "ENTERPRISE"; + +// Engine instances +export type EngineInstance = { + id: string; + accountId: string; + name: string; + url: string; + lastAccessedAt: string; + cloudDeployedAt: string; + status: + | "active" + | "pending" + | "requested" + | "deploying" + | "paymentFailed" + | "deploymentFailed"; +}; + +// Not checking for null token because the token is required the tanstack useQuery hook +const getEngineRequestHeaders = (token: string | null): HeadersInit => { + const basicHeaders = { + "Content-Type": "application/json", + // This is required to skip the browser warning when using ngrok + // else, Engine -> Explorer doesn't work + // more info: https://ngrok.com/abuse + "ngrok-skip-browser-warning": "true", + }; + if (!token) { + return basicHeaders; + } + + return { + ...basicHeaders, + Authorization: `Bearer ${token}`, + }; +}; + +export function useEngineInstances() { + const { user, isLoggedIn } = useLoggedInUser(); + + return useQuery( + engineKeys.instances(user?.address as string), + async (): Promise => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/engine`, { + method: "GET", + credentials: "include", + }); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + + const json = await res.json(); + const instances = (json.data?.instances as EngineInstance[]) || []; + + return instances.map((instance) => { + // Sanitize: Add trailing slash if not present. + const url = instance.url.endsWith("/") + ? instance.url + : `${instance.url}/`; + return { + ...instance, + url, + }; + }); + }, + { enabled: !!user?.address && isLoggedIn }, + ); +} + +// GET Requests +export type BackendWallet = { + address: string; + label?: string; + type: string; + awsKmsKeyId?: string | null; + awsKmsArn?: string | null; + gcpKmsKeyId?: string | null; + gcpKmsKeyRingId?: string | null; + gcpKmsLocationId?: string | null; + gcpKmsKeyVersionId?: string | null; + gcpKmsResourcePath?: string | null; +}; + +export function useEngineBackendWallets(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + [engineKeys.backendWallets(instance)], + async () => { + const res = await fetch(`${instance}backend-wallet/get-all?limit=50`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as BackendWallet[]) || []; + }, + { enabled: !!instance && !!token }, + ); +} + +export interface EngineSystemHealth { + status: string; + engineVersion?: string; + features?: string[]; +} + +export function useEngineSystemHealth(instanceUrl: string) { + return useQuery( + engineKeys.health(instanceUrl), + async () => { + const res = await fetch(`${instanceUrl}system/health`, { + headers: getEngineRequestHeaders(null), + }); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + const json = (await res.json()) as EngineSystemHealth; + return json; + }, + { enabled: !!instanceUrl }, + ); +} + +export function useEngineLatestVersion() { + return useQuery(engineKeys.latestVersion(), async () => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/engine/latest-version`, { + method: "GET", + credentials: "include", + }); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + const json = await res.json(); + return json.data.version as string; + }); +} + +interface UpdateVersionInput { + engineId: string; +} + +export function useEngineUpdateVersion() { + return useMutation(async (input: UpdateVersionInput) => { + invariant(input.engineId, "engineId is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/engine/update-version`, { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + engineId: input.engineId, + }), + }); + // we never use the response body + res.body?.cancel(); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + }); +} + +export function useEngineRemoveFromDashboard() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutation( + async (instanceId: string) => { + invariant(instanceId, "instance is required"); + + const res = await fetch(`${THIRDWEB_API_HOST}/v1/engine/${instanceId}`, { + method: "DELETE", + credentials: "include", + }); + // we never use the response body + res.body?.cancel(); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.instances(user?.address as string), + ); + }, + }, + ); +} + +export interface RemoveCloudHostedInput { + instanceId: string; + reason: "USING_SELF_HOSTED" | "TOO_EXPENSIVE" | "MISSING_FEATURES" | "OTHER"; + feedback: string; +} + +export function useEngineRemoveCloudHosted() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutation( + async ({ instanceId, reason, feedback }: RemoveCloudHostedInput) => { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/engine/${instanceId}/remove-cloud-hosted`, + { + method: "POST", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ reason, feedback }), + }, + ); + // we never use the response body + res.body?.cancel(); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.instances(user?.address as string), + ); + }, + }, + ); +} + +export interface EditEngineInstanceInput { + instanceId: string; + name: string; + url: string; +} + +export function useEngineEditInstance() { + const { user } = useLoggedInUser(); + const queryClient = useQueryClient(); + + return useMutation( + async ({ instanceId, name, url }: EditEngineInstanceInput) => { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/engine/${instanceId}`, { + method: "PUT", + credentials: "include", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ name, url }), + }); + // we never use the response body + res.body?.cancel(); + if (!res.ok) { + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.instances(user?.address as string), + ); + }, + }, + ); +} + +export type Transaction = { + queueId?: string | null; + chainId?: string | null; + fromAddress?: string | null; + toAddress?: string | null; + data?: string | null; + extension?: string | null; + value?: string | null; + nonce?: number | null; + gasLimit?: string | null; + gasPrice?: string | null; + maxFeePerGas?: string | null; + maxPriorityFeePerGas?: string | null; + transactionType?: number | null; + transactionHash?: string | null; + queuedAt?: string | null; + processedAt?: string | null; + sentAt?: string | null; + minedAt?: string | null; + cancelledAt?: string | null; + deployedContractAddress?: string | null; + deployedContractType?: string | null; + errorMessage?: string | null; + sentAtBlockNumber?: number | null; + blockNumber?: number | null; + status?: string | null; + retryCount: number; + retryGasValues?: boolean | null; + retryMaxFeePerGas?: string | null; + retryMaxPriorityFeePerGas?: string | null; + signerAddress?: string | null; + accountAddress?: string | null; + target?: string | null; + sender?: string | null; + initCode?: string | null; + callData?: string | null; + callGasLimit?: string | null; + verificationGasLimit?: string | null; + preVerificationGas?: string | null; + // eslint-disable-next-line inclusive-language/use-inclusive-words + paymasterAndData?: string | null; + userOpHash?: string | null; + functionName?: string | null; + functionArgs?: string | null; +}; + +type TransactionResponse = { + transactions: Transaction[]; + totalCount: number; +}; + +/** + * Gets transactions for an Engine instance. + * + * @param instance + * @param autoUpdate - If true, refetches every 4 seconds. + * @returns + */ +export function useEngineTransactions(instance: string, autoUpdate: boolean) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.transactions(instance), + async () => { + const res = await fetch(`${instance}transaction/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as TransactionResponse) || {}; + }, + { + enabled: !!instance && !!token, + refetchInterval: autoUpdate ? 4_000 : false, + }, + ); +} + +type WalletConfig = + | { + type: "local"; + } + | { + type: "aws-kms"; + awsAccessKeyId: string; + awsSecretAccessKey: string; + awsRegion: string; + } + | { + type: "gcp-kms"; + gcpApplicationProjectId: string; + gcpKmsLocationId: string; + gcpKmsKeyRingId: string; + gcpApplicationCredentialEmail: string; + gcpApplicationCredentialPrivateKey: string; + }; + +export function useEngineWalletConfig(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.walletConfig(instance), + async () => { + const res = await fetch(`${instance}configuration/wallets`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as WalletConfig) || {}; + }, + { enabled: !!instance && !!token }, + ); +} + +type CurrencyValue = { + name: string; + symbol: string; + decimals: number; + value: string; + displayValue: string; +}; + +export function useEngineBackendWalletBalance( + instance: string, + address: string, +) { + const { token } = useApiAuthToken(); + const chainId = useChainId(); + + invariant(chainId, "chainId is required"); + + return useQuery( + engineKeys.backendWalletBalance(address, chainId), + async () => { + const res = await fetch( + `${instance}backend-wallet/${chainId}/${address}/get-balance`, + { + method: "GET", + headers: getEngineRequestHeaders(token), + }, + ); + + const json = await res.json(); + + return (json.result as CurrencyValue) || {}; + }, + { enabled: !!instance && !!address && !!chainId && !!token }, + ); +} + +export type EngineAdmin = { + walletAddress: string; + label?: string; + permissions: "OWNER" | "ADMIN"; +}; + +export function useEnginePermissions(instance: string) { + const { token } = useApiAuthToken(); + const address = useAddress(); + + return useQuery( + engineKeys.permissions(instance), + async () => { + const res = await fetch(`${instance}auth/permissions/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + if (res.status !== 200) { + throw new Error(`${res.status}`); + } + + const json = await res.json(); + + return (json.result as EngineAdmin[]) || []; + }, + { + enabled: !!instance && !!token && !!address, + }, + ); +} + +export type AccessToken = { + id: string; + tokenMask: string; + walletAddress: string; + createdAt: string; + expiresAt: string; + label?: string; +}; + +export function useEngineAccessTokens(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.accessTokens(instance), + async () => { + const res = await fetch(`${instance}auth/access-tokens/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as AccessToken[]) || []; + }, + { enabled: !!instance && !!token }, + ); +} + +export type KeypairAlgorithm = "ES256" | "RS256" | "PS256"; + +export type Keypair = { + hash: string; + label?: string; + publicKey: string; + algorithm: KeypairAlgorithm; + createdAt: string; + updatedAt: string; +}; + +export function useEngineKeypairs(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.keypairs(instance), + async () => { + const res = await fetch(`${instance}auth/keypair/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as Keypair[]) || []; + }, + { enabled: !!instance && !!token }, + ); +} + +type AddKeypairInput = { + label?: string; + publicKey: string; + algorithm: string; +}; + +export function useEngineAddKeypair(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: AddKeypairInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/keypair/add`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.keypairs(instance)); + }, + }, + ); +} + +type RemoveKeypairInput = { + hash: string; +}; + +export function useEngineRemoveKeypair(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: RemoveKeypairInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/keypair/remove`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.keypairs(instance)); + }, + }, + ); +} + +export type EngineRelayer = { + id: string; + name?: string; + chainId: string; + backendWalletAddress: string; + allowedContracts?: string[]; + allowedForwarders?: string[]; +}; + +export function useEngineRelayer(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.relayers(instance), + async () => { + const res = await fetch(`${instance}relayer/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as EngineRelayer[]) || []; + }, + { enabled: !!instance && !!token }, + ); +} + +export type CreateRelayerInput = { + name?: string; + chain: string; + backendWalletAddress: string; + allowedContracts?: string[]; + allowedForwarders?: string[]; +}; + +export function useEngineCreateRelayer(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: CreateRelayerInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}relayer/create`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.relayers(instance)); + }, + }, + ); +} + +type RevokeRelayerInput = { + id: string; +}; + +export function useEngineRevokeRelayer(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: RevokeRelayerInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}relayer/revoke`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.relayers(instance)); + }, + }, + ); +} + +export type UpdateRelayerInput = { + id: string; + name?: string; + chain: string; + backendWalletAddress: string; + allowedContracts?: string[]; + allowedForwarders?: string[]; +}; + +export function useEngineUpdateRelayer(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: UpdateRelayerInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}relayer/update`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.relayers(instance)); + }, + }, + ); +} + +export interface EngineWebhook { + url: string; + name: string; + secret?: string | null; + eventType: string; + active: boolean; + createdAt: string; + id: number; +} + +export function useEngineWebhooks(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.webhooks(instance), + async () => { + const res = await fetch(`${instance}webhooks/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as EngineWebhook[]) || []; + }, + { enabled: !!instance && !!token }, + ); +} + +// POST REQUESTS +export type SetWalletConfigInput = + | { + type: "local"; + } + | { + type: "aws-kms"; + awsAccessKeyId: string; + awsSecretAccessKey: string; + awsRegion: string; + } + | { + type: "gcp-kms"; + gcpApplicationProjectId: string; + gcpKmsLocationId: string; + gcpKmsKeyRingId: string; + gcpApplicationCredentialEmail: string; + gcpApplicationCredentialPrivateKey: string; + }; + +export function useEngineSetWalletConfig(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: SetWalletConfigInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}configuration/wallets`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.walletConfig(instance)); + }, + }, + ); +} + +export type CreateBackendWalletInput = { + label?: string; +}; + +export function useEngineCreateBackendWallet(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: CreateBackendWalletInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}backend-wallet/create`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.backendWallets(instance), + ); + }, + }, + ); +} + +interface UpdateBackendWalletInput { + walletAddress: string; + label?: string; +} + +export function useEngineUpdateBackendWallet(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: UpdateBackendWalletInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}backend-wallet/update`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.backendWallets(instance), + ); + }, + }, + ); +} + +export type ImportBackendWalletInput = + | { + awsKmsKeyId: string; + awsKmsArn: string; + } + | { + gcpKmsKeyId: string; + gcpKmsKeyVersionId: string; + } + | { + privateKey?: string; + } + | { + mnemonic?: string; + } + | { + encryptedJson?: string; + password?: string; + }; + +export function useEngineImportBackendWallet(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: ImportBackendWalletInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}backend-wallet/import`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.backendWallets(instance), + ); + }, + }, + ); +} + +export function useEngineGrantPermissions(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: EngineAdmin) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/permissions/grant`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.permissions(instance)); + }, + }, + ); +} + +type RevokePermissionsInput = { + walletAddress: string; +}; + +export function useEngineRevokePermissions(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: RevokePermissionsInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/permissions/revoke`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.permissions(instance)); + }, + }, + ); +} + +type CreateAccessTokenResponse = AccessToken & { + accessToken: string; +}; + +export function useEngineCreateAccessToken(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async () => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/access-tokens/create`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify({}), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result as CreateAccessTokenResponse; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.accessTokens(instance)); + }, + }, + ); +} + +type RevokeAccessTokenInput = { + id: string; +}; + +export function useEngineRevokeAccessToken(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: RevokeAccessTokenInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/access-tokens/revoke`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.accessTokens(instance)); + }, + }, + ); +} + +type UpdateAccessTokenInput = { + id: string; + label?: string; +}; + +export function useEngineUpdateAccessToken(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: UpdateAccessTokenInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}auth/access-tokens/update`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.accessTokens(instance)); + }, + }, + ); +} + +export type CreateWebhookInput = { + url: string; + name: string; + eventType: string; +}; + +export function useEngineCreateWebhook(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: CreateWebhookInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}webhooks/create`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.webhooks(instance)); + }, + }, + ); +} + +type RevokeWebhookInput = { + id: number; +}; + +export function useEngineRevokeWebhook(instance: string) { + const { token } = useApiAuthToken(); + const queryClient = useQueryClient(); + + return useMutationWithInvalidate( + async (input: RevokeWebhookInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}webhooks/revoke`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.webhooks(instance)); + }, + }, + ); +} + +type SendTokensInput = { + chainId: number; + fromAddress: string; + toAddress: string; + amount: number; + currencyAddress?: string; +}; + +export function useEngineSendTokens(instance: string) { + const { token } = useApiAuthToken(); + + return useMutation(async (input: SendTokensInput) => { + invariant(instance, "instance is required"); + + const res = await fetch( + `${instance}backend-wallet/${input.chainId}/transfer`, + { + method: "POST", + headers: { + ...getEngineRequestHeaders(token), + "x-backend-wallet-address": input.fromAddress, + }, + body: JSON.stringify({ + to: input.toAddress, + amount: input.amount.toString(), + currencyAddress: input.currencyAddress, + }), + }, + ); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }); +} + +export function useEngineCorsConfiguration(instance: string) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.corsUrls(instance), + async () => { + const res = await fetch(`${instance}configuration/cors`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + + return (json.result as string[]) || []; + }, + { enabled: !!instance && !!token }, + ); +} + +interface SetCorsUrlInput { + urls: string[]; +} + +export function useEngineSetCorsConfiguration(instance: string) { + const queryClient = useQueryClient(); + const { token } = useApiAuthToken(); + + return useMutation( + async (input: SetCorsUrlInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}configuration/cors`, { + method: "PUT", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(engineKeys.corsUrls(instance)); + }, + }, + ); +} + +export interface EngineContractSubscription { + id: string; + chainId: number; + contractAddress: string; + webhook?: EngineWebhook; + createdAt: Date; + processEventLogs: boolean; + filterEvents: string[]; + processTransactionReceipts: boolean; + filterFunctions: string[]; + + // Dummy field for the table. + lastIndexedBlock: string; +} + +export function useEngineContractSubscription(instance: string) { + const { token } = useApiAuthToken(); + return useQuery( + engineKeys.contractSubscriptions(instance), + async () => { + const res = await fetch(`${instance}contract-subscriptions/get-all`, { + method: "GET", + headers: getEngineRequestHeaders(token), + }); + + const json = await res.json(); + return json.result as EngineContractSubscription[]; + }, + { + enabled: !!instance && !!token, + }, + ); +} + +export interface AddContractSubscriptionInput { + chain: string; + contractAddress: string; + webhookUrl: string; + processEventLogs: boolean; + filterEvents: string[]; + processTransactionReceipts: boolean; + filterFunctions: string[]; +} + +export function useEngineAddContractSubscription(instance: string) { + const queryClient = useQueryClient(); + const { token } = useApiAuthToken(); + + return useMutation( + async (input: AddContractSubscriptionInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}contract-subscriptions/add`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.contractSubscriptions(instance), + ); + }, + }, + ); +} + +export interface RemoveContractSubscriptionInput { + contractSubscriptionId: string; +} + +export function useEngineRemoveContractSubscription(instance: string) { + const queryClient = useQueryClient(); + const { token } = useApiAuthToken(); + + return useMutation( + async (input: RemoveContractSubscriptionInput) => { + invariant(instance, "instance is required"); + + const res = await fetch(`${instance}contract-subscriptions/remove`, { + method: "POST", + headers: getEngineRequestHeaders(token), + body: JSON.stringify(input), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.error.message); + } + + return json.result; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + engineKeys.contractSubscriptions(instance), + ); + }, + }, + ); +} + +export function useEngineSubscriptionsLastBlock( + instanceUrl: string, + chainId: number, + autoUpdate: boolean, +) { + const { token } = useApiAuthToken(); + + return useQuery( + engineKeys.contractSubscriptionsLastBlock(instanceUrl, chainId), + async () => { + const response = await fetch( + `${instanceUrl}contract-subscriptions/last-block?chain=${chainId}`, + { + method: "GET", + headers: getEngineRequestHeaders(token), + }, + ); + + const json = await response.json(); + return json.result.lastBlock as number; + }, + { + enabled: !!instanceUrl && !!token, + refetchInterval: autoUpdate ? 5_000 : false, + }, + ); +} + +export interface EngineResourceMetrics { + error: string; + data: { + cpu: number; + memory: number; + }; +} + +export function useEngineResourceMetrics(engineId: string) { + const [enabled, setEnabled] = useState(true); + + return useQuery( + engineKeys.metrics(engineId), + async () => { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/engine/${engineId}/metrics`, + { + method: "GET", + credentials: "include", + }, + ); + if (!res.ok) { + setEnabled(false); + throw new Error(`Unexpected status ${res.status}: ${await res.text()}`); + } + const json = (await res.json()) as EngineResourceMetrics; + return json; + }, + { + // Poll every 5s unless disabled. + enabled, + refetchInterval: 5_000, + }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useFavoriteChains.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useFavoriteChains.ts new file mode 100644 index 00000000000..6655e28a6d6 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useFavoriteChains.ts @@ -0,0 +1,30 @@ +import { useMemo } from "react"; +import type { Chain } from "@thirdweb-dev/chains"; +import { useFavouriteChainIds } from "../../../app/(dashboard)/(chain)/components/client/star-button"; +import { useSupportedChains } from "@thirdweb-dev/react"; + +export function useFavoriteChains() { + const allChains = useSupportedChains(); + const favChainsQuery = useFavouriteChainIds(); + + const data = useMemo(() => { + if (favChainsQuery.data) { + const _chains: Chain[] = []; + favChainsQuery.data.forEach((chainId) => { + const chain = allChains.find((c) => String(c.chainId) === chainId); + if (chain) { + _chains.push(chain); + } + }); + + return _chains; + } + + return [] as Chain[]; + }, [favChainsQuery.data, allChains]); + + return { + isLoading: favChainsQuery.isLoading, + data, + }; +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useGas.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useGas.ts new file mode 100644 index 00000000000..e54fea13ae3 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useGas.ts @@ -0,0 +1,16 @@ +import { useQuery } from "@tanstack/react-query"; + +export type GasEstimate = { gasPrice: number; ethPrice: number }; + +export function useGas() { + return useQuery( + ["gas-price", "ethereum"], + async () => { + const res = await fetch(`/api/gas`); + return res.json() as Promise; + }, + { + refetchInterval: 60_000, + }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useLoggedInUser.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useLoggedInUser.ts new file mode 100644 index 00000000000..1c41dd2105b --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useLoggedInUser.ts @@ -0,0 +1,21 @@ +import { useAddress, useUser } from "@thirdweb-dev/react"; + +export function useLoggedInUser(): ReturnType { + const connectedAddress = useAddress(); + const userQuery = useUser(); + + // user is not considered logged in if the connected address does not match the user's address + if ( + !userQuery.isLoggedIn || + !connectedAddress || + userQuery.user?.address !== connectedAddress + ) { + return { + user: undefined, + isLoading: userQuery.isLoading, + isLoggedIn: false, + }; + } + + return userQuery; +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/usePayments.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/usePayments.ts new file mode 100644 index 00000000000..f2f5c633b1a --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/usePayments.ts @@ -0,0 +1,1030 @@ +import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; +import { + Arbitrum, + ArbitrumGoerli, + ArbitrumNova, + ArbitrumSepolia, + Avalanche, + AvalancheFuji, + Base, + BaseGoerli, + BaseSepoliaTestnet, + Binance, + BinanceTestnet, + Ethereum, + FrameTestnet, + Goerli, + Mumbai, + Optimism, + OptimismGoerli, + Polygon, + PolygonAmoyTestnet, + RarichainTestnet, + Sepolia, + Xai, + XaiSepolia, + Zora, + ZoraTestnet, +} from "@thirdweb-dev/chains"; +import { useAddress } from "@thirdweb-dev/react"; +import { Abi, FeatureName, SmartContract } from "@thirdweb-dev/sdk"; +import { detectFeatures } from "components/contract-components/utils"; +import { CURRENCIES, CurrencyMetadata } from "constants/currencies"; +import { PROD_OR_DEV_URL } from "constants/rpc"; +import { THIRDWEB_PAYMENTS_API_HOST } from "constants/urls"; +import { BaseContract } from "ethers"; +import { + InsertWebhookMutationVariables, + useInsertWebhookMutation, + useUpdateSellerMutation, + UpdateWebhookMutationVariables, + useUpdateWebhookMutation, + ApiSecretKeysByOwnerIdQuery, + CheckoutsByContractAddressQueryVariables, + useCheckoutsByContractAddressLazyQuery, + ContractsByOwnerIdQueryVariables, + useContractsByOwnerIdLazyQuery, + DetailedAnalyticsQueryVariables, + useDetailedAnalyticsLazyQuery, + SellerDocument, + SellerQueryVariables, + useSellerLazyQuery, + WebhooksBySellerIdDocument, + WebhooksBySellerIdQueryVariables, + useWebhooksBySellerIdLazyQuery, +} from "graphql/generated"; +import { getThirdwebSDK } from "lib/sdk"; +import invariant from "tiny-invariant"; +import { OtherAddressZero } from "utils/zeroAddress"; +import { paymentsKeys } from "../cache-keys"; +import { useMutationWithInvalidate } from "./query/useQueryWithNetwork"; +import { useApiAuthToken } from "./useApi"; + +const paymentsExtensions: FeatureName[] = [ + "ERC721SharedMetadata", + "ERC721ClaimPhasesV2", + "ERC721ClaimConditionsV2", + "ERC1155ClaimPhasesV1", + "ERC1155ClaimPhasesV2", +]; + +const hasPaymentsDetectedExtensions = ( + contract: SmartContract | undefined, +) => { + return detectFeatures(contract, paymentsExtensions); +}; + +// TODO: Get this from API +export const validPaymentsChainIdsMainnets: number[] = [ + Ethereum.chainId, + Polygon.chainId, + Avalanche.chainId, + Optimism.chainId, + Arbitrum.chainId, + Binance.chainId, + Base.chainId, + Zora.chainId, + ArbitrumNova.chainId, +]; + +const validPaymentsChainIdsTestnets: number[] = [ + Sepolia.chainId, + Mumbai.chainId, + PolygonAmoyTestnet.chainId, + AvalancheFuji.chainId, + OptimismGoerli.chainId, + ArbitrumGoerli.chainId, + BinanceTestnet.chainId, + BaseSepoliaTestnet.chainId, + ZoraTestnet.chainId, + ArbitrumSepolia.chainId, + FrameTestnet.chainId, + RarichainTestnet.chainId, + Xai.chainId, + XaiSepolia.chainId, +]; + +export const validPaymentsChainIds: number[] = [ + ...validPaymentsChainIdsMainnets, + ...validPaymentsChainIdsTestnets, +]; + +// type for validcheckoutchainids +type PaymentChainId = (typeof validPaymentsChainIds)[number]; + +const ChainIdToPaperChain: Record = { + [Ethereum.chainId]: "Ethereum", + [Goerli.chainId]: "Goerli", + [Sepolia.chainId]: "Sepolia", + [Polygon.chainId]: "Polygon", + [Mumbai.chainId]: "Mumbai", + [PolygonAmoyTestnet.chainId]: "Amoy", + [Avalanche.chainId]: "Avalanche", + [AvalancheFuji.chainId]: "AvalancheFuji", + [Optimism.chainId]: "Optimism", + [OptimismGoerli.chainId]: "OptimismGoerli", + [Arbitrum.chainId]: "ArbitrumOne", + [ArbitrumNova.chainId]: "ArbitrumNova", + [ArbitrumGoerli.chainId]: "ArbitrumGoerli", + [ArbitrumSepolia.chainId]: "ArbitrumSepolia", + [Binance.chainId]: "BSC", + [BinanceTestnet.chainId]: "BSCTestnet", + [Base.chainId]: "Base", + [BaseGoerli.chainId]: "BaseGoerli", + [BaseSepoliaTestnet.chainId]: "BaseSepolia", + [Zora.chainId]: "Zora", + [ZoraTestnet.chainId]: "ZoraTestnet", + [FrameTestnet.chainId]: "FrameTestnet", + [RarichainTestnet.chainId]: "RariChainTestnet", + [Xai.chainId]: "Xai", + [XaiSepolia.chainId]: "XaiSepolia", +}; + +export const PaperChainToChainId: Record = { + Ethereum: Ethereum.chainId, + Goerli: Goerli.chainId, + Sepolia: Sepolia.chainId, + Polygon: Polygon.chainId, + Mumbai: Mumbai.chainId, + Amoy: PolygonAmoyTestnet.chainId, + Avalanche: Avalanche.chainId, + AvalancheFuji: AvalancheFuji.chainId, + Optimism: Optimism.chainId, + OptimismGoerli: OptimismGoerli.chainId, + ArbitrumOne: Arbitrum.chainId, + ArbitrumNova: ArbitrumNova.chainId, + ArbitrumGoerli: ArbitrumGoerli.chainId, + ArbitrumSepolia: ArbitrumSepolia.chainId, + BSC: Binance.chainId, + BSCTestnet: BinanceTestnet.chainId, + Base: Base.chainId, + BaseGoerli: BaseGoerli.chainId, + BaseSepolia: BaseSepoliaTestnet.chainId, + Zora: Zora.chainId, + ZoraTestnet: ZoraTestnet.chainId, + FrameTestnet: FrameTestnet.chainId, + RariChainTestnet: RarichainTestnet.chainId, + Xai: Xai.chainId, + XaiSepolia: XaiSepolia.chainId, +}; + +interface SupportedCurrenciesMap { + [key: number]: string[]; +} + +const supportedCurrenciesMap: SupportedCurrenciesMap = { + [Ethereum.chainId]: ["ETH", "USDC", "WETH", "MATIC"], + [Goerli.chainId]: ["ETH", "USDC", "WETH"], + [Sepolia.chainId]: ["ETH"], + [Polygon.chainId]: ["MATIC", "WETH", "USDC", "USDC.e"], + [Mumbai.chainId]: ["MATIC", "USDC", "USDC.e", "DERC20", "CDOL"], + [PolygonAmoyTestnet.chainId]: ["MATIC"], + [Avalanche.chainId]: ["AVAX", "USDC", "USDC.e"], + [AvalancheFuji.chainId]: ["AVAX", "USDC"], + [Optimism.chainId]: ["ETH", "USDC"], + [OptimismGoerli.chainId]: ["ETH"], + [Arbitrum.chainId]: ["ETH", "USDC"], + [ArbitrumNova.chainId]: ["ETH"], + [ArbitrumGoerli.chainId]: ["AGOR", "USDC"], + [ArbitrumSepolia.chainId]: ["ETH", "DERC20"], + [Binance.chainId]: ["BNB", "USDC", "USDT"], + [BinanceTestnet.chainId]: ["TBNB", "USDT"], + [Base.chainId]: ["ETH"], + [BaseGoerli.chainId]: ["ETH"], + [BaseSepoliaTestnet.chainId]: ["ETH"], + [Zora.chainId]: ["ETH"], + [ZoraTestnet.chainId]: ["ETH"], + [FrameTestnet.chainId]: ["ETH"], + [RarichainTestnet.chainId]: ["ETH"], + [Xai.chainId]: ["XAI"], + [XaiSepolia.chainId]: ["XAI"], +}; + +const ChainSymbolToChainName: Record = { + ETH: "Ether", + MATIC: "Matic", + AVAX: "Avalanche", + AGOR: "Arbitrum Goerli Ether", + XAI: "XAI", +}; + +export const ChainIdToSupportedCurrencies: Record = + Object.keys(supportedCurrenciesMap).reduce< + Record + >((acc, chainIdStr) => { + const chainId = parseInt(chainIdStr, 10); + + if (!isNaN(chainId)) { + const chainCurrencies = CURRENCIES[chainId] || []; + const supportedCurrencies = supportedCurrenciesMap[chainId] || []; + + if (supportedCurrencies.length > 0) { + const firstSupportedCurrencyName = supportedCurrencies[0]; + + const defaultCurrency: CurrencyMetadata = { + address: OtherAddressZero.toLowerCase(), + name: ChainSymbolToChainName[firstSupportedCurrencyName] || "Ether", + symbol: firstSupportedCurrencyName, + }; + + acc[chainId] = [ + defaultCurrency, + ...chainCurrencies.filter( + (currency) => + supportedCurrencies.includes(currency.symbol) && + currency.symbol !== firstSupportedCurrencyName, + ), + ] as CurrencyMetadata[]; + } + } + + return acc; + }, {}); + +type RegisterContractInput = { + chain: string; + contractAddress: string; + contractType?: "CUSTOM_CONTRACT" | "THIRDWEB"; + contractDefinition?: Abi; + displayName?: string; +}; + +const apiDate = "2022-08-12"; + +function usePaymentsApi() { + const fetchFromApi = async ( + token: string, + method: string, + endpoint: string, + body?: T, + options?: { + isGenerateSignedUrl?: boolean; + isCreateVerificationSession?: boolean; + isSellerDocumentCount?: boolean; + isSellerVerificationStatus?: boolean; + isGetImageUploadLink?: boolean; + isSellerApiKey?: boolean; + isWebhookTest?: boolean; + }, + ) => { + const res = await fetch(`${THIRDWEB_PAYMENTS_API_HOST}/api/${endpoint}`, { + method, + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${token}`, + }, + ...(body && { body: JSON.stringify(body) }), + }); + const json = await res.json(); + + if (json.error) { + throw new Error(json.message); + } + + if (options?.isGenerateSignedUrl) { + return json.url; + } + + if (options?.isCreateVerificationSession) { + return json as { clientSecret: string; id: string }; + } + + if (options?.isSellerDocumentCount) { + return json as { fileNames: string[]; count: number }; + } + + if (options?.isSellerVerificationStatus) { + return json as { status: { type: string; message: string } }; + } + + if (options?.isGetImageUploadLink) { + return json as { + data: { imageId: string; uploadLink: string }; + success: boolean; + }; + } + + if (options?.isSellerApiKey) { + return json as { + data: { data: ApiSecretKeysByOwnerIdQuery; decrypted_key: string }; + success: boolean; + }; + } + + if (options?.isWebhookTest) { + return json as { + status: number; + responseBody: string; + }; + } + + return json.result; + }; + + return fetchFromApi; +} + +export function usePaymentsRegisterContract() { + const { token } = useApiAuthToken(); + const fetchFromPaymentsAPI = usePaymentsApi(); + const queryClient = useQueryClient(); + const address = useAddress(); + + return useMutationWithInvalidate( + async (input: RegisterContractInput) => { + invariant(token, "No token found"); + invariant(address, "No wallet address found"); + invariant(input.chain, "No chain found"); + const sdk = getThirdwebSDK( + parseInt(input.chain), + `https://${input.chain}.rpc.${PROD_OR_DEV_URL}`, + ); + invariant(sdk, "No SDK found"); + + const contract = await sdk.getContract(input.contractAddress); + invariant(contract?.abi, "No contract ABI found"); + + const hasDetectedExtensions = hasPaymentsDetectedExtensions(contract); + const contractType = hasDetectedExtensions + ? "THIRDWEB" + : "CUSTOM_CONTRACT"; + + let displayName; + try { + const metadata = await contract.metadata.get(); + displayName = metadata.name; + } catch (e) { + console.error(`Failed to get contract metadata`); + } + + const body: RegisterContractInput = { + ...input, + contractDefinition: contract.abi, + contractAddress: input.contractAddress, + chain: ChainIdToPaperChain[parseInt(input.chain)], + contractType, + displayName, + }; + + return fetchFromPaymentsAPI( + token, + "POST", + `${apiDate}/register-contract`, + body, + ); + }, + { + onSuccess: async () => { + await queryClient.invalidateQueries( + paymentsKeys.contracts(address as string), + ); + }, + }, + ); +} + +export type CreateUpdateCheckoutInput = { + contractId: string; + title: string; + description?: string; + imageUrl?: string; + limitPerTransaction?: number; + twitterHandleOverride?: string; + successCallbackUrl?: string; + redirectAfterPayment?: boolean; + cancelCallbackUrl?: string; + mintMethod?: { + name: string; + args: { [key: string]: string }; + payment: { + currency: string; + value: string; + }; + }; + eligibilityMethod?: { + name: string; + args: string[]; + }; + tokenId?: string; + listingId?: string; + contractArgs?: string; + hideNativeMint?: boolean; + hidePaperWallet?: boolean; + hideExternalWallet?: boolean; + hidePayWithCard?: boolean; + hidePayWithCrypto?: boolean; + hidePayWithIdeal?: boolean; + sendEmailOnTransferSucceeded?: boolean; + brandDarkMode?: boolean; + brandButtonShape?: "full" | "lg" | "none"; + brandColorScheme?: + | "gray" + | "red" + | "orange" + | "yellow" + | "green" + | "teal" + | "blue" + | "cyan" + | "purple" + | "pink"; + thirdwebClientId: string; + checkoutId?: string; +}; + +export function usePaymentsCreateUpdateCheckout(contractAddress: string) { + const { token } = useApiAuthToken(); + const fetchFromPaymentsAPI = usePaymentsApi(); + const queryClient = useQueryClient(); + const address = useAddress(); + + return useMutationWithInvalidate( + async (input: CreateUpdateCheckoutInput) => { + invariant(token, "No token found"); + invariant(address, "No wallet address found"); + + return fetchFromPaymentsAPI( + token, + "POST", + `${apiDate}/shareable-checkout-link${ + input?.checkoutId ? `/${input.checkoutId} ` : "" + }`, + input, + ); + }, + { + onSuccess: async () => { + await queryClient.invalidateQueries( + paymentsKeys.checkouts(contractAddress, address as string), + ); + }, + }, + ); +} + +type RemoveCheckoutInput = { + checkoutId: string; +}; + +export function usePaymentsRemoveCheckout(contractAddress: string) { + const { token } = useApiAuthToken(); + const fetchFromPaymentsAPI = usePaymentsApi(); + const queryClient = useQueryClient(); + const address = useAddress(); + + return useMutationWithInvalidate( + async (input: RemoveCheckoutInput) => { + invariant(token, "No token found"); + invariant(address, "No wallet address found"); + invariant(input.checkoutId, "No checkoutId found"); + + return fetchFromPaymentsAPI( + token, + "DELETE", + `${apiDate}/shareable-checkout-link/${input.checkoutId}`, + ); + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + paymentsKeys.checkouts(contractAddress, address as string), + ); + }, + }, + ); +} + +const getBlobFromBase64Image = async (strBase64: string): Promise => { + if (!strBase64.startsWith("data:image/")) { + return Promise.reject("Invalid base64 image format"); + } + + const imageBase64Response = await fetch(strBase64); + return imageBase64Response.blob(); +}; + +interface UploadLinkResponse { + uploadLink: string; + imageId: string; +} + +interface UploadImageResponse { + result: { + id: string; + meta: { [field: string]: string }; + variants: string[]; + }; + success: boolean; + errors: any; + messages: any; +} + +export function usePaymentsUploadToCloudflare() { + const { token } = useApiAuthToken(); + const fetchFromPaymentsAPI = usePaymentsApi(); + const queryClient = useQueryClient(); + const address = useAddress(); + + return useMutationWithInvalidate( + async (dataBase64: string) => { + invariant(token, "No token found"); + invariant(address, "No wallet address found"); + invariant(dataBase64, "No file found"); + const file = await getBlobFromBase64Image(dataBase64); + const res = await fetchFromPaymentsAPI( + token, + "GET", + "storage/get-image-upload-link", + undefined, + { isGetImageUploadLink: true }, + ); + + const { uploadLink, imageId } = res.data as UploadLinkResponse; + if (!uploadLink || uploadLink === "") { + throw new Error("Unable to get upload link."); + } + + // Append the data to the form and upload to cloudflare. + const uploadForm = new FormData(); + uploadForm.append("file", file, imageId); + + // Upload the image to cloudflare. + const response = await fetch(uploadLink, { + method: "POST", + body: uploadForm, + }); + + if (response.status !== 200) { + throw new Error("Failed to upload image."); + } + const responseData = (await response.json()) as UploadImageResponse; + const imageUrl = + responseData.result.variants[1] || + responseData.result.variants[0] || + ""; + if (imageUrl === "") { + throw new Error("Unable to generate image URL."); + } + + // Return the string URL. + return imageUrl; + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + paymentsKeys.kycStatus(address as string), + ); + }, + }, + ); +} + +export type SellerValueInput = { + twitter_handle: string; + company_name: string; + company_logo_url: string; + support_email: string; + is_sole_proprietor: boolean; +}; + +type UpdateSellerByIdInput = { + id: string; + sellerValue: SellerValueInput; +}; + +export function usePaymentsUpdateSellerById(id: string) { + const queryClient = useQueryClient(); + const address = useAddress(); + + const [updateSellerById] = useUpdateSellerMutation({ + refetchQueries: [SellerDocument], + }); + + return useMutationWithInvalidate( + async (input: UpdateSellerByIdInput) => { + invariant(address, "No wallet address found"); + invariant(id, "No id found"); + + return updateSellerById({ + variables: { + id: input.id, + sellerValue: input.sellerValue, + } as UpdateSellerByIdInput, + }); + }, + { + onSuccess: () => { + return queryClient.invalidateQueries(paymentsKeys.settings(id)); + }, + }, + ); +} + +export function usePaymentsEnabledContracts() { + const address = useAddress(); + const { paymentsSellerId } = useApiAuthToken(); + const [getContractsByOwnerId] = useContractsByOwnerIdLazyQuery(); + + return useQuery( + paymentsKeys.contracts(address as string), + async () => { + const { data, error } = await getContractsByOwnerId({ + variables: { + ownerId: paymentsSellerId, + } as ContractsByOwnerIdQueryVariables, + }); + + if (error) { + console.error(error); + } + + return data && data?.contract.length > 0 ? data.contract : []; + }, + { enabled: !!paymentsSellerId && !!address }, + ); +} + +export function usePaymentsCheckoutsByContract(contractAddress: string) { + const address = useAddress(); + const { paymentsSellerId } = useApiAuthToken(); + const [getCheckoutsByContractAddress] = + useCheckoutsByContractAddressLazyQuery(); + + return useQuery( + paymentsKeys.checkouts(contractAddress, address as string), + async () => { + const { data, error } = await getCheckoutsByContractAddress({ + variables: { + ownerId: paymentsSellerId, + contractAddressQuery: contractAddress, + } as CheckoutsByContractAddressQueryVariables, + }); + + if (error) { + console.error(error); + } + + const checkouts = data?.checkout || []; + return ( + checkouts.filter( + (checkout) => !checkout.generated_by_registered_contract, + ) ?? [] + ); + }, + { + enabled: !!paymentsSellerId && !!address && !!contractAddress, + }, + ); +} + +enum PaymentMethod { + NATIVE_MINT = "NATIVE_MINT", + BUY_WITH_CARD = "BUY_WITH_CARD", + BUY_WITH_BANK = "BUY_WITH_BANK", + BUY_WITH_CRYPTO = "BUY_WITH_CRYPTO", + ENQUEUED_JOB = "ENQUEUED_JOB", + FREE_CLAIM_AND_TRANSFER = "FREE_CLAIM_AND_TRANSFER", + BUY_WITH_IDEAL = "BUY_WITH_IDEAL", +} + +const PaymentMethodToText: Record = { + [PaymentMethod.BUY_WITH_CARD]: "Card", + [PaymentMethod.BUY_WITH_BANK]: "Bank Account", + [PaymentMethod.BUY_WITH_CRYPTO]: "Other Crypto", + [PaymentMethod.NATIVE_MINT]: "Native", + [PaymentMethod.ENQUEUED_JOB]: "Free Claim", + [PaymentMethod.FREE_CLAIM_AND_TRANSFER]: "Free claim", + [PaymentMethod.BUY_WITH_IDEAL]: "iDEAL", +}; + +enum FiatCurrency { + USD = "USD", + EUR = "EUR", + JPY = "JPY", + GBP = "GBP", + AUD = "AUD", + CAD = "CAD", + CHF = "CHF", + CNH = "CNH", + HKD = "HKD", + NZD = "NZD", +} + +const WALLET_TYPE = "wallet_type"; +const PAYMENT_METHOD = "payment_method"; +function parseAnalyticOverviewData(data: any[]): any[] { + const result: { [checkout_id: string]: any } = {}; + + for (const item of data) { + const temp = result[item.checkout_id] || { revenue_cents: {} }; + + temp.collection_title = item.collection_title || ""; + temp.collection_description = item.collection_description || ""; + temp.checkout_created_at = item.checkout_created_at || ""; + temp.checkout_deleted_at = item.checkout_deleted_at || ""; + temp.checkout_id = item.checkout_id || ""; + temp.image_url = item.image_url || ""; + + temp.network_fees_cents = + (temp.network_fees_cents || 0) + (item.network_fees_cents || 0); + temp.number_sold = (temp.number_sold || 0) + (item.number_sold || 0); + + if (item.revenue_cents > 0) { + temp.revenue_cents[ + (item.fiat_currency as FiatCurrency) || FiatCurrency.USD + ] = + (temp.revenue_cents[ + (item.fiat_currency as FiatCurrency) || FiatCurrency.USD + ] || 0) + (item.revenue_cents || 0); + } + + temp.paper_fees_cents = + (temp.paper_fees_cents || 0) + item.paper_fees_cents; + temp.num_transactions_made = + (temp.num_transactions_made || 0) + (item.num_transactions_made || 0); + + if (item.wallet_type) { + const walletTemp = temp[WALLET_TYPE] || {}; + walletTemp[item.wallet_type] = + (walletTemp[item.wallet_type] || 0) + item.number_sold; + temp[WALLET_TYPE] = walletTemp; + } + if (item.payment_method) { + const paymentTemp = temp[PAYMENT_METHOD] || {}; + paymentTemp[PaymentMethodToText[item.payment_method as PaymentMethod]] = + (paymentTemp[ + PaymentMethodToText[item.payment_method as PaymentMethod] + ] || 0) + item.number_sold; + temp[PAYMENT_METHOD] = paymentTemp; + } + + result[item.checkout_id] = temp; + } + + return [ + ...(Object.values(result)?.filter( + (analytic) => + !analytic.checkout_deleted_at || + analytic.checkout_deleted_at === "infinity", + ) ?? []), + ]; +} + +export function usePaymentsDetailedAnalytics(checkoutId: string | undefined) { + invariant(checkoutId, "checkoutId is required"); + const address = useAddress(); + const { paymentsSellerId } = useApiAuthToken(); + const [getDetailedAnalytics] = useDetailedAnalyticsLazyQuery(); + + return useQuery( + paymentsKeys.detailedAnalytics(checkoutId), + async () => { + const { data, error } = await getDetailedAnalytics({ + variables: { + ownerId: paymentsSellerId, + checkoutId, + } as DetailedAnalyticsQueryVariables, + }); + + if (error) { + console.error(error); + } + + return { + overview: data?.analytics_overview_2, + detailed: data?.get_detailed_analytics, + parsedOverview: parseAnalyticOverviewData( + data?.analytics_overview_2 || [], + )[0], + }; + }, + { enabled: !!paymentsSellerId && !!address }, + ); +} + +export function usePaymentsSellerById(paymentsSellerId: string) { + invariant(paymentsSellerId, "paymentsSellerId is required"); + const address = useAddress(); + const [getSellerById] = useSellerLazyQuery(); + + return useQuery( + paymentsKeys.settings(paymentsSellerId), + async () => { + const { data, error } = await getSellerById({ + variables: { + id: paymentsSellerId, + } as SellerQueryVariables, + }); + + if (error) { + console.error(error); + } + + return data?.seller_by_pk; + }, + { enabled: !!paymentsSellerId && !!address }, + ); +} + +export type PaymentsWebhooksType = { + id: string; + sellerId: string; + url: string; + isProduction: boolean; + createdAt: Date; +}; + +export function usePaymentsWebhooksById(paymentsSellerId: string) { + invariant(paymentsSellerId, "paymentsSellerId is required"); + + const [getWebhooksBySellerId] = useWebhooksBySellerIdLazyQuery(); + + return useQuery( + paymentsKeys.webhooks(paymentsSellerId), + async () => { + invariant(paymentsSellerId, "no payments seller id found"); + const { data, error } = await getWebhooksBySellerId({ + variables: { + sellerId: paymentsSellerId, + } as WebhooksBySellerIdQueryVariables, + }); + + if (error) { + console.error(error); + } + + return data && data?.webhook.length > 0 + ? (data.webhook.map((webhook) => ({ + id: webhook.id, + sellerId: webhook.seller_id, + url: webhook.url, + isProduction: webhook.is_production, + createdAt: new Date(webhook.created_at), + })) as PaymentsWebhooksType[]) + : ([] as PaymentsWebhooksType[]); + }, + { enabled: !!paymentsSellerId }, + ); +} + +export type CreateWebhookInput = { + url: string; + isProduction: boolean; +}; + +export function usePaymentsCreateWebhook(paymentsSellerId: string) { + invariant(paymentsSellerId, "paymentsSellerId is required"); + const queryClient = useQueryClient(); + + const [createWebhookBySellerId] = useInsertWebhookMutation({ + refetchQueries: [WebhooksBySellerIdDocument], + }); + + return useMutationWithInvalidate( + async (input: CreateWebhookInput) => { + invariant(paymentsSellerId, "No seller id found"); + + return createWebhookBySellerId({ + variables: { + object: { + seller_id: paymentsSellerId, + url: input.url, + is_production: input.isProduction, + }, + } as InsertWebhookMutationVariables, + }); + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + paymentsKeys.webhooks(paymentsSellerId), + ); + }, + }, + ); +} + +type UpdateWebhookInput = { + webhookId: string; + url?: string; + deletedAt?: Date; +}; + +export function usePaymentsUpdateWebhook(paymentsSellerId: string) { + const queryClient = useQueryClient(); + + const [updateWebhookBySellerId] = useUpdateWebhookMutation({ + refetchQueries: [WebhooksBySellerIdDocument], + }); + + return useMutationWithInvalidate( + async (input: UpdateWebhookInput) => { + invariant(paymentsSellerId, "No seller id found"); + + return updateWebhookBySellerId({ + variables: { + id: input.webhookId, + webhookValue: { + url: input.url, + deleted_at: input.deletedAt, + }, + } as UpdateWebhookMutationVariables, + }); + }, + { + onSuccess: () => { + return queryClient.invalidateQueries( + paymentsKeys.webhooks(paymentsSellerId), + ); + }, + }, + ); +} + +export function usePaymentsWebhooksSecretKeyById(paymentsSellerId: string) { + const { token } = useApiAuthToken(); + const fetchFromPaymentsAPI = usePaymentsApi(); + + return useQuery( + paymentsKeys.webhookSecret(paymentsSellerId), + async () => { + invariant(token, "No token found"); + invariant(paymentsSellerId, "No sellerId found"); + + return fetchFromPaymentsAPI( + token, + "POST", + "api-key/get-decrypted-key", + { + sellerId: paymentsSellerId, + }, + { + isSellerApiKey: true, + }, + ); + }, + { enabled: !!paymentsSellerId && !!token }, + ); +} + +export enum WebhookEvent { + /** + * Emitted when the buyer's payment fails. + */ + PAYMENT_FAILED = "payment:failed", + /** + * Emitted when the buyer's payment is completed. + */ + PAYMENT_SUCCEEDED = "payment:succeeded", + /** + * Emitted when the buyer's payment method has a hold created. + * They are not charged yet. + */ + PAYMENT_HOLD_CREATED = "payment:hold_created", + /** + * Emitted when the buyer's payment is refunded. + */ + PAYMENT_REFUNDED = "payment:refunded", + + /** + * Emitted when the NFT is successfully transferred to the buyer's wallet. + */ + TRANSFER_SUCCEEDED = "transfer:succeeded", + /** + * Emitted when the NFT failed to transfer to the buyer's wallet. + */ + TRANSFER_FAILED = "transfer:failed", + + /** + * Called when the transaction is successfully enqueue on chain + */ + TRANSACTION_ENQUEUED = "transaction:enqueued", +} + +export type PaymentsWebhooksTestInput = { + webhookEvent: WebhookEvent; + webhookUrl: string; +}; + +export function usePaymentsTestWebhook(paymentsSellerId: string) { + invariant(paymentsSellerId, "paymentsSellerId is required"); + + const { token } = useApiAuthToken(); + const fetchFromPaymentsAPI = usePaymentsApi(); + + return useMutation(async (input: PaymentsWebhooksTestInput) => { + invariant(token, "No token found"); + return fetchFromPaymentsAPI( + token, + "POST", + "checkout/test-webhook-url", + { + event: input.webhookEvent, + webhookUrl: input.webhookUrl, + }, + { + isWebhookTest: true, + }, + ); + }); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useRegistry.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useRegistry.ts new file mode 100644 index 00000000000..8620ad7338c --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useRegistry.ts @@ -0,0 +1,160 @@ +import { useMutation, useQueryClient, useQuery } from "@tanstack/react-query"; +import { useAddress, useSDK, useSigner } from "@thirdweb-dev/react"; +import { + addContractToMultiChainRegistry, + getGaslessPolygonSDK, +} from "components/contract-components/utils"; +import { useAllChainsData } from "hooks/chains/allChains"; +import invariant from "tiny-invariant"; +import { useSupportedChainsRecord } from "hooks/chains/configureChains"; +import { useMemo } from "react"; +import { getAllMultichainRegistry } from "dashboard-extensions/common/read/getAllMultichainRegistry"; +import { polygon } from "thirdweb/chains"; +import { getContract } from "thirdweb"; +import { thirdwebClient } from "lib/thirdweb-client"; +import { BasicContract } from "contract-ui/types/types"; +import { defineDashboardChain } from "lib/v5-adapter"; + +const MULTICHAIN_REGISTRY_ADDRESS = + "0xcdAD8FA86e18538aC207872E8ff3536501431B73"; + +const registryContract = getContract({ + client: thirdwebClient, + address: MULTICHAIN_REGISTRY_ADDRESS, + chain: defineDashboardChain(polygon.id), +}); + +function useMultiChainRegContractList(walletAddress?: string) { + return useQuery( + ["dashboard-registry", walletAddress, "multichain-contract-list"], + async () => { + invariant(walletAddress, "walletAddress is required"); + const contracts = await getAllMultichainRegistry({ + contract: registryContract, + address: walletAddress, + }); + + return contracts; + }, + { + enabled: !!walletAddress, + }, + ); +} + +interface Options { + onlyMainnet?: boolean; +} + +export const useAllContractList = ( + walletAddress: string | undefined, + { onlyMainnet }: Options = { onlyMainnet: false }, +) => { + const multiChainQuery = useMultiChainRegContractList(walletAddress); + + const configuredChainsRecord = useSupportedChainsRecord(); + const contractList = useMemo(() => { + const data = multiChainQuery.data || []; + + const mainnets: BasicContract[] = []; + const testnets: BasicContract[] = []; + + data.forEach((net) => { + if (net.chainId in configuredChainsRecord) { + const chainRecord = configuredChainsRecord[net.chainId]; + if (chainRecord.status !== "deprecated") { + if (chainRecord.testnet) { + testnets.push(net); + } else { + mainnets.push(net); + } + } + } + }); + + mainnets.sort((a, b) => a.chainId - b.chainId); + + if (onlyMainnet) { + return mainnets; + } + + testnets.sort((a, b) => a.chainId - b.chainId); + return mainnets.concat(testnets); + }, [multiChainQuery.data, onlyMainnet, configuredChainsRecord]); + + return { + ...multiChainQuery, + data: contractList, + }; +}; + +type RemoveContractParams = { + contractAddress: string; + chainId: number; +}; + +export function useRemoveContractMutation() { + const walletAddress = useAddress(); + const signer = useSigner(); + const { chainIdToChainRecord } = useAllChainsData(); + + const queryClient = useQueryClient(); + + return useMutation( + async (data: RemoveContractParams) => { + invariant( + walletAddress, + "cannot add a contract without a wallet address", + ); + invariant(chainIdToChainRecord, "chains not initialzed yet"); + invariant(signer, "no wallet connected"); + invariant(data.chainId, "chainId not provided"); + + const { contractAddress, chainId } = data; + + const gaslessPolygonSDK = getGaslessPolygonSDK(signer); + return await gaslessPolygonSDK.multiChainRegistry?.removeContract({ + address: contractAddress, + chainId, + }); + }, + { + onSettled: () => { + return queryClient.invalidateQueries(["dashboard-registry"]); + }, + }, + ); +} + +type AddContractParams = { + contractAddress: string; + chainId: number; +}; + +export function useAddContractMutation() { + const sdk = useSDK(); + const walletAddress = useAddress(); + const signer = useSigner(); + + const queryClient = useQueryClient(); + + return useMutation( + async (data: AddContractParams) => { + invariant(walletAddress, "cannot add a contract without an address"); + invariant(sdk, "sdk not provided"); + + return await addContractToMultiChainRegistry( + { + address: data.contractAddress, + chainId: data.chainId, + }, + signer, + ); + }, + { + onSettled: () => { + return queryClient.invalidateQueries(["dashboard-registry"]); + }, + }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useSplit.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useSplit.ts new file mode 100644 index 00000000000..4496d7f72a4 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useSplit.ts @@ -0,0 +1,131 @@ +import { splitsKeys } from ".."; +import { + useMutationWithInvalidate, + useQueryWithNetwork, +} from "./query/useQueryWithNetwork"; +import { useToast } from "@chakra-ui/react"; +import { useSDKChainId } from "@thirdweb-dev/react"; +import type { Split } from "@thirdweb-dev/sdk"; +import { + BalanceQueryRequest, + BalanceQueryResponse, +} from "pages/api/moralis/balances"; +import invariant from "tiny-invariant"; +import { parseErrorToMessage } from "utils/errorParser"; + +export function useSplitData(contract?: Split) { + return useQueryWithNetwork( + splitsKeys.list(contract?.getAddress()), + async () => contract?.getAllRecipients(), + { + enabled: !!contract, + }, + ); +} +export function useSplitBalances(contractAddress?: string) { + const chainId = useSDKChainId(); + const currencies = useQueryWithNetwork( + splitsKeys.currencies(contractAddress), + async () => { + const query = await fetch("/api/moralis/balances", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + chainId, + address: contractAddress, + } as BalanceQueryRequest), + }); + + if (query.status >= 400) { + throw new Error(await query.json().then((r) => r.error)); + } + return query.json() as Promise; + }, + { enabled: !!chainId && !!contractAddress, retry: false }, + ); + return currencies; +} + +export function useSplitDistributeFunds(contract?: Split) { + const contractAddress = contract?.getAddress(); + const balances = useSplitBalances(contractAddress); + const toast = useToast(); + + return useMutationWithInvalidate( + async () => { + invariant(contract, "split contract is not ready"); + invariant(balances.data, "No balances to distribute"); + + const distributions = (balances.data || []) + .filter((token) => token.display_balance !== "0.0") + .map(async (currency) => { + if (currency.name === "Native Token") { + await contract + .distribute() + .then(() => { + toast({ + position: "bottom", + variant: "solid", + title: `Success`, + description: `Successfully distributed ${currency.name}`, + status: "success", + duration: 5000, + isClosable: true, + }); + return void 0; + }) + .catch((err: unknown) => { + toast({ + position: "bottom", + variant: "solid", + title: `Error distributing ${currency.name}`, + description: parseErrorToMessage(err), + status: "error", + duration: 9000, + isClosable: true, + }); + }); + } else { + await contract + .distributeToken(currency.token_address) + .then(() => { + toast({ + position: "bottom", + variant: "solid", + title: `Success`, + description: `Successfully distributed ${currency.name}`, + status: "success", + duration: 5000, + isClosable: true, + }); + return void 0; + }) + .catch((err: unknown) => { + toast({ + position: "bottom", + variant: "solid", + title: `Error distributing ${currency.name}`, + description: parseErrorToMessage(err), + status: "error", + duration: 9000, + isClosable: true, + }); + }); + } + }); + + return await Promise.all(distributions); + }, + { + onSuccess: (_data, _variables, _options, invalidate) => { + return invalidate([ + splitsKeys.currencies(contractAddress), + splitsKeys.balances(contractAddress), + splitsKeys.list(contractAddress), + ]); + }, + }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useTransferNativeToken.tsx b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useTransferNativeToken.tsx new file mode 100644 index 00000000000..2e43f600358 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useTransferNativeToken.tsx @@ -0,0 +1,23 @@ +import { useQueryClient, useMutation } from "@tanstack/react-query"; +import { useSDK } from "@thirdweb-dev/react"; +import invariant from "tiny-invariant"; +import { walletKeys } from "../cache-keys"; + +type TransferInput = { + address: string; + amount: string; +}; + +export function useTransferNativeToken() { + const sdk = useSDK(); + const queryClient = useQueryClient(); + return useMutation({ + mutationFn: async (input: TransferInput) => { + invariant(sdk, "SDK is not initialized"); + await sdk.wallet.transfer(input.address, input.amount); + }, + onSuccess: (_, variables) => { + queryClient.invalidateQueries(walletKeys.balances(variables.address)); + }, + }); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useVote.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useVote.ts new file mode 100644 index 00000000000..4f890da5a04 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useVote.ts @@ -0,0 +1,204 @@ +import { voteKeys } from "../cache-keys"; +import { + useMutationWithInvalidate, + useQueryWithNetwork, +} from "./query/useQueryWithNetwork"; +import { + RequiredParam, + useAddress, + useContract, + useContractMetadata, + useSDK, +} from "@thirdweb-dev/react"; +import type { Vote, VoteType } from "@thirdweb-dev/sdk"; +import invariant from "tiny-invariant"; + +export function useVoteProposalList(contract?: Vote) { + return useQueryWithNetwork( + voteKeys.proposals(contract?.getAddress()), + async () => await contract?.getAll(), + { + enabled: !!contract, + }, + ); +} + +export function useHasVotedOnProposal( + contract: RequiredParam, + proposalId: string, +) { + const address = useAddress(); + return useQueryWithNetwork( + voteKeys.userHasVotedOnProposal( + proposalId, + contract?.getAddress(), + address, + ), + async () => await contract?.hasVoted(proposalId, address), + { + enabled: !!contract, + }, + ); +} + +export function useCanExecuteProposal( + contract: RequiredParam, + proposalId: string, +) { + return useQueryWithNetwork( + voteKeys.canExecuteProposal(proposalId, contract?.getAddress()), + async () => await contract?.canExecute(proposalId), + { + enabled: !!contract, + }, + ); +} + +export function useTokensDelegated(contract?: Vote) { + const sdk = useSDK(); + const address = useAddress(); + + return useQueryWithNetwork( + voteKeys.delegation(contract?.getAddress(), address), + async () => { + invariant(address, "address is required"); + invariant(contract, "vote contract is required"); + + const metadata = await contract?.metadata.get(); + const tokenAddress = metadata?.voting_token_address; + const tokenContract = await sdk?.getToken(tokenAddress); + const delegation = await tokenContract?.getDelegationOf(address); + return delegation?.toLowerCase() === address.toLowerCase(); + }, + { + enabled: !!contract && !!address, + }, + ); +} + +export function useVoteTokenBalances(contract?: Vote, addresses?: string[]) { + const { data } = useContractMetadata(contract); + const tokenContract = useContract( + data?.voting_token_address, + "token", + ).contract; + + return useQueryWithNetwork( + voteKeys.balances(contract?.getAddress(), addresses), + async () => { + invariant(data, "contract metadata is required"); + invariant(tokenContract, "voting contract is required"); + invariant(addresses, "addresses are required"); + + const balances = addresses.map(async (address) => { + return { + address, + balance: (await tokenContract.balanceOf(address)).displayValue, + }; + }); + + return await Promise.all(balances); + }, + { + enabled: !!data && !!contract && !!addresses?.length, + }, + ); +} + +export interface IProposalInput { + description: string; +} + +export function useProposalCreateMutation(contractAddress?: string) { + const voteContract = useContract(contractAddress, "vote").contract; + return useMutationWithInvalidate( + (proposal: IProposalInput) => { + invariant(voteContract, "contract is required"); + const { description } = proposal; + return voteContract.propose(description); + }, + { + onSuccess: (_data, _options, _variables, invalidate) => { + return invalidate([voteKeys.proposals(contractAddress)]); + }, + }, + ); +} + +export function useDelegateMutation(contract?: Vote) { + const sdk = useSDK(); + const address = useAddress(); + + const contractAddress = contract?.getAddress(); + + return useMutationWithInvalidate( + async () => { + invariant(address, "address is required"); + invariant(contractAddress, "contract address is required"); + invariant(contract, "vote contract is required"); + + const metadata = await contract?.metadata.get(); + const tokenAddress = metadata?.voting_token_address; + const tokenContract = await sdk?.getToken(tokenAddress); + return tokenContract?.delegateTo(address); + }, + { + onSuccess: (_data, _options, _variables, invalidate) => { + return invalidate([voteKeys.delegation(contractAddress, address)]); + }, + }, + ); +} + +interface IVoteCast { + voteType: VoteType; + reason?: string; +} + +export function useCastVoteMutation( + contract: RequiredParam, + proposalId: string, +) { + const address = useAddress(); + const contractAddress = contract?.getAddress(); + + return useMutationWithInvalidate( + async (vote: IVoteCast) => { + invariant(contract, "contract is required"); + invariant(address, "address is required"); + const { voteType, reason } = vote; + return contract.vote(proposalId, voteType, reason); + }, + { + onSuccess: (_data, _options, _variables, invalidate) => { + return invalidate([ + voteKeys.proposals(contractAddress), + voteKeys.userHasVotedOnProposal(proposalId, contractAddress, address), + voteKeys.canExecuteProposal(proposalId, contractAddress), + ]); + }, + }, + ); +} + +export function useExecuteProposalMutation( + contract: RequiredParam, + proposalId: string, +) { + const contractAddress = contract?.getAddress(); + + return useMutationWithInvalidate( + async () => { + invariant(contract, "contract is required"); + return contract.execute(proposalId); + }, + { + onSuccess: (_data, _options, _variables, invalidate) => { + return invalidate([ + voteKeys.proposals(contractAddress), + voteKeys.canExecuteProposal(proposalId, contractAddress), + ]); + }, + }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/hooks/useWalletNFTs.ts b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useWalletNFTs.ts new file mode 100644 index 00000000000..b6dbca5469b --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/hooks/useWalletNFTs.ts @@ -0,0 +1,24 @@ +import { useQueryWithNetwork } from "./query/useQueryWithNetwork"; +import { useDashboardEVMChainId } from "./useActiveChainId"; +import { useAddress } from "@thirdweb-dev/react"; +import { WalletNFTApiReturn } from "pages/api/wallet/nfts/[chainId]"; + +export function useWalletNFTs(walletAddress?: string) { + const activeChainId = useDashboardEVMChainId(); + const connectedAddress = useAddress(); + + const address = walletAddress || connectedAddress; + + return useQueryWithNetwork( + ["walletNfts", address], + async () => { + const response = await fetch( + `/api/wallet/nfts/${activeChainId}?owner=${address}`, + ); + return (await response.json()) as WalletNFTApiReturn; + }, + { + enabled: !!address && !!activeChainId, + }, + ); +} diff --git a/apps/dashboard/src/@3rdweb-sdk/react/index.ts b/apps/dashboard/src/@3rdweb-sdk/react/index.ts new file mode 100644 index 00000000000..6c043fd9877 --- /dev/null +++ b/apps/dashboard/src/@3rdweb-sdk/react/index.ts @@ -0,0 +1,2 @@ +export * from "./cache-keys"; +export * from "./hooks"; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/account-abstraction/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/account-abstraction/page.tsx new file mode 100644 index 00000000000..630c75de3ad --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/account-abstraction/page.tsx @@ -0,0 +1,59 @@ +import { redirect } from "next/navigation"; +import { InfoCard } from "../components/server/info-card"; +import { getChain } from "../../utils"; + +export default async function Page(props: { params: { chain_id: string } }) { + const chain = await getChain(props.params.chain_id); + const enabled = chain.services.find( + (s) => s.service === "account-abstraction", + )?.enabled; + + if (!enabled) { + redirect(`/${props.params.chain_id}`); + } + + return ( +
+ +

+ Everything you need to leverage account abstraction technology to + enable seamless user experiences for your users. +

+

+ You get all the tools to integrate account abstraction into your app. + This includes: +

+ +
+ +
    +
  • + Account factory contracts that let you spin up smart accounts for + your users +
  • + +
  • + Bundler, which is the infrastructure needed to process account + abstraction transactions (known as User Ops) +
  • + +
  • + Paymaster, which lets you sponsor transaction fees for your users +
  • +
+
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/client/add-chain-to-wallet.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/client/add-chain-to-wallet.tsx new file mode 100644 index 00000000000..dc96f6f341a --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/client/add-chain-to-wallet.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { Button } from "@/components/ui/button"; +import { useAddress, useChainId, useSwitchChain } from "@thirdweb-dev/react"; +import { ToolTipLabel } from "@/components/ui/tooltip"; +import { useMutation } from "@tanstack/react-query"; +import { Spinner } from "@/components/ui/Spinner/Spinner"; +import { useDebounce } from "use-debounce"; + +type AddChainToWalletProps = { + chainId: number; +}; + +export const AddChainToWallet: React.FC = (props) => { + const address = useAddress(); + const switchChain = useSwitchChain(); + const activeWalletChainId = useChainId(); + + const switchChainMutation = useMutation({ + mutationFn: async () => { + await switchChain(props.chainId); + }, + }); + + // debounce the loading state to prevent flickering + const [debouncedLoading] = useDebounce(switchChainMutation.isLoading, 50); + + const buttonContent = ( + + ); + + if (address && activeWalletChainId !== props.chainId) { + return buttonContent; + } + + return ( + +
{buttonContent}
+
+ ); +}; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/client/tabs.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/client/tabs.tsx new file mode 100644 index 00000000000..6eb75ee3935 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/client/tabs.tsx @@ -0,0 +1,51 @@ +"use client"; + +import { useSelectedLayoutSegment } from "next/navigation"; +import { TabLinks } from "@/components/ui/tabs"; +import { ChainSupportedService } from "../../../types/chain"; + +import { products } from "../../../components/server/products"; +import { useMemo } from "react"; + +export function getEnabledTabs(enabledServices: ChainSupportedService[]) { + return products + .map((p) => ({ + name: p.name, + segment: p.id === "contracts" ? "" : p.id, + serviceId: p.id, + icon: p.icon, + isEnabled: enabledServices.includes(p.id) ?? false, + })) + .sort((a, b) => { + if (a.isEnabled && !b.isEnabled) { + return -1; + } + if (!a.isEnabled && b.isEnabled) { + return 1; + } + return 0; + }); +} + +export function ChainPageTabs(props: { + chainSlug: string; + enabledServices: ChainSupportedService[]; +}) { + const layoutSegment = useSelectedLayoutSegment() || ""; + + const links = useMemo(() => { + return getEnabledTabs(props.enabledServices); + }, [props.enabledServices]); + + return ( + ({ + name: tab.name, + href: `/${props.chainSlug}/${tab.segment}`, + isActive: layoutSegment === tab.segment, + isEnabled: tab.isEnabled, + icon: tab.icon, + }))} + /> + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/cta-card.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/cta-card.tsx new file mode 100644 index 00000000000..20a3a816a97 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/cta-card.tsx @@ -0,0 +1,46 @@ +import Link from "next/link"; +import { Button } from "@/components/ui/button"; + +export type ChainCTAProps = { + backgroundImageUrl: string; + title: string; + description?: string; + buttonText: string; + buttonLink: string; +}; + +export function ChainCTA(props: ChainCTAProps) { + return ( +
+
+
+
+

+ {props.title} +

+ {props.description && ( +

{props.description}

+ )} +
+ +
+
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/explorer-section.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/explorer-section.tsx new file mode 100644 index 00000000000..88f06c60c49 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/explorer-section.tsx @@ -0,0 +1,39 @@ +import Link from "next/link"; +import type { ChainMetadataWithServices } from "../../../types/chain"; +import { ExternalLinkIcon } from "lucide-react"; + +export function ExplorersSection(props: { + explorers: NonNullable; +}) { + return ( +
+

+ Explorers +

+
+ {props.explorers.map((explorer) => { + return ( +
+

+ {explorer.name} +

+ + {explorer.url.endsWith("/") + ? explorer.url.slice(0, -1) + : explorer.url} + + +
+ ); + })} +
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/faucets-section.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/faucets-section.tsx new file mode 100644 index 00000000000..ba4f6e0653c --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/faucets-section.tsx @@ -0,0 +1,44 @@ +import { ExternalLinkIcon } from "lucide-react"; +import Link from "next/link"; + +export function FaucetsSection(props: { faucets: readonly string[] }) { + return ( +
+

+ Faucets +

+
+ {props.faucets.map((faucet) => { + const url = new URL(faucet); + const hostnameSplit = url.hostname.split("."); + const tld = hostnameSplit.pop(); + const domain = hostnameSplit.pop(); + const displayTitle = `${domain}.${tld}`; + let displayUrl = url.port + url.hostname + url.pathname; + displayUrl = displayUrl.endsWith("/") + ? displayUrl.slice(0, -1) + : displayUrl; + + return ( +
+

+ {displayTitle} +

+ + {displayUrl} + + +
+ ); + })} +
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/info-card.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/info-card.tsx new file mode 100644 index 00000000000..fb8ac967eb5 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/info-card.tsx @@ -0,0 +1,41 @@ +import { ExternalLinkIcon } from "lucide-react"; +import Link from "next/link"; +import type React from "react"; +import { Button } from "@/components/ui/button"; + +export function InfoCard(props: { + title: string; + links?: { label: string; href: string }[]; + children: React.ReactNode; +}) { + return ( +
+

+ {props.title} +

+ +
+ {props.children} +
+ + {props.links && ( +
+ {props.links.map((link) => { + return ( + + ); + })} +
+ )} +
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/primary-info-item.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/primary-info-item.tsx new file mode 100644 index 00000000000..0e40745117b --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/components/server/primary-info-item.tsx @@ -0,0 +1,17 @@ +export function PrimaryInfoItem(props: { + title: string; + titleIcon?: React.ReactNode; + children: React.ReactNode; +}) { + return ( +
+
+

+ {props.title} +

+ {props.titleIcon} +
+ {props.children} +
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/connect-sdk/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/connect-sdk/page.tsx new file mode 100644 index 00000000000..60add3d9d01 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/connect-sdk/page.tsx @@ -0,0 +1,104 @@ +import Link from "next/link"; +import { FaReact } from "react-icons/fa"; +import { SiTypescript, SiSolidity, SiDotnet } from "react-icons/si"; +import { FaUnity } from "react-icons/fa6"; +import { redirect } from "next/navigation"; +import { getChain } from "../../utils"; +import { InfoCard } from "../components/server/info-card"; + +type SDKInfo = { + name: string; + href: string; + icon: React.FC<{ className?: string }>; +}; + +const sdks: SDKInfo[] = [ + { + name: "TypeScript", + href: "https://portal.thirdweb.com/typescript/v5", + icon: SiTypescript, + }, + { + name: "React", + href: "https://portal.thirdweb.com/typescript/v5/react", + icon: FaReact, + }, + { + name: "React Native", + href: "https://portal.thirdweb.com/typescript/v5/react-native", + icon: FaReact, + }, + { + name: "Unity", + href: "https://portal.thirdweb.com/unity", + icon: FaUnity, + }, + { + name: "Solidity", + href: "https://portal.thirdweb.com/contracts/build/overview", + icon: SiSolidity, + }, + { + name: ".NET SDK", + href: "https://portal.thirdweb.com/dotnet", + icon: SiDotnet, + }, +]; + +export default async function Page(props: { params: { chain_id: string } }) { + const chain = await getChain(props.params.chain_id); + const enabled = chain.services.find( + (s) => s.service === "connect-sdk", + )?.enabled; + + if (!enabled) { + redirect(`/${props.params.chain_id}`); + } + + return ( +
+ +

+ Connect is the complete toolkit for connecting every user to your + application. +

+

+ It features customizable onboarding flows, self-custodial in-app + wallets, account abstraction, onramps, and more. +

+
+ +
+ +

+ Get Started +

+ +
+ +
+ {sdks.map((sdk) => { + return ( + + + {sdk.name} + + ); + })} +
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/engine/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/engine/page.tsx new file mode 100644 index 00000000000..d6e31aecd78 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/engine/page.tsx @@ -0,0 +1,35 @@ +import { redirect } from "next/navigation"; +import { getChain } from "../../utils"; +import { InfoCard } from "../components/server/info-card"; + +export default async function Page(props: { params: { chain_id: string } }) { + const chain = await getChain(props.params.chain_id); + const enabled = chain.services.find((s) => s.service === "engine")?.enabled; + + if (!enabled) { + redirect(`/${props.params.chain_id}`); + } + + return ( +
+ +

+ thirdweb Engine is a backend HTTP server that reads, writes, and + deploys contracts at production scale. +

+
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/layout.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/layout.tsx new file mode 100644 index 00000000000..4b15a07cd67 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/layout.tsx @@ -0,0 +1,254 @@ +/* eslint-disable react/forbid-dom-props */ +import { cn } from "@/lib/utils"; +import { + ArrowLeftIcon, + CircleAlertIcon, + ExternalLinkIcon, + TicketCheckIcon, +} from "lucide-react"; +import { Separator } from "@/components/ui/separator"; +import Link from "next/link"; +import { StarButton } from "../components/client/star-button"; +import { Metadata } from "next"; +import { getAbsoluteUrl } from "lib/vercel-utils"; +import { redirect } from "next/navigation"; +import { ChainPageTabs } from "./components/client/tabs"; +import { PrimaryInfoItem } from "./components/server/primary-info-item"; +import { FaucetsSection } from "./components/server/faucets-section"; +import { ExplorersSection } from "./components/server/explorer-section"; +import { ChainIcon } from "../components/server/chain-icon"; +import { Badge } from "@/components/ui/badge"; +import { getChain, getChainMetadata } from "../utils"; +import { ChainCTA } from "./components/server/cta-card"; +import { Button } from "@/components/ui/button"; +import { AddChainToWallet } from "./components/client/add-chain-to-wallet"; + +export async function generateMetadata( + { params }: { params: { chain_id: string } }, + // parent: ResolvingMetadata, +): Promise { + // read route params + const chain = await getChain(params.chain_id); + + const sanitizedChainName = chain.name.replace("Mainnet", "").trim(); + + const title = `${sanitizedChainName}: RPC and Chain Settings`; + + const description = `Use the best ${sanitizedChainName} RPC and add to your wallet. Discover the chain ID, native token, explorers, and ${ + chain.testnet && chain.faucets?.length ? "faucet options" : "more" + }.`; + + return { + title, + description, + openGraph: { + images: [ + { + url: `${getAbsoluteUrl()}/api/og/chain/${chain.chainId}`, + width: 1200, + height: 630, + alt: `${sanitizedChainName} (${chain.nativeCurrency.symbol}) on thirdweb`, + }, + ], + }, + }; +} + +// this is the dashboard layout file +export default async function ChainPageLayout({ + children, + params, +}: { + children: React.ReactNode; + params: { chain_id: string }; +}) { + const chain = await getChain(params.chain_id); + if (params.chain_id !== chain.slug) { + redirect(chain.slug); + } + const chainMetadata = await getChainMetadata(chain.chainId); + // true if we *have* chainMetadata for the chain + const isVerified = !!chainMetadata; + const isDeprecated = chain.status === "deprecated"; + + return ( + <> + {isDeprecated && ( + <> +
+
+ +

+ This chain has been marked as deprecated. Some or all services + may no longer function. +

+
+
+ + + )} +
+ {/* Header */} +
+ {/* header background image shenanigans */} +
+
+
+
+ + {/* end header shaningans */} +
+
+ + + Chainlist + + +
+ {chain.icon?.url && ( + + )} + + {/* Chain Name */} +

+ {chain.name} +

+ +
+ +
+ {chainMetadata?.gasSponsored && ( + + + + gas sponsored + + + )} +
+
+
+ + {isVerified ? null : ( + + )} +
+
+
+ + {chainMetadata?.cta && } + +
+ {/* About section */} + {chainMetadata?.about && ( + <> +
+

+ About +

+ +
+

{chainMetadata.about}

+
+
+
+ + )} + {/* Chain Overview */} +
+ {/* Info Grid */} +
+ {/* Info */} + {chain.infoURL && ( + +
+ + {new URL(chain.infoURL).hostname} + + +
+
+ )} + + {/* Chain Id */} + +
{chain.chainId}
+
+ + {/* Native token */} + +
+ {chain.nativeCurrency.name} ({chain.nativeCurrency.symbol}) +
+
+
+ + {/* Faucets - will later move to dedicated tab */} + {chain.faucets && chain.faucets.length > 0 && ( + + )} + + {/* Explorers */} + {chain.explorers && chain.explorers.length > 0 && ( + + )} +
+
+ s.enabled) + .map((s) => s.service)} + /> +
+
{children}
+
+
+ + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/page.tsx new file mode 100644 index 00000000000..c6026ed98e1 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/page.tsx @@ -0,0 +1,130 @@ +/* eslint-disable react/forbid-dom-props */ +import { ChevronRight, ShieldCheckIcon } from "lucide-react"; +import Link from "next/link"; +import twPublisherImage from "./tw-publisher.png"; +import Image from "next/image"; +import { InfoCard } from "./components/server/info-card"; + +type ContractCardInfo = { + name: string; + description: string; + href: string; +}; + +// currently the metadata is hardcoded - TODO:fetch it + +const popularContracts: ContractCardInfo[] = [ + { + name: "NFT Drop", + description: "Release collection of unique NFTs for a set price", + href: "/thirdweb.eth/DropERC721", + }, + { + name: "NFT Collection", + description: "Create a collection of unique NFTs", + href: "/thirdweb.eth/TokenERC721", + }, + { + name: "Edition Drop", + description: "Release ERC1155 tokens for a set price", + href: "/thirdweb.eth/DropERC1155", + }, + { + name: "Token", + description: "Create cryptocurrency compliant with ERC20 standard", + href: "/thirdweb.eth/TokenERC20", + }, + { + name: "Edition", + description: "Create editions of ERC1155 tokens", + href: "/thirdweb.eth/TokenERC1155", + }, +]; + +export default async function Page() { + return ( +
+ +

End-to-end tools for smart contract development

+

+ Trusted, modular smart contracts that can be deployed securely on any + EVM chain +

+
+ +
+ +
+

+ Get Started +

+ + View All + + +
+ +
+ +
+ {popularContracts.map((c) => { + return ( + + ); + })} +
+
+ ); +} + +function ContractCard(props: ContractCardInfo) { + return ( +
+
+ + Audited +
+ +

+ + {props.name} + +

+ +

+ {props.description} +

+ + + thirdweb.eth +

thirdweb.eth

+ +
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/pay/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/pay/page.tsx new file mode 100644 index 00000000000..2e2c9d74225 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/pay/page.tsx @@ -0,0 +1,32 @@ +import { redirect } from "next/navigation"; +import { getChain } from "../../utils"; +import { InfoCard } from "../components/server/info-card"; + +export default async function Page(props: { params: { chain_id: string } }) { + const chain = await getChain(props.params.chain_id); + const enabled = chain.services.find((s) => s.service === "pay")?.enabled; + + if (!enabled) { + redirect(`/${props.params.chain_id}`); + } + + return ( +
+ +

+ thridweb Pay allows your users to purchase cryptocurrencies and + execute transactions with their credit/debit card, or with any token + via cross-chain routing. +

+
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/rpc-edge/components/client/live-stats.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/rpc-edge/components/client/live-stats.tsx new file mode 100644 index 00000000000..cc3688aa5b5 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/rpc-edge/components/client/live-stats.tsx @@ -0,0 +1,131 @@ +"use client"; + +import { Skeleton } from "@/components/ui/skeleton"; +import { CircleCheck, XIcon } from "lucide-react"; +import { ToolTipLabel } from "@/components/ui/tooltip"; +import { CopyButton } from "@/components/ui/CopyButton"; +import { PrimaryInfoItem } from "../../../components/server/primary-info-item"; +import { useState } from "react"; +import { thirdwebClient } from "lib/thirdweb-client"; +import { hostnameEndsWith } from "utils/url"; +import { isProd } from "constants/rpc"; +import { useQuery } from "@tanstack/react-query"; + +function useChainStatswithRPC(_rpcUrl: string) { + const [shouldRefetch, setShouldRefetch] = useState(true); + + let rpcUrl = _rpcUrl.replace( + // eslint-disable-next-line no-template-curly-in-string + "${THIRDWEB_API_KEY}", + thirdwebClient.clientId, + ); + + // based on the environment hit dev or production + if (hostnameEndsWith(rpcUrl, "rpc.thirdweb.com")) { + if (!isProd) { + rpcUrl = rpcUrl.replace("rpc.thirdweb.com", "rpc.thirdweb-dev.com"); + } + } + + return useQuery({ + queryKey: ["chain-stats", { rpcUrl }], + queryFn: async () => { + const startTimeStamp = performance.now(); + const res = await fetch(rpcUrl, { + method: "POST", + body: JSON.stringify({ + jsonrpc: "2.0", + method: "eth_blockNumber", + params: [], + id: 1, + }), + }); + + const json = await res.json(); + const latency = (performance.now() - startTimeStamp).toFixed(0); + + return { + latency, + blockNumber: parseInt(json.result, 16), + }; + }, + refetchInterval: shouldRefetch ? 5 * 1000 : undefined, + enabled: !!rpcUrl, + refetchOnWindowFocus: false, + onError: () => { + setShouldRefetch(false); + }, + }); +} + +export function ChainLiveStats(props: { rpc: string }) { + const stats = useChainStatswithRPC(props.rpc); + + return ( + <> + {/* RPC URL */} + + + + ) : stats.isError ? ( + + + + ) : null + } + > +
+
{new URL(props.rpc).origin}
+ +
+
+ + {/* Latency */} + }> + {stats.isError ? ( +

+ N/A +

+ ) : stats.data ? ( +

{stats.data.latency}ms

+ ) : ( +
+ +
+ )} +
+ + {/* Block Height */} + }> + {stats.isError ? ( +

+ N/A +

+ ) : stats.data ? ( +

+ {stats.data.blockNumber} +

+ ) : ( +
+ +
+ )} +
+ + ); +} + +function PulseDot() { + return ( + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/rpc-edge/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/rpc-edge/page.tsx new file mode 100644 index 00000000000..741bf3e5fca --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/rpc-edge/page.tsx @@ -0,0 +1,43 @@ +import { redirect } from "next/navigation"; +import { getChain } from "../../utils"; +import { InfoCard } from "../components/server/info-card"; +import { ChainLiveStats } from "./components/client/live-stats"; + +export default async function Page(props: { params: { chain_id: string } }) { + const chain = await getChain(props.params.chain_id); + const enabled = chain.services.find((s) => s.service === "rpc-edge")?.enabled; + + if (!enabled) { + redirect(`/${props.params.chain_id}`); + } + + return ( +
+ +

+ Remote Procedure Call (RPC) Edge provides reliable access to querying + data and interacting with the blockchain through global edge RPCs +

+ +

+ By default, thirdweb provides publicly available RPCs for over 1000+ + EVM Networks +

+
+ + {chain.rpc[0] && ( +
+ +
+ )} +
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/tw-publisher.png b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/tw-publisher.png new file mode 100644 index 00000000000..59913b66711 Binary files /dev/null and b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/tw-publisher.png differ diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/filters.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/filters.tsx new file mode 100644 index 00000000000..0ccbbf9673d --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/filters.tsx @@ -0,0 +1,439 @@ +"use client"; + +import { Button } from "@/components/ui/button"; +import { ChevronDownIcon, Filter, XIcon } from "lucide-react"; +import { + Popover, + PopoverContent, + PopoverTrigger, +} from "@/components/ui/popover"; +import { Label } from "@/components/ui/label"; +import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"; +import { Separator } from "@/components/ui/separator"; +import { Checkbox } from "@/components/ui/checkbox"; +import { usePathname, useRouter, useSearchParams } from "next/navigation"; +import React, { PropsWithChildren, useCallback, useMemo } from "react"; +import { products } from "../../../components/server/products"; + +function cleanUrl(url: string) { + if (url.endsWith("?")) { + return url.slice(0, -1); + } + return url; +} + +export function AllFilters() { + return ( + + + + + + +

Filters

+ + {/* Chain Type */} + + + + + {/* Options */} + + + + + {/* Services */} + + + + + {/* Reset */} + + Reset all filters + +
+
+ ); +} + +type FilterResetButtonProps = { + filters: ("service" | "type" | "includeDeprecated")[]; +}; + +const FilterResetButton: React.FC< + PropsWithChildren +> = ({ filters, children }) => { + const router = useRouter(); + const pathname = usePathname(); + const searchParams = useSearchParams(); + const mutableSearchParams = useMemo(() => { + return new URLSearchParams(searchParams ?? undefined); + }, [searchParams]); + + return ( + + ); +}; + +type FilterSectionProps = { + title: string; +}; + +const FilterSection: React.FC> = ({ + title, + children, +}) => { + return ( +
+

+ {title} +

+ {children} +
+ ); +}; + +type ChainTypeFilterProps = { sectionOnly?: boolean }; + +export const ChainTypeFilter: React.FC = ({ + sectionOnly, +}) => { + const router = useRouter(); + const pathname = usePathname(); + const searchParams = useSearchParams(); + + const value = useMemo( + () => searchParams?.get("type") || "all", + [searchParams], + ); + + const makeUrl = useCallback( + (newValue: string) => { + const params = new URLSearchParams(searchParams || undefined); + switch (newValue) { + case "mainnet": + case "testnet": { + params.set("type", newValue); + break; + } + default: { + params.delete("type"); + } + } + // reset page alway + params.delete("page"); + return cleanUrl(`${pathname}?${params.toString()}`); + }, + [pathname, searchParams], + ); + + const section = ( + + { + const url = makeUrl(newValue); + router.replace(url); + }} + > +
+ + +
+
+ + +
+
+ + +
+
+
+ ); + + if (sectionOnly) { + return section; + } + + return ( + +
+ + + + {value !== "all" && ( + + )} +
+ + {section} + +
+ ); +}; + +// chain options filter +type ChainOptionsFilterProps = { sectionOnly?: boolean }; + +export const ChainOptionsFilter: React.FC = ({ + sectionOnly, +}) => { + const router = useRouter(); + const pathname = usePathname(); + const searchParams = useSearchParams(); + const mutableSearchParams = useMemo(() => { + return new URLSearchParams(searchParams ?? undefined); + }, [searchParams]); + + const hasDeprecated = useMemo(() => { + return searchParams?.has("includeDeprecated") || false; + }, [searchParams]); + + const section = ( + +
+ { + if (!hasDeprecated) { + mutableSearchParams.set("includeDeprecated", "true"); + } else { + mutableSearchParams.delete("includeDeprecated"); + } + mutableSearchParams.delete("page"); + const url = cleanUrl( + `${pathname}?${mutableSearchParams.toString()}`, + ); + router.replace(url); + }} + /> + +
+
+ ); + + if (sectionOnly) { + return section; + } + + // TODO: later more filters + const hasFilters = hasDeprecated; + + return ( + +
+ + + + {hasFilters && ( + + )} +
+ + {section} + +
+ ); +}; + +function isServiceActive(searchParams: URLSearchParams, service: string) { + return searchParams.getAll("service").includes(service); +} + +function toggleService(searchParams: URLSearchParams, service: string) { + if (searchParams.getAll("service").includes(service)) { + searchParams.delete("service", service); + } else { + searchParams.append("service", service); + } +} + +type ChainServiceFilterProps = { sectionOnly?: boolean }; + +export const ChainServiceFilter: React.FC = ({ + sectionOnly, +}) => { + const router = useRouter(); + const pathname = usePathname(); + const searchParams = useSearchParams(); + const mutableSearchParams = useMemo(() => { + return new URLSearchParams(searchParams ?? undefined); + }, [searchParams]); + + const section = ( + + {products.map((product) => ( +
+ { + toggleService(mutableSearchParams, product.id); + mutableSearchParams.delete("page"); + const url = cleanUrl( + `${pathname}?${mutableSearchParams.toString()}`, + ); + router.push(url); + }} + /> + + +
+ ))} +
+ ); + + const [buttonTitle, hasActiveFilter] = useMemo(() => { + const allFilters = searchParams?.getAll("service") || []; + if (allFilters.length === 0) { + return ["Services", false]; + } + + const firstFilter = allFilters[0]; + const name = products.find((p) => p.id === firstFilter)?.name; + const plus = allFilters.length > 1 ? ` +${allFilters.length - 1}` : ""; + + return [`${name}${plus}`, true]; + }, [searchParams]); + + if (sectionOnly) { + return section; + } + + return ( + +
+ + + + {hasActiveFilter && ( + + )} +
+ + {section} + +
+ ); +}; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/pagination.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/pagination.tsx new file mode 100644 index 00000000000..104c45f097a --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/pagination.tsx @@ -0,0 +1,115 @@ +"use client"; + +import { useCallback } from "react"; +import { + Pagination, + PaginationContent, + PaginationEllipsis, + PaginationItem, + PaginationLink, + PaginationNext, + PaginationPrevious, +} from "@/components/ui/pagination"; +import { usePathname, useRouter, useSearchParams } from "next/navigation"; + +type ChainlistPaginationProps = { + totalPages: number; + activePage: number; +}; + +export const ChainlistPagination: React.FC = ({ + activePage, + totalPages, +}) => { + const pathname = usePathname(); + const searchParams = useSearchParams(); + const router = useRouter(); + + const createPageURL = useCallback( + (pageNumber: number) => { + const params = new URLSearchParams(searchParams || undefined); + params.set("page", pageNumber.toString()); + return `${pathname}?${params.toString()}`; + }, + [pathname, searchParams], + ); + return ( + + + + { + router.push(createPageURL(activePage - 1)); + }} + /> + + {activePage - 3 > 0 && ( + + + + )} + {activePage - 2 > 0 && ( + + { + router.push(createPageURL(activePage - 2)); + }} + > + {activePage - 2} + + + )} + {activePage - 1 > 0 && ( + + { + router.push(createPageURL(activePage - 1)); + }} + > + {activePage - 1} + + + )} + + {activePage} + + {activePage + 1 <= totalPages && ( + + { + router.push(createPageURL(activePage + 1)); + }} + > + {activePage + 1} + + + )} + {activePage + 2 <= totalPages && ( + + { + router.push(createPageURL(activePage + 2)); + }} + > + {activePage + 2} + + + )} + {activePage + 3 <= totalPages && ( + + + + )} + + { + router.push(createPageURL(activePage + 1)); + }} + /> + + + + ); +}; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/search.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/search.tsx new file mode 100644 index 00000000000..522ba9578c3 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/search.tsx @@ -0,0 +1,74 @@ +"use client"; + +import { SearchIcon, XCircleIcon } from "lucide-react"; +import { usePathname, useRouter, useSearchParams } from "next/navigation"; +import { useRef } from "react"; +import { useDebouncedCallback } from "use-debounce"; +import { Input } from "@/components/ui/input"; +import { Button } from "@/components/ui/button"; + +function cleanUrl(url: string) { + if (url.endsWith("?")) { + return url.slice(0, -1); + } + return url; +} + +export const SearchInput: React.FC = () => { + const router = useRouter(); + const pathname = usePathname(); + const searchParams = useSearchParams(); + + const inputRef = useRef(null); + + // hah, no need for useEffect here this just works! + if ( + inputRef.current && + inputRef.current.value && + !searchParams?.get("query") + ) { + inputRef.current.value = ""; + } + + const handleSearch = useDebouncedCallback((term: string) => { + const params = new URLSearchParams(searchParams ?? undefined); + if (term) { + params.set("query", term); + } else { + params.delete("query"); + } + // always delete the page number when searching + params.delete("page"); + const url = cleanUrl(`${pathname}?${params.toString()}`); + router.replace(url); + }, 300); + + return ( +
+ + handleSearch(e.target.value)} + ref={inputRef} + /> + {searchParams?.has("query") && ( + + )} +
+ ); +}; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/view.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/view.tsx new file mode 100644 index 00000000000..72501a9f622 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/client/view.tsx @@ -0,0 +1,49 @@ +"use client"; + +import { useCallback } from "react"; +import { usePathname, useRouter, useSearchParams } from "next/navigation"; +import { Button } from "../../../../../../@/components/ui/button"; +import { Grid2X2Icon, ListIcon } from "lucide-react"; + +type hainListViewProps = { + activeView: "grid" | "table"; +}; + +export const ChainListView: React.FC = ({ activeView }) => { + const pathname = usePathname(); + const searchParams = useSearchParams(); + const router = useRouter(); + + const createPageURL = useCallback( + (view: "grid" | "table") => { + const params = new URLSearchParams(searchParams || undefined); + params.set("view", view); + return `${pathname}?${params.toString()}`; + }, + [pathname, searchParams], + ); + return ( +
+ + +
+ ); +}; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-card.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-card.tsx new file mode 100644 index 00000000000..45eadb1002f --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-card.tsx @@ -0,0 +1,95 @@ +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { CircleAlertIcon, TicketCheckIcon } from "lucide-react"; +import Link from "next/link"; +import { ChainSupportedService } from "../../../types/chain"; +import { ChainIcon } from "../../../components/server/chain-icon"; +import { getChainMetadata } from "../../../utils"; + +type ChainListCardProps = { + favoriteButton: JSX.Element; + chainId: number; + chainSlug: string; + chainName: string; + enabledServices: ChainSupportedService[]; + currencySymbol: string; + isDeprecated: boolean; + iconUrl?: string; +}; + +export async function ChainListCard({ + isDeprecated, + chainId, + chainName, + chainSlug, + currencySymbol, + enabledServices, + favoriteButton, + iconUrl, +}: ChainListCardProps) { + const chainMetadata = await getChainMetadata(chainId); + + return ( +
+ + +
+ + + {chainName} + +
+ + {favoriteButton} +
+ + + {/* table of `chain id` `native token` `managed support`, header row on left value row on right */} + + + + + + + + + + + + + + + + +
+ Chain ID + {chainId}
+ Native Token + {currencySymbol}
+ Available Services + {enabledServices.length}
+ + {(isDeprecated || chainMetadata?.gasSponsored) && ( +
+ {!isDeprecated && chainMetadata?.gasSponsored && ( +
+ +

Gas Sponsored

+
+ )} + + {isDeprecated && ( +
+ +

Deprecated

+
+ )} +
+ )} +
+
+
+ ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-row.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-row.tsx new file mode 100644 index 00000000000..41f86b5c31f --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-row.tsx @@ -0,0 +1,118 @@ +import { + CheckIcon, + CircleAlertIcon, + TicketCheckIcon, + XIcon, +} from "lucide-react"; +import Link from "next/link"; +import { ToolTipLabel } from "@/components/ui/tooltip"; +import { cn } from "@/lib/utils"; +import { products } from "../../../components/server/products"; +import { ChainSupportedService } from "../../../types/chain"; +import { ChainIcon } from "../../../components/server/chain-icon"; +import { getChainMetadata } from "../../../utils"; + +type ChainListRowProps = { + favoriteButton: JSX.Element; + chainId: number; + chainSlug: string; + chainName: string; + enabledServices: ChainSupportedService[]; + currencySymbol: string; + isDeprecated: boolean; + iconUrl?: string; +}; + +export async function ChainListRow({ + isDeprecated, + chainId, + chainName, + chainSlug, + currencySymbol, + enabledServices, + favoriteButton, + iconUrl, +}: ChainListRowProps) { + const chainMetadata = await getChainMetadata(chainId); + return ( + + {favoriteButton} + {/* Name */} + +
+
+ + + {chainName} + + + {!isDeprecated && chainMetadata?.gasSponsored && ( + + + + )} + + {isDeprecated && ( + + + + )} +
+
+
+ + {chainId} + + {currencySymbol} + + +
+
+ {products.map((p) => { + return ( + + ); + })} +
+
+
+ + ); +} + +function TableData({ children }: { children: React.ReactNode }) { + return {children}; +} + +function ProductIcon(props: { + icon: React.FC<{ className?: string }>; + label: string; + href: string; + isEnabled: boolean; +}) { + return ( + + ) : ( + + ) + } + > + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/page.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/page.tsx new file mode 100644 index 00000000000..15e0002ede5 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/chainlist/page.tsx @@ -0,0 +1,335 @@ +import { Button } from "@/components/ui/button"; +import { + AllFilters, + ChainOptionsFilter, + ChainServiceFilter, + ChainTypeFilter, +} from "./components/client/filters"; +import Link from "next/link"; +import { PlusIcon } from "lucide-react"; +import { headers } from "next/headers"; +import { SearchInput } from "./components/client/search"; +import { + ChainMetadataWithServices, + ChainSupportedService, +} from "../types/chain"; +import Fuse from "fuse.js"; +import { ChainlistPagination } from "./components/client/pagination"; +import { ChainListRow } from "./components/server/chainlist-row"; +import { StarButton } from "../components/client/star-button"; +import { ChainListCard } from "./components/server/chainlist-card"; +import { ChainListView } from "./components/client/view"; +import { Metadata } from "next"; +import { getChains } from "../utils"; + +type SearchParams = Partial<{ + type: "mainnet" | "testnet"; + service: ChainSupportedService[] | ChainSupportedService; + includeDeprecated: boolean; + query: string; + page: number; + // maybe later we'll have a page size param? + // pageSize: number; + + // table or grid style? + view: "table" | "grid"; +}>; + +// 24 because it is cleanly divisible by 2,3 and 4 (for card grid) +const DEFAULT_PAGE_SIZE = 24; +const DEFAULT_PAGE = 1; + +async function getChainsToRender(params: SearchParams) { + const chains = await getChains(); + + // sort the chains + const sortedChains = chains.sort((a, b) => { + // sort by number of services first + const aServices = a.services.filter((s) => s.enabled).length; + const bServices = b.services.filter((s) => s.enabled).length; + if (aServices > bServices) { + return -1; + } + if (aServices < bServices) { + return 1; + } + // if they have the same number of services, sort by chainId + if (a.chainId > b.chainId) { + return 1; + } + if (a.chainId < b.chainId) { + return -1; + } + return 0; + }); + + const filteredChains: ChainMetadataWithServices[] = []; + for (const chain of sortedChains) { + // handle deprecated chains + if (!params.includeDeprecated) { + // if chain is deprecated, return false to filter it out + if (chain.status === "deprecated") { + // skip to the next chain + continue; + } + } + // handle testnet and mainnet filter cases (if ) + if (params.type) { + // if the filter is testnet and the chain is not a testnet, return false to filter it out + if (params.type === "testnet" && !chain.testnet) { + // skip to the next chain + continue; + } + // if the filter is mainnet and the chain is a testnet, return false to filter it out + if (params.type === "mainnet" && chain.testnet) { + // skip to the next chain + continue; + } + } + + // handle services filter (if no filter set, all chains pass through here) + if (params.service) { + const urlServiceArray = Array.isArray(params.service) + ? params.service + : [params.service]; + // if the chain does not have all of the services in the filter, return false to filter it out + if ( + !urlServiceArray.every((service) => + chain.services.find((s) => s.enabled && s.service === service), + ) + ) { + // skip to the next chain + continue; + } + } + + // if we got here, push the chain to the filtered chains array + filteredChains.push(chain); + } + + const totalCount = chains.length; + const filteredCount = filteredChains.length; + + if (params.query) { + const fuse = new Fuse(filteredChains, { + keys: [ + { + name: "name", + weight: 2, + }, + { + name: "chainId", + weight: 1, + }, + ], + threshold: 0.2, + }); + return { + chainsToRender: fuse + .search(params.query, { + limit: DEFAULT_PAGE_SIZE, + }) + .map((e) => e.item), + totalCount, + filteredCount, + }; + } + return { + chainsToRender: filteredChains, + totalCount, + filteredCount, + }; +} + +export const metadata: Metadata = { + title: "Chainlist: RPCs, Block Explorers, Faucets", + description: + "A list of EVM networks with RPCs, smart contracts, block explorers & faucets. Deploy smart contracts to all EVM chains with thirdweb.", +}; + +export default function ChainListPage(props: { searchParams: SearchParams }) { + const headersList = headers(); + const viewportWithHint = Number( + headersList.get("Sec-Ch-Viewport-Width") || 0, + ); + + // default is driven by viewport hint + const activeView = props.searchParams.view + ? props.searchParams.view + : viewportWithHint > 1000 + ? "table" + : "grid"; + + return ( +
+
+
+
+

+ Chainlist +

+ +
+
+
+ + + +
+ +
+ +
+ + + +
+
+
+
+
+
+ {/* we used to have suspense + spinner here, that feels more jarring than the page loading _minutely_ slower */} + +
+ ); +} + +async function ChainsData(props: { + searchParams: SearchParams; + activeView: "table" | "grid"; +}) { + const { chainsToRender, totalCount, filteredCount } = await getChainsToRender( + props.searchParams, + ); + + // pagination + const totalPages = Math.ceil(chainsToRender.length / DEFAULT_PAGE_SIZE); + + const activePage = Number(props.searchParams.page || DEFAULT_PAGE); + const pageSize = DEFAULT_PAGE_SIZE; + const startIndex = (activePage - 1) * pageSize; + const endIndex = startIndex + pageSize; + const paginatedChains = chainsToRender.slice(startIndex, endIndex); + + return ( + <> +
+ {/* empty state */} + {paginatedChains.length === 0 ? ( +
+

No Results found

+
+ ) : props.activeView === "table" ? ( +
+ + + + {/* empty space for the icon */} + + {paginatedChains.map((chain) => ( + c.enabled) + .map((c) => c.service)} + isDeprecated={chain.status === "deprecated"} + favoriteButton={ +
+ +
+ } + iconUrl={chain.icon?.url} + /> + ))} +
+
+ Name + Chain ID + Native Token + Enabled Services +
+
+ ) : ( +
    + {paginatedChains.map((chain) => ( +
  • + c.enabled) + .map((c) => c.service)} + isDeprecated={chain.status === "deprecated"} + favoriteButton={ +
    + +
    + } + iconUrl={chain.icon?.url} + /> +
  • + ))} +
+ )} +
+
+ {totalPages > 1 && ( + + )} +
+

+ Showing{" "} + {paginatedChains.length}{" "} + out of{" "} + {filteredCount !== totalCount ? ( + <> + {filteredCount}{" "} + chains that match filters. (Total:{" "} + {totalCount}) + + ) : ( + <> + {totalCount} chains. + + )} +

+ + ); +} + +function TableHeading(props: { children: React.ReactNode }) { + return ( + + {props.children} + + ); +} + +function AddYourChainButton(props: { className?: string }) { + return ( + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/client/star-button.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/client/star-button.tsx new file mode 100644 index 00000000000..e849e60af06 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/client/star-button.tsx @@ -0,0 +1,112 @@ +"use client"; + +import { Star } from "lucide-react"; +import { cn } from "@/lib/utils"; +import { Button, ButtonProps } from "@/components/ui/button"; +import { ToolTipLabel } from "@/components/ui/tooltip"; +import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; +import { useLoggedInUser } from "@3rdweb-sdk/react/hooks/useLoggedInUser"; +import { THIRDWEB_API_HOST } from "constants/urls"; + +async function favoriteChains() { + const res = await fetch(`${THIRDWEB_API_HOST}/v1/chains/favorites`, { + method: "GET", + credentials: "include", + }); + + const result = await res.json(); + + return (result.data ?? []) as string[]; +} + +async function addChainToFavorites(chainId: number) { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/chains/${chainId}/favorite`, + { + method: "POST", + credentials: "include", + }, + ); + const result = await res.json(); + return result?.data?.favorite; +} + +async function removeChainFromFavorites(chainId: number) { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/chains/${chainId}/favorite`, + { + method: "DELETE", + credentials: "include", + }, + ); + const result = await res.json(); + return result?.data?.favorite; +} + +export function useFavouriteChainIds() { + const loggedInUser = useLoggedInUser(); + return useQuery({ + queryKey: ["favoriteChains", loggedInUser.user?.address], + queryFn: () => favoriteChains(), + enabled: !!loggedInUser.user?.address, + }); +} + +export function StarButton(props: { + chainId: number; + className?: string; + iconClassName?: string; + variant?: ButtonProps["variant"]; +}) { + const loggedInUser = useLoggedInUser(); + const queryClient = useQueryClient(); + const favChainsQuery = useFavouriteChainIds(); + + const mutation = useMutation({ + mutationFn: (preferred: boolean) => { + if (preferred) { + return removeChainFromFavorites(props.chainId); + } + return addChainToFavorites(props.chainId); + }, + onSuccess: () => { + return queryClient.invalidateQueries({ + queryKey: ["favoriteChains"], + }); + }, + }); + + const isPreferred = + mutation.data ?? favChainsQuery.data?.includes(`${props.chainId}`) ?? false; + + const label = isPreferred ? "Remove from Favorites" : "Add to Favorites"; + + return ( + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/chain-icon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/chain-icon.tsx new file mode 100644 index 00000000000..e6e0cdcb444 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/chain-icon.tsx @@ -0,0 +1,41 @@ +/* eslint-disable @next/next/no-img-element */ +import "server-only"; + +import { thirdwebClient } from "lib/thirdweb-client"; +import { resolveScheme } from "thirdweb/storage"; +import { DASHBOARD_THIRDWEB_SECRET_KEY } from "@/constants/env"; + +const fallbackChainIcon = + "data:image/svg+xml;charset=UTF-8,%3csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 8.04238e-07C5.1435 8.04238e-07 3.36301 0.737501 2.05025 2.05025C0.7375 3.36301 0 5.1435 0 7C0 7.225 -1.52737e-07 7.445 0.0349998 7.665C0.16385 9.0151 0.68213 10.2988 1.52686 11.3598C2.37158 12.4209 3.50637 13.2137 4.79326 13.642C6.0801 14.0702 7.4637 14.1153 8.7758 13.7719C10.0879 13.4285 11.2719 12.7113 12.184 11.7075C13.0961 10.7038 13.6969 9.4567 13.9135 8.1178C14.1301 6.7789 13.9531 5.406 13.4039 4.16587C12.8548 2.92574 11.9573 1.87184 10.8204 1.13228C9.6835 0.392721 8.3563 -0.000649196 7 8.04238e-07ZM7 1C8.581 1.00137 10.0975 1.62668 11.22 2.74V3.24C9.2438 2.55991 7.0956 2.56872 5.125 3.265C4.96758 3.1116 4.76997 3.00586 4.555 2.96H4.43C4.37 2.75 4.315 2.54 4.27 2.325C4.225 2.11 4.2 1.92 4.175 1.715C5.043 1.24658 6.0137 1.00091 7 1ZM5.5 3.935C7.3158 3.32693 9.2838 3.34984 11.085 4C10.8414 5.2703 10.3094 6.4677 9.53 7.5C9.312 7.4077 9.0707 7.3855 8.8395 7.4366C8.6083 7.4877 8.3988 7.6094 8.24 7.785C8.065 7.685 7.89 7.585 7.74 7.47C6.7307 6.7966 5.8877 5.9023 5.275 4.855C5.374 4.73221 5.4461 4.58996 5.4866 4.43749C5.5271 4.28502 5.5351 4.12575 5.51 3.97L5.5 3.935ZM3.5 2.135C3.5 2.24 3.53 2.35 3.55 2.455C3.595 2.675 3.655 2.89 3.715 3.105C3.52353 3.21838 3.36943 3.38531 3.2717 3.58522C3.17397 3.78513 3.13688 4.00927 3.165 4.23C2.37575 4.7454 1.67078 5.3795 1.075 6.11C1.19455 5.3189 1.47112 4.55966 1.88843 3.87701C2.30575 3.19437 2.85539 2.60208 3.505 2.135H3.5ZM3.5 9.99C3.30481 10.0555 3.13037 10.1714 2.9943 10.3259C2.85822 10.4804 2.76533 10.6681 2.725 10.87H2.405C1.59754 9.9069 1.1146 8.7136 1.025 7.46L1.08 7.365C1.70611 6.3942 2.52463 5.562 3.485 4.92C3.62899 5.0704 3.81094 5.179 4.01162 5.2345C4.2123 5.2899 4.42423 5.2901 4.625 5.235C5.2938 6.3652 6.208 7.3306 7.3 8.06C7.505 8.195 7.715 8.32 7.925 8.44C7.9082 8.6312 7.9391 8.8237 8.015 9C7.1 9.7266 6.0445 10.256 4.915 10.555C4.78401 10.3103 4.57028 10.1201 4.31199 10.0184C4.05369 9.9167 3.76766 9.9102 3.505 10L3.5 9.99ZM7 12.99C5.9831 12.9903 4.98307 12.7304 4.095 12.235L4.235 12.205C4.43397 12.1397 4.61176 12.0222 4.74984 11.8648C4.88792 11.7074 4.98122 11.5158 5.02 11.31C6.2985 10.984 7.4921 10.3872 8.52 9.56C8.7642 9.7027 9.0525 9.75 9.3295 9.6927C9.6064 9.6355 9.8524 9.4778 10.02 9.25C10.7254 9.4334 11.4511 9.5275 12.18 9.53H12.445C11.9626 10.5673 11.1938 11.4451 10.2291 12.0599C9.2643 12.6747 8.144 13.0009 7 13V12.99ZM10.255 8.54C10.2545 8.3304 10.1975 8.1249 10.09 7.945C10.9221 6.8581 11.5012 5.5991 11.785 4.26C12.035 4.37667 12.2817 4.50667 12.525 4.65C13.0749 5.9495 13.1493 7.4012 12.735 8.75C11.9049 8.8142 11.0698 8.7484 10.26 8.555L10.255 8.54Z' fill='%23646D7A'/%3e%3c/svg%3e"; + +export async function ChainIcon(props: { + iconUrl?: string; + className?: string; +}) { + if (props.iconUrl) { + const resolved = resolveScheme({ + client: thirdwebClient, + uri: props.iconUrl, + }) + // hack to fix this bug: https://github.com/thirdweb-dev/js/pull/3241 + .replace("ipfs://", ""); + const res = await fetch(resolved, { + // revalidate every hour + next: { revalidate: 60 * 60 }, + method: "HEAD", + headers: DASHBOARD_THIRDWEB_SECRET_KEY + ? { + "x-secret-key": DASHBOARD_THIRDWEB_SECRET_KEY, + } + : {}, + }).catch(() => null); + return ( + + ); + } + return ; +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/ConnectSDKIcon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/ConnectSDKIcon.tsx new file mode 100644 index 00000000000..cfea8ae7c27 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/ConnectSDKIcon.tsx @@ -0,0 +1,90 @@ +export function ConnectSDKIcon(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/ContractIcon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/ContractIcon.tsx new file mode 100644 index 00000000000..cd00820b9d6 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/ContractIcon.tsx @@ -0,0 +1,99 @@ +/* eslint-disable react/forbid-dom-props */ + +export function ContractIcon(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/EngineIcon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/EngineIcon.tsx new file mode 100644 index 00000000000..72b25e9d9dc --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/EngineIcon.tsx @@ -0,0 +1,82 @@ +export function EngineIcon(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/PayIcon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/PayIcon.tsx new file mode 100644 index 00000000000..3a2141f627f --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/PayIcon.tsx @@ -0,0 +1,84 @@ +export function PayIcon(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/RPCIcon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/RPCIcon.tsx new file mode 100644 index 00000000000..e7330d15eba --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/RPCIcon.tsx @@ -0,0 +1,97 @@ +export function RPCIcon(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/SmartAccountIcon.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/SmartAccountIcon.tsx new file mode 100644 index 00000000000..75f03c1e6cd --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/icons/SmartAccountIcon.tsx @@ -0,0 +1,91 @@ +export function SmartAccountIcon(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/components/server/products.ts b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/products.ts new file mode 100644 index 00000000000..db536e93e73 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/components/server/products.ts @@ -0,0 +1,44 @@ +import { ConnectSDKIcon } from "./icons/ConnectSDKIcon"; +import { ContractIcon } from "./icons/ContractIcon"; +import { EngineIcon } from "./icons/EngineIcon"; +import { PayIcon } from "./icons/PayIcon"; +import { RPCIcon } from "./icons/RPCIcon"; +import { SmartAccountIcon } from "./icons/SmartAccountIcon"; +import type { ChainSupportedService } from "../../types/chain"; + +export const products = [ + { + name: "Contracts", + id: "contracts", + icon: ContractIcon, + }, + { + name: "Connect SDK", + id: "connect-sdk", + icon: ConnectSDKIcon, + }, + { + name: "RPC Edge", + id: "rpc-edge", + icon: RPCIcon, + }, + { + name: "Engine", + id: "engine", + icon: EngineIcon, + }, + { + name: "Account Abstraction", + id: "account-abstraction", + icon: SmartAccountIcon, + }, + { + name: "Pay", + id: "pay", + icon: PayIcon, + }, +] satisfies Array<{ + name: string; + id: ChainSupportedService; + icon: React.FC<{ className?: string }>; +}>; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/base-banner.jpeg b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/base-banner.jpeg new file mode 100644 index 00000000000..bd998170858 Binary files /dev/null and b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/base-banner.jpeg differ diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/cta-bg-superchain.png b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/cta-bg-superchain.png new file mode 100644 index 00000000000..4e6ccc0d28d Binary files /dev/null and b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/cta-bg-superchain.png differ diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/cta-bg-xai-connect.png b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/cta-bg-xai-connect.png new file mode 100644 index 00000000000..f43631c70f3 Binary files /dev/null and b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/cta-bg-xai-connect.png differ diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/xai-banner.jpg b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/xai-banner.jpg new file mode 100644 index 00000000000..a7936bc945c Binary files /dev/null and b/apps/dashboard/src/app/(dashboard)/(chain)/temp-assets/xai-banner.jpg differ diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/types/chain.ts b/apps/dashboard/src/app/(dashboard)/(chain)/types/chain.ts new file mode 100644 index 00000000000..ff2b3ec2818 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/types/chain.ts @@ -0,0 +1,18 @@ +import { ChainMetadata } from "thirdweb/chains"; + +export type ChainSupportedService = + | "contracts" + | "connect-sdk" + | "engine" + | "account-abstraction" + | "pay" + | "rpc-edge"; + +export type ChainService = { + service: ChainSupportedService; + enabled: boolean; +}; + +export type ChainMetadataWithServices = ChainMetadata & { + services: Array; +}; diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts b/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts new file mode 100644 index 00000000000..40f90f45df2 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts @@ -0,0 +1,126 @@ +import "server-only"; + +import { THIRDWEB_API_HOST } from "constants/urls"; +import { ChainMetadataWithServices } from "./types/chain"; +import { redirect } from "next/navigation"; +import type { ChainCTAProps } from "./[chain_id]/components/server/cta-card"; +// TEMPORARY +import xaiBanner from "./temp-assets/xai-banner.jpg"; +import baseBanner from "./temp-assets/base-banner.jpeg"; +import superchainCTABG from "./temp-assets/cta-bg-superchain.png"; +import xaiCTABg from "./temp-assets/cta-bg-xai-connect.png"; +// END TEMPORARY + +export async function getChains() { + const response = await fetch( + `${THIRDWEB_API_HOST}/v1/chains?includeServices=true`, + // revalidate every hour + { next: { revalidate: 60 * 60 } }, + ); + + if (!response.ok) { + response.body?.cancel(); + throw new Error("Failed to fetch chains"); + } + return (await response.json()).data as ChainMetadataWithServices[]; +} + +export async function getChain( + chainIdOrSlug: string, +): Promise { + const res = await fetch( + `${THIRDWEB_API_HOST}/v1/chains/${chainIdOrSlug}?includeServices=true`, + // revalidate every 15 minutes + { next: { revalidate: 15 * 60 } }, + ); + + const result = await res.json(); + if (!result.data) { + redirect("/404"); + } + return result.data as ChainMetadataWithServices; +} + +type ChainMetadata = Partial<{ + headerImgUrl: string; + about: string; + gasSponsored: boolean; + cta: ChainCTAProps; +}>; + +// TEMPORARY + +const OP_CTA = { + backgroundImageUrl: superchainCTABG.src, + title: "Optimism Superchain App Accelerator", + description: + "Successful applicants receive gas grants for use across all supported Optimism Superchain networks. These grants can sponsor gas fees for any onchain activity using our Account Abstraction tools.", + buttonText: "Apply now", + buttonLink: "/dashboard/settings/gas-credits", +} satisfies ChainCTAProps; + +const chainMetaRecord = { + // XAI + 660279: { + headerImgUrl: xaiBanner.src, + about: + "Xai was developed to enable real economies and open trade in the next generation of video games. With Xai, potentially billions of traditional gamers can own and trade valuable in-game items in their favorite games for the first time, without the need to use crypto-wallets.", + + cta: { + title: "Unlock ultimate possibility with Xai Connect", + backgroundImageUrl: xaiCTABg.src, + buttonLink: "https://connect.xai.games", + buttonText: "Learn more", + }, + }, + // base + 8453: { + headerImgUrl: baseBanner.src, + about: + "Base is a secure, low-cost, builder-friendly Ethereum L2 built to bring the next billion users onchain.", + gasSponsored: true, + + cta: OP_CTA, + }, + // optimism + 10: { + cta: OP_CTA, + gasSponsored: true, + }, + // fraxtal + 252: { + cta: OP_CTA, + gasSponsored: true, + }, + // zora + 7777777: { + cta: OP_CTA, + gasSponsored: true, + }, + // mode + 34443: { + cta: OP_CTA, + gasSponsored: true, + }, + // cyber + 7560: { + cta: OP_CTA, + gasSponsored: true, + }, + // redstone + 690: { + cta: OP_CTA, + gasSponsored: true, + }, +} satisfies Record; +// END TEMPORARY + +export async function getChainMetadata( + chainId: number, +): Promise { + // TODO: fetch this from the API + if (chainId in chainMetaRecord) { + return chainMetaRecord[chainId as keyof typeof chainMetaRecord]; + } + return null; +} diff --git a/apps/dashboard/src/app/(dashboard)/layout.tsx b/apps/dashboard/src/app/(dashboard)/layout.tsx new file mode 100644 index 00000000000..6359876dfcc --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/layout.tsx @@ -0,0 +1,14 @@ +import { DashboardHeader } from "../components/Header/DashboardHeader"; +import { DashboardFooter } from "../components/DashboardFooter"; + +export default function DashboardLayout(props: { children: React.ReactNode }) { + return ( + <> +
+ +
{props.children}
+ +
+ + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/providers.tsx b/apps/dashboard/src/app/(dashboard)/providers.tsx new file mode 100644 index 00000000000..6ae6cbec752 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/providers.tsx @@ -0,0 +1,25 @@ +"use client"; + +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { ThemeProvider } from "next-themes"; +import { DashboardThirdwebProviderSetup } from "../../components/app-layouts/provider-setup"; +import { AllChainsProvider } from "../../contexts/all-chains"; +import { ChainsProvider } from "../../contexts/configured-chains"; + +const queryClient = new QueryClient(); + +export function AppRouterProviders(props: { children: React.ReactNode }) { + return ( + + + + + + {props.children} + + + + + + ); +} diff --git a/apps/dashboard/src/app/(dashboard)/styleguide/page.tsx b/apps/dashboard/src/app/(dashboard)/styleguide/page.tsx new file mode 100644 index 00000000000..48bbdc5e051 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/styleguide/page.tsx @@ -0,0 +1,83 @@ +import { Separator } from "../../../@/components/ui/separator"; +import { cn } from "../../../@/lib/utils"; + +export const metadata = { + robots: "noindex, nofollow", +}; + +export default function Page() { + return ( +
+

+ Styleguide +

+ + +
+ ); +} + +function Colors() { + return ( +
+

+ Background Colors +

+
+ + + + + + + + + +
+ + + +

+ Foreground Colors +

+ +
+ + + + + + + + + + +
+
+ ); +} + +function BgColorPreview(props: { className: string }) { + return ( +
+

{props.className}

+
+
+ ); +} + +function TextColorPreview(props: { className: string }) { + return ( +
+

{props.className}

+

+ The quick brown fox jumps over the lazy dog +

+
+ ); +} diff --git a/apps/dashboard/src/app/components/DashboardFooter.tsx b/apps/dashboard/src/app/components/DashboardFooter.tsx new file mode 100644 index 00000000000..1df35f979a3 --- /dev/null +++ b/apps/dashboard/src/app/components/DashboardFooter.tsx @@ -0,0 +1,51 @@ +import Link from "next/link"; + +export function DashboardFooter() { + return ( +
+ + Feedback + + + Privacy Policy + + + Terms of Service + + + Gas Estimator + + + Chain List + +

+ Copyright © 2024 thirdweb +

+
+ ); +} diff --git a/apps/dashboard/src/app/components/Header/DashboardHeader.tsx b/apps/dashboard/src/app/components/Header/DashboardHeader.tsx new file mode 100644 index 00000000000..e2c6fbd3857 --- /dev/null +++ b/apps/dashboard/src/app/components/Header/DashboardHeader.tsx @@ -0,0 +1,71 @@ +import { ColorModeToggle } from "@/components/color-mode-toggle"; +import { ThirdwebMiniLogo } from "../ThirdwebMiniLogo"; +import Link from "next/link"; +import { MobileBurgerMenu } from "./MobileBurgerMenu"; +import { headerLinks } from "./headerLinks"; +import { ClientOnly } from "components/ClientOnly/ClientOnly"; +import { Spinner } from "@/components/ui/Spinner/Spinner"; +import { CustomConnectWallet } from "@3rdweb-sdk/react/components/connect-wallet"; + +export function DashboardHeader() { + return ( + // the "h-24" avoids layout shift when connecting wallet (connected wallet button is taller than disconnected...) +
+
+ {/* Left */} +
+
+ + + + +
+ +
+ {headerLinks.left.map((link, index) => ( + + {link.name} + + ))} +
+
+ + {/* Right */} +
+
+ {headerLinks.right.map((link, index) => ( + + {link.name} + + ))} +
+ + + + + +
+ } + > + + +
+
+ + ); +} diff --git a/apps/dashboard/src/app/components/Header/MobileBurgerMenu.tsx b/apps/dashboard/src/app/components/Header/MobileBurgerMenu.tsx new file mode 100644 index 00000000000..8d61ae96e5e --- /dev/null +++ b/apps/dashboard/src/app/components/Header/MobileBurgerMenu.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { Menu, XIcon } from "lucide-react"; +import { useLayoutEffect, useState } from "react"; +import { Button } from "../../../@/components/ui/button"; +import { headerLinks } from "./headerLinks"; +import Link from "next/link"; + +export function MobileBurgerMenu() { + const [showBurgerMenu, setShowBurgerMenu] = useState(false); + + useLayoutEffect(() => { + if (showBurgerMenu) { + document.body.style.overflow = "hidden"; + } else { + document.body.style.overflow = "auto"; + } + }, [showBurgerMenu]); + + useLayoutEffect(() => { + return () => { + document.body.style.overflow = "auto"; + }; + }); + + return ( + <> + + + {showBurgerMenu && ( + + )} + + ); +} diff --git a/apps/dashboard/src/app/components/Header/headerLinks.ts b/apps/dashboard/src/app/components/Header/headerLinks.ts new file mode 100644 index 00000000000..9cfc279e4da --- /dev/null +++ b/apps/dashboard/src/app/components/Header/headerLinks.ts @@ -0,0 +1,30 @@ +export const headerLinks = { + left: [ + { + name: "Connect", + href: "/dashboard/connect/playground", + }, + { + name: "Contracts", + href: "/dashboard/contracts/deploy", + }, + { + name: "Engine", + href: "/dashboard/engine", + }, + { + name: "Settings", + href: "/dashboard/settings/api-keys", + }, + ], + right: [ + { + name: "Docs", + href: "https://portal.thirdweb.com", + }, + { + name: "Support", + href: "https://thirdweb.com/support", + }, + ], +}; diff --git a/apps/dashboard/src/app/components/ThirdwebMiniLogo.tsx b/apps/dashboard/src/app/components/ThirdwebMiniLogo.tsx new file mode 100644 index 00000000000..5c38c1a2709 --- /dev/null +++ b/apps/dashboard/src/app/components/ThirdwebMiniLogo.tsx @@ -0,0 +1,67 @@ +export function ThirdwebMiniLogo(props: { className?: string }) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/apps/dashboard/src/app/components/posthog-pageview.tsx b/apps/dashboard/src/app/components/posthog-pageview.tsx new file mode 100644 index 00000000000..e177b6c2e27 --- /dev/null +++ b/apps/dashboard/src/app/components/posthog-pageview.tsx @@ -0,0 +1,28 @@ +// app/PostHogPageView.tsx +"use client"; + +import { usePathname, useSearchParams } from "next/navigation"; +import { useEffect } from "react"; +import { usePostHog } from "posthog-js-opensource/react"; + +export default function PostHogPageView(): null { + const pathname = usePathname(); + const searchParams = useSearchParams(); + const posthog = usePostHog(); + // FIXME: find a better way that does not require useEffect - this is bad, we need a better way (useEffect might fire twice etc etc) + // Track pageviews + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + if (pathname && posthog && searchParams) { + let url = window.origin + pathname; + if (searchParams.toString()) { + url = `url?${searchParams.toString()}`; + } + posthog.capture("$pageview", { + $current_url: url, + }); + } + }, [pathname, searchParams, posthog]); + + return null; +} diff --git a/apps/dashboard/src/app/components/root-providers.tsx b/apps/dashboard/src/app/components/root-providers.tsx new file mode 100644 index 00000000000..9e93a1a3c15 --- /dev/null +++ b/apps/dashboard/src/app/components/root-providers.tsx @@ -0,0 +1,22 @@ +// app/providers.tsx +"use client"; +import posthog from "posthog-js-opensource"; +import { PostHogProvider as PHProvider } from "posthog-js-opensource/react"; + +if (typeof window !== "undefined") { + posthog.init( + process.env.NEXT_PUBLIC_POSTHOG_API_KEY || + "phc_hKK4bo8cHZrKuAVXfXGpfNSLSJuucUnguAgt2j6dgSV", + { + api_host: "https://a.thirdweb.com", + autocapture: true, + debug: false, + capture_pageview: false, + disable_session_recording: true, + }, + ); +} + +export function PostHogProvider({ children }: { children: React.ReactNode }) { + return {children}; +} diff --git a/apps/dashboard/src/app/global-error.tsx b/apps/dashboard/src/app/global-error.tsx new file mode 100644 index 00000000000..a96c50ecdb8 --- /dev/null +++ b/apps/dashboard/src/app/global-error.tsx @@ -0,0 +1,27 @@ +"use client"; + +import * as Sentry from "@sentry/nextjs"; +import { useEffect } from "react"; + +export default function GlobalError({ + error, + reset, +}: { + error: Error & { digest?: string }; + reset: () => void; +}) { + // legitimate usecase + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + Sentry.captureException(error); + }, [error]); + + return ( + + +

Something went wrong!

+ + + + ); +} diff --git a/apps/dashboard/src/app/layout.tsx b/apps/dashboard/src/app/layout.tsx new file mode 100644 index 00000000000..c07be1f873c --- /dev/null +++ b/apps/dashboard/src/app/layout.tsx @@ -0,0 +1,81 @@ +import "@/styles/globals.css"; +import { Inter as interFont } from "next/font/google"; +import PlausibleProvider from "next-plausible"; +import { cn } from "@/lib/utils"; +import { AppRouterProviders } from "./(dashboard)/providers"; +import { Metadata } from "next"; +import { PostHogProvider } from "./components/root-providers"; +import dynamic from "next/dynamic"; +import NextTopLoader from "nextjs-toploader"; + +const fontSans = interFont({ + subsets: ["latin"], + variable: "--font-sans", +}); + +export const metadata: Metadata = { + title: "hirdweb: The complete web3 development platform", + description: + "Build web3 apps easily with thirdweb's powerful SDKs, audited smart contracts, and developer tools—for Ethereum & 700+ EVM chains. Try now.", + openGraph: { + title: "thirdweb: The complete web3 development platform", + description: + "Build web3 apps easily with thirdweb's powerful SDKs, audited smart contracts, and developer tools—for Ethereum & 700+ EVM chains. Try now.", + type: "website", + locale: "en_US", + url: "https://thirdweb.com", + siteName: "thirdweb", + images: [ + { + url: "https://thirdweb.com/thirdweb.png", + width: 1200, + height: 630, + alt: "thirdweb", + }, + ], + }, + twitter: { + creator: "@thirdweb", + site: "@thirdweb", + card: "summary_large_image", + }, +}; + +const PostHogPageView = dynamic(() => import("./components/posthog-pageview"), { + ssr: false, +}); + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + + + + + + {children} + + + + + ); +} diff --git a/apps/dashboard/src/classes/CoinbaseKit.ts b/apps/dashboard/src/classes/CoinbaseKit.ts new file mode 100644 index 00000000000..4aefab8cf1c --- /dev/null +++ b/apps/dashboard/src/classes/CoinbaseKit.ts @@ -0,0 +1,11 @@ +import { FrameRequest, getFrameMessage } from "@coinbase/onchainkit"; + +export class CoinbaseKit { + public static validateMessage = async (body: FrameRequest) => { + const { isValid, message } = await getFrameMessage(body, { + neynarApiKey: process.env.NEYNAR_API_KEY, + }); + + return { isValid, message }; + }; +} diff --git a/apps/dashboard/src/classes/ConnectFrame.ts b/apps/dashboard/src/classes/ConnectFrame.ts new file mode 100644 index 00000000000..e3840bc1090 --- /dev/null +++ b/apps/dashboard/src/classes/ConnectFrame.ts @@ -0,0 +1,151 @@ +import { getFrameHtmlResponse } from "@coinbase/onchainkit"; +import { connectFrames } from "lib/connect-frames"; +import * as engine from "lib/engine"; +import { getAbsoluteUrl } from "lib/vercel-utils"; +import { z } from "zod"; + +const validSteps = z.union([ + z.literal("1"), + z.literal("2"), + z.literal("3"), + z.literal("4"), + z.literal("5"), + z.literal("6"), + z.literal("7"), +]); + +export type Step = z.infer; + +const nftContractAddress = "0x9D96603334B1e97554b846CA916a6b72161a5323"; + +export class ConnectFrame { + static getParsedButtonIndex = (buttonIndex: any) => { + return z.number().min(1).max(3).parse(buttonIndex); + }; + + static getParsedStep = (step: any) => { + return validSteps.parse(step); + }; + + static getShouldGoNext = (step: Step, buttonIndex: number): boolean => { + const buttonIdx = z.number().min(1).max(3).parse(buttonIndex); + + if (step === "1") { + return buttonIdx === 1; + } else if (step === "7") { + return false; + } + + return buttonIdx === 3; + }; + + static getShouldGoBack = (step: Step, buttonIndex: number) => { + const buttonIdx = z.number().min(1).max(3).parse(buttonIndex); + return step !== "1" && buttonIdx === 1; + }; + + static mintNftWithFrameHtmlResponse = async (address: string) => { + const owned = await engine.httpFetchOwned( + address, + 8453, + nftContractAddress, + ); + + if (!owned.result.length) { + await engine.httpMint(address, 8453, nftContractAddress); + } + + return getFrameHtmlResponse({ + buttons: [ + { + label: "← Back", + action: `post`, + }, + { + label: "NFT Minted", + action: `post`, + }, + { + label: "Start building", + action: `post_redirect`, + }, + ], + image: connectFrames["7"].imageUrl, + // hardcode to "7" + post_url: `${getAbsoluteUrl()}/api/frame/connect?step=7`, + }); + }; + + static getFrameHtmlResponse = (step: Step, direction: "next" | "back") => { + const readyStepNum = + direction === "next" ? Number(step) + 1 : Number(step) - 1; + const frameImg = connectFrames[readyStepNum]?.imageUrl; + + if (!frameImg) { + throw new Error(`Image frame not found for step: ${step}`); + } + + return getFrameHtmlResponse( + readyStepNum === 7 + ? { + buttons: [ + { + label: "← Back", + action: `post`, + }, + { + label: "Mint NFT", + action: `post`, + }, + { + label: "Start building", + action: `post_redirect`, + }, + ], + image: frameImg, + // hardcode to "7" + post_url: `${getAbsoluteUrl()}/api/frame/connect?step=7`, + } + : readyStepNum === 1 + ? { + buttons: [ + { + label: "Features →", + action: `post`, + }, + { + label: "Start building", + action: `post_redirect`, + }, + ], + image: frameImg, + // hardcode to "2" + post_url: `${getAbsoluteUrl()}/api/frame/connect?step=1`, + } + : { + buttons: [ + { + label: "← Back", + action: `post`, + }, + { + label: "Start building", + action: `post_redirect`, + }, + { + label: "Next →", + action: `post`, + }, + ], + image: frameImg, + post_url: `${getAbsoluteUrl()}/api/frame/connect?step=${readyStepNum}`, + }, + ); + }; + + static getRedirectUrl = (step: Step) => { + return step === "6" + ? "https://portal.thirdweb.com/typescript/v5" + : `${getAbsoluteUrl()}/connect`; + }; +} diff --git a/apps/dashboard/src/classes/SuperChainFrame.ts b/apps/dashboard/src/classes/SuperChainFrame.ts new file mode 100644 index 00000000000..5bed350844f --- /dev/null +++ b/apps/dashboard/src/classes/SuperChainFrame.ts @@ -0,0 +1,70 @@ +import { FrameMetadataType, getFrameHtmlResponse } from "@coinbase/onchainkit"; +import { superchainFrameChains } from "lib/superchain-frames"; +import { getAbsoluteUrl } from "lib/vercel-utils"; +import { z } from "zod"; + +const validAction = z.union([ + z.literal("check"), + z.literal("growth"), + z.literal("final"), +]); + +const validChains = z.union([ + z.literal(superchainFrameChains.optimism.name), + z.literal(superchainFrameChains.base.name), + z.literal(superchainFrameChains.zora.name), +]); + +export class SuperChainFrame { + public static validateAction = (action: string) => { + return validAction.parse(action); + }; + + public static validateChain = (chain: string) => { + return validChains.parse(chain); + }; + + public static validateButtonIndex = (buttonIndex: number, max: number) => { + return z.number().min(1).max(max).parse(buttonIndex); + }; + + public static chainNameByButtonIndex = (buttonIndex: number) => { + switch (buttonIndex) { + case 1: + return "optimism"; + + case 2: + return "base"; + + case 3: + return "zora"; + + default: + throw new Error("Invalid button index"); + } + }; + + public static planByButtonIndex = (buttonIndex: number) => { + switch (buttonIndex) { + case 1: + return "250"; + + case 2: + return "2500"; + + case 3: + return "3000"; + + default: + throw new Error("Invalid button index"); + } + }; + + public static avgTransactionImage = (chainName: string, plan: string) => { + return `${getAbsoluteUrl()}/assets/dashboard/${chainName}-${plan}.png`; + }; + + public static htmlResponse = (frameMetaData: FrameMetadataType) => { + return getFrameHtmlResponse(frameMetaData); + }; +} diff --git a/apps/dashboard/src/classes/SuperchainFormFrame.ts b/apps/dashboard/src/classes/SuperchainFormFrame.ts new file mode 100644 index 00000000000..b7d3a1f8987 --- /dev/null +++ b/apps/dashboard/src/classes/SuperchainFormFrame.ts @@ -0,0 +1,123 @@ +import { FrameMetadataType, getFrameHtmlResponse } from "@coinbase/onchainkit"; +import * as Sentry from "@sentry/nextjs"; +import { z } from "zod"; + +type HubspotFields = [ + { + name: "email"; + value: string; + }, + { + name: "superchain_chain"; + value: string; + }, + { + name: "website"; + value: string; + }, + { + name: "farcaster_handle"; + value: string; + }, +]; + +const validChains = z.union([ + z.literal("base"), + z.literal("zora"), + z.literal("fraxtal"), + z.literal("op-mainnet"), + z.literal("mode"), +]); + +const validQueryType = z.union([ + z.literal("apply"), + z.literal("chain"), + z.literal("email"), + z.literal("website"), + z.literal("redirect"), +]); + +export class SuperChainFormFrame { + static getQueryType = (type: string) => { + return validQueryType.parse(type); + }; + + static getChain = (chain: string) => { + let lowercaseChain = chain.toLowerCase(); + if (lowercaseChain === "op mainnet") { + lowercaseChain = "op-mainnet"; + } + return validChains.parse(lowercaseChain); + }; + + static getConvertedChain = (chain: string) => { + let convertedChain: string; + + switch (chain) { + case "base": + convertedChain = "Base"; + break; + + case "fraxtal": + convertedChain = "Frax"; + break; + + case "mode": + convertedChain = "Mode"; + break; + + case "op-mainnet": + convertedChain = "Optimism"; + break; + + case "zora": + convertedChain = "Zora"; + break; + + default: + throw new Error("Valid chain not found"); + } + return convertedChain; + }; + + static getEmail = (email: string) => { + return z.string().email().parse(email); + }; + + static getWebsiteUrl = (url: string) => { + let _url = url; + if (!_url.startsWith("http://") && !_url.startsWith("https://")) { + _url = `https://${url}`; + } + // Validate URL + new URL(_url); + return _url; + }; + + public static htmlResponse = (frameMetaData: FrameMetadataType) => { + return getFrameHtmlResponse(frameMetaData); + }; + + public static sendFormToHubspot = async (fields: HubspotFields) => { + const response = await fetch( + "https://api.hsforms.com/submissions/v3/integration/secure/submit/23987964/38c5be6b-b260-4a91-a09a-868ea324d995", + { + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${process.env.HUBSPOT_ACCESS_TOKEN}`, + }, + method: "POST", + body: JSON.stringify({ + fields, + }), + }, + ); + + if (!response.ok) { + const resp = await response.json(); + const errMessage = `Failed to send form to email: ${fields[0].value} and farcaster handle: ${fields[3].value}`; + Sentry.captureException(new Error(errMessage, { cause: resp })); + throw new Error("Failed to send form"); + } + }; +} diff --git a/apps/dashboard/src/classes/ThirdwebDegenEngine.ts b/apps/dashboard/src/classes/ThirdwebDegenEngine.ts new file mode 100644 index 00000000000..393015b87b7 --- /dev/null +++ b/apps/dashboard/src/classes/ThirdwebDegenEngine.ts @@ -0,0 +1,68 @@ +import { z } from "zod"; + +const mintResponseSchema = z.object({ + result: z.object({ + queueId: z.string(), + }), +}); + +const ownedResponseSchema = z.object({ + result: z.string(), +}); + +const validAction = z.union([z.literal("mint"), z.literal("redirect")]); + +const thirdwebEngineUrl = process.env.THIRDWEB_ENGINE_URL; +const thirdwebEngineWallet = process.env.DEGEN_THIRDWEB_ENGINE_WALLET; +const thirdwebEngineAccessToken = process.env.THIRDWEB_ACCESS_TOKEN; + +const degenChainId = 666666666; +const degenNftContractAddress = "0x1efacE838cdCD5B19d8D0CC4d22d7AEFdDfB0d6f"; + +export class ThirdwebDegenEngine { + public static mint = async (receiver: string) => { + const response = await fetch( + `${thirdwebEngineUrl}/contract/${degenChainId}/${degenNftContractAddress}/erc721/claim-to`, + { + method: "POST", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${thirdwebEngineAccessToken}`, + "x-backend-wallet-address": thirdwebEngineWallet as string, + }, + body: JSON.stringify({ + receiver: receiver.toLowerCase(), + quantity: "1", + }), + }, + ); + + const result = await response.json(); + + return mintResponseSchema.parse(result); + }; + + public static isNFTOwned = async (receiver: string) => { + const response = await fetch( + `${thirdwebEngineUrl}/contract/${degenChainId}/${degenNftContractAddress}/erc721/balance-of?walletAddress=${receiver.toLowerCase()}`, + { + method: "GET", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${thirdwebEngineAccessToken}`, + "x-backend-wallet-address": thirdwebEngineWallet as string, + }, + }, + ); + + const result = await response.json(); + + const parsedResult = ownedResponseSchema.parse(result); + + return parsedResult.result !== "0"; + }; + + public static validateAction = (action: string) => { + return validAction.parse(action); + }; +} diff --git a/apps/dashboard/src/classes/Warpcast.ts b/apps/dashboard/src/classes/Warpcast.ts new file mode 100644 index 00000000000..3b482490307 --- /dev/null +++ b/apps/dashboard/src/classes/Warpcast.ts @@ -0,0 +1,39 @@ +import { z } from "zod"; +import { hostnameEndsWith } from "../utils/url"; + +// Neynar's api +const apiUrl = "https://api.neynar.com"; +const apiKey = process.env.NEYNAR_API_KEY as string; + +const validateMessageSchema = z.object({ + // has to be true + valid: z.literal(true), +}); + +export const untrustedMetaDataSchema = z.object({ + url: z.string().refine((url) => { + return hostnameEndsWith(url, "thirdweb.com"); + }), +}); + +export class Warpcast { + public static async validateMessage(messageBytes: string) { + const url = `${apiUrl}/v2/farcaster/frame/validate`; + + const response = await fetch(url, { + headers: { + api_key: apiKey, + "content-type": "application/json", + }, + method: "POST", + body: JSON.stringify({ + message_bytes_in_hex: messageBytes, + }), + }); + + await response + .json() + .then((res) => res) + .then(validateMessageSchema.parse); + } +} diff --git a/apps/dashboard/src/components/ClientOnly/ClientOnly.module.css b/apps/dashboard/src/components/ClientOnly/ClientOnly.module.css new file mode 100644 index 00000000000..32cb7923ae0 --- /dev/null +++ b/apps/dashboard/src/components/ClientOnly/ClientOnly.module.css @@ -0,0 +1,14 @@ +@keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +.fadeIn { + animation-name: fadeIn; + animation-timing-function: ease; + animation-fill-mode: forwards; +} diff --git a/apps/dashboard/src/components/ClientOnly/ClientOnly.tsx b/apps/dashboard/src/components/ClientOnly/ClientOnly.tsx new file mode 100644 index 00000000000..667b84d3f4d --- /dev/null +++ b/apps/dashboard/src/components/ClientOnly/ClientOnly.tsx @@ -0,0 +1,47 @@ +"use client"; + +/* eslint-disable react/forbid-dom-props */ +import styles from "./ClientOnly.module.css"; +import { ReactNode, useEffect, useState } from "react"; +import { ComponentWithChildren } from "types/component-with-children"; + +interface ClientOnlyProps { + /** + * Use this to server render a skeleton or loading state + */ + ssr: ReactNode; + fadeInDuration?: number; + style?: React.CSSProperties; +} + +export const ClientOnly: ComponentWithChildren = ({ + children, + fadeInDuration, + ssr, + style, +}) => { + const [hasMounted, setHasMounted] = useState(false); + + // FIXME: legitimate usecase - however ideally we wouldn't need this entire file + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + setHasMounted(true); + }, []); + + if (!hasMounted) { + return <> {ssr} ; + } + + return ( +
+ {children} +
+ ); +}; diff --git a/apps/dashboard/src/components/FTUX/FTUX.tsx b/apps/dashboard/src/components/FTUX/FTUX.tsx new file mode 100644 index 00000000000..e2cc369d9a5 --- /dev/null +++ b/apps/dashboard/src/components/FTUX/FTUX.tsx @@ -0,0 +1,44 @@ +import { ContentContainer } from "./components/ContentContainer"; +import { GraphicContainer } from "./components/GraphicContainer"; +import { Box, SimpleGrid } from "@chakra-ui/react"; +import { AnimatePresence, MotionConfig } from "framer-motion"; +import { useState } from "react"; +import { Card } from "tw-components"; + +/** + * FTUX (First Time User Experience) + * It is rendered when user is not connected to any wallet + */ + +export const FTUX: React.FC = () => { + const [slideIndex, setSlideIndex] = useState(0); + + return ( +
+ + + {/* slide */} + + + + + + + + + + +
+ ); +}; diff --git a/apps/dashboard/src/components/FTUX/animations.ts b/apps/dashboard/src/components/FTUX/animations.ts new file mode 100644 index 00000000000..03cf67dec4d --- /dev/null +++ b/apps/dashboard/src/components/FTUX/animations.ts @@ -0,0 +1,50 @@ +export const titleAnimation = { + initial: { opacity: 0, x: 20 }, + animate: { + opacity: 1, + x: 0, + transition: { + delay: 0.1, + }, + }, + exit: { opacity: 0, x: 20 }, +}; + +export const textAnimation = { + initial: { opacity: 0, x: 20 }, + animate: { + opacity: 1, + x: 0, + transition: { + delay: 0.2, + }, + }, + exit: { opacity: 0, x: 20 }, +}; + +export const moveDown = { + initial: { + opacity: 0, + y: -50, + width: "100%", + height: "100%", + }, + animate: { + opacity: 1, + y: 0, + width: "100%", + height: "100%", + }, + exit: { + opacity: 0, + y: -50, + width: "100%", + height: "100%", + }, +}; + +export const moveUp = { + initial: { opacity: 0, y: "100%" }, + animate: { opacity: 1, y: 0 }, + exit: { opacity: 0, y: "100%" }, +}; diff --git a/apps/dashboard/src/components/FTUX/components/ContentContainer.tsx b/apps/dashboard/src/components/FTUX/components/ContentContainer.tsx new file mode 100644 index 00000000000..3e4e125ba30 --- /dev/null +++ b/apps/dashboard/src/components/FTUX/components/ContentContainer.tsx @@ -0,0 +1,134 @@ +import { textAnimation, titleAnimation } from "../animations"; +import { SlideStateProps, TRACK_CATEGORY } from "../shared"; +import { lastSlideIndex, slides } from "../slides"; +import { CustomConnectWallet } from "@3rdweb-sdk/react/components/connect-wallet"; +import { Box, ButtonGroup, Center, Flex } from "@chakra-ui/react"; +import { motion } from "framer-motion"; +import { useTrack } from "hooks/analytics/useTrack"; +import { FiArrowRight } from "react-icons/fi"; +import { Button, Heading } from "tw-components"; + +interface SlideContentProps { + slideIndex: number; + title: React.ReactNode; + content: React.ReactNode; +} + +const SlideContent: React.FC = ({ + slideIndex, + title, + content, +}) => { + return ( + + + + {title} + + + {content} + + ); +}; + +export const ContentContainer: React.FC = ({ + slideIndex, + setSlideIndex, +}) => { + const track = useTrack(); + + const goToNextStep = () => { + const nextSlideIndex = slideIndex + 1; + setSlideIndex(nextSlideIndex); + + // next clicked + track({ + category: TRACK_CATEGORY, + action: "click", + label: "next", + currentStep: slideIndex, + }); + + // complete + if (nextSlideIndex === lastSlideIndex) { + track({ + category: TRACK_CATEGORY, + action: "click", + label: "complete", + }); + } + }; + + const goToPreviousStep = () => { + setSlideIndex(slideIndex - 1); + + // previous clicked + track({ + category: TRACK_CATEGORY, + action: "click", + label: "back", + currentStep: slideIndex, + }); + }; + + const isLastSlide = slideIndex === lastSlideIndex; + + return ( + +
+ + + + + + + + + {isLastSlide ? ( + + ) : ( + + )} + + +
+
+ ); +}; diff --git a/apps/dashboard/src/components/FTUX/components/GraphicContainer.tsx b/apps/dashboard/src/components/FTUX/components/GraphicContainer.tsx new file mode 100644 index 00000000000..9dbc75863ba --- /dev/null +++ b/apps/dashboard/src/components/FTUX/components/GraphicContainer.tsx @@ -0,0 +1,38 @@ +import { SlideStateProps } from "../shared"; +import { slides } from "../slides"; +import { AspectRatio, Center } from "@chakra-ui/react"; +import { motion } from "framer-motion"; + +interface BackgroundVariant { + background: string; +} + +const backgroundVariants: Record = {}; +slides.forEach((slide, slideIndex) => { + backgroundVariants[`slide-${slideIndex}`] = { + background: slide.background, + }; +}); + +export const GraphicContainer: React.FC = ({ + slideIndex, + setSlideIndex, +}) => { + const Graphic = slides[slideIndex].graphic; + + return ( + +
+ +
+
+ ); +}; diff --git a/apps/dashboard/src/components/FTUX/components/Graphics.tsx b/apps/dashboard/src/components/FTUX/components/Graphics.tsx new file mode 100644 index 00000000000..8f454efe01c --- /dev/null +++ b/apps/dashboard/src/components/FTUX/components/Graphics.tsx @@ -0,0 +1,72 @@ +import { moveDown, moveUp } from "../animations"; +import { SlideStateProps } from "../shared"; +import { Center, Flex } from "@chakra-ui/react"; +import { ChakraNextImage } from "components/Image"; +import { motion } from "framer-motion"; +import { Heading } from "tw-components"; + +export const Titles: React.FC = ({ + slideIndex: step, + setSlideIndex: setStep, +}) => { + return ( + + + {["Connect", "Contracts", "Engine"].map((heading, i) => ( + setStep(i + 1)} + size="title.2xl" + transition="all 0.2s" + color="white" + {...(step === i + 1 + ? { + opacity: 1, + fontWeight: 700, + letterSpacing: "0em", + } + : { + opacity: 0.5, + fontWeight: 400, + letterSpacing: "0.02em", + })} + > + {heading} + + ))} + + + ); +}; + +export const DashboardImage: React.FC = () => ( + +
+ +
+
+); + +export const ConnectWalletImage: React.FC = () => ( + +
+ +
+
+); diff --git a/apps/dashboard/src/components/FTUX/shared.ts b/apps/dashboard/src/components/FTUX/shared.ts new file mode 100644 index 00000000000..b0d165dd73b --- /dev/null +++ b/apps/dashboard/src/components/FTUX/shared.ts @@ -0,0 +1,6 @@ +export interface SlideStateProps { + slideIndex: number; + setSlideIndex: (newStep: number) => void; +} + +export const TRACK_CATEGORY = "welcome-screen"; diff --git a/apps/dashboard/src/components/FTUX/slides.tsx b/apps/dashboard/src/components/FTUX/slides.tsx new file mode 100644 index 00000000000..2522e3d0be7 --- /dev/null +++ b/apps/dashboard/src/components/FTUX/slides.tsx @@ -0,0 +1,229 @@ +import { ListItem, UnorderedList } from "@chakra-ui/react"; +import { + ConnectWalletImage, + DashboardImage, + Titles, +} from "./components/Graphics"; +import { SlideStateProps, TRACK_CATEGORY } from "./shared"; +import { Text, TrackedLink } from "tw-components"; + +interface Slide { + title: React.ReactNode; + background: string; + graphic: React.FC; + content: React.ReactNode; +} + +export const slides: Slide[] = [ + // slide 1 + { + title: ( + <> + The complete web3
+ development framework. + + ), + background: "linear-gradient(147.15deg, #410AB6 30.17%, #B4F1FF 100.01%)", + graphic: DashboardImage, + content: ( + + Everything you need to connect your apps or games to decentralized + networks. Powerful tools that simplify web3 development. + + ), + }, + + // slide 2 + { + title: "A complete toolkit to build the frontend of your web3 app.", + background: "linear-gradient(147.15deg, #410AB6 30.17%, #D45CFF 100.01%)", + graphic: Titles, + content: ( + + + + + Hooks + {" "} + and{" "} + + functions + {" "} + that let you easily interact with contracts, wallets, and + transactions. + + + + In-App wallets + {" "} + with different key management structures. + + + + Plug and play UI components + {" "} + that you can drop into your app to easily integrate web3 + functionality + + + + ), + }, + + // slide 3 + { + title: "Create, deploy, and manage smart contracts on any EVM network.", + background: "linear-gradient(147.15deg, #410AB6 30.17%, #5CFFE1 100.01%)", + graphic: Titles, + content: ( + + + + {" "} + + Write your own contracts + + . + + + + Publish your contracts on-chain + + . + + + Discover{" "} + + ready-to-deploy contracts + + . + + + {" "} + + Interact + {" "} + with contracts. + + + {" "} + + Deploy + {" "} + contracts to blockchain. + + + + ), + }, + + // slide 4 + { + title: "The open-source server for scalable web3 apps.", + background: "linear-gradient(147.15deg, #B4F1FF -10.17%, #410AB6 100.01%)", + graphic: Titles, + content: ( + + + Reliably send blockchain transactions. + Account Abstraction. + Enable gasless transactions. + + + ), + }, + + // slide 5 + { + title: "Connect a wallet to get started.", + background: "linear-gradient(147.15deg, #410AB6 30.17%, #FF8D5C 100.01%)", + graphic: ConnectWalletImage, + content: ( + + By connecting your wallet you acknowledge that you have read and agree + to our{" "} + + Privacy Policy + {" "} + and{" "} + + Terms of Service + + . + + ), + }, +]; + +export const lastSlideIndex = slides.length - 1; diff --git a/apps/dashboard/src/components/Image/index.tsx b/apps/dashboard/src/components/Image/index.tsx new file mode 100644 index 00000000000..c135a5fb32e --- /dev/null +++ b/apps/dashboard/src/components/Image/index.tsx @@ -0,0 +1,25 @@ +import { chakra } from "@chakra-ui/react"; +import NextImage from "next/image"; + +export const ChakraNextImage = chakra(NextImage, { + baseStyle: { objectFit: "contain!important", maxW: "100%", zIndex: 1 }, + shouldForwardProp: (prop) => + [ + "width", + "height", + "src", + "alt", + "fill", + "loader", + "quality", + "priority", + "loading", + "placeholder", + "blurDataURL", + "unoptimized", + "onLoad", + "sizes", + ].includes(prop), +}); + +export type ChakraNextImageProps = React.ComponentProps; diff --git a/apps/dashboard/src/components/analytics/area-chart.tsx b/apps/dashboard/src/components/analytics/area-chart.tsx new file mode 100644 index 00000000000..87a55ef028d --- /dev/null +++ b/apps/dashboard/src/components/analytics/area-chart.tsx @@ -0,0 +1,243 @@ +import { CustomToolTip } from "./custom-tooltip"; +import { Box, BoxProps, Center } from "@chakra-ui/react"; +import { useEffect, useId, useState } from "react"; +import { + Area, + AreaChart as RechartsAreaChart, + ResponsiveContainer, + Tooltip, + XAxis, + YAxis, +} from "recharts"; +import { Text } from "tw-components"; + +export type GenericDataType = Record; + +type IndexType = "date"; + +export interface AreaChartProps< + TData extends GenericDataType, + TIndexKey extends keyof TData, +> extends BoxProps { + data: TData[]; + index: { + id: TIndexKey; + label?: string; + type?: IndexType; + format?: (index: TData[TIndexKey]) => string; + }; + + categories: Array<{ + id: keyof TData; + label?: string; + color?: string; + format?: (value: number) => string; + }>; + showXAxis?: boolean; + showYAxis?: boolean; + startEndOnly?: boolean; +} + +const AreaChart = < + TData extends GenericDataType, + TIndexKey extends keyof TData, +>({ + data, + index, + categories, + showXAxis, + showYAxis, + startEndOnly, + ...boxProps +}: AreaChartProps) => { + const id = useId(); + + if (!data.length) { + return null; + } + + if (!index.type) { + index.type = "date"; + } + + return ( + + + + + {categories.map((cat) => ( + + + + + ))} + + + {categories.map((cat) => ( + + ))} + { + const payloadKey = payload?.[0]?.dataKey; + const category = categories.find((cat) => cat.id === payloadKey); + return ( + + ); + }} + cursor={{ + stroke: "#3385FF", + fill: "#3385FF", + opacity: 0.3, + strokeDasharray: 2, + strokeWidth: 1.5, + }} + /> + + + index.format + ? index.format(payload) + : index.type === "date" + ? new Date(payload).toLocaleDateString(undefined, { + day: "numeric", + month: "short", + year: "numeric", + }) + : payload + } + style={{ + fontSize: "12px", + fontFamily: "var(--chakra-fonts-body)", + }} + stroke="var(--chakra-colors-paragraph)" + tickLine={false} + axisLine={{ stroke: "var(--chakra-colors-borderColor)" }} + interval="preserveStartEnd" + minTickGap={5} + domain={["dataMin", "dataMax"]} + type="number" + tick={{ transform: "translate(0, 6)" }} + ticks={ + startEndOnly + ? [data[0][index.id], data[data.length - 1][index.id]] + : undefined + } + /> + + { + const category = categories[0]; + return category?.format + ? category.format(payload) + : payload.toString(); + }} + style={{ + fontSize: "12px", + fontFamily: "var(--chakra-fonts-body)", + }} + domain={([dataMin, dataMax]) => [ + // start from 0 unless dataMin is below 0 in which case start from dataMin - 10% + Math.min(0, dataMin - Math.round(dataMin * 0.1)), + // add 10% to the top + dataMax + Math.round(dataMax * 0.1), + ]} + tick={{ transform: "translate(-3, 0)" }} + type="number" + stroke="var(--chakra-colors-paragraph)" + tickLine={false} + axisLine={{ stroke: "var(--chakra-colors-borderColor)" }} + interval="preserveStartEnd" + /> + + + + ); +}; + +function randomNumber(min = 0, max = 100) { + return Math.random() * (max - min) + min; +} + +function generateFakeData() { + const data = []; + for (let i = 0; i < 7; i++) { + data.push({ + key: i, + value: randomNumber(i * 10, i * 10 + 30), + }); + } + return data; +} + +export const AreaChartLoadingState: React.FC = () => { + const [loadingData, setLoadingData] = useState(generateFakeData()); + + // legitimate use case + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + const interval = setInterval(() => { + setLoadingData(generateFakeData()); + }, 2500); + return () => clearInterval(interval); + }, []); + return ( + +
+ + Loading Chart... + +
+ +
+ ); +}; diff --git a/apps/dashboard/src/components/analytics/auto-bar-chart.tsx b/apps/dashboard/src/components/analytics/auto-bar-chart.tsx new file mode 100644 index 00000000000..4d059fea60c --- /dev/null +++ b/apps/dashboard/src/components/analytics/auto-bar-chart.tsx @@ -0,0 +1,256 @@ +import { StackToolTip } from "./stack-tooltip"; +import { Box, BoxProps, useColorMode } from "@chakra-ui/react"; +import { useId, useMemo, useState } from "react"; +import { + Bar, + BarChart as RechartsBarChart, + ResponsiveContainer, + Tooltip, + XAxis, + YAxis, +} from "recharts"; + +type GenericDataType = Record; + +type IndexType = "date"; + +interface AutoBarChartProps< + TData extends GenericDataType, + TIndexKey extends keyof TData, +> extends BoxProps { + data: TData[]; + index: { + id: TIndexKey; + label?: string; + type?: IndexType; + format?: (index: TData[TIndexKey]) => string; + }; + showXAxis?: boolean; + showYAxis?: boolean; + stacked?: boolean; +} + +export const BAR_COLORS_LIGHT = [ + "#649CDD", + "#92BBE8", + "#407DCC", + "#94BD5D", + "#729544", + "#A48AC1", + "#C5B5D7", + "#8460AB", + "#E1918E", + "#D65E59", + "#F3D570", + "#F7E5A2", + "#EFC64A", + "#E7AB78", + "#F0CDAD", + "#DF8A47", + "#A6D7D8", + "#CEE9E9", +]; + +export const BAR_COLORS_DARK = [ + "#3682DA", + "#6AADF5", + "#1769D3", + "#84BF35", + "#629421", + "#8751C3", + "#AA85D3", + "#6E38A9", + "#DE6F6B", + "#D43932", + "#FACD38", + "#FFE689", + "#F0BF2A", + "#E4934E", + "#F4C294", + "#DE7929", + "#7CDEE0", + "#C8FFFF", +]; + +export const AutoBarChart = < + TData extends GenericDataType, + TIndexKey extends keyof TData, +>({ + data, + index, + showXAxis, + showYAxis, + stacked, + ...boxProps +}: AutoBarChartProps) => { + const { colorMode } = useColorMode(); + const [hoverKey, setHoverKey] = useState(""); + const id = useId(); + + const barColors = useMemo(() => { + if (colorMode === "light") { + return BAR_COLORS_LIGHT; + } + + return BAR_COLORS_DARK; + }, [colorMode]); + + const categories = useMemo(() => { + const autoKeys: string[] = []; + data.forEach((item) => { + for (const key of Object.keys(item)) { + if (key === index.id) { + continue; + } + + if (!autoKeys.includes(key)) { + autoKeys.push(key); + } + } + }); + + return autoKeys.map((key, idx) => ({ + id: key, + label: key, + color: barColors[idx % barColors.length], + })); + }, [data, index.id, barColors]); + + if (!index.type) { + index.type = "date"; + } + + const sortedData = useMemo(() => { + return [...data].sort( + (a, b) => (a[index.id] as number) - (b[index.id] as number), + ); + }, [data, index]); + + if (!data.length) { + return null; + } + + return ( + + + + + {categories.map((cat) => ( + + + + + ))} + + + {categories.map((cat) => ( + { + setHoverKey(item.tooltipPayload[0].dataKey); + }} + onMouseLeave={() => { + setHoverKey(""); + }} + /> + ))} + { + if (!active || !payload) { + return null; + } + + const { time, ...values } = payload[0].payload; + return ( + + ); + }} + cursor={ + !hoverKey || categories.length <= 1 + ? { + stroke: "#EAEAEA", + fill: "#EAEAEA", + opacity: 0.3, + strokeDasharray: 2, + strokeWidth: 0, + } + : false + } + /> + + + index.format + ? index.format(payload) + : index.type === "date" + ? new Date(payload).toLocaleDateString(undefined, { + day: "2-digit", + month: "2-digit", + year: "2-digit", + }) + : payload + } + style={{ + fontSize: "12px", + fontFamily: "var(--chakra-fonts-body)", + }} + stroke="var(--chakra-colors-paragraph)" + tickLine={false} + axisLine={false} + interval="preserveStartEnd" + minTickGap={5} + domain={["dataMin - 86400000", "dataMax + 86400000"]} + type="number" + tick={{ transform: "translate(0, 6)" }} + ticks={[ + sortedData[0][index.id], + sortedData[Math.floor(sortedData.length / 2)][index.id], + sortedData[sortedData.length - 1][index.id], + ]} + /> + + { + return payload.toLocaleString(); + }} + style={{ + fontSize: "12px", + fontFamily: "var(--chakra-fonts-body)", + }} + type="number" + stroke="var(--chakra-colors-paragraph)" + tickLine={false} + axisLine={false} + /> + + + + ); +}; diff --git a/apps/dashboard/src/components/analytics/bar-chart.tsx b/apps/dashboard/src/components/analytics/bar-chart.tsx new file mode 100644 index 00000000000..ae71e3d6c37 --- /dev/null +++ b/apps/dashboard/src/components/analytics/bar-chart.tsx @@ -0,0 +1,187 @@ +import { CustomToolTip } from "./custom-tooltip"; +import { Box, BoxProps, useColorMode } from "@chakra-ui/react"; +import { useId, useMemo } from "react"; +import { + Bar, + BarChart as RechartsBarChart, + ResponsiveContainer, + Tooltip, + XAxis, + YAxis, +} from "recharts"; + +type GenericDataType = Record; + +type IndexType = "date"; + +interface BarChartProps< + TData extends GenericDataType, + TIndexKey extends keyof TData, +> extends BoxProps { + data: TData[]; + index: { + id: TIndexKey; + label?: string; + type?: IndexType; + format?: (index: TData[TIndexKey]) => string; + }; + + categories: Array<{ + id: keyof TData; + label?: string; + color?: string; + format?: (value: number) => string; + }>; + + showXAxis?: boolean; + showYAxis?: boolean; +} + +export const BarChart = < + TData extends GenericDataType, + TIndexKey extends keyof TData, +>({ + data, + index, + categories, + showXAxis, + showYAxis, + ...boxProps +}: BarChartProps) => { + const { colorMode } = useColorMode(); + const id = useId(); + + const defaultBarColor = useMemo(() => { + if (colorMode === "light") { + return "#649CDD"; + } + + return "#3682DA"; + }, [colorMode]); + + if (!data.length) { + return null; + } + + if (!index.type) { + index.type = "date"; + } + + return ( + + + + + {categories.map((cat) => ( + + + + + ))} + + + {categories.map((cat) => ( + + ))} + { + const payloadKey = payload?.[0]?.dataKey; + const category = categories.find((cat) => cat.id === payloadKey); + return ( + + ); + }} + cursor={{ + stroke: defaultBarColor, + fill: defaultBarColor, + opacity: 0.2, + strokeDasharray: 2, + strokeWidth: 0, + }} + /> + + + index.format + ? index.format(payload) + : index.type === "date" + ? new Date(payload).toLocaleDateString(undefined, { + day: "2-digit", + month: "2-digit", + year: "2-digit", + }) + : payload + } + style={{ + fontSize: "12px", + fontFamily: "var(--chakra-fonts-body)", + }} + stroke="var(--chakra-colors-paragraph)" + tickLine={false} + axisLine={false} + interval="preserveStartEnd" + minTickGap={5} + domain={["dataMin - 86400000", "dataMax + 86400000"]} + type="number" + tick={{ transform: "translate(0, 6)" }} + ticks={[ + data[0][index.id], + data[Math.floor(data.length / 2)][index.id], + data[data.length - 1][index.id], + ]} + /> + + { + const category = categories[0]; + return category?.format + ? category.format(payload) + : payload.toLocaleString(); + }} + style={{ + fontSize: "12px", + fontFamily: "var(--chakra-fonts-body)", + }} + type="number" + stroke="var(--chakra-colors-paragraph)" + tickLine={false} + axisLine={false} + /> + + + + ); +}; diff --git a/apps/dashboard/src/components/analytics/chart-container.tsx b/apps/dashboard/src/components/analytics/chart-container.tsx new file mode 100644 index 00000000000..f92c84c8683 --- /dev/null +++ b/apps/dashboard/src/components/analytics/chart-container.tsx @@ -0,0 +1,39 @@ +import { AreaChartLoadingState } from "./area-chart"; +import { AspectRatio, AspectRatioProps, Flex } from "@chakra-ui/react"; +import { Suspense } from "react"; +import { ComponentWithChildren } from "types/component-with-children"; + +type SupportedChartType = "area"; + +interface ChartContainerProps extends AspectRatioProps { + chartTitle?: JSX.Element; + chartType?: SupportedChartType; +} + +export const ChartContainer: ComponentWithChildren = ({ + chartType = "area", + chartTitle, + children, + ...aspectRatioProps +}) => { + return ( + + {chartTitle} + + {/* suspense to handle loading state */} + }> + {children} + + + + ); +}; + +const ChartLoadingState: React.FC> = ({ + chartType, +}) => { + if (chartType === "area") { + return ; + } + return null; +}; diff --git a/apps/dashboard/src/components/analytics/custom-tooltip.tsx b/apps/dashboard/src/components/analytics/custom-tooltip.tsx new file mode 100644 index 00000000000..b6c9d8adf1e --- /dev/null +++ b/apps/dashboard/src/components/analytics/custom-tooltip.tsx @@ -0,0 +1,70 @@ +import { Flex } from "@chakra-ui/react"; +import { Heading, Text } from "tw-components"; + +type CustomToolTipProps = { + valueLabel: string; + active?: boolean; + payload?: any; + valueFormatter?: (value: any) => string; +}; + +const formattingOptions: Intl.DateTimeFormatOptions = { + year: "numeric", + month: "short", + day: "numeric", +}; + +export const CustomToolTip: React.FC = ({ + active, + payload, + valueLabel, + valueFormatter, +}) => { + if (active && payload && payload.length) { + return ( + + {payload[0]?.payload?.time && ( + + + Date + + + {new Date(payload[0].payload.time).toLocaleDateString( + undefined, + formattingOptions, + )} + + + )} + + + {valueLabel} + + + {valueFormatter + ? valueFormatter(payload[0].value) + : payload[0].value.toLocaleString()} + + + + ); + } + + return null; +}; diff --git a/apps/dashboard/src/components/analytics/stack-tooltip.tsx b/apps/dashboard/src/components/analytics/stack-tooltip.tsx new file mode 100644 index 00000000000..bd0a469dcf6 --- /dev/null +++ b/apps/dashboard/src/components/analytics/stack-tooltip.tsx @@ -0,0 +1,71 @@ +import { Flex, useColorMode } from "@chakra-ui/react"; +import { Heading, Text } from "tw-components"; + +type CustomToolTipProps = { + time: string; + hoverKey: string; + values: Record; +}; + +const formattingOptions: Intl.DateTimeFormatOptions = { + year: "numeric", + month: "short", + day: "numeric", +}; + +export const StackToolTip: React.FC = ({ + time, + values, + hoverKey, +}) => { + const { colorMode } = useColorMode(); + + return ( + + + + Date + + + {new Date(time).toLocaleDateString(undefined, formattingOptions)} + + + + + {Object.entries(values) + .reverse() + .map(([key, value]) => ( + + {hoverKey && key !== hoverKey ? ( + `${key}: ` + ) : ( + {key}: + )} + {value.toLocaleString()} + + ))} + + + ); +}; diff --git a/apps/dashboard/src/components/app-layouts/app.tsx b/apps/dashboard/src/components/app-layouts/app.tsx new file mode 100644 index 00000000000..8e8572c2bf0 --- /dev/null +++ b/apps/dashboard/src/components/app-layouts/app.tsx @@ -0,0 +1,222 @@ +import { CustomConnectWallet } from "@3rdweb-sdk/react/components/connect-wallet"; +import { + DashboardThirdwebProvider, + DashboardThirdwebProviderProps, +} from "./providers"; +import { EVMContractInfoProvider } from "@3rdweb-sdk/react"; +import { Flex, SimpleGrid } from "@chakra-ui/react"; +import { createAsyncStoragePersister } from "@tanstack/query-async-storage-persister"; +import { DehydratedState, Hydrate, QueryClient } from "@tanstack/react-query"; +import { + PersistQueryClientProvider, + Persister, +} from "@tanstack/react-query-persist-client"; +import { shouldNeverPersistQuery, useAddress } from "@thirdweb-dev/react"; +import { ConfigureNetworkModal } from "components/configure-networks/ConfigureNetworkModal"; +import { DeployModalProvider } from "components/contract-components/contract-deploy-form/deploy-context-modal"; +import { AppShell, AppShellProps } from "components/layout/app-shell"; +import { Onboarding as OnboardingModal } from "components/onboarding"; +import { PosthogIdentifier } from "components/wallets/PosthogIdentifier"; +import { AllChainsProvider } from "contexts/all-chains"; +import { ChainsProvider } from "contexts/configured-chains"; +import { ErrorProvider } from "contexts/error-handler"; +import { isSanctionedAddress } from "data/eth-sanctioned-addresses"; +import { useAddRecentlyUsedChainId } from "hooks/chains/recentlyUsedChains"; +import { + useIsNetworkConfigModalOpen, + useSetIsNetworkConfigModalOpen, +} from "hooks/networkConfigModal"; +import { del, get, set } from "idb-keyval"; +import { useEffect, useMemo, useState } from "react"; +import { Heading } from "tw-components"; +import { ComponentWithChildren } from "types/component-with-children"; +import { bigNumberReplacer } from "utils/bignumber"; +import { isBrowser } from "utils/isBrowser"; +import { ApolloClient, InMemoryCache, ApolloProvider } from "@apollo/client"; +import { isProd } from "constants/rpc"; +import { OpCreditsGrantedModalWrapper } from "components/onboarding/OpCreditsGrantedModalWrapper"; + +const apolloClient = new ApolloClient({ + uri: process.env.NEXT_PUBLIC_PAYMENTS_API, + credentials: "include", + cache: new InMemoryCache(), + defaultOptions: { + watchQuery: { + fetchPolicy: "no-cache", + errorPolicy: "ignore", + }, + query: { + fetchPolicy: "no-cache", + errorPolicy: "all", + }, + }, +}); + +const __CACHE_BUSTER = "3.14.40-nightly-1e6f9dcc-20230831023648"; + +interface AsyncStorage { + getItem: (key: string) => Promise; + setItem: (key: string, value: string) => Promise; + removeItem: (key: string) => Promise; +} + +let currStorage: AsyncStorage | undefined; + +function getStorage() { + if (!isBrowser()) { + return undefined; + } + if (currStorage) { + return currStorage; + } + + currStorage = { + getItem: async (key) => { + const i = await get(key); + if (!i) { + return null; + } + return i as string | null; + }, + setItem: set, + removeItem: del, + } as AsyncStorage; + return currStorage; +} + +const persister: Persister = createAsyncStoragePersister({ + storage: getStorage(), + serialize: (data) => { + return JSON.stringify( + { + ...data, + clientState: { + ...data.clientState, + queries: data.clientState.queries.filter( + (q) => !shouldNeverPersistQuery(q.queryKey), + ), + }, + }, + bigNumberReplacer, + ); + }, + key: `tw-query-cache`, +}); + +interface AppLayoutProps extends AppShellProps, DashboardThirdwebProviderProps { + dehydratedState?: DehydratedState; +} + +export const AppLayout: ComponentWithChildren = (props) => { + // has to be constructed in here because it may otherwise share state between SSR'd pages + const [queryClient] = useState( + () => + new QueryClient({ + defaultOptions: { + queries: { + // 24 hours + cacheTime: 1000 * 60 * 60 * 24, + // 30 seconds + staleTime: 1000 * 30, + }, + }, + }), + ); + + // will be deleted as part of: https://github.com/thirdweb-dev/dashboard/pull/2648 + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + if (!isProd) { + localStorage.setItem("IS_THIRDWEB_DEV", "true"); + localStorage.setItem( + "THIRDWEB_DEV_URL", + "https://embedded-wallet.thirdweb-dev.com", + ); + } + }, []); + + return ( + !shouldNeverPersistQuery(q.queryKey), + }, + }} + > + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +const SanctionedAddressesChecker: ComponentWithChildren = ({ children }) => { + const address = useAddress(); + const isBlocked = useMemo(() => { + return address && isSanctionedAddress(address); + }, [address]); + if (isBlocked) { + return ( + + + Address is blocked + + + + ); + } + return <>{children}; +}; + +function ConfigModal() { + const isNetworkConfigModalOpen = useIsNetworkConfigModalOpen(); + const setIsNetworkConfigModalOpen = useSetIsNetworkConfigModalOpen(); + const addRecentlyUsedChains = useAddRecentlyUsedChainId(); + + if (!isNetworkConfigModalOpen) { + return null; + } + + return ( + { + addRecentlyUsedChains(_chain.chainId); + }} + onClose={() => setIsNetworkConfigModalOpen(false)} + /> + ); +} diff --git a/apps/dashboard/src/components/app-layouts/provider-setup.tsx b/apps/dashboard/src/components/app-layouts/provider-setup.tsx new file mode 100644 index 00000000000..328d2f3e027 --- /dev/null +++ b/apps/dashboard/src/components/app-layouts/provider-setup.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { + EVMContractInfo, + useEVMContractInfo, +} from "@3rdweb-sdk/react/hooks/useActiveChainId"; +import { useApiAuthToken } from "@3rdweb-sdk/react/hooks/useApi"; +import { useQueryClient } from "@tanstack/react-query"; +import { + ThirdwebProvider as ThirdwebProviderOld, + coin98Wallet, + coinbaseWallet, + coreWallet, + cryptoDefiWallet, + embeddedWallet, + localWallet, + metamaskWallet, + okxWallet, + oneKeyWallet, + phantomWallet, + rabbyWallet, + rainbowWallet, + safeWallet, + trustWallet, + walletConnect, + zerionWallet, +} from "@thirdweb-dev/react"; +import { GLOBAL_AUTH_TOKEN_KEY, storeEWSToken } from "constants/app"; +import { + DASHBOARD_THIRDWEB_CLIENT_ID, + DASHBOARD_THIRDWEB_SECRET_KEY, +} from "constants/rpc"; +import { useSupportedChains } from "hooks/chains/configureChains"; +import { useNativeColorMode } from "hooks/useNativeColorMode"; +import { getDashboardChainRpc } from "lib/rpc"; +import { StorageSingleton } from "lib/sdk"; +import { useEffect, useMemo } from "react"; +import { ComponentWithChildren } from "types/component-with-children"; +import { THIRDWEB_API_HOST, THIRDWEB_DOMAIN } from "../../constants/urls"; +import { ThirdwebProvider } from "thirdweb/react"; +import type { Chain } from "@thirdweb-dev/chains"; + +export interface DashboardThirdwebProviderProps { + contractInfo?: EVMContractInfo; + activeChain?: Chain; +} + +const personalWallets = [ + metamaskWallet(), + coinbaseWallet(), + walletConnect({ + qrModalOptions: { + themeVariables: { + "--wcm-z-index": "10000", + }, + }, + }), + rainbowWallet(), + trustWallet(), + zerionWallet(), + phantomWallet(), + embeddedWallet({ + onAuthSuccess: ({ storedToken }) => { + // save authToken to localstorage + storeEWSToken(storedToken.cookieString); + }, + }), + localWallet(), + rabbyWallet(), + okxWallet(), + coin98Wallet(), + coreWallet(), + cryptoDefiWallet(), + oneKeyWallet(), +]; + +const dashboardSupportedWallets = [ + ...personalWallets, + safeWallet({ + personalWallets, + }), +]; + +export const DashboardThirdwebProviderSetup: ComponentWithChildren< + DashboardThirdwebProviderProps +> = ({ children, activeChain }) => { + useNativeColorMode(); + const queryClient = useQueryClient(); + const supportedChains = useSupportedChains(); + const contractInfo = useEVMContractInfo(); + const chain = contractInfo?.chain; + const readonlySettings = useMemo(() => { + if (!chain) { + return undefined; + } + const rpcUrl = getDashboardChainRpc(chain); + if (!rpcUrl) { + return undefined; + } + return { + chainId: chain.chainId, + rpcUrl, + }; + }, [chain]); + + return ( + + + + {children} + + + ); +}; + +const GlobalAuthTokenProvider = () => { + const { token, isLoading } = useApiAuthToken(); + + // will be deleted as part of: https://github.com/thirdweb-dev/dashboard/pull/2648 + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + if (token && !isLoading) { + (window as any)[GLOBAL_AUTH_TOKEN_KEY] = token; + } else { + (window as any)[GLOBAL_AUTH_TOKEN_KEY] = undefined; + } + }, [token, isLoading]); + + return null; +}; diff --git a/apps/dashboard/src/components/app-layouts/providers.tsx b/apps/dashboard/src/components/app-layouts/providers.tsx new file mode 100644 index 00000000000..71244a16bef --- /dev/null +++ b/apps/dashboard/src/components/app-layouts/providers.tsx @@ -0,0 +1,117 @@ +"use client"; + +import { + type EVMContractInfo, + useEVMContractInfo, +} from "@3rdweb-sdk/react/hooks/useActiveChainId"; +import { + useChain, + useDisconnect, + useSigner, + useSwitchChain, +} from "@thirdweb-dev/react"; +import { useSupportedChains } from "hooks/chains/configureChains"; +import { useNativeColorMode } from "hooks/useNativeColorMode"; +import { useEffect, useRef } from "react"; +import type { ComponentWithChildren } from "types/component-with-children"; +import { + useSetActiveWallet, + useDisconnect as useDisconnectV5, +} from "thirdweb/react"; +import { ethers5Adapter } from "thirdweb/adapters/ethers5"; +import { createWalletAdapter } from "thirdweb/wallets"; +import { useRouter } from "next/router"; +import { defineChain } from "thirdweb"; +import { thirdwebClient } from "../../lib/thirdweb-client"; +import { DashboardThirdwebProviderSetup } from "./provider-setup"; + +export interface DashboardThirdwebProviderProps { + contractInfo?: EVMContractInfo; +} + +export const DashboardThirdwebProvider: ComponentWithChildren< + DashboardThirdwebProviderProps +> = ({ children }) => { + useNativeColorMode(); + const supportedChains = useSupportedChains(); + const contractInfo = useEVMContractInfo(); + const router = useRouter(); + const isChainSlugPage = router.pathname === "/[chain_id]"; + const chainByChainSlug = supportedChains.find( + (supportedChain) => supportedChain.slug === router.asPath.split("/")[1], + ); + + const activeChain = + contractInfo?.chain === null + ? undefined + : isChainSlugPage + ? chainByChainSlug + : contractInfo?.chain; + + return ( + + + {children} + + ); +}; + +const V4ToV5SignerAdapter = () => { + const signer = useSigner(); + const chain = useChain(); + const switchChain = useSwitchChain(); + const disconnect = useDisconnect(); + const setActiveWallet = useSetActiveWallet(); + + const { disconnect: disconnectv5 } = useDisconnectV5(); + + const currentWallet = useRef(null); + + // will removes as part of: https://github.com/thirdweb-dev/dashboard/pull/2648 + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + let active = true; + + async function run() { + if (signer && chain) { + const adaptedAccount = await ethers5Adapter.signer.fromEthers({ + signer, + }); + if (!active) { + return; + } + const thirdwebWallet = createWalletAdapter({ + adaptedAccount, + chain: defineChain(chain), + switchChain: async (chain_) => { + await switchChain(chain_.id); + }, + onDisconnect: async () => { + await disconnect(); + }, + client: thirdwebClient, + }); + await setActiveWallet(thirdwebWallet); + currentWallet.current = thirdwebWallet; + } else if (currentWallet.current) { + disconnectv5(currentWallet.current); + currentWallet.current = null; + } + } + + run().catch((error) => { + console.error("failed to adapt wallet", error); + }); + + return () => { + active = false; + }; + // purposefully omit switchChain and disconnect from hooks + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [signer, chain]); + + return null; +}; diff --git a/apps/dashboard/src/components/badges/opensea.tsx b/apps/dashboard/src/components/badges/opensea.tsx new file mode 100644 index 00000000000..259fe5f46f7 --- /dev/null +++ b/apps/dashboard/src/components/badges/opensea.tsx @@ -0,0 +1,17 @@ +import { Tooltip } from "@chakra-ui/react"; +import { Badge, BadgeProps } from "tw-components"; + +export const OpenSeaPropertyBadge: React.FC = (props) => { + return ( + + + OpenSea + + + ); +}; diff --git a/apps/dashboard/src/components/buttons/ExtensionDetectButton.tsx b/apps/dashboard/src/components/buttons/ExtensionDetectButton.tsx new file mode 100644 index 00000000000..62c2c9ff21c --- /dev/null +++ b/apps/dashboard/src/components/buttons/ExtensionDetectButton.tsx @@ -0,0 +1,62 @@ +import { useContract } from "@thirdweb-dev/react"; +import { FeatureName } from "@thirdweb-dev/sdk/dist/declarations/src/evm/constants/contract-features"; +import { ContractWrapper } from "@thirdweb-dev/sdk/dist/declarations/src/evm/core/classes/internal/contract-wrapper"; +import { detectContractFeature } from "@thirdweb-dev/sdk"; + +interface ExtensionDetectedStateParams { + /** + * The feature or features to check + */ + feature: FeatureName | FeatureName[]; + + /** + * The contract instance to check + */ + contractQuery: ReturnType; + + /** + * the feature match strategy (default: any) + * - any: any of the features must be available + * - all: all of the features must be available + */ + matchStrategy?: "any" | "all"; +} + +export type ExtensionDetectedState = "enabled" | "disabled" | "loading"; + +export function extensionDetectedState({ + contractQuery, + feature, + matchStrategy = "any", +}: ExtensionDetectedStateParams): ExtensionDetectedState { + // if contract is loading return "loading" + if ("contract" in contractQuery && contractQuery.isLoading) { + return "loading"; + } + + const actualContract = + "contract" in contractQuery ? contractQuery.contract : contractQuery; + + // we're not loading but don't have a contract, so we'll assumed feature is disabled (really this is an error state?) + if (!actualContract) { + return "disabled"; + } + + const contractWrapper = (actualContract as any) + .contractWrapper as ContractWrapper; + + if (!Array.isArray(feature)) { + return detectContractFeature(contractWrapper, feature) + ? "enabled" + : "disabled"; + } + + if (matchStrategy === "all") { + return feature.every((f) => detectContractFeature(contractWrapper, f)) + ? "enabled" + : "disabled"; + } + return feature.some((f) => detectContractFeature(contractWrapper, f)) + ? "enabled" + : "disabled"; +} diff --git a/apps/dashboard/src/components/buttons/MismatchButton.tsx b/apps/dashboard/src/components/buttons/MismatchButton.tsx new file mode 100644 index 00000000000..4c8d87101e8 --- /dev/null +++ b/apps/dashboard/src/components/buttons/MismatchButton.tsx @@ -0,0 +1,394 @@ +import { + CustomConnectWallet, + ConnectWalletProps, +} from "@3rdweb-sdk/react/components/connect-wallet"; +import { + Box, + Flex, + Icon, + Popover, + PopoverArrow, + PopoverBody, + PopoverContent, + PopoverTrigger, + useBreakpointValue, + useDisclosure, +} from "@chakra-ui/react"; +import { AiOutlineWarning } from "@react-icons/all-files/ai/AiOutlineWarning"; +import { + ChainId, + useBalance, + useChainId, + useConnectionStatus, + useNetworkMismatch, + useSDK, + useSDKChainId, + useSwitchChain, + useWallet, +} from "@thirdweb-dev/react"; +import { BigNumber } from "ethers"; +import { useTrack } from "hooks/analytics/useTrack"; +import { useSupportedChain } from "hooks/chains/configureChains"; +import { useCallback, useEffect, useMemo, useRef, forwardRef } from "react"; +import { VscDebugDisconnect } from "react-icons/vsc"; +import { Button, Card, Heading, Text, type ButtonProps } from "tw-components"; + +export const MismatchButton = forwardRef< + HTMLButtonElement, + ButtonProps & ConnectWalletProps +>( + ( + { + children, + isDisabled, + onClick, + loadingText, + type, + upsellTestnet = false, + onChainSelect, + ...props + }, + ref, + ) => { + const wallet = useWallet(); + const evmBalance = useBalance(); + const initialFocusRef = useRef(null); + const networksMismatch = useNetworkMismatch(); + const { isOpen, onOpen, onClose } = useDisclosure(); + const trackEvent = useTrack(); + + const chainId = useChainId(); + const chainInfo = useSupportedChain(chainId || -1); + + const hasFaucet = + chainInfo && + (chainInfo.chainId === ChainId.Localhost || + (chainInfo.faucets && chainInfo.faucets.length > 0)); + const eventRef = useRef>(); + if (!wallet) { + return ( + + ); + } + const shouldShowEVMFaucet = BigNumber.from(evmBalance.data?.value || 0).eq( + 0, + ); + return ( + + + + + + + + {networksMismatch ? ( + { + onClose(); + if (hasSwitched && onClick) { + // wait for the network switch to be finished - 100ms should be fine? + setTimeout(() => { + if (eventRef.current) { + onClick(eventRef.current); + } + }, 100); + } + }} + /> + ) : !hasFaucet && upsellTestnet && onChainSelect ? ( + + ) : ( + + )} + + + + ); + }, +); + +MismatchButton.displayName = "MismatchButton"; + +const MismatchNotice: React.FC<{ + initialFocusRef: React.RefObject; + onClose: (hasSwitched: boolean) => void; +}> = ({ initialFocusRef, onClose }) => { + const connectedChainId = useChainId(); + const desiredChainId = useSDKChainId(); + const switchNetwork = useSwitchChain(); + const connectionStatus = useConnectionStatus(); + const activeChain = useWallet(); + const actuallyCanAttemptSwitch = + activeChain && activeChain.walletId !== "Safe"; + const walletConnectedNetworkInfo = useSupportedChain(connectedChainId || -1); + const isMobile = useBreakpointValue({ base: true, md: false }); + + const chain = useSupportedChain(desiredChainId || -1); + + const onSwitchWallet = useCallback(async () => { + if (actuallyCanAttemptSwitch && desiredChainId && chain) { + try { + await switchNetwork(desiredChainId); + onClose(true); + } catch (e) { + // failed to switch network + onClose(false); + } + } + }, [chain, actuallyCanAttemptSwitch, desiredChainId, onClose, switchNetwork]); + + const shortenedName = useMemo(() => { + const limit = isMobile ? 10 : 19; + + if (!chain?.name) { + return undefined; + } + return chain.name.length > limit + ? `${chain.name.slice(0, limit)}...` + : undefined; + }, [chain?.name, isMobile]); + + return ( + + + + + Network Mismatch + + + + + Your wallet is connected to the{" "} + + {walletConnectedNetworkInfo?.name} + {" "} + network but this action requires you to connect to the{" "} + + {chain?.name} + {" "} + network. + + + + + {!actuallyCanAttemptSwitch && ( + + Your connected wallet does not support programmatic switching. +
+ Please manually switch the network in your wallet. +
+ )} +
+ ); +}; + +interface NoFundsNoticeProps { + symbol: string; +} + +const NoFundsNotice: React.FC = ({ symbol }) => { + const trackEvent = useTrack(); + + const balanceQuery = useBalance(); + const sdk = useSDK(); + const chainId = useChainId(); + const chainInfo = useSupportedChain(chainId || -1); + + const hasFaucet = + chainInfo && + (chainInfo.chainId === ChainId.Localhost || + (chainInfo.faucets && chainInfo.faucets.length > 0)); + + const requestFunds = async () => { + if (sdk && hasFaucet) { + trackEvent({ + category: "no-funds", + action: "click", + label: "request-funds", + }); + if (chainInfo.chainId === ChainId.Localhost) { + await sdk.wallet.requestFunds(10); + await balanceQuery.refetch(); + } else if ( + chainInfo && + chainInfo.faucets && + chainInfo.faucets.length > 0 + ) { + const faucet = chainInfo.faucets[0]; + window.open(faucet, "_blank"); + } + } + }; + + return ( + + + + + No funds + + + + + You don't have any funds on this network. You'll need some{" "} + {symbol} to pay for gas. + {hasFaucet && " You can get some from the faucet below."} + + + {sdk && hasFaucet && ( + + )} + + ); +}; + +const UpsellTestnetNotice: React.FC<{ + initialFocusRef: React.RefObject; + onClose: () => void; + onChainSelect: (chainId: number) => void; +}> = ({ initialFocusRef, onClose, onChainSelect }) => { + const trackEvent = useTrack(); + const connectedChainId = useChainId(); + const switchNetwork = useSwitchChain(); + const actuallyCanAttemptSwitch = !!switchNetwork; + + const chain = useSupportedChain(connectedChainId || -1); + + // FIXME: find a better way to track the "show" state of a component + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + trackEvent({ + category: "no-funds", + action: "popover", + label: "switch-to-testnet", + }); + }, [trackEvent]); + + const onSwitchWallet = useCallback(async () => { + trackEvent({ + category: "no-funds", + action: "click", + label: "switch-to-testnet", + }); + if (actuallyCanAttemptSwitch && chain) { + await switchNetwork(80002); + } + onChainSelect(80002); + onClose(); + }, [ + chain, + actuallyCanAttemptSwitch, + onClose, + switchNetwork, + onChainSelect, + trackEvent, + ]); + + return ( + + + + + No funds to deploy + + + + + You're trying to deploy to the{" "} + + {chain?.name} + {" "} + network but no funds have been detected. + + + You can either get funds on this network or switch to a testnet like + Amoy to test your contract. + + + + + {!actuallyCanAttemptSwitch && ( + + Your connected wallet does not support programmatic switching. +
+ Please manually switch the network in your wallet. +
+ )} +
+ ); +}; diff --git a/apps/dashboard/src/components/buttons/TransactionButton.tsx b/apps/dashboard/src/components/buttons/TransactionButton.tsx new file mode 100644 index 00000000000..f9bc4cb9000 --- /dev/null +++ b/apps/dashboard/src/components/buttons/TransactionButton.tsx @@ -0,0 +1,298 @@ +import { MismatchButton } from "./MismatchButton"; +import type { ConnectWalletProps } from "@3rdweb-sdk/react/components/connect-wallet"; +import { + Center, + DarkMode, + Flex, + Icon, + Popover, + PopoverArrow, + PopoverBody, + PopoverContent, + PopoverTrigger, + Tooltip, + useColorMode, +} from "@chakra-ui/react"; +import { + useAddress, + useChain, + useChainId, + useInstalledWallets, + useWallet, +} from "@thirdweb-dev/react"; +import { CHAIN_ID_TO_GNOSIS } from "constants/mappings"; +import { useEffect, useMemo, useRef, useState, Fragment } from "react"; +import { BiTransferAlt } from "react-icons/bi"; +import { FiInfo } from "react-icons/fi"; +import { + Button, + Card, + Heading, + LinkButton, + Text, + type ButtonProps, +} from "tw-components"; + +interface TransactionButtonProps + extends Omit { + transactionCount: number; + isLoading: boolean; + isGasless?: boolean; + upsellTestnet?: boolean; + onChainSelect?: (chainId: number) => void; +} + +// this is in react-package as well +function useWalletRequiresConfirmation() { + const activeWallet = useWallet(); + const installedWallets = useInstalledWallets(); + + return ( + activeWallet && + (activeWallet.walletId === "walletConnectV1" || + activeWallet.walletId === "walletConnectV2" || + activeWallet.walletId === "Safe" || + (activeWallet.walletId === "metamask" && !installedWallets.metamask) || + (activeWallet.walletId === "coinbaseWallet" && + !installedWallets.coinbaseWallet)) + ); +} + +export const TransactionButton: React.FC = ({ + children, + transactionCount, + isLoading, + size, + colorScheme, + variant, + isGasless, + upsellTestnet, + onChainSelect, + ...restButtonProps +}) => { + const colorMode = useColorMode(); + const activeWallet = useWallet(); + const walletRequiresExternalConfirmation = useWalletRequiresConfirmation(); + const initialFocusRef = useRef(null); + + const chain = useChain(); + const isChainDeprecated = useMemo( + () => chain?.status === "deprecated", + [chain], + ); + + const ColorModeComp = colorMode.colorMode === "dark" ? DarkMode : Fragment; + + const numberWidth = useMemo(() => { + // for each digit of transaction count add 8.3px + return Math.floor(transactionCount.toString().length * 8.3); + }, [transactionCount]); + + const evmAddress = useAddress(); + + const isConnected = useMemo(() => { + return !!evmAddress; + }, [evmAddress]); + + const ButtonComponent = useMemo(() => { + return isGasless ? Button : MismatchButton; + }, [isGasless]); + + return ( + + + + {children} + + + + This chain is deprecated so you cannot execute + transactions on it. + + + + ) : ( + + + + This action will trigger {transactionCount}{" "} + {transactionCount > 1 ? "transactions" : "transaction"}. + + + + ) + } + > +
+ + + {transactionCount} + + + +
+
+
+
+ + + + + + +
+ ); +}; + +interface ExternalApprovalNoticeProps { + walletId?: string; + initialFocusRef: React.RefObject; +} + +const ExternalApprovalNotice: React.FC = ({ + walletId, + initialFocusRef, +}) => { + const address = useAddress(); + const chainId = useChainId() || -1; + + const [showHint, setShowHint] = useState(false); + + // legitimate usecase! + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + const t = setTimeout(() => { + setShowHint(true); + }, 15_000); + return () => clearTimeout(t); + }, []); + + if (walletId?.toLowerCase() === "safe") { + const isChainIdSupported = chainId in CHAIN_ID_TO_GNOSIS; + return ( + + + + + Execute Transaction + + + + You will need to execute this transaction in your Safe to continue. + + + {showHint && ( + + Once you have approved and executed the transaction in your Gnosis + Safe this action will continue automatically. + + )} + + + Go To Safe + + + ); + } else if (walletId === "walletConnect" || walletId === "walletConnectV1") { + return ( + + + + + Approve Transaction + + + + You will need to approve this transaction in your connected wallet. + + + {showHint && ( + + Once you have approved the transaction in your connected wallet this + action will continue automatically. + + )} + + ); + } + + return null; +}; diff --git a/apps/dashboard/src/components/chain-validation/index.tsx b/apps/dashboard/src/components/chain-validation/index.tsx new file mode 100644 index 00000000000..52009efea7e --- /dev/null +++ b/apps/dashboard/src/components/chain-validation/index.tsx @@ -0,0 +1,185 @@ +import { + Code, + Flex, + FormControl, + Icon, + Input, + InputGroup, + Table, + Tbody, + Td, + Th, + Thead, + Tr, +} from "@chakra-ui/react"; +import { useTrack } from "hooks/analytics/useTrack"; +import { useRpcValidation } from "hooks/chains/useRpcValidation"; +import { ChangeEvent, useMemo, useState } from "react"; +import { IconType } from "react-icons"; +import { BiCheckCircle, BiErrorCircle } from "react-icons/bi"; +import { RiErrorWarningLine } from "react-icons/ri"; +import { Button, Card, FormLabel, Link, TableContainer } from "tw-components"; + +const StatusCheck = ({ + status, +}: { + status: "success" | "error" | "warning"; +}) => { + const values: [string, IconType] = useMemo(() => { + if (status === "error") { + return ["red.500", BiErrorCircle]; + } else if (status === "warning") { + return ["yellow.500", RiErrorWarningLine]; + } else { + return ["green.500", BiCheckCircle]; + } + }, [status]); + + return ; +}; + +const ChainValidation: React.FC<{}> = () => { + const [rpcUrl, setRpcUrl] = useState(""); + const [validationReport, validate] = useRpcValidation(rpcUrl); + const [validated, setValidated] = useState(false); + const existingChain = validationReport?.existingChain; + + const trackEvent = useTrack(); + + const handleValidate = () => { + if (rpcUrl.length > 0) { + validate(); + setValidated(true); + + trackEvent({ + category: "validation", + action: "validate", + label: "rpc", + url: rpcUrl, + }); + } + }; + + const handleChange = (e: ChangeEvent) => { + setRpcUrl(e.currentTarget.value); + setValidated(false); + }; + + return ( + + + + RPC URL + + 0 && !validationReport.urlValid} + value={rpcUrl} + onChange={handleChange} + placeholder="https://rpc.yourchain.com/rpc" + type="url" + /> + + + + + {validated && ( + + + + + + + + + + + + + {validationReport.urlValid && ( + <> + + + + + + + + + {validationReport.chainIdSupported && ( + + + + + + )} + + )} + +
RPC validation report
RPC URL valid + +
+ RPC supports eth_chainId method + + +
+ RPC supports eth_blockNumber method + + +
+ Chain ID{" "} + {existingChain?.id ? ( + {existingChain.id} + ) : ( + "" + )} + {!existingChain + ? "is available" + : existingChain?.mainnet + ? "is already on mainnet" + : "is on testnet"} + {existingChain?.infoURL && ( + + visit site + + )} + + +
+
+ )} +
+
+ ); +}; + +export default ChainValidation; diff --git a/apps/dashboard/src/components/cmd-k-search/index.tsx b/apps/dashboard/src/components/cmd-k-search/index.tsx new file mode 100644 index 00000000000..b682c0a8672 --- /dev/null +++ b/apps/dashboard/src/components/cmd-k-search/index.tsx @@ -0,0 +1,434 @@ +import { + Box, + ButtonGroup, + Divider, + Flex, + Icon, + IconButton, + Input, + InputGroup, + InputLeftElement, + InputRightElement, + LinkBox, + LinkOverlay, + Modal, + ModalContent, + ModalOverlay, + Spinner, +} from "@chakra-ui/react"; +import { QueryClient, useQuery, useQueryClient } from "@tanstack/react-query"; +import { useAddress } from "@thirdweb-dev/react"; +import { ChainIcon } from "components/icons/ChainIcon"; +import { useTrack } from "hooks/analytics/useTrack"; +import { useAllChainsData } from "hooks/chains/allChains"; +import { SearchMode, getSearchQuery } from "lib/search"; +import { useRouter } from "next/router"; +import { useCallback, useEffect, useMemo, useState } from "react"; +import { FiArrowRight, FiSearch, FiX } from "react-icons/fi"; +import invariant from "tiny-invariant"; +import { Button, Card, Heading, Link, Text } from "tw-components"; +import { shortenIfAddress } from "utils/usedapp-external"; +import { useDebounce } from "use-debounce"; + +type ContractSearchResult = { + address: string; + chainId: number; + metadata: { name: string; image?: string; symbol?: string }; + needsImport: boolean; +}; + +const TRACKING_CATEGORY = "any_contract_search"; + +const typesenseApiKey = + process.env.NEXT_PUBLIC_TYPESENSE_CONTRACT_API_KEY || ""; + +function contractTypesenseSearchQuery( + searchQuery: string, + walletAddress = "", + searchMode: SearchMode, + queryClient: QueryClient, + trackEvent: ReturnType, +) { + return { + queryKey: [ + "typesense-contract-search", + { search: searchQuery, searchMode, walletAddress }, + ], + queryFn: async () => { + invariant(typesenseApiKey, "No typesense api key"); + invariant(queryClient, "No query client"); + invariant(searchQuery, "No search query"); + trackEvent({ + category: TRACKING_CATEGORY, + action: "query", + label: "attempt", + searchQuery, + }); + + const res = await fetch( + getSearchQuery({ + query: searchQuery, + walletAddress, + searchMode, + }), + { + headers: { + "x-typesense-api-key": typesenseApiKey, + }, + }, + ); + const result = await res.json(); + trackEvent({ + category: TRACKING_CATEGORY, + action: "query", + label: "attempt", + searchQuery, + }); + return result.hits.map((hit: any) => { + const document = hit.document; + return { + address: document.contract_address, + chainId: document.chain_id, + metadata: { + name: document.name, + }, + } as ContractSearchResult; + }) as ContractSearchResult[]; + }, + enabled: !!searchQuery && !!queryClient && !!typesenseApiKey, + onSuccess: (d: unknown) => { + trackEvent({ + category: TRACKING_CATEGORY, + action: "query", + label: "success", + searchQuery, + response: d, + }); + }, + onError: (err: unknown) => { + trackEvent({ + category: TRACKING_CATEGORY, + action: "query", + label: "failure", + searchQuery, + error: err, + }); + }, + keepPreviousData: true, + }; +} + +export const CmdKSearch: React.FC = () => { + const [open, setOpen] = useState(false); + const [searchMode, setSearchMode] = useState("mainnet"); + const trackEvent = useTrack(); + const queryClient = useQueryClient(); + + // legitimate use-case + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + const down = (e: KeyboardEvent) => { + if (e.key === "k" && e.metaKey) { + setOpen((open_) => !open_); + } + }; + + document.addEventListener("keydown", down); + return () => document.removeEventListener("keydown", down); + }, []); + + const [searchValue, setSearchValue] = useState(""); + + const walletAddress = useAddress(); + + // debounce 500ms + const [debouncedSearchValue] = useDebounce(searchValue, 500); + + const typesenseSearchQuery = useQuery( + contractTypesenseSearchQuery( + debouncedSearchValue, + walletAddress, + searchMode, + queryClient, + trackEvent, + ), + ); + + const data = useMemo(() => { + const potentiallyDuplicated = [...(typesenseSearchQuery.data || [])].filter( + (d) => !!d, + ) as ContractSearchResult[]; + + // dedupe the results + return Array.from( + new Set(potentiallyDuplicated.map((d) => `${d.chainId}_${d.address}`)), + ).map((chainIdAndAddress) => { + return potentiallyDuplicated.find((d) => { + return `${d.chainId}_${d.address}` === chainIdAndAddress; + }); + }) as ContractSearchResult[]; + }, [typesenseSearchQuery]); + + const isFetching = useMemo(() => { + return ( + typesenseSearchQuery.isFetching || debouncedSearchValue !== searchValue + ); + }, [debouncedSearchValue, searchValue, typesenseSearchQuery.isFetching]); + const [activeIndex, setActiveIndex] = useState(0); + + const router = useRouter(); + + const handleClose = useCallback(() => { + setOpen(false); + setSearchValue(""); + setActiveIndex(0); + }, []); + + // legitimate use-case + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + // re-set the active index if we are fetching + if (isFetching && !data.length) { + setActiveIndex(0); + } + }, [data.length, isFetching]); + + // legitimate use-case + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + // only if the modal is open + if (!open) { + return; + } + const down = (e: KeyboardEvent) => { + // if something is selected and we press enter or space we should go to the contract + if (e.key === "Enter" && data) { + const result = data[activeIndex]; + if (result) { + e.preventDefault(); + router.push( + `/${result.chainId}/${result.address}${ + result.needsImport ? "?import=true" : "" + }`, + ); + trackEvent({ + category: TRACKING_CATEGORY, + action: "select_contract", + input_mode: "keyboard", + chainId: result.chainId, + contract_address: result.address, + }); + handleClose(); + } + } else if (e.key === "ArrowDown") { + // if we press down we should move the selection down + e.preventDefault(); + setActiveIndex((aIndex) => { + if (data) { + return Math.min(aIndex + 1, data.length - 1); + } + return aIndex; + }); + } else if (e.key === "ArrowUp") { + // if we press up we should move the selection up + e.preventDefault(); + setActiveIndex((aIndex) => Math.max(aIndex - 1, 0)); + } + }; + document.addEventListener("keydown", down); + return () => document.removeEventListener("keydown", down); + }, [activeIndex, data, handleClose, open, router, trackEvent]); + + return ( + <> + setOpen(true)} + > + + + + ⌘K + + + + } + onClick={() => setOpen(true)} + /> + + {/* modal below here */} + + + + + + + + setSearchValue(e.target.value)} + /> + + {isFetching ? ( + + ) : searchValue.length > 0 ? ( + } + onClick={() => setSearchValue("")} + /> + ) : null} + + + + {searchValue.length > 0 && (!isFetching || data.length) ? ( + + + + + + + + + + + {!data || data?.length === 0 ? ( + + No contracts found. + + ) : ( + + {data.map((result, idx) => { + return ( + { + handleClose(); + trackEvent({ + category: TRACKING_CATEGORY, + action: "select_contract", + input_mode: "click", + chainId: result.chainId, + contract_address: result.address, + }); + }} + onMouseEnter={() => setActiveIndex(idx)} + /> + ); + })} + + )} + + + ) : null} + + + + ); +}; + +interface SearchResultProps { + result: ContractSearchResult; + isActive: boolean; + onMouseEnter: () => void; + onClick: () => void; +} + +const SearchResult: React.FC = ({ + result, + isActive, + onMouseEnter, + onClick, +}) => { + const { chainIdToChainRecord } = useAllChainsData(); + + const chain = chainIdToChainRecord[result.chainId]; + + // not able to resolve chain... + if (!chain) { + return null; + } + return ( + + + + + + + + {shortenIfAddress(result.metadata.name)} + + + + {chain.name} - {shortenIfAddress(result.address)} + + + + + + + ); +}; diff --git a/apps/dashboard/src/components/color-mode/color-mode-toggle.tsx b/apps/dashboard/src/components/color-mode/color-mode-toggle.tsx new file mode 100644 index 00000000000..fcca8c95036 --- /dev/null +++ b/apps/dashboard/src/components/color-mode/color-mode-toggle.tsx @@ -0,0 +1,16 @@ +import { Icon, IconButton, useColorMode } from "@chakra-ui/react"; +import { FiMoon, FiSun } from "react-icons/fi"; + +export const ColorModeToggle: React.FC = () => { + const { colorMode, toggleColorMode } = useColorMode(); + + return ( + } + onClick={() => toggleColorMode()} + /> + ); +}; diff --git a/apps/dashboard/src/components/community/CommunityCard.tsx b/apps/dashboard/src/components/community/CommunityCard.tsx new file mode 100644 index 00000000000..fe16b25015e --- /dev/null +++ b/apps/dashboard/src/components/community/CommunityCard.tsx @@ -0,0 +1,74 @@ +import { Flex, LinkBox, LinkOverlay, Stack } from "@chakra-ui/react"; +import { ChakraNextImage } from "components/Image"; +import { Card, Heading, Text } from "tw-components"; + +interface CommunityCardProps { + image: string; + link: string; + title: string; + description: string; +} + +export const CommunityCard: React.FC = ({ + image, + link, + title, + description, +}) => { + return ( + + + + + + + + + {title} + + {description && {description}} + + + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/ConfigureNetworkForm.tsx b/apps/dashboard/src/components/configure-networks/ConfigureNetworkForm.tsx new file mode 100644 index 00000000000..4963c1e900a --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/ConfigureNetworkForm.tsx @@ -0,0 +1,424 @@ +import { ChainIdInput } from "./Form/ChainIdInput"; +import { ConfirmationPopover } from "./Form/ConfirmationPopover"; +import { IconUpload } from "./Form/IconUpload"; +import { NetworkIDInput } from "./Form/NetworkIdInput"; +import { RpcInput } from "./Form/RpcInput"; +import { TooltipBox } from "./Form/TooltipBox"; +import { + Alert, + AlertIcon, + Flex, + FormControl, + Input, + Radio, + RadioGroup, + SimpleGrid, + Stack, +} from "@chakra-ui/react"; +import { ChainIcon } from "components/icons/ChainIcon"; +import { StoredChain } from "contexts/configured-chains"; +import { useAllChainsData } from "hooks/chains/allChains"; +import { useSupportedChainsNameRecord } from "hooks/chains/configureChains"; +import { useRemoveChainModification } from "hooks/chains/useModifyChain"; +import { getDashboardChainRpc } from "lib/rpc"; +import { useForm } from "react-hook-form"; +import { Button, FormErrorMessage, FormLabel, Text } from "tw-components"; + +export type NetworkConfigFormData = { + name: string; + rpcUrl: string; + chainId: string; + currencySymbol: string; + type: "testnet" | "mainnet"; + icon: string; + slug: string; + status: string; +}; + +// lowercase it, replace all spaces with hyphens, and then strip all non-alphanumeric characters +const nameToSlug = (name: string) => + name + .toLowerCase() + .replace(/\s+/g, "-") + .replace(/[^a-z0-9-]/g, ""); + +interface NetworkConfigFormProps { + editingChain?: StoredChain; + prefillSlug?: string; + prefillChainId?: string; + prefillName?: string; + onCustomClick?: (name: string) => void; + onSubmit: (chain: StoredChain) => void; +} + +export const ConfigureNetworkForm: React.FC = ({ + editingChain, + onSubmit, + prefillSlug, + prefillChainId, +}) => { + const configuredChainNameRecord = useSupportedChainsNameRecord(); + const { chainIdToChainRecord } = useAllChainsData(); + const removeChainModification = useRemoveChainModification(); + + const form = useForm({ + values: { + name: editingChain?.name || "", + rpcUrl: + editingChain && editingChain?.status !== "deprecated" + ? getDashboardChainRpc(editingChain) + : "" || "", + chainId: editingChain?.chainId + ? `${editingChain?.chainId}` + : "" || prefillChainId || "", + currencySymbol: editingChain?.nativeCurrency.symbol || "", + type: editingChain?.testnet ? "testnet" : "mainnet", + icon: editingChain?.icon?.url || "", + slug: editingChain?.slug || "", + status: editingChain?.status === "deprecated" ? "deprecated" : "active", + }, + defaultValues: { + slug: prefillSlug, + }, + mode: "onChange", + }); + + const isFullyEditable = + !editingChain || editingChain?.isCustom || editingChain.isOverwritten; + + const chainId = Number(form.watch("chainId")); + const isChainIdDirty = form.formState.dirtyFields.chainId; + const overwritingChain = isChainIdDirty && chainIdToChainRecord[chainId]; + + const editedFrom = + editingChain?.isModified || editingChain?.isOverwritten + ? chainIdToChainRecord[editingChain.chainId] + : undefined; + + const { ref } = form.register("name", { + required: true, + validate: { + alreadyAdded(value) { + // return true to pass the validation, false to fail + + // ignore this validation if form is for edit screen + if (editingChain) { + return true; + } + + const chain = configuredChainNameRecord[value]; + + // valid if chain is not found + if (!chain) { + return true; + } + + // invalid if chain found, and is not autoconfigured + return false; + }, + }, + }); + + const handleSubmit = form.handleSubmit((data) => { + let configuredNetwork: StoredChain; + + if (editingChain) { + configuredNetwork = { + ...editingChain, + name: data.name, + rpc: [data.rpcUrl], + chainId: parseInt(data.chainId), + nativeCurrency: { + ...editingChain.nativeCurrency, + symbol: data.currencySymbol, + }, + icon: editingChain.icon + ? { + ...editingChain.icon, + url: data.icon, + } + : { + url: data.icon, + // we don't care about these fields - adding dummy values + width: 50, + height: 50, + format: "", + }, + testnet: data.type === "testnet", + status: data.status, + }; + } else { + configuredNetwork = { + name: data.name, + rpc: [data.rpcUrl], + chainId: parseInt(data.chainId), + nativeCurrency: { + symbol: data.currencySymbol, + name: data.currencySymbol, + decimals: 18, + }, + testnet: data.type === "testnet", + shortName: form.watch("slug"), + slug: form.watch("slug"), + // we don't care about this field + chain: "", + icon: data.icon + ? { + url: data.icon, + width: 50, + height: 50, + format: "", + } + : undefined, + status: data.status, + }; + } + + if (editingChain && editingChain.chainId !== configuredNetwork.chainId) { + removeChainModification(editingChain.chainId); + } + + if (overwritingChain) { + configuredNetwork.isOverwritten = true; + configuredNetwork.isCustom = false; + configuredNetwork.isModified = false; + } else { + if (editingChain) { + if (editingChain.isCustom) { + configuredNetwork.isOverwritten = false; + configuredNetwork.isCustom = true; + configuredNetwork.isModified = false; + } else if (editingChain.isOverwritten) { + configuredNetwork.isOverwritten = true; + configuredNetwork.isCustom = false; + configuredNetwork.isModified = false; + } else { + configuredNetwork.isCustom = false; + configuredNetwork.isModified = true; + configuredNetwork.isOverwritten = false; + } + } else { + configuredNetwork.isCustom = true; + configuredNetwork.isModified = false; + configuredNetwork.isOverwritten = false; + } + } + + onSubmit(configuredNetwork); + }); + + const networkNameErrorMessage = + form.formState.errors.name && + (form.formState.errors.name.type === "alreadyAdded" + ? "Network already exists" + : "Network name is required"); + + const disableSubmit = !form.formState.isDirty || !form.formState.isValid; + + const submitBtn = ( + + ); + + return ( +
{ + e.preventDefault(); + e.stopPropagation(); + return handleSubmit(e); + }} + > + {/* Network Name for Custom Network */} + + Network name + { + const value = e.target.value; + + form.setValue("name", value, { + shouldValidate: true, + shouldDirty: true, + }); + + if (isFullyEditable) { + if (!form.formState.dirtyFields.slug) { + form.setValue("slug", nameToSlug(value), { + shouldValidate: true, + }); + } + } + }} + ref={ref} + /> + + {networkNameErrorMessage} + + + {/* Slug URL */} + + + + {/* Chain ID + Currency Symbol */} + + + + {/* Currency Symbol */} + + Currency Symbol + + + + + + {/* Testnet / Mainnet */} + + + Network type + + + {" "} + The network type indicates whether it is intended for + production or testing. + + + + It{`'`}s only used for displaying network type on the + dashboard and does not affect functionality. + + + } + /> + + { + form.setValue("type", value, { + shouldValidate: true, + shouldDirty: true, + }); + }} + value={form.watch("type")} + > + + Mainnet + Testnet + + + + + {/* Icon */} + + Icon + + + + { + form.setValue("icon", uri, { shouldDirty: true }); + }} + /> + + + + + {editingChain?.status === "deprecated" && ( + + {/* Active / Deprecated */} + + Network status + { + form.setValue("status", value, { + shouldValidate: true, + shouldDirty: true, + }); + }} + value={form.watch("status")} + > + + Live + Deprecated + + + + + )} + + {/* RPC URL */} + + + {overwritingChain && ( + + + Chain ID {chainId} is being used by {`"${overwritingChain.name}"`}{" "} +
+ Adding this network will overwrite it +
+ )} + + {/* Buttons */} + + {/* Add / Update Button */} + {overwritingChain && !disableSubmit ? ( + + This action can be reversed later by resetting this network + {`'s`} config + + } + > + {submitBtn} + + ) : ( + submitBtn + )} + + {editedFrom && ( + + )} + +
+ + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/ConfigureNetworkModal.tsx b/apps/dashboard/src/components/configure-networks/ConfigureNetworkModal.tsx new file mode 100644 index 00000000000..10f763234d9 --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/ConfigureNetworkModal.tsx @@ -0,0 +1,54 @@ +import { ConfigureNetworks } from "./ConfigureNetworks"; +import { + Modal, + ModalBody, + ModalCloseButton, + ModalContent, + ModalOverlay, +} from "@chakra-ui/react"; +import { StoredChain } from "contexts/configured-chains"; +import { useSetEditChain } from "hooks/networkConfigModal"; + +interface AddNetworkModalProps { + onClose: () => void; + onNetworkAdded?: (chain: StoredChain) => void; +} + +export const ConfigureNetworkModal: React.FC = ( + props, +) => { + const setEditChain = useSetEditChain(); + const onModalClose = () => { + props.onClose(); + setEditChain(undefined); + }; + + return ( + + + + + + { + props.onNetworkAdded?.(chain); + onModalClose(); + }} + onNetworkConfigured={onModalClose} + /> + + + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/ConfigureNetworks.tsx b/apps/dashboard/src/components/configure-networks/ConfigureNetworks.tsx new file mode 100644 index 00000000000..da4ca20b751 --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/ConfigureNetworks.tsx @@ -0,0 +1,105 @@ +import { ConfigureNetworkForm } from "./ConfigureNetworkForm"; +import { Box, useToast } from "@chakra-ui/react"; +import { StoredChain } from "contexts/configured-chains"; +import { useTrack } from "hooks/analytics/useTrack"; +import { useAddRecentlyUsedChainId } from "hooks/chains/recentlyUsedChains"; +import { useModifyChain } from "hooks/chains/useModifyChain"; +import { useEditChain } from "hooks/networkConfigModal"; +import { Heading } from "tw-components"; + +function useChainConfigTrack() { + const trackEvent = useTrack(); + return (action: "add" | "update", chain: StoredChain) => { + trackEvent({ + category: "chain_configuration", + chain, + action, + }); + }; +} + +interface ConfigureNetworksProps { + onNetworkConfigured?: (chain: StoredChain) => void; + onNetworkAdded?: (chain: StoredChain) => void; + prefillSlug?: string; + prefillChainId?: string; +} + +export const ConfigureNetworks: React.FC = (props) => { + const trackChainConfig = useChainConfigTrack(); + const addRecentlyUsedChainId = useAddRecentlyUsedChainId(); + const modifyChain = useModifyChain(); + const editChain = useEditChain(); + + const toast = useToast(); + + const successToast = (message: string) => { + toast({ + title: message, + status: "success", + duration: 3000, + isClosable: true, + }); + }; + + const handleSubmit = (chain: StoredChain) => { + modifyChain(chain); + addRecentlyUsedChainId(chain.chainId); + + if (chain.isCustom) { + if (props.onNetworkAdded) { + props.onNetworkAdded(chain); + } + + trackChainConfig("add", chain); + successToast("Network Added Successfully"); + } else { + if (props.onNetworkConfigured) { + props.onNetworkConfigured(chain); + } + + trackChainConfig("update", chain); + successToast("Network Updated Successfully"); + } + }; + + return ( + + + {editChain ? "Edit Network" : "Add Custom Network"} + + + {/* Modify the given chain */} + {editChain && ( + + + + )} + + {/* Custom chain */} + {!editChain && ( + + )} + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/Form/ChainIdInput.tsx b/apps/dashboard/src/components/configure-networks/Form/ChainIdInput.tsx new file mode 100644 index 00000000000..2240da1d06b --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/Form/ChainIdInput.tsx @@ -0,0 +1,36 @@ +import { NetworkConfigFormData } from "../ConfigureNetworkForm"; +import { FormControl, Input } from "@chakra-ui/react"; +import { UseFormReturn } from "react-hook-form"; +import { FormLabel } from "tw-components"; + +export const ChainIdInput: React.FC<{ + form: UseFormReturn; + disabled: boolean; +}> = ({ form, disabled }) => { + return ( + + Chain ID + { + // prevent typing e, +, - + if (e.key === "e" || e.key === "+" || e.key === "-") { + e.preventDefault(); + } + }} + type="number" + {...form.register("chainId", { + required: true, + })} + /> + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/Form/ConfirmationPopover.tsx b/apps/dashboard/src/components/configure-networks/Form/ConfirmationPopover.tsx new file mode 100644 index 00000000000..cd718ebaf6d --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/Form/ConfirmationPopover.tsx @@ -0,0 +1,57 @@ +import { + ButtonGroup, + Popover, + PopoverArrow, + PopoverContent, + PopoverFooter, + PopoverHeader, + PopoverTrigger, + useDisclosure, +} from "@chakra-ui/react"; +import { Button, Card, Heading, Text } from "tw-components"; + +export const ConfirmationPopover: React.FC<{ + onConfirm: () => void; + children: React.ReactNode; + prompt: string; + description?: React.ReactNode; + confirmationText: React.ReactNode; +}> = (props) => { + const { isOpen, onOpen, onClose } = useDisclosure(); + + return ( + + {props.children} + + + + + + {props.prompt} + + + {props.description} + + + + + + + + + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/Form/IconUpload.tsx b/apps/dashboard/src/components/configure-networks/Form/IconUpload.tsx new file mode 100644 index 00000000000..5222bc1cb6f --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/Form/IconUpload.tsx @@ -0,0 +1,53 @@ +import { Icon } from "@chakra-ui/react"; +import { useQueryClient } from "@tanstack/react-query"; +import { useStorageUpload } from "@thirdweb-dev/react"; +import { FileInput } from "components/shared/FileInput"; +import { PINNED_FILES_QUERY_KEY_ROOT } from "components/storage/your-files"; +import { useErrorHandler } from "contexts/error-handler"; +import { FiUpload } from "react-icons/fi"; +import { Button } from "tw-components"; + +export const IconUpload: React.FC<{ onUpload: (url: string) => void }> = ({ + onUpload, +}) => { + const errorHandler = useErrorHandler(); + const storageUpload = useStorageUpload(); + const queryClient = useQueryClient(); + + const handleIconUpload = (file: File) => { + // if file size is larger than 5000kB, show error + if (file.size > 5000 * 1024) { + errorHandler.onError("Icon image can not be larger than 5MB"); + return; + } + + storageUpload.mutate( + { data: [file] }, + { + onSuccess([uri]) { + onUpload(uri); + // also refetch the files list + queryClient.invalidateQueries([PINNED_FILES_QUERY_KEY_ROOT]); + }, + onError(error) { + errorHandler.onError(error, "Failed to upload file"); + }, + }, + ); + }; + + return ( + + + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/Form/NetworkIdInput.tsx b/apps/dashboard/src/components/configure-networks/Form/NetworkIdInput.tsx new file mode 100644 index 00000000000..e269ca876c3 --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/Form/NetworkIdInput.tsx @@ -0,0 +1,89 @@ +import { NetworkConfigFormData } from "../ConfigureNetworkForm"; +import { TooltipBox } from "./TooltipBox"; +import { FormControl, Input } from "@chakra-ui/react"; +import { useAllChainsData } from "hooks/chains/allChains"; +import { UseFormReturn } from "react-hook-form"; +import { + CodeBlock, + FormErrorMessage, + FormLabel, + Heading, + Text, +} from "tw-components"; + +export const NetworkIDInput: React.FC<{ + form: UseFormReturn; + disabled?: boolean; +}> = ({ form, disabled }) => { + const slug = form.watch("slug"); + const { slugToChainRecord } = useAllChainsData(); + + return ( + + + Network ID + + + Network ID is used to identify the network in the URL{" "} + + + Example + + + + } + /> + + { + // only allow alphanumeric characters and dashes + if (!/^[a-z0-9-]*$/i.test(e.key)) { + e.preventDefault(); + } + }} + type="text" + {...form.register("slug", { + required: true, + validate: { + taken: (_slug) => { + if (disabled) { + return true; + } + + return !(_slug in slugToChainRecord); + }, + }, + })} + /> + + + Can not use Network ID {`"${slug}"`}. + {slug && slug in slugToChainRecord && ( + <> + {" "} + It is being used by {`"`} + {slugToChainRecord[slug].name} + {`"`} + + )} + + + ); +}; diff --git a/apps/dashboard/src/components/configure-networks/Form/RpcInput.tsx b/apps/dashboard/src/components/configure-networks/Form/RpcInput.tsx new file mode 100644 index 00000000000..6ae060ec53b --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/Form/RpcInput.tsx @@ -0,0 +1,50 @@ +import { NetworkConfigFormData } from "../ConfigureNetworkForm"; +import { Alert, AlertIcon, FormControl, Input } from "@chakra-ui/react"; +import { UseFormReturn } from "react-hook-form"; +import { IoWarning } from "react-icons/io5"; +import { FormErrorMessage, FormLabel } from "tw-components"; + +export const RpcInput: React.FC<{ + form: UseFormReturn; +}> = ({ form }) => { + const reg = form.register("rpcUrl", { + required: true, + validate: { + isValidUrl: (value) => { + try { + new URL(value); + return true; + } catch (e) { + return false; + } + }, + }, + }); + + return ( + + RPC URL + + + Invalid RPC URL + + + + Only add custom networks that you trust.
Malicious RPCs can + record activity and lie about the state of the network. +
+
+ ); +}; diff --git a/apps/dashboard/src/components/configure-networks/Form/TooltipBox.tsx b/apps/dashboard/src/components/configure-networks/Form/TooltipBox.tsx new file mode 100644 index 00000000000..85791002eae --- /dev/null +++ b/apps/dashboard/src/components/configure-networks/Form/TooltipBox.tsx @@ -0,0 +1,34 @@ +import { Flex, Icon, Tooltip } from "@chakra-ui/react"; +import { BsQuestionCircle } from "react-icons/bs"; +import { Card } from "tw-components"; + +export const TooltipBox: React.FC<{ + content: React.ReactNode; + iconColor?: string; +}> = ({ content, iconColor = "accent.600" }) => { + return ( + + {content} + + } + > + + + + + ); +}; diff --git a/apps/dashboard/src/components/connect/Carousel.tsx b/apps/dashboard/src/components/connect/Carousel.tsx new file mode 100644 index 00000000000..324474167c2 --- /dev/null +++ b/apps/dashboard/src/components/connect/Carousel.tsx @@ -0,0 +1,182 @@ +import "react-responsive-carousel/lib/styles/carousel.min.css"; +import { useState, useEffect } from "react"; +import { Box, Flex, SimpleGrid } from "@chakra-ui/react"; +import { Carousel as ReactResponsiveCarousel } from "react-responsive-carousel"; +import { PlaygroundMenu } from "./PlaygroundMenu"; +import { ChakraNextImage } from "components/Image"; +import { useTrack } from "hooks/analytics/useTrack"; + +const showcaseMenus = [ + { + id: "connect-icon", + title: "Onboard users", + href: "/dashboard/connect/playground", + description: "Onboard anyone with every sign-in option for web2 & web3.", + image: require("../../../public/assets/product-pages/connect/icon-connect.png"), + }, + { + id: "account-abstraction-icon", + title: "Abstract complexity", + href: "https://portal.thirdweb.com/connect/in-app-wallet/overview", + description: + "Make your app easy to use with in-app wallets & account abstraction.", + image: require("../../../public/assets/product-pages/connect/icon-aa.png"), + }, + { + id: "pay-icon", + title: "Generate revenue", + href: "https://portal.thirdweb.com/connect/pay/buy-with-crypto", + description: + "The easiest way for users to transact in your app with fiat & cross-chain crypto.", + image: require("../../../public/assets/product-pages/connect/icon-pay.png"), + }, +]; + +const showcaseImages = [ + require("../../../public/assets/product-pages/connect/connect.png"), + require("../../../public/assets/product-pages/connect/account-abstraction.png"), + require("../../../public/assets/product-pages/connect/pay.png"), +]; + +const Carousel = ({ TRACKING_CATEGORY }: { TRACKING_CATEGORY: string }) => { + const [selectedShowCaseIdx, setSelectedShowCaseIdx] = useState(0); + const [hoveredCard, setHoveredCard] = useState(false); + const [canAnimate, setCanAnimate] = useState(false); + + const trackEvent = useTrack(); + + const increment = () => { + setSelectedShowCaseIdx((idx) => (idx === 2 ? 0 : idx + 1)); + }; + + // FIXME: this can likely be achieved fully via CSS + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + if (!hoveredCard) { + const timer = setInterval(increment, 3500); + + return () => clearInterval(timer); + } + }, [hoveredCard]); + + // FIXME: this can likely be achieved fully via CSS + // eslint-disable-next-line no-restricted-syntax + useEffect(() => { + if (selectedShowCaseIdx > 0 && !canAnimate) { + setCanAnimate(true); + } + }, [selectedShowCaseIdx, canAnimate]); + + return ( + + + { + setSelectedShowCaseIdx(idx); + }} + onSwipeMove={() => { + if (!hoveredCard) { + setHoveredCard(true); + } + return true; + }} + > + {showcaseMenus.map(({ id, title, description, href, image }, idx) => ( + { + setSelectedShowCaseIdx(idx); + setHoveredCard(true); + }} + /> + ))} + + + + + {showcaseMenus.map(({ id, title, description, image, href }, idx) => { + return ( + { + setSelectedShowCaseIdx(idx); + setHoveredCard(true); + }} + onMouseOut={() => { + setHoveredCard(false); + }} + onClick={() => { + setSelectedShowCaseIdx(idx); + setHoveredCard(true); + trackEvent({ + category: TRACKING_CATEGORY, + action: "click", + label: id, + }); + }} + /> + ); + })} + + + {showcaseImages.map((img, idx) => ( + + ))} + + + ); +}; + +export default Carousel; diff --git a/apps/dashboard/src/components/connect/CodePlayground.tsx b/apps/dashboard/src/components/connect/CodePlayground.tsx new file mode 100644 index 00000000000..736a374af95 --- /dev/null +++ b/apps/dashboard/src/components/connect/CodePlayground.tsx @@ -0,0 +1,351 @@ +import { + Flex, + List, + ListItem, + TabList, + TabPanel, + TabPanels, + Tabs, +} from "@chakra-ui/react"; +import { CodeEnvironment } from "components/contract-tabs/code/types"; +import { themes } from "prism-react-renderer"; +import { useState } from "react"; +import { Button, Card, CodeBlock } from "tw-components"; +import ConnectPlaygroundButton, { + CodeOptions, +} from "./ConnectPlaygroundButton"; +import { connectPlaygroundData } from "components/product-pages/common/connect/data"; +import ConnectPlaygroundTab from "./ConnectPlaygroundTab"; +import { ChakraNextImage } from "components/Image"; +import { Aurora } from "components/homepage/Aurora"; +import { + COMMANDS, + formatSnippet, +} from "../../contract-ui/tabs/code/components/code-overview"; + +const CodePlayground = ({ + TRACKING_CATEGORY, +}: { + TRACKING_CATEGORY: string; +}) => { + const [tab, setTab] = useState("write"); + + const readFunctions = connectPlaygroundData.readFunctions; + const writeFunctions = connectPlaygroundData.writeFunctions; + const events = connectPlaygroundData.events; + + const [event, setEvent] = useState(events[0]); + + const [read, setRead] = useState(readFunctions[0]); + + const [write, setWrite] = useState(readFunctions[0]); + + const [environment, setEnvironment] = useState("javascript"); + + const snippet = formatSnippet(COMMANDS[tab as keyof typeof COMMANDS] as any, { + contractAddress: "0x6fb2A6C41B44076bc491cC285BA629c0715a6a1b", + fn: (tab === "read" ? read : tab === "write" ? write : event) as any, + args: (tab === "read" + ? readFunctions + : tab === "write" + ? writeFunctions + : events + ) + ?.find( + (f) => + f.name === + (tab === "read" + ? read?.name + : tab === "write" + ? write?.name + : event?.name), + ) + ?.inputs?.map((i) => i.name), + }); + + const activeEnvironment: CodeEnvironment = ( + snippet[environment] ? environment : Object.keys(snippet)[0] + ) as CodeOptions; + + const activeSnippet = snippet[activeEnvironment]; + + const lines = activeSnippet ? activeSnippet?.split("\n") : []; + + const languages = Object.keys( + COMMANDS[tab as keyof typeof COMMANDS], + ) as CodeOptions[]; + + const code = lines.join("\n").trim(); + + const computeLanguage = (language: CodeOptions) => { + const withSpaces = language.replace(/-/g, " "); + + const capitalizedWords = withSpaces + .split(" ") + .map( + (word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(), + ); + + return capitalizedWords.join(" "); + }; + + return ( + + + + + + + + + + Write + + + + Read + + + + Events + + + + + + + {writeFunctions?.map((fn) => ( + + + + ))} + + + {readFunctions?.map((fn) => ( + + + + ))} + + + {events?.map((ev) => ( + + + + ))} + + + + + + + + + {languages.map((language, idx) => ( + + {computeLanguage(language)} + + ))} + + + + + + + + ); +}; + +export default CodePlayground; diff --git a/apps/dashboard/src/components/connect/ConnectPlaygroundButton.tsx b/apps/dashboard/src/components/connect/ConnectPlaygroundButton.tsx new file mode 100644 index 00000000000..79765d47132 --- /dev/null +++ b/apps/dashboard/src/components/connect/ConnectPlaygroundButton.tsx @@ -0,0 +1,87 @@ +import { Icon } from "@chakra-ui/react"; +import { SiJavascript } from "@react-icons/all-files/si/SiJavascript"; +import { SiReact } from "@react-icons/all-files/si/SiReact"; +import { SiUnity } from "@react-icons/all-files/si/SiUnity"; +import { useTrack } from "hooks/analytics/useTrack"; +import { Dispatch, SetStateAction, ReactNode } from "react"; +import { Button } from "tw-components"; + +const LOGO_OPTIONS = { + javascript: { + icon: SiJavascript, + fill: "yellow", + }, + react: { + icon: SiReact, + fill: "#61dafb", + }, + "react-native": { + icon: SiReact, + fill: "#61dafb", + }, + unity: { + icon: SiUnity, + fill: "#ffffff", + }, +} as const; + +export type CodeOptions = keyof typeof LOGO_OPTIONS; + +interface ConnectPlaygroundButtonProps { + language: CodeOptions; + activeLanguage: CodeOptions; + setActiveLanguage: Dispatch>; + children: ReactNode; +} + +const ConnectPlaygroundButton = ({ + language, + activeLanguage, + setActiveLanguage, + children, +}: ConnectPlaygroundButtonProps) => { + const trackEvent = useTrack(); + + const logo = LOGO_OPTIONS[language]; + + const isActive = language === activeLanguage; + + return ( + + ); +}; + +export default ConnectPlaygroundButton; diff --git a/apps/dashboard/src/components/connect/ConnectPlaygroundTab.tsx b/apps/dashboard/src/components/connect/ConnectPlaygroundTab.tsx new file mode 100644 index 00000000000..58845a023ec --- /dev/null +++ b/apps/dashboard/src/components/connect/ConnectPlaygroundTab.tsx @@ -0,0 +1,58 @@ +import { ReactNode } from "react"; +import { Tab } from "@chakra-ui/react"; +import { useTrack } from "hooks/analytics/useTrack"; +import { Heading } from "tw-components"; + +interface ConnectPlaygroundTabProps { + children: ReactNode; + label: string; + TRACKING_CATEGORY: string; +} + +const ConnectPlaygroundTab = ({ + children, + label, + TRACKING_CATEGORY, +}: ConnectPlaygroundTabProps) => { + const trackEvent = useTrack(); + + return ( + { + trackEvent({ + category: TRACKING_CATEGORY, + action: "switch-tab", + label, + }); + }} + > + + {children} + + + ); +}; + +export default ConnectPlaygroundTab; diff --git a/apps/dashboard/src/components/connect/PlaygroundMenu.tsx b/apps/dashboard/src/components/connect/PlaygroundMenu.tsx new file mode 100644 index 00000000000..2afa236ee25 --- /dev/null +++ b/apps/dashboard/src/components/connect/PlaygroundMenu.tsx @@ -0,0 +1,88 @@ +import { Flex, BoxProps } from "@chakra-ui/react"; +import { ChakraNextImage } from "components/Image"; +import { StaticImageData } from "next/image"; +import { useRouter } from "next/router"; +import { Card, Text } from "tw-components"; + +interface PlaygroundMenuProps extends BoxProps { + title: string; + description: string; + href: string; + isSelected: boolean; + onClick: () => void; + image: StaticImageData; +} + +export const PlaygroundMenu: React.FC = ({ + title, + description, + href, + image, + isSelected, + onClick, + ...rest +}) => { + const router = useRouter(); + + return ( + { + onClick(); + router.push(href); + }} + {...rest} + > + + + + + {title} + + + + {description} + + + + Learn more {`→`} + + + + ); +}; diff --git a/apps/dashboard/src/components/contract-components/contract-deploy-form/contract-metadata-fieldset.tsx b/apps/dashboard/src/components/contract-components/contract-deploy-form/contract-metadata-fieldset.tsx new file mode 100644 index 00000000000..7bde9fd8eab --- /dev/null +++ b/apps/dashboard/src/components/contract-components/contract-deploy-form/contract-metadata-fieldset.tsx @@ -0,0 +1,128 @@ +import { useContractPublishMetadataFromURI } from "../hooks"; +import { Flex, FormControl, Input, Textarea } from "@chakra-ui/react"; +import { FileInput } from "components/shared/FileInput"; +import { useImageFileOrUrl } from "hooks/useImageFileOrUrl"; +import { UseFormReturn } from "react-hook-form"; +import { FormErrorMessage, FormLabel, Heading, Text } from "tw-components"; + +interface ContractMetadataFieldsetProps { + form: UseFormReturn; + metadata: ReturnType; +} + +export const ContractMetadataFieldset: React.FC< + ContractMetadataFieldsetProps +> = ({ form, metadata }) => { + return ( + <> + + Contract Metadata + + Settings to organize and distinguish between your different contracts. + + + + + + Image + + form.setValue("contractMetadata.image", file, { + shouldTouch: true, + }) + } + border="1px solid" + borderColor="gray.200" + borderRadius="md" + transition="all 200ms ease" + /> + + { + form.getFieldState("contractMetadata.image", form.formState) + .error?.message + } + + + + + + + + Name + + + { + form.getFieldState("contractMetadata..name", form.formState) + .error?.message + } + + + {/* {hasSymbol && ( */} + + Symbol + + + { + form.getFieldState("contractMetadata.symbol", form.formState) + .error?.message + } + + + {/* )} */} + + + + Description +