From 9e2cb7b9f301d154be02ce3f7d91d7f70252d9a6 Mon Sep 17 00:00:00 2001 From: Pritish Budhiraja <77892330+PritishBudhiraja@users.noreply.github.com> Date: Wed, 29 Nov 2023 13:23:25 +0530 Subject: [PATCH] feature : Husky & Prettier Addition - For formatting code (#25) Co-authored-by: Pritish Budhiraja - Juspay Co-authored-by: Jeeva Ramachandran <120017870+JeevaRamu0104@users.noreply.github.com> Co-authored-by: Jeeva Ramachandran --- .babelrc | 33 +- .githooks/commit-msg | 24 + .github/PULL_REQUEST_TEMPLATE.md | 8 +- .github/workflows/ci.yml | 7 +- .gitignore | 4 +- README.md | 5 +- bsconfig.json | 7 +- config/FeatureFlag.json | 2 +- jest.config.js | 6 +- package-lock.json | 46592 ++++++++++++++++ package.json | 8 + public/common/NewThemeOnboarding.css | 405 +- public/common/Onboarding.css | 406 +- public/common/iframe.html | 240 +- public/common/lottie-files/checkbox.json | 955 +- .../common/lottie-files/checkboxPurple.json | 935 +- public/common/lottie-files/deselectTick.json | 523 +- public/common/lottie-files/enterCross.json | 1072 +- public/common/lottie-files/exitCross.json | 1210 +- public/common/lottie-files/selectedTick.json | 563 +- .../common/lottie-files/successConfetti.json | 31128 ++++++++++- public/common/lottie-files/uncheckbox.json | 999 +- .../common/lottie-files/uncheckboxPurple.json | 981 +- public/common/shadow.html | 9 +- public/hyperswitch/index.html | 3 +- public/hyperswitch/wasm/euclid.d.ts | 213 +- public/hyperswitch/wasm/euclid.js | 1612 +- public/hyperswitch/wasm/euclid_bg.wasm.d.ts | 14 +- public/hyperswitch/wasm/package.json | 2 +- src/components/CustomCharts/highcharts.css | 10 +- src/components/DonutProgress.css | 43 +- src/components/Pagination.res | 44 +- src/components/highcharts.css | 17 +- src/libraries/NProgress.css | 146 +- .../HyperSwitch/Home/QuickStart/GoLive.res | 2 +- src/server/config.mjs | 11 +- tailwindMain.config.js | 14 +- tests/bsconfig.json | 10 +- webpack.common.js | 2 +- webpack.prod.js | 5 +- webpack.server.js | 2 +- yarn.lock | 27067 --------- 42 files changed, 82550 insertions(+), 32789 deletions(-) create mode 100755 .githooks/commit-msg create mode 100644 package-lock.json delete mode 100644 yarn.lock diff --git a/.babelrc b/.babelrc index 79af04723..15af723b9 100644 --- a/.babelrc +++ b/.babelrc @@ -1,21 +1,16 @@ { - "presets": [ - "@babel/preset-env", - "@babel/preset-react" + "presets": ["@babel/preset-env", "@babel/preset-react"], + "plugins": [ + [ + "module-resolver", + { + "root": ["./src"], + "alias": { + "test": "./test", + "underscore": "lodash" + } + } ], - "plugins": [ - [ - "module-resolver", - { - "root": [ - "./src" - ], - "alias": { - "test": "./test", - "underscore": "lodash" - } - } - ], - "@babel/plugin-transform-async-to-generator" - ] -} \ No newline at end of file + "@babel/plugin-transform-async-to-generator" + ] +} diff --git a/.githooks/commit-msg b/.githooks/commit-msg new file mode 100755 index 000000000..f7166459d --- /dev/null +++ b/.githooks/commit-msg @@ -0,0 +1,24 @@ +#!/bin/sh + +echo "~~~~**** Commit hook started ****~~~~" + +commit_msg_file=$1 +commit_msg=$(cat "$commit_msg_file") + + +# For formatting your code +npx prettier --write . +npm run re:format + +# Define your commit message convention (e.g., starts with "feature:", "fix:", etc.) +commit_regex="^(merge-commit|feature|bugfix|chore|docs|style|refactor|test|enhancement).+" + +if ! echo "$commit_msg" | grep -E "$commit_regex" ; then + echo "Aborting commit. Your commit message does not follow the conventional format." + echo "Example - : - " + exit 1 +fi + +# If the commit message matches the convention, the script exits successfully. +echo "~~~~**** Commit hook completed ****~~~~" +exit 0 diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f84f78ac8..987dd59bb 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,5 @@ ## Type of Change + - [ ] Bugfix @@ -10,10 +11,11 @@ - [ ] CI/CD ## Description - + ## Motivation and Context + - ## How did you test it? + - ## Checklist + - [ ] I ran `npm run re:build` diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a67c72dc..7cde1a54d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,12 +15,9 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - - - name: "Setup yarn" - run: corepack enable - name: "Install dependencies" - run: yarn install + run: npm install --legacy-peer-deps - name: "Build" - run: npm run re:build \ No newline at end of file + run: npm run re:build diff --git a/.gitignore b/.gitignore index c29c4ca42..6394d14b5 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,7 @@ lib/ !.yarn/versions.DS_Store /public/env-config.js env-config.js -# yarn.lock -package-lock.json +yarn.lock +#package-lock.json user_data.sh *.pem diff --git a/README.md b/README.md index 4dca54b35..4687cf7eb 100644 --- a/README.md +++ b/README.md @@ -67,9 +67,11 @@ Follow these simple steps to set up Hyperswitch on your local machine. Feature flags allows the users to enable or disable certain functionalities or flows in the control center. ### Using feature flags -The FeatureFlag.json file can be found under config/FeatueFlag.json. By default, all the feature flags is turned off (`False` value). + +The FeatureFlag.json file can be found under config/FeatueFlag.json. By default, all the feature flags is turned off (`False` value). ### Feature flag descriptions + #### Generate report The `generate_report` feature flag controls the ability to generate detailed reports on payments, refunds, and disputes. When enabled, this allows users to pull reports covering the previous 6 months of transaction data. The reports can provide insights into trends, identify issues, and inform business decisions. @@ -264,6 +266,7 @@ curl https://raw.githubusercontent.com/juspay/hyperswitch/main/aws/hyperswitch_c Once the script is executed, you will receive a Public IP as the response (e.g. http://34.207.75.225). This IP is the base URL for accessing the application's APIs #### Clean Up + If you want to delete the application from your account simply run the below clean up script. Ypu need to install JQ for this. For more information, [click here](https://jqlang.github.io/jq/download/) ``` diff --git a/bsconfig.json b/bsconfig.json index 28a402f84..611cff2a3 100644 --- a/bsconfig.json +++ b/bsconfig.json @@ -5,10 +5,7 @@ "version": 4, "mode": "classic" }, - "bsc-flags": [ - "-bs-super-errors", - "-open RescriptCore" - ], + "bsc-flags": ["-bs-super-errors", "-open RescriptCore"], "sources": { "dir": "src", "subdirs": true @@ -28,4 +25,4 @@ "rescript-debounce-react", "@rescript/core" ] -} \ No newline at end of file +} diff --git a/config/FeatureFlag.json b/config/FeatureFlag.json index bf3795e0c..d08069294 100644 --- a/config/FeatureFlag.json +++ b/config/FeatureFlag.json @@ -22,4 +22,4 @@ "mixpanel": false, "business_profile": false, "generate_report": false -} \ No newline at end of file +} diff --git a/jest.config.js b/jest.config.js index 3b58369ac..0c231f6d3 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,5 @@ module.exports = { - testEnvironment: "jsdom", - moduleFileExtensions: ["js", "mjs"], - testMatch: ["**/tests/**/*Test.bs.js"], + testEnvironment: "jsdom", + moduleFileExtensions: ["js", "mjs"], + testMatch: ["**/tests/**/*Test.bs.js"], }; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..0967c7c52 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,46592 @@ +{ + "name": "rescript-euler-dashboard", + "version": "1.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "rescript-euler-dashboard", + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@headlessui/react": "^1.2.0", + "@juspay-tech/hyper-js": "^1.0.0", + "@juspay-tech/react-hyper-js": "^1.0.1", + "@monaco-editor/react": "^4.4.5", + "@rescript/core": "^0.5.0", + "@rescript/react": "^0.11.0", + "@ryyppy/rescript-promise": "^2.1.0", + "@sentry/react": "^7.11.1", + "@sentry/tracing": "^7.11.1", + "autoprefixer": "^10.3.1", + "autosize": "^6.0.1", + "bs-fetch": "^0.6.2", + "buffer": "^6.0.3", + "csvjson-csv2json": "^5.0.6", + "csvjson-json2csv": "^1.0.3", + "currency-codes": "^2.1.0", + "dayjs": "^1.10.4", + "draft-js": "^0.11.7", + "draft-js-export-html": "^1.4.1", + "final-form": "^4.20.4", + "firebase": "9.12.1", + "framer-motion": "^10.12.16", + "highcharts": "^9.3.0", + "highcharts-react-official": "^3.1.0", + "html-to-draftjs": "^1.5.0", + "html-to-image": "^1.11.11", + "html2pdf.js": "^0.10.1", + "intro.js": "^5.0.0", + "intro.js-react": "^0.5.0", + "jest": "^29.6.4", + "jose": "^4.3.7", + "js-datepicker": "^5.18.2", + "js-sha256": "^0.9.0", + "konva": "~8.1.4", + "lottie-react": "^2.3.1", + "mixpanel-browser": "^2.45.0", + "monaco-editor": "^0.34.1", + "nprogress": "^0.2.0", + "pako": "^2.0.4", + "react": "^18.2.0", + "react-beautiful-dnd": "^13.1.0", + "react-circular-progressbar": "^2.1.0", + "react-color": "^2.19.3", + "react-diff-viewer": "^3.1.1", + "react-dom": "^18.2.0", + "react-draft-wysiwyg": "^1.15.0", + "react-easy-swipe": "0.0.23", + "react-final-form": "^6.5.9", + "react-flame-graph": "^1.4.0", + "react-ga4": "^2.0.0", + "react-google-drive-picker": "^1.2.2", + "react-pdf": "^7.3.3", + "react-qr-code": "^2.0.11", + "react-qrcode-logo": "^2.9.0", + "react-virtualized-auto-sizer": "^1.0.11", + "react-window": "^1.8.8", + "recoil": "^0.1.2", + "rescript-debounce-react": "^1.0.0", + "rescript-webapi": "^0.7.0", + "rrweb": "^2.0.0-alpha.3", + "subnet-cidr-calculator": "^1.0.8", + "tailwindcss": "^3.0.0", + "ua-parser-js": "^1.0.2", + "uuid": "^9.0.0" + }, + "devDependencies": { + "@glennsl/rescript-jest": "^0.10.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1", + "copy-webpack-plugin": "^9.0.0", + "css-loader": "^5.0.1", + "css-minimizer-webpack-plugin": "^5.0.1", + "file-loader": "^6.2.0", + "husky": "^8.0.3", + "jest-environment-jsdom": "^29.6.4", + "mini-css-extract-plugin": "^1.3.1", + "monaco-editor-webpack-plugin": "^7.0.1", + "node-fetch": "^2.6.1", + "postcss": "^8.3.6", + "postcss-loader": "^4.1.0", + "postcss-preset-env": "^6.7.0", + "prettier": "^3.1.0", + "react-refresh": "^0.10.0", + "rescript": "^10.1.2", + "serve": "^14.2.1", + "style-loader": "^2.0.0", + "terser-webpack-plugin": "^5.1.3", + "webpack": "^5.3.2", + "webpack-cli": "^4.7.0", + "webpack-dev-server": "^4.15.1", + "webpack-merge": "^5.3.0" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", + "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", + "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.3.tgz", + "integrity": "sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.3", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.3", + "@babel/types": "^7.23.3", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/@babel/eslint-parser": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz", + "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", + "license": "MIT", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.4.tgz", + "integrity": "sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.23.4", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "license": "MIT", + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.4.tgz", + "integrity": "sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.4", + "@babel/types": "^7.23.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.4.tgz", + "integrity": "sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==", + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", + "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.3.tgz", + "integrity": "sha512-u8SwzOcP0DYSsa++nHd/9exlHb0NAlHCb890qtZZbSwPX2bFv8LBEztxwN7Xg/dS8oAFFidhrI9PBcLBJSkGRQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz", + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz", + "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", + "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz", + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", + "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", + "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.4.tgz", + "integrity": "sha512-ITwqpb6V4btwUG0YJR82o2QvmWrLgDnx/p2A3CTPYGaRgULkDiC0DRA2C4jlRB9uXGUEfaSS/IGHfVW+ohzYDw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.4.tgz", + "integrity": "sha512-39hCCOl+YUAyMOu6B9SmUTiHUU0t/CxJNUmY3qRdJujbqi+lrQcL11ysYUsAvFWPBdhihrv1z0oRG84Yr3dODQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.3.tgz", + "integrity": "sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.3", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.3", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.3", + "@babel/plugin-transform-classes": "^7.23.3", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.3", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.3", + "@babel/plugin-transform-for-of": "^7.23.3", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.3", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.3", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.3", + "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.3", + "@babel/plugin-transform-numeric-separator": "^7.23.3", + "@babel/plugin-transform-object-rest-spread": "^7.23.3", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.3", + "@babel/plugin-transform-optional-chaining": "^7.23.3", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.3", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.23.3", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "license": "MIT" + }, + "node_modules/@babel/runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", + "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.23.4.tgz", + "integrity": "sha512-zQyB4MJGM+rvd4pM58n26kf3xbiitw9MHzL8oLiBMKb8MCtVDfV5nDzzJWWzLMtbvKI9wN6XwJYl479qF4JluQ==", + "license": "MIT", + "dependencies": { + "core-js-pure": "^3.30.2", + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "license": "MIT" + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "license": "MIT" + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.4.tgz", + "integrity": "sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.23.4", + "@babel/generator": "^7.23.4", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.4", + "@babel/types": "^7.23.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.4.tgz", + "integrity": "sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "license": "Apache-2.0", + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "license": "CC0-1.0", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==", + "license": "CC0-1.0" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "license": "CC0-1.0", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@emotion/cache": { + "version": "10.0.29", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "license": "MIT", + "dependencies": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==", + "license": "MIT" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", + "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "license": "MIT", + "optional": true, + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", + "license": "MIT" + }, + "node_modules/@emotion/serialize": { + "version": "0.11.16", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "license": "MIT", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/@emotion/sheet": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==", + "license": "MIT" + }, + "node_modules/@emotion/stylis": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==", + "license": "MIT" + }, + "node_modules/@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==", + "license": "MIT" + }, + "node_modules/@emotion/utils": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==", + "license": "MIT" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", + "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==", + "license": "MIT" + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", + "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz", + "integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@firebase/analytics": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.8.3.tgz", + "integrity": "sha512-viGhc57JW9zHp/0JKpLBUthdpOrEjbPETQFz8oNfaNma+cHA6FtIrtg4Sla52DgqatbATcE9aIDBiPCGrCtNjw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/installations": "0.5.15", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/analytics-compat": { + "version": "0.1.16", + "resolved": "https://registry.npmjs.org/@firebase/analytics-compat/-/analytics-compat-0.1.16.tgz", + "integrity": "sha512-mDAhE33WiyCrqSQZvzyZtQCCdf4ipn5tsEpTbIUruk7MbThQ1EbNAbPBiEk9NDLD3sUyLABZGFctvym/hc8H+w==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/analytics": "0.8.3", + "@firebase/analytics-types": "0.7.0", + "@firebase/component": "0.5.20", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/analytics-types": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.7.0.tgz", + "integrity": "sha512-DNE2Waiwy5+zZnCfintkDtBfaW6MjIG883474v6Z0K1XZIvl76cLND4iv0YUb48leyF+PJK1KO2XrgHb/KpmhQ==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/app": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.8.2.tgz", + "integrity": "sha512-ByNDCe8h9O/szO3XVTrS484MtqBOKriVaNCQC7Y7KgZSaiA0OOWmIY5vwi63mBTYetqMNN5VGiG/6ZSmGIZyoQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "idb": "7.0.1", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/app-check": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.5.15.tgz", + "integrity": "sha512-ifQalGXkXMwGR3F8Glmo1XtDg0UjkwCmI/ff05mxnKGMfs5ZDyw8DikQfna//a/KdYuOBqxlBwS2BhHiobqUUg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/app-check-compat": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/@firebase/app-check-compat/-/app-check-compat-0.2.15.tgz", + "integrity": "sha512-EgD1WEFwwq7aP7DxPSYuUpMt8eAhClA57976D3BaHDbH/IXEuw0DfaeT0LtBb+xJD7J8uxy+YKpudCC8gzUu8g==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-check": "0.5.15", + "@firebase/app-check-types": "0.4.0", + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/app-check-interop-types": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@firebase/app-check-interop-types/-/app-check-interop-types-0.1.0.tgz", + "integrity": "sha512-uZfn9s4uuRsaX5Lwx+gFP3B6YsyOKUE+Rqa6z9ojT4VSRAsZFko9FRn6OxQUA1z5t5d08fY4pf+/+Dkd5wbdbA==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/app-check-types": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@firebase/app-check-types/-/app-check-types-0.4.0.tgz", + "integrity": "sha512-SsWafqMABIOu7zLgWbmwvHGOeQQVQlwm42kwwubsmfLmL4Sf5uGpBfDhQ0CAkpi7bkJ/NwNFKafNDL9prRNP0Q==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/app-compat": { + "version": "0.1.37", + "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.1.37.tgz", + "integrity": "sha512-doTKYGlVc8ZiQNOl66rpkU/YItRyOxCgMp4YWThXkPM4T/pTi4a9IMCe8K88gVNeYWd8sKW4vSnxjcOG5hQXEA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app": "0.8.2", + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/app-types": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.8.0.tgz", + "integrity": "sha512-Lec3VVquUwXPn2UReGSsfTxuMBVRmzGIwA/CJnF0LQuPgv9kOmXk9mVqsDMfHxHtqjai0n6wWHR2TqjdVV/bYA==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/auth": { + "version": "0.20.10", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-0.20.10.tgz", + "integrity": "sha512-uAZypmVv/4nijaPVtR/ipjKBmSDPLQ7sNScLHs2DVhdvCklgUUF5+zsEdPlMfKDIfmVQHFwHbUgeKyXDYSRMwQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "node-fetch": "2.6.7", + "selenium-webdriver": "4.1.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/auth-compat": { + "version": "0.2.23", + "resolved": "https://registry.npmjs.org/@firebase/auth-compat/-/auth-compat-0.2.23.tgz", + "integrity": "sha512-r9YEXaL7YKoFOWHRvVoQ6d5klP+hkSsAtt21UIvP3/BxDDU+yLXN5vVvFHr38apuUeMGN34M7zkY6SihnLutIQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/auth": "0.20.10", + "@firebase/auth-types": "0.11.0", + "@firebase/component": "0.5.20", + "@firebase/util": "1.7.2", + "node-fetch": "2.6.7", + "selenium-webdriver": "4.1.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/auth-compat/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@firebase/auth-compat/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/@firebase/auth-compat/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/@firebase/auth-compat/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@firebase/auth-interop-types": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.1.6.tgz", + "integrity": "sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/auth-types": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.11.0.tgz", + "integrity": "sha512-q7Bt6cx+ySj9elQHTsKulwk3+qDezhzRBFC9zlQ1BjgMueUOnGMcvqmU0zuKlQ4RhLSH7MNAdBV2znVaoN3Vxw==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/auth/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@firebase/auth/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/@firebase/auth/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/@firebase/auth/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@firebase/component": { + "version": "0.5.20", + "resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.5.20.tgz", + "integrity": "sha512-wP51tQBlPFprfAWxWjzC/56hG4APhl43jFsgwuqCl3bhVbiKcr278QbrbGNmIXDeGKo4sGZLAnH9whl2apeCmA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/database": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/@firebase/database/-/database-0.13.9.tgz", + "integrity": "sha512-raQEBgQQybaEoMloJL8wWHQywGQ9mF2VbitvHydsbSNn+KL/xRDjXeQZPuuSbRjkYV6mR8jvQB7gpnzQQNE8Qg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/auth-interop-types": "0.1.6", + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "faye-websocket": "0.11.4", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/database-compat": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@firebase/database-compat/-/database-compat-0.2.9.tgz", + "integrity": "sha512-zzyFM3+jW/qYtHojiQirHXGXYyElbqVngEEn/i2gXoSzcK0Y2AL5oHAqGYXLaaW0+t4Zwnssh3HnQJM8C1D0fw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/database": "0.13.9", + "@firebase/database-types": "0.9.16", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/database-types": { + "version": "0.9.16", + "resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-0.9.16.tgz", + "integrity": "sha512-dK/uFgHisrVijSoHf9RLJ7NwvlOul2rO/z9ufOSbGd8/TqFVASXz+19mynhDIoSEnyQtJC/NTyBzSPfjz0w61w==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-types": "0.8.0", + "@firebase/util": "1.7.2" + } + }, + "node_modules/@firebase/firestore": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-3.7.1.tgz", + "integrity": "sha512-sDZ79cUf4cwCyRzN74zODgaeUvyt0lGA8YwaasVVqojgznwMG/bIz+/Tny4ZEnLZFrlniCqt2tStWsiC6s3u7g==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "@firebase/webchannel-wrapper": "0.8.0", + "@grpc/grpc-js": "^1.3.2", + "@grpc/proto-loader": "^0.6.13", + "node-fetch": "2.6.7", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10.10.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/firestore-compat": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@firebase/firestore-compat/-/firestore-compat-0.2.1.tgz", + "integrity": "sha512-XiiTpmUfyZ6QU3Dw9BCT4T+KPvqzada1GsUNX49HmriWHpIn3jTAjsagkigRAnmNDlxS3ki6Yzg9Cs60tpD0tw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/firestore": "3.7.1", + "@firebase/firestore-types": "2.5.0", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/firestore-types": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-2.5.0.tgz", + "integrity": "sha512-I6c2m1zUhZ5SH0cWPmINabDyH5w0PPFHk2UHsjBpKdZllzJZ2TwTkXbDtpHUZNmnc/zAa0WNMNMvcvbb/xJLKA==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/firestore/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@firebase/firestore/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/@firebase/firestore/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/@firebase/firestore/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@firebase/functions": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/@firebase/functions/-/functions-0.8.7.tgz", + "integrity": "sha512-JHSKdAOzlFJ9NdKoOaq4x6S1q6B3GmYZDg13KIDsE6BC0E9o/eWxOWOjSFJRCP/lpfFwa0rYBRayfUvZxW3BLw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-check-interop-types": "0.1.0", + "@firebase/auth-interop-types": "0.1.6", + "@firebase/component": "0.5.20", + "@firebase/messaging-interop-types": "0.1.0", + "@firebase/util": "1.7.2", + "node-fetch": "2.6.7", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/functions-compat": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/@firebase/functions-compat/-/functions-compat-0.2.7.tgz", + "integrity": "sha512-bcUst8ZDJHeVy2Wox4KEM5EizsrrqLzbwFIwJD7KkuSYP8XrlV2gaqJnCvIXXc0Nc4JRGvbXcvFFMXDjhsEp4Q==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/functions": "0.8.7", + "@firebase/functions-types": "0.5.0", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/functions-types": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.5.0.tgz", + "integrity": "sha512-qza0M5EwX+Ocrl1cYI14zoipUX4gI/Shwqv0C1nB864INAD42Dgv4v94BCyxGHBg2kzlWy8PNafdP7zPO8aJQA==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/functions/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@firebase/functions/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/@firebase/functions/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/@firebase/functions/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@firebase/installations": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@firebase/installations/-/installations-0.5.15.tgz", + "integrity": "sha512-RVm2nc2d+bEDFzFzQDTTU1Z13fjAD0v88yDLjtRZuT2R7JwvAegQ4F7CupBvnnf7nftkd3kBwdOi8MhMthb3jQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/util": "1.7.2", + "idb": "7.0.1", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/installations-compat": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/@firebase/installations-compat/-/installations-compat-0.1.15.tgz", + "integrity": "sha512-m0atyudsVj6ekmM+djhhzzInMC3Y233YJky9vXUVt5MHQY0mHhqDds9+UIrCa6cpbl+ntI2fOuoYV7y01s3sfw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/installations": "0.5.15", + "@firebase/installations-types": "0.4.0", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/installations-types": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.4.0.tgz", + "integrity": "sha512-nXxWKQDvBGctuvsizbUEJKfxXU9WAaDhon+j0jpjIfOJkvkj3YHqlLB/HeYjpUn85Pb22BjplpTnDn4Gm9pc3A==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/logger": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.3.3.tgz", + "integrity": "sha512-POTJl07jOKTOevLXrTvJD/VZ0M6PnJXflbAh5J9VGkmtXPXNG6MdZ9fmRgqYhXKTaDId6AQenQ262uwgpdtO0Q==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/messaging": { + "version": "0.9.19", + "resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.9.19.tgz", + "integrity": "sha512-xu99y/7/P+y3txGtgjsVJZyvx7T5/KdvFgDWS7oZwhKYG0o+DXFvvw3SBMK82LFGFOoyHlJUPqv45EyCPnOPCA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/installations": "0.5.15", + "@firebase/messaging-interop-types": "0.1.0", + "@firebase/util": "1.7.2", + "idb": "7.0.1", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/messaging-compat": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/@firebase/messaging-compat/-/messaging-compat-0.1.19.tgz", + "integrity": "sha512-h5tx4nxfSILeRquk5mKE8Onu7WtL6b7rfB6GKNJKecvkPs3nnq5Z4cp2Av4JUR2Wtt9UxCTfO0iRbbmtrt2bZQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/messaging": "0.9.19", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/messaging-interop-types": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@firebase/messaging-interop-types/-/messaging-interop-types-0.1.0.tgz", + "integrity": "sha512-DbvUl/rXAZpQeKBnwz0NYY5OCqr2nFA0Bj28Fmr3NXGqR4PAkfTOHuQlVtLO1Nudo3q0HxAYLa68ZDAcuv2uKQ==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/performance": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@firebase/performance/-/performance-0.5.15.tgz", + "integrity": "sha512-YnnkUehXXzqQefNE5PlPEsXeJYSeY7cMWEdHYTj6u0/F5ntLSAhVZC8jl3Y0fTU1W8a9USQhml6NaXyWiVGmjQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/installations": "0.5.15", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/performance-compat": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/@firebase/performance-compat/-/performance-compat-0.1.15.tgz", + "integrity": "sha512-mryHr5eBEpWxBo8b3KM/53SwwVjMVahwdEnhfx1r+zAvmEPEzXUOGBzAC1l5WQ4DrwtDR87uMZ5soiQ/0jl9QQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/performance": "0.5.15", + "@firebase/performance-types": "0.1.0", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/performance-types": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.1.0.tgz", + "integrity": "sha512-6p1HxrH0mpx+622Ql6fcxFxfkYSBpE3LSuwM7iTtYU2nw91Hj6THC8Bc8z4nboIq7WvgsT/kOTYVVZzCSlXl8w==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/remote-config": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.3.14.tgz", + "integrity": "sha512-wEOz3Tasxhr5lCGioe0WNZwDOoQhNZK2qGAm5+AlHAPaAhWIWvqUTkKsk3nFRztyRZzj3r9k5Gc2OSpEcQKP1A==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/installations": "0.5.15", + "@firebase/logger": "0.3.3", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/remote-config-compat": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/@firebase/remote-config-compat/-/remote-config-compat-0.1.15.tgz", + "integrity": "sha512-jGUrZXIxQRMeSrqEaCi3MtMF33NN12TNTQDZlbex2+T2+yTMI/sn3Mq52T/OccCo86DK17WVlXSWQCH1zCD13g==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/logger": "0.3.3", + "@firebase/remote-config": "0.3.14", + "@firebase/remote-config-types": "0.2.0", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/remote-config-types": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.2.0.tgz", + "integrity": "sha512-hqK5sCPeZvcHQ1D6VjJZdW6EexLTXNMJfPdTwbD8NrXUw6UjWC4KWhLK/TSlL0QPsQtcKRkaaoP+9QCgKfMFPw==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/storage": { + "version": "0.9.12", + "resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.9.12.tgz", + "integrity": "sha512-XIAmje0ufvRrxrUU/9tvGCuUIy7WSJf3XM8Y8OV9EW2Dg1w4f8IpraLiUdlirdtFM0UAnO2kDQHoiVQYhRrADQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/util": "1.7.2", + "node-fetch": "2.6.7", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/storage-compat": { + "version": "0.1.20", + "resolved": "https://registry.npmjs.org/@firebase/storage-compat/-/storage-compat-0.1.20.tgz", + "integrity": "sha512-8vruwltKdvEPhYbPXA/otb5fAD7MGsBHpCzktJWvF7eIALa4sUlYt+jJxG5Nwk2FoT1NrwLQ7TtI7zvm6/NinA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.5.20", + "@firebase/storage": "0.9.12", + "@firebase/storage-types": "0.6.0", + "@firebase/util": "1.7.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/storage-types": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.6.0.tgz", + "integrity": "sha512-1LpWhcCb1ftpkP/akhzjzeFxgVefs6eMD2QeKiJJUGH1qOiows2w5o0sKCUSQrvrRQS1lz3SFGvNR1Ck/gqxeA==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/storage/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@firebase/storage/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/@firebase/storage/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/@firebase/storage/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@firebase/util": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@firebase/util/-/util-1.7.2.tgz", + "integrity": "sha512-P3aTihYEMoz2QQlcn0T7av7HLEK9gsTc1ZiN9VA8wnUtEJscUNemCmTmP3RRysqEb3Z+tVVoycztY8f6R36rRw==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/webchannel-wrapper": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.8.0.tgz", + "integrity": "sha512-Q8erQds5LuAUgNuFOt/tu/abffYUHYxN+Ogp2V5EOssfFG7Ja4ce324Sqyq41u/vB5CSr+tfYS3JzTDrDxCvdw==", + "license": "Apache-2.0" + }, + "node_modules/@glennsl/rescript-jest": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@glennsl/rescript-jest/-/rescript-jest-0.10.0.tgz", + "integrity": "sha512-rUhCuyNi8Em0N7ubrmdz2ZEXo95SvSxkPPVIHpj/UcxAayxr5uo/hoBs0XRVjpAbuCXcoHtvhWt314lcAhwZ8g==", + "dev": true, + "dependencies": { + "jest": "^27.3.1" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "node_modules/@glennsl/rescript-jest/node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/@glennsl/rescript-jest/node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/@glennsl/rescript-jest/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true, + "engines": { + "node": ">=10.4" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@glennsl/rescript-jest/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.9.12", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.9.12.tgz", + "integrity": "sha512-Um5MBuge32TS3lAKX02PGCnFM4xPT996yLgZNb5H03pn6NyJ4Iwn5YcPq6Jj9yxGRk7WOgaZFtVRH5iTdYBeUg==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/proto-loader": "^0.7.8", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/grpc-js/node_modules/@grpc/proto-loader": { + "version": "0.7.10", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.10.tgz", + "integrity": "sha512-CAqDfoaQ8ykFd9zqBDn4k6iWT9loLAlc2ETmDFS9JCD70gDcnA4L3AFEo2iV7KyAtAAHFW9ftq1Fz+Vsgq80RQ==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.4", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@grpc/grpc-js/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@grpc/grpc-js/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "license": "Apache-2.0" + }, + "node_modules/@grpc/grpc-js/node_modules/protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@grpc/grpc-js/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/@grpc/grpc-js/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@grpc/grpc-js/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.6.13", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.13.tgz", + "integrity": "sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==", + "license": "Apache-2.0", + "dependencies": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^6.11.3", + "yargs": "^16.2.0" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@grpc/proto-loader/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@grpc/proto-loader/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/@grpc/proto-loader/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@grpc/proto-loader/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + } + }, + "node_modules/@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^8.3.0" + } + }, + "node_modules/@headlessui/react": { + "version": "1.7.17", + "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.17.tgz", + "integrity": "sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==", + "license": "MIT", + "dependencies": { + "client-only": "^0.0.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16 || ^17 || ^18", + "react-dom": "^16 || ^17 || ^18" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "license": "BSD-3-Clause" + }, + "node_modules/@icons/material": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@icons/material/-/material-0.2.4.tgz", + "integrity": "sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==", + "license": "MIT", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "license": "MIT", + "dependencies": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/console/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/@jest/core/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@jest/core/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@jest/core/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@jest/core/node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/@jest/core/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@jest/core/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/@jest/core/node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/core/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/core/node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/core/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/@jest/core/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/core/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/core/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/environment/node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/environment/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/environment/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/environment/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/environment/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/@jest/environment/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/environment/node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/@jest/environment/node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/environment/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/environment/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/environment/node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/environment/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/environment/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/environment/node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "license": "MIT" + }, + "node_modules/@jest/fake-timers/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/fake-timers/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/fake-timers/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/fake-timers/node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/fake-timers/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/fake-timers/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/@jest/globals/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@jest/globals/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/globals/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@jest/reporters/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/@jest/reporters/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/reporters/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/reporters/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-result/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "license": "MIT" + }, + "node_modules/@jest/test-sequencer/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/test-sequencer/node_modules/expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jest/test-sequencer/node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/transform/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/transform/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@juspay-tech/hyper-js": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@juspay-tech/hyper-js/-/hyper-js-1.6.0.tgz", + "integrity": "sha512-Lntha7USoH+Kh4hfSYkm2GCFFxOAzeAV0bojLEKDrL/VSccmntKqzugvgrYhfHHIeX/QDdDzacMO5IVyR3sgfA==", + "license": "ISC", + "dependencies": { + "@ryyppy/rescript-promise": "^2.1.0", + "bs-fetch": "^0.6.2", + "esbuild": "^0.18.17", + "esbuild-plugin-inline-image": "^0.0.9", + "esbuild-postcss": "^0.0.4", + "react-scripts": "^5.0.1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/console/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/console/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/core/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/fake-timers/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/reporters/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/reporters/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/reporters/node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/reporters/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/reporters/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/test-sequencer/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/test-sequencer/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@jest/test-sequencer/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "license": "MIT", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "license": "MIT", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/css-loader": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.21", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.3", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "license": "MIT", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "license": "CC0-1.0", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cssdb": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.9.0.tgz", + "integrity": "sha512-WPMT9seTQq6fPAa1yN4zjgZZeoTriSN2LqW9C+otjar12DQIWA4LuSfFrvFJiKp4oD0xIk1vumDLw8K9ur4NBw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "CC0-1.0" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/expect/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-cli/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-cli/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-cli/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-config/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-jasmine2/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-jasmine2/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-message-util/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-message-util/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-message-util/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runner/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runner/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runner/node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runner/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runtime/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runtime/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runtime/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-snapshot/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watcher/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watcher/node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watcher/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/mini-css-extract-plugin": { + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "license": "MIT", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "license": "CC0-1.0", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "license": "MIT", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "license": "MIT", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "license": "MIT", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-svgo/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "license": "ISC" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "license": "MIT", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "license": "MIT", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "license": "MIT" + }, + "node_modules/@juspay-tech/hyper-js/node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "license": "MIT", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/string-length/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/style-loader": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/hyper-js/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@juspay-tech/react-hyper-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@juspay-tech/react-hyper-js/-/react-hyper-js-1.0.2.tgz", + "integrity": "sha512-Ov/Sg+2zs01Q2Lg/AJrCPxV2Fo42GSv070BgOMDZQGta6VGkgzLAB5EtUQ5l9g28hNi8feduOF9N7kBTefewKQ==", + "license": "ISC", + "dependencies": { + "@rescript/react": "^0.10.3", + "@ryyppy/rescript-promise": "^2.1.0", + "bs-fetch": "^0.6.2", + "postcss": "^8.4.19", + "react-scripts": "^3.4.0" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@juspay-tech/react-hyper-js/node_modules/@rescript/react": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/@rescript/react/-/react-0.10.3.tgz", + "integrity": "sha512-Lf9rzrR3bQPKJjOK3PBRa/B3xrJ7CqQ1HYr9VHPVxJidarIJJFZBhj0Dg1uZURX+Wg/xiP0PHFxXmdj2bK8Vxw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.1", + "react-dom": ">=16.8.1" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "license": "MIT" + }, + "node_modules/@monaco-editor/loader": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz", + "integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==", + "license": "MIT", + "dependencies": { + "state-local": "^1.0.6" + }, + "peerDependencies": { + "monaco-editor": ">= 0.21.0 < 1" + } + }, + "node_modules/@monaco-editor/react": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz", + "integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==", + "license": "MIT", + "dependencies": { + "@monaco-editor/loader": "^1.4.0" + }, + "peerDependencies": { + "monaco-editor": ">= 0.25.0 < 1", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "license": "MIT", + "dependencies": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==", + "license": "BSD" + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "license": "MIT", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", + "license": "MIT", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@rescript/core": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@rescript/core/-/core-0.5.0.tgz", + "integrity": "sha512-Keqnpi+8VqyhCk/3aMwar8hJbNy2IsINAAfIFeQC65IIegCR0QXFDBpQxfVcmbbtoHq6HnW4B3RLm/9GCUJQhQ==", + "license": "MIT", + "peerDependencies": { + "rescript": "^10.1.0 || ^11.0.0-alpha.0 || next" + } + }, + "node_modules/@rescript/react": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@rescript/react/-/react-0.11.0.tgz", + "integrity": "sha512-RzoAO+3cJwXE2D7yodMo4tBO2EkeDYCN/I/Sj/yRweI3S1CY1ZBOF/GMcVtjeIurJJt7KMveqQXTaRrqoGZBBg==", + "license": "MIT", + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "license": "MIT", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "license": "MIT" + }, + "node_modules/@rrweb/types": { + "version": "2.0.0-alpha.11", + "resolved": "https://registry.npmjs.org/@rrweb/types/-/types-2.0.0-alpha.11.tgz", + "integrity": "sha512-8ccocIkT5J/bfNRQY85qR/g6p5YQFpgFO2cMt4+Ex7w31Lq0yqZBRaoYEsawQKpLrn5KOHkdn2UTUrna7WMQuA==", + "license": "MIT", + "dependencies": { + "rrweb-snapshot": "^2.0.0-alpha.11" + } + }, + "node_modules/@rrweb/types/node_modules/rrweb-snapshot": { + "version": "2.0.0-alpha.11", + "resolved": "https://registry.npmjs.org/rrweb-snapshot/-/rrweb-snapshot-2.0.0-alpha.11.tgz", + "integrity": "sha512-N0dzeJA2VhrlSOadkKwCVmV/DuNOwBH+Lhx89hAf9PQK4lCS8AP4AaylhqUdZOYHqwVjqsYel/uZ4hN79vuLhw==", + "license": "MIT" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.6.0.tgz", + "integrity": "sha512-2/U3GXA6YiPYQDLGwtGlnNgKYBSwCFIHf8Y9LUY5VATHdtbLlU0Y1R3QoBnT0aB4qv/BEiVVsj7LJXoQCgJ2vA==", + "license": "MIT" + }, + "node_modules/@ryyppy/rescript-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@ryyppy/rescript-promise/-/rescript-promise-2.1.0.tgz", + "integrity": "sha512-+dW6msBrj2Lr2hbEMX+HoWCvN89qVjl94RwbYWJgHQuj8jm/izdPC0YzxgpGoEFdeAEW2sOozoLcYHxT6o5WXQ==", + "license": "MIT" + }, + "node_modules/@sentry-internal/tracing": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.83.0.tgz", + "integrity": "sha512-fY1ZyOiQaaUTuoq5rO+G4/5Ov3n8BnfNK7ck97yAGxy3w+E1CwhVZkXHEvTngNfdYV3ArxvlrtPRb9STFRqXvQ==", + "license": "MIT", + "dependencies": { + "@sentry/core": "7.83.0", + "@sentry/types": "7.83.0", + "@sentry/utils": "7.83.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@sentry/browser": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-7.83.0.tgz", + "integrity": "sha512-8v7QEaC/fVAHn8pi59ZlJznr7ZdOQIgtz8DAOJeJsC2vHTAxQ9nVkoMkJWjTp/qaDHUjSe5ob6eqaChuhi6t2g==", + "license": "MIT", + "dependencies": { + "@sentry-internal/tracing": "7.83.0", + "@sentry/core": "7.83.0", + "@sentry/replay": "7.83.0", + "@sentry/types": "7.83.0", + "@sentry/utils": "7.83.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@sentry/core": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.83.0.tgz", + "integrity": "sha512-fglvpw8aWM6nWXzCjAVXIMTiTEAQ9G9b85IpDd/7L8fuwaFTPQAUSJXupF2PfbpQ3FUYbJt80dxshbERVJG8vQ==", + "license": "MIT", + "dependencies": { + "@sentry/types": "7.83.0", + "@sentry/utils": "7.83.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@sentry/react": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/react/-/react-7.83.0.tgz", + "integrity": "sha512-8GjKRXkZH+FkmO0LaGEVOrTC9g6Csn7VnTVIqtnfX2hVxbdHnqyjhHDgnCbmW7JRb0X6//QK4CuLCWu8uApLBw==", + "license": "MIT", + "dependencies": { + "@sentry/browser": "7.83.0", + "@sentry/types": "7.83.0", + "@sentry/utils": "7.83.0", + "hoist-non-react-statics": "^3.3.2" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": "15.x || 16.x || 17.x || 18.x" + } + }, + "node_modules/@sentry/replay": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/replay/-/replay-7.83.0.tgz", + "integrity": "sha512-B/rzmjmQ3ZWE68m4Z9rHIN3Fa/wkfVVTK+iSQtqErFflyMETMNwtWRNd6P9FhXnphEINZEbcn/UZF5w5xu/DfA==", + "license": "MIT", + "dependencies": { + "@sentry-internal/tracing": "7.83.0", + "@sentry/core": "7.83.0", + "@sentry/types": "7.83.0", + "@sentry/utils": "7.83.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@sentry/tracing": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-7.83.0.tgz", + "integrity": "sha512-0VqUOV/DTYdnkxMU28miybyxsRDjizFe+O5vBzShZNR2XfRHI70ozd8kI/Uni685QlCYirpcnS5evrEx1yLf+A==", + "license": "MIT", + "dependencies": { + "@sentry-internal/tracing": "7.83.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@sentry/types": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.83.0.tgz", + "integrity": "sha512-Bd+zJcy8p1VgCfQqUprmUaw0QPWUV+GmCt6zJRHrHTb2pwLahXv6sHJvQ8F8Va6S7Keuy088U+kHzUFGQLMZMQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@sentry/utils": { + "version": "7.83.0", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.83.0.tgz", + "integrity": "sha512-7SrZtgAn3pHFBqSSvV/VL0CWTBQ7VenJjok4+WGWd6/FhP3fKrEEd9rjVTUb2Pzq9WLJJYzdvxAG8RlggG+H4g==", + "license": "MIT", + "dependencies": { + "@sentry/types": "7.83.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "license": "Apache-2.0", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz", + "integrity": "sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz", + "integrity": "sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz", + "integrity": "sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz", + "integrity": "sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz", + "integrity": "sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz", + "integrity": "sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz", + "integrity": "sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz", + "integrity": "sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-4.3.3.tgz", + "integrity": "sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==", + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^4.2.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^4.2.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^4.2.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^4.2.0", + "@svgr/babel-plugin-svg-dynamic-title": "^4.3.3", + "@svgr/babel-plugin-svg-em-dimensions": "^4.2.0", + "@svgr/babel-plugin-transform-react-native-svg": "^4.2.0", + "@svgr/babel-plugin-transform-svg-component": "^4.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/core": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-4.3.3.tgz", + "integrity": "sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==", + "license": "MIT", + "dependencies": { + "@svgr/plugin-jsx": "^4.3.3", + "camelcase": "^5.3.1", + "cosmiconfig": "^5.2.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/core/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/core/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/core/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz", + "integrity": "sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.4.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz", + "integrity": "sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.4.5", + "@svgr/babel-preset": "^4.3.3", + "@svgr/hast-util-to-babel-ast": "^4.3.2", + "svg-parser": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz", + "integrity": "sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^5.2.1", + "merge-deep": "^3.0.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/webpack": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-4.3.3.tgz", + "integrity": "sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.4.5", + "@babel/plugin-transform-react-constant-elements": "^7.0.0", + "@babel/preset-env": "^7.4.5", + "@babel/preset-react": "^7.0.0", + "@svgr/core": "^4.3.3", + "@svgr/plugin-jsx": "^4.3.3", + "@svgr/plugin-svgo": "^4.3.1", + "loader-utils": "^1.2.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "license": "ISC", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.7", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", + "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "license": "MIT", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/css-font-loading-module": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz", + "integrity": "sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==", + "license": "MIT" + }, + "node_modules/@types/eslint": { + "version": "8.44.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", + "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/eslint-visitor-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "license": "MIT" + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.41", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", + "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "license": "MIT", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", + "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", + "license": "MIT", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "license": "MIT" + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "license": "MIT" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "license": "MIT" + }, + "node_modules/@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", + "license": "MIT" + }, + "node_modules/@types/mime": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.4.tgz", + "integrity": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==", + "license": "MIT" + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.10.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.0.tgz", + "integrity": "sha512-D0WfRmU9TQ8I9PFx9Yc+EBHw+vSpIub4IDvQivcp26PtPrdMGAq5SDcpXEo/epqa/DXotVpekHiLNTg3iaKXBQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.10.tgz", + "integrity": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", + "license": "MIT" + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.9.10", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", + "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==", + "license": "MIT" + }, + "node_modules/@types/raf": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz", + "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==", + "license": "MIT", + "optional": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.39", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.39.tgz", + "integrity": "sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.31", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.31.tgz", + "integrity": "sha512-merF9AH72krBUekQY6uObXnMsEo1xTeZy9NONNRnqSwvwVe3HtLeRvNIPaKmPDIOWPsSFE51rc2WGpPMqmuCWg==", + "license": "MIT", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/react/node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "license": "MIT" + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "license": "MIT" + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", + "license": "MIT" + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/send/node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "license": "MIT" + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "license": "MIT", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz", + "integrity": "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "2.34.0", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^2.0.0", + "eslint": "^5.0.0 || ^6.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz", + "integrity": "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "2.34.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz", + "integrity": "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==", + "license": "BSD-2-Clause", + "dependencies": { + "debug": "^4.1.1", + "eslint-visitor-keys": "^1.1.0", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz", + "integrity": "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==", + "license": "BSD-2-Clause", + "dependencies": { + "@types/eslint-visitor-keys": "^1.0.0", + "@typescript-eslint/experimental-utils": "2.34.0", + "@typescript-eslint/typescript-estree": "2.34.0", + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz", + "integrity": "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==", + "license": "BSD-2-Clause", + "dependencies": { + "debug": "^4.1.1", + "eslint-visitor-keys": "^1.1.0", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/parser/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "license": "ISC" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", + "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/wast-printer": "1.8.5" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", + "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", + "license": "ISC" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", + "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "mamacro": "^0.0.3" + } + }, + "node_modules/@webassemblyjs/helper-module-context/node_modules/@webassemblyjs/ast": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" + } + }, + "node_modules/@webassemblyjs/helper-module-context/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-edit/node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", + "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/floating-point-hex-parser": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-code-frame": "1.8.5", + "@webassemblyjs/helper-fsm": "1.8.5", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/ast": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" + } + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", + "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", + "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", + "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer/node_modules/@webassemblyjs/ast": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" + } + }, + "node_modules/@webassemblyjs/wast-printer/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "license": "MIT" + }, + "node_modules/@webpack-cli/configtest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", + "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", + "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", + "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xstate/fsm": { + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.5.tgz", + "integrity": "sha512-b5o1I6aLNeYlU/3CPlj/Z91ybk1gUsKT+5NAJI+2W4UjvS5KLG28K9v5UvNoFVjHV8PajVZ00RH3vnjyQO7ZAw==", + "license": "MIT" + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" + }, + "node_modules/@zeit/schemas": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.29.0.tgz", + "integrity": "sha512-g5QiLIfbg3pLuYUJPlisNKY+epQJTcMDsOnVNkscrDP1oi7vmJnzOANYJI/1pZcVJ6umUkBv3aFtlg1UvUHGzA==", + "dev": true, + "license": "MIT" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "license": "BSD-3-Clause" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "license": "MIT", + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "license": "MIT", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ajv/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==", + "license": "MIT" + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "license": "ISC", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "license": "MIT", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "license": "ISC" + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", + "integrity": "sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw==", + "license": "Apache-2.0", + "dependencies": { + "ast-types-flow": "0.0.7", + "commander": "^2.11.0" + } + }, + "node_modules/arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==", + "license": "MIT" + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-equal": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.2.tgz", + "integrity": "sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "license": "MIT" + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/assert": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", + "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", + "license": "MIT", + "dependencies": { + "object.assign": "^4.1.4", + "util": "^0.10.4" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "license": "MIT", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "license": "ISC" + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "license": "(MIT OR Apache-2.0)", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/autosize": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/autosize/-/autosize-6.0.1.tgz", + "integrity": "sha512-f86EjiUKE6Xvczc4ioP1JBlWG7FKrE13qe/DxBCpe8GCipCq2nFw73aO8QEBKHfSbYGDN5eB9jXWKen7tspDqQ==", + "license": "MIT" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "license": "MIT" + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "license": "Apache-2.0" + }, + "node_modules/babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", + "license": "MIT", + "dependencies": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", + "license": "MIT" + }, + "node_modules/babel-code-frame/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "license": "MIT", + "dependencies": { + "babylon": "^6.18.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", + "license": "MIT", + "dependencies": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-jest/node_modules/@jest/transform/node_modules/@babel/core": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.3.tgz", + "integrity": "sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.3", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.3", + "@babel/types": "^7.23.3", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-jest/node_modules/@jest/transform/node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/babel-jest/node_modules/@jest/transform/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-jest/node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-jest/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-jest/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/babel-jest/node_modules/babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest/node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/babel-jest/node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-jest/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-jest/node_modules/jest-util/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-jest/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-jest/node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-jest/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest/node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/babel-loader/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/babel-loader/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-emotion": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz", + "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/serialize": "^0.11.16", + "babel-plugin-macros": "^2.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^1.0.5", + "find-root": "^1.1.0", + "source-map": "^0.5.7" + } + }, + "node_modules/babel-plugin-emotion/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "license": "MIT", + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.3", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", + "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.3", + "core-js-compat": "^3.33.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.3" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==", + "license": "MIT" + }, + "node_modules/babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==", + "license": "MIT" + }, + "node_modules/babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==", + "license": "MIT", + "dependencies": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "license": "MIT" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/babel-preset-react-app/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "license": "MIT", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "hasInstallScript": true, + "license": "MIT" + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "license": "MIT" + }, + "node_modules/babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "license": "MIT", + "bin": { + "babylon": "bin/babylon.js" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "license": "MIT", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "license": "MIT" + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "license": "MIT", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "license": "MIT" + }, + "node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "license": "MIT", + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "license": "MIT", + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/bonjour/node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "license": "MIT", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/bonjour/node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "license": "MIT", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/boxen": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.0.tgz", + "integrity": "sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^7.0.0", + "chalk": "^5.0.1", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", + "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/boxen/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "license": "MIT", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "license": "MIT" + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "license": "BSD-2-Clause" + }, + "node_modules/browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "license": "MIT", + "dependencies": { + "resolve": "1.1.7" + } + }, + "node_modules/browser-resolve/node_modules/resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "license": "MIT" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "license": "MIT", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "license": "MIT", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "license": "MIT", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-rsa/node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "license": "MIT" + }, + "node_modules/browserify-sign": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", + "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "license": "ISC", + "dependencies": { + "bn.js": "^5.2.1", + "browserify-rsa": "^4.1.0", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.4", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.6", + "readable-stream": "^3.6.2", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/browserify-sign/node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "license": "MIT" + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "license": "MIT", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserify-zlib/node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/browserslist": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-fetch": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/bs-fetch/-/bs-fetch-0.6.2.tgz", + "integrity": "sha512-VXEjp8kY3vHPckaoy3d96Bx0KYjJAPLNISBwfpwMN26K6DtuZYwI2HKhx7zeHBajz1bRArfx7O8OOLcdtujMvg==", + "license": "MIT" + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/btoa": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", + "license": "(MIT OR Apache-2.0)", + "bin": { + "btoa": "bin/btoa.js" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "license": "MIT" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "license": "MIT" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", + "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", + "license": "ISC", + "dependencies": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cacache/node_modules/p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "license": "MIT", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "license": "MIT" + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001565", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001565.tgz", + "integrity": "sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/canvg": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz", + "integrity": "sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==", + "license": "MIT", + "optional": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "@types/raf": "^3.4.0", + "core-js": "^3.8.3", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "rgbcolor": "^1.0.1", + "stackblur-canvas": "^2.0.0", + "svg-pathdata": "^6.0.3" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "license": "ISC", + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "license": "Apache-2.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk-template": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz", + "integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/chalk-template?sponsor=1" + } + }, + "node_modules/chalk/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/chalk/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "license": "MIT" + }, + "node_modules/check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==", + "license": "MIT" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/chokidar/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/chokidar/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC" + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==", + "license": "MIT" + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clipboardy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz", + "integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arch": "^2.2.0", + "execa": "^5.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "license": "ISC", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clsx": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", + "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "license": "MIT", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "license": "MIT" + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "license": "MIT", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-convert/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "license": "ISC" + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==", + "license": "MIT", + "dependencies": { + "arity-n": "^1.0.4" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "license": "MIT" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "license": "MIT" + }, + "node_modules/contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "license": "ISC", + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-webpack-plugin": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/core-js": { + "version": "3.33.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.3.tgz", + "integrity": "sha512-lo0kOocUlLKmm6kv/FswQL8zbkH7mVsLJ/FULClOhv8WRVmKLVcs6XPNQAzstfeJTCHMyButEwG+z1kHxHoDZw==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.33.3", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.3.tgz", + "integrity": "sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.22.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.33.3", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.3.tgz", + "integrity": "sha512-taJ00IDOP+XYQEA2dAe4ESkmHt1fL8wzYDo3mRWQey8uO9UojlBFMneA65kMyxfYP7106c6LzWaq7/haDT6BCQ==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-emotion": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/create-emotion/-/create-emotion-10.0.27.tgz", + "integrity": "sha512-fIK73w82HPPn/RsAij7+Zt8eCE8SptcJ3WoRMfxMtjteYxud8GDTKKld7MYwAX2TVhrw29uR1N/bVGxeStHILg==", + "license": "MIT", + "dependencies": { + "@emotion/cache": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/create-jest/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/create-jest/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/create-jest/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/create-jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/create-jest/node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/create-jest/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/create-jest/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/create-jest/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/create-jest/node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/create-jest/node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/create-jest/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/create-jest/node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/create-jest/node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/create-jest/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/create-jest/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/create-jest/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/create-jest/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/create-jest/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/create-jest/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "license": "MIT", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "node_modules/css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-blank-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-blank-pseudo/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/css-blank-pseudo/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/css-box-model": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", + "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", + "license": "MIT", + "dependencies": { + "tiny-invariant": "^1.0.6" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "bin": { + "css-has-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-has-pseudo/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-has-pseudo/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/css-has-pseudo/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "license": "MIT", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "@swc/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "lightningcss": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true, + "license": "MIT" + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-prefers-color-scheme": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-prefers-color-scheme/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/css-prefers-color-scheme/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "license": "MIT" + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==", + "license": "CC0-1.0" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", + "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^6.0.1", + "lilconfig": "^2.1.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", + "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^4.0.0", + "postcss-calc": "^9.0.0", + "postcss-colormin": "^6.0.0", + "postcss-convert-values": "^6.0.0", + "postcss-discard-comments": "^6.0.0", + "postcss-discard-duplicates": "^6.0.0", + "postcss-discard-empty": "^6.0.0", + "postcss-discard-overridden": "^6.0.0", + "postcss-merge-longhand": "^6.0.0", + "postcss-merge-rules": "^6.0.1", + "postcss-minify-font-values": "^6.0.0", + "postcss-minify-gradients": "^6.0.0", + "postcss-minify-params": "^6.0.0", + "postcss-minify-selectors": "^6.0.0", + "postcss-normalize-charset": "^6.0.0", + "postcss-normalize-display-values": "^6.0.0", + "postcss-normalize-positions": "^6.0.0", + "postcss-normalize-repeat-style": "^6.0.0", + "postcss-normalize-string": "^6.0.0", + "postcss-normalize-timing-functions": "^6.0.0", + "postcss-normalize-unicode": "^6.0.0", + "postcss-normalize-url": "^6.0.0", + "postcss-normalize-whitespace": "^6.0.0", + "postcss-ordered-values": "^6.0.0", + "postcss-reduce-initial": "^6.0.0", + "postcss-reduce-transforms": "^6.0.0", + "postcss-svgo": "^6.0.0", + "postcss-unique-selectors": "^6.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default/node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/cssnano-util-raw-cache/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "license": "MIT", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "license": "MIT", + "dependencies": { + "cssom": "0.3.x" + } + }, + "node_modules/csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==", + "license": "MIT" + }, + "node_modules/csvjson-csv2json": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/csvjson-csv2json/-/csvjson-csv2json-5.0.6.tgz", + "integrity": "sha512-to9QlVI4yQFPzSqi6XZ97lULKs5m3K8hlE/UkbvKSw81FfDwgV9MUtSbHFJ4SRT4IA7UPkuW2EqsH/MWN5YRow==", + "license": "MIT" + }, + "node_modules/csvjson-json2csv": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/csvjson-json2csv/-/csvjson-json2csv-1.0.3.tgz", + "integrity": "sha512-Df9JFb0UonoEWy2Th+gLtawoGc6pHsLe3MTJdIDzOJo7Lvk3UM7vsBcO8MJc26VoswEF+ebLiy9lnfmLYefl3w==", + "license": "MIT" + }, + "node_modules/currency-codes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/currency-codes/-/currency-codes-2.1.0.tgz", + "integrity": "sha512-aASwFNP8VjZ0y0PWlSW7c9N/isYTLxK6OCbm7aVuQMk7dWO2zgup9KGiFQgeL9OGL5P/ulvCHcjQizmuEeZXtw==", + "license": "MIT", + "dependencies": { + "first-match": "~0.0.1", + "nub": "~0.0.0" + } + }, + "node_modules/cyclist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz", + "integrity": "sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==", + "license": "MIT" + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "license": "ISC", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "license": "BSD-2-Clause" + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "node_modules/dayjs": { + "version": "1.11.10", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", + "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", + "license": "MIT", + "dependencies": { + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.5.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "license": "MIT", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "license": "MIT", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "license": "MIT" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "license": "MIT", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "license": "Apache-2.0" + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "license": "MIT" + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "license": "MIT", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "license": "MIT", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "license": "MIT", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "license": "MIT", + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/dompurify": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz", + "integrity": "sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ==", + "license": "(MPL-2.0 OR Apache-2.0)", + "optional": true + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "license": "BSD-2-Clause" + }, + "node_modules/draft-js": { + "version": "0.11.7", + "resolved": "https://registry.npmjs.org/draft-js/-/draft-js-0.11.7.tgz", + "integrity": "sha512-ne7yFfN4sEL82QPQEn80xnADR8/Q6ALVworbC5UOSzOvjffmYfFsr3xSZtxbIirti14R7Y33EZC5rivpLgIbsg==", + "license": "MIT", + "dependencies": { + "fbjs": "^2.0.0", + "immutable": "~3.7.4", + "object-assign": "^4.1.1" + }, + "peerDependencies": { + "react": ">=0.14.0", + "react-dom": ">=0.14.0" + } + }, + "node_modules/draft-js-export-html": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/draft-js-export-html/-/draft-js-export-html-1.4.1.tgz", + "integrity": "sha512-G4VGBSalPowktIE4wp3rFbhjs+Ln9IZ2FhXeHjsZDSw0a2+h+BjKu5Enq+mcsyVb51RW740GBK8Xbf7Iic51tw==", + "license": "ISC", + "dependencies": { + "draft-js-utils": "^1.4.0" + }, + "peerDependencies": { + "draft-js": ">=0.10.0", + "immutable": "3.x.x" + } + }, + "node_modules/draft-js-utils": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/draft-js-utils/-/draft-js-utils-1.4.1.tgz", + "integrity": "sha512-xE81Y+z/muC5D5z9qWmKfxEW1XyXfsBzSbSBk2JRsoD0yzMGGHQm/0MtuqHl/EUDkaBJJLjJ2EACycoDMY/OOg==", + "license": "ISC", + "peerDependencies": { + "draft-js": ">=0.10.0", + "immutable": "3.x.x" + } + }, + "node_modules/draftjs-utils": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/draftjs-utils/-/draftjs-utils-0.10.2.tgz", + "integrity": "sha512-EstHqr3R3JVcilJrBaO/A+01GvwwKmC7e4TCjC7S94ZeMh4IVmf60OuQXtHHpwItK8C2JCi3iljgN5KHkJboUg==", + "license": "MIT", + "peerDependencies": { + "draft-js": "^0.11.x", + "immutable": "3.x.x || 4.x.x" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "license": "MIT" + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "license": "MIT", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.595", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.595.tgz", + "integrity": "sha512-+ozvXuamBhDOKvMNUQvecxfbyICmIAwS4GpLmR0bsiSBlGnLaOcs2Cj7J8XSbW+YEaN3Xl3ffgpm+srTUWFwFQ==", + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/emotion": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/emotion/-/emotion-10.0.27.tgz", + "integrity": "sha512-2xdDzdWWzue8R8lu4G76uWX5WhyQuzATon9LmNeCy/2BHVC6dsEpfhN1a0qhELgtDVdjyEA6J8Y/VlI5ZnaH0g==", + "license": "MIT", + "dependencies": { + "babel-plugin-emotion": "^10.0.27", + "create-emotion": "^10.0.27" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enhanced-resolve/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz", + "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "license": "MIT" + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "license": "MIT", + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", + "license": "MIT" + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "hasInstallScript": true, + "license": "ISC", + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "license": "MIT", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", + "license": "MIT" + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "license": "ISC", + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/esbuild-plugin-inline-image": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/esbuild-plugin-inline-image/-/esbuild-plugin-inline-image-0.0.9.tgz", + "integrity": "sha512-pw3ZgN2phh32Z7BpKrhRDtmI+iVCl+Gc0BLOT9croXg1MnMjRuN7aXhIQirhLeK39erkIwfFlhy6xieroBGc1Q==", + "license": "MIT" + }, + "node_modules/esbuild-postcss": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/esbuild-postcss/-/esbuild-postcss-0.0.4.tgz", + "integrity": "sha512-CKYibp+aCswskE+gBPnGZ0b9YyuY0n9w2dxyMaoLYEvGTwmjkRj5SV8l1zGJpw8KylqmcMTK0Gr349RnOLd+8A==", + "license": "MIT", + "dependencies": { + "postcss-load-config": "^3.1.0" + }, + "peerDependencies": { + "esbuild": "*", + "postcss": "^8.0.0" + } + }, + "node_modules/esbuild-postcss/node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "license": "MIT", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz", + "integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.3", + "@eslint/js": "8.54.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-config-react-app/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-react-app/node_modules/@typescript-eslint/eslint-plugin/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/eslint-config-react-app/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-config-react-app/node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-config-react-app/node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-react-app/node_modules/@typescript-eslint/parser/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/eslint-config-react-app/node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/eslint-config-react-app/node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "license": "MIT" + }, + "node_modules/eslint-config-react-app/node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/eslint-config-react-app/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-config-react-app/node_modules/debug/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/eslint-config-react-app/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/eslint-config-react-app/node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-config-react-app/node_modules/eslint-plugin-import": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", + "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-config-react-app/node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-config-react-app/node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-config-react-app/node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-config-react-app/node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-config-react-app/node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-config-react-app/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-config-react-app/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/eslint-config-react-app/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz", + "integrity": "sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.15" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": ">=6.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz", + "integrity": "sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.0.3", + "array.prototype.flat": "^1.2.1", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.2", + "eslint-module-utils": "^2.4.1", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.0", + "read-pkg-up": "^2.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "2.x - 6.x" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==", + "dependencies": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz", + "integrity": "sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.4.5", + "aria-query": "^3.0.0", + "array-includes": "^3.0.3", + "ast-types-flow": "^0.0.7", + "axobject-query": "^2.0.2", + "damerau-levenshtein": "^1.0.4", + "emoji-regex": "^7.0.2", + "has": "^1.0.3", + "jsx-ast-utils": "^2.2.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz", + "integrity": "sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.1", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.2.3", + "object.entries": "^1.1.1", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.15.1", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.2", + "xregexp": "^4.3.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz", + "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==", + "license": "MIT", + "engines": { + "node": ">=7" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "license": "MIT", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/eslint/node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "license": "MIT", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint/node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.2.tgz", + "integrity": "sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "license": "MIT", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", + "license": "MIT" + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "license": "MIT", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/expect/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/expect/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/express/node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "license": "ISC", + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "license": "ISC" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "license": "MIT", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/fast-glob/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/fast-glob/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "license": "MIT" + }, + "node_modules/fast-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^1.3.2" + } + }, + "node_modules/fast-url-parser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbjs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-2.0.0.tgz", + "integrity": "sha512-8XA8ny9ifxrAWlyhAbexXcs3rRMtxWcs3M0lctLfB49jRDHiaxj+Mo0XxbwE7nKZYzgCFoq64FS+WFd4IycPPQ==", + "license": "MIT", + "dependencies": { + "core-js": "^3.6.4", + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "license": "MIT" + }, + "node_modules/fbjs/node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/fbjs/node_modules/ua-parser-js": { + "version": "0.7.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.37.tgz", + "integrity": "sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/fflate": { + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", + "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==", + "license": "MIT" + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "license": "ISC" + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "license": "MIT", + "optional": true + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", + "integrity": "sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/final-form": { + "version": "4.20.10", + "resolved": "https://registry.npmjs.org/final-form/-/final-form-4.20.10.tgz", + "integrity": "sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/final-form" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "license": "MIT" + }, + "node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/firebase": { + "version": "9.12.1", + "resolved": "https://registry.npmjs.org/firebase/-/firebase-9.12.1.tgz", + "integrity": "sha512-sBp4rvkCC7TUnGeneRNs6GVcajO+iSXmYjxqXN4FsrBzldJ5/AOnDXf4bi9OUZtQSl+EHDgUWShBieht15ijgQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/analytics": "0.8.3", + "@firebase/analytics-compat": "0.1.16", + "@firebase/app": "0.8.2", + "@firebase/app-check": "0.5.15", + "@firebase/app-check-compat": "0.2.15", + "@firebase/app-compat": "0.1.37", + "@firebase/app-types": "0.8.0", + "@firebase/auth": "0.20.10", + "@firebase/auth-compat": "0.2.23", + "@firebase/database": "0.13.9", + "@firebase/database-compat": "0.2.9", + "@firebase/firestore": "3.7.1", + "@firebase/firestore-compat": "0.2.1", + "@firebase/functions": "0.8.7", + "@firebase/functions-compat": "0.2.7", + "@firebase/installations": "0.5.15", + "@firebase/installations-compat": "0.1.15", + "@firebase/messaging": "0.9.19", + "@firebase/messaging-compat": "0.1.19", + "@firebase/performance": "0.5.15", + "@firebase/performance-compat": "0.1.15", + "@firebase/remote-config": "0.3.14", + "@firebase/remote-config-compat": "0.1.15", + "@firebase/storage": "0.9.12", + "@firebase/storage-compat": "0.1.20", + "@firebase/util": "1.7.2" + } + }, + "node_modules/first-match": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/first-match/-/first-match-0.0.1.tgz", + "integrity": "sha512-VvKbnaxrC0polTFDC+teKPTdl2mn6B/KUW+WB3C9RzKDeNwbzfLdnUz3FxC+tnjvus6bI0jWrWicQyVIPdS37A==", + "license": "MIT" + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "license": "ISC" + }, + "node_modules/flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "license": "MIT" + }, + "node_modules/flow-bin": { + "version": "0.118.0", + "resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.118.0.tgz", + "integrity": "sha512-jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==", + "license": "MIT", + "bin": { + "flow": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz", + "integrity": "sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==", + "license": "MIT", + "dependencies": { + "babel-code-frame": "^6.22.0", + "chalk": "^2.4.1", + "chokidar": "^3.3.0", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "license": "MIT", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/framer-motion": { + "version": "10.16.5", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.16.5.tgz", + "integrity": "sha512-GEzVjOYP2MIpV9bT/GbhcsBNoImG3/2X3O/xVNWmktkv9MdJ7P/44zELm/7Fjb+O3v39SmKFnoDQB32giThzpg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + }, + "optionalDependencies": { + "@emotion/is-prop-valid": "^0.8.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "license": "Unlicense" + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "license": "MIT" + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "license": "ISC" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "license": "MIT" + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", + "license": "MIT" + }, + "node_modules/gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gzip-size/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "license": "MIT" + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "license": "(Apache-2.0 OR MPL-1.1)" + }, + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "license": "MIT" + }, + "node_modules/highcharts": { + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/highcharts/-/highcharts-9.3.3.tgz", + "integrity": "sha512-QeOvm6cifeZYYdTLm4IxZsXcOE9c4xqfs0z0OJJ0z7hhA9WG0rmcVAyuIp5HBl/znjA/ayYHmpYjBYD/9PG4Fg==", + "license": "https://www.highcharts.com/license" + }, + "node_modules/highcharts-react-official": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/highcharts-react-official/-/highcharts-react-official-3.2.1.tgz", + "integrity": "sha512-hyQTX7ezCxl7JqumaWiGsroGWalzh24GedQIgO3vJbkGOZ6ySRAltIYjfxhrq4HszJOySZegotEF7v+haQ75UA==", + "license": "MIT", + "peerDependencies": { + "highcharts": ">=6.0.0", + "react": ">=16.8.0" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "license": "MIT", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "license": "ISC" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==", + "license": "MIT" + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==", + "license": "MIT" + }, + "node_modules/html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^1.0.1" + } + }, + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "license": "MIT" + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-to-draftjs": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/html-to-draftjs/-/html-to-draftjs-1.5.0.tgz", + "integrity": "sha512-kggLXBNciKDwKf+KYsuE+V5gw4dZ7nHyGMX9m0wy7urzWjKGWyNFetmArRLvRV0VrxKN70WylFsJvMTJx02OBQ==", + "license": "MIT", + "peerDependencies": { + "draft-js": "^0.10.x || ^0.11.x", + "immutable": "3.x.x || 4.x.x" + } + }, + "node_modules/html-to-image": { + "version": "1.11.11", + "resolved": "https://registry.npmjs.org/html-to-image/-/html-to-image-1.11.11.tgz", + "integrity": "sha512-9gux8QhvjRO/erSnDPv28noDZcPZmYE7e1vFsBLKLlRlKDSqNJYebj6Qz1TGd5lsRV+X+xYyjCKjuZdABinWjA==", + "license": "MIT" + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz", + "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", + "license": "MIT", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-webpack-plugin/node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin/node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/html-webpack-plugin/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/html-webpack-plugin/node_modules/terser": { + "version": "5.24.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", + "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-webpack-plugin/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "license": "MIT", + "dependencies": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/html2pdf.js": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/html2pdf.js/-/html2pdf.js-0.10.1.tgz", + "integrity": "sha512-3onwwhOWsZfNjIZwV6YIJ6FVhXk+X9YxHSqzeS6hup+1dGi2DHI+zZYUJ+iFnvtaYcjlhyrILL1fvRCUOa8Fcg==", + "license": "MIT", + "dependencies": { + "es6-promise": "^4.2.5", + "html2canvas": "^1.0.0", + "jspdf": "^2.3.1" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "license": "MIT" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "license": "MIT" + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "license": "MIT", + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.0.1.tgz", + "integrity": "sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==", + "license": "ISC" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "license": "MIT", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "license": "MIT" + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "license": "MIT" + }, + "node_modules/immer": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz", + "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==", + "license": "MIT" + }, + "node_modules/immutable": { + "version": "3.7.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", + "integrity": "sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==", + "license": "MIT", + "dependencies": { + "import-from": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==", + "license": "MIT", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "license": "MIT", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", + "license": "MIT" + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "license": "ISC" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "license": "MIT", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-ip/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/internal-ip/node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-ip/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-ip/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-ip/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/internal-ip/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/internal-ip/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/internal-ip/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/internal-ip/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/internal-ip/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/intro.js": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/intro.js/-/intro.js-5.1.0.tgz", + "integrity": "sha512-zwWl/duTh00eeNcZRU4o4/xxloNYPFKs4n4lMRDNx59jZr+qRI0jSOnzqYMOuVftD4beGrmxBHz4k8qp9/dCMA==", + "license": "AGPL-3.0" + }, + "node_modules/intro.js-react": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/intro.js-react/-/intro.js-react-0.5.0.tgz", + "integrity": "sha512-tr9uhoy/aRgcdZxpqYC/TPSVlJ/Gt9Kx4mpI7clCdFa7c3SG8reJugIa1U5XnWlDLRNMc+e8egb8Jf186yvc1A==", + "license": "MIT", + "peerDependencies": { + "intro.js": ">=2.5.0", + "react": ">=0.14.0" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "license": "MIT" + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "license": "MIT", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-ci/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", + "license": "MIT", + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "license": "MIT" + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "license": "MIT", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "license": "MIT", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-port-reachable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-port-reachable/-/is-port-reachable-4.0.0.tgz", + "integrity": "sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "license": "ISC" + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "license": "MIT" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "license": "MIT" + }, + "node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "license": "MIT" + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-changed-files/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-circus/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-circus/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-circus/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-circus/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest-cli/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/jest-cli/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/jest-cli/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-cli/node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/jest-cli/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/jest-cli/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-cli/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/jest-cli/node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-cli/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-cli/node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-cli/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-cli/node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-cli/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-cli/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-cli/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-cli/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-cli/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-config": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-config/node_modules/acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jest-config/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-config/node_modules/jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/node_modules/jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/node_modules/jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/jest-config/node_modules/parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "license": "MIT" + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config/node_modules/sax": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", + "license": "ISC" + }, + "node_modules/jest-config/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-config/node_modules/whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/jest-config/node_modules/ws": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-diff/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-diff/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-diff/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", + "license": "MIT", + "dependencies": { + "detect-newline": "^2.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-jsdom-fourteen": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-1.0.1.tgz", + "integrity": "sha512-DojMX1sY+at5Ep+O9yME34CdidZnO3/zfPh8UW+918C5fIZET5vCjfkegixmsi7AtdYfkr4bPlIzmWnlvQkP7Q==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^24.3.0", + "@jest/fake-timers": "^24.3.0", + "@jest/types": "^24.3.0", + "jest-mock": "^24.0.0", + "jest-util": "^24.0.0", + "jsdom": "^14.1.0" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/jsdom": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-14.1.0.tgz", + "integrity": "sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.0", + "acorn": "^6.0.4", + "acorn-globals": "^4.3.0", + "array-equal": "^1.0.0", + "cssom": "^0.3.4", + "cssstyle": "^1.1.1", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.0", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.1.3", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.5", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.5.0", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^6.1.2", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/parse5": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", + "license": "MIT" + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/saxes": { + "version": "3.1.11", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", + "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", + "license": "ISC", + "dependencies": { + "xmlchars": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-environment-jsdom-fourteen/node_modules/w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", + "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "license": "MIT", + "dependencies": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/jest-environment-jsdom/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-environment-node/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-haste-map/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-haste-map/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-haste-map/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-haste-map/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-haste-map/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-haste-map/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "license": "MIT" + }, + "node_modules/jest-jasmine2/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-jasmine2/node_modules/expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-each": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-jasmine2/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-jasmine2/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-jasmine2/node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-jasmine2/node_modules/throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==", + "license": "MIT" + }, + "node_modules/jest-jasmine2/node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", + "license": "MIT", + "dependencies": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-leak-detector/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-leak-detector/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest-message-util/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-message-util/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-message-util/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-mock/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-mock/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-runner/node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "license": "MIT" + }, + "node_modules/jest-runner/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-runner/node_modules/expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-runner/node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/jest-runner/node_modules/jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-runner/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-runner/node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-runner/node_modules/throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==", + "license": "MIT" + }, + "node_modules/jest-runner/node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest-runtime/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/jest-runtime/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-runtime/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/jest-runtime/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-runtime/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-runtime/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-runtime/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-runtime/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-runtime/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-snapshot/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-snapshot/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-snapshot/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-validate/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-validate/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-validate/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.4.2.tgz", + "integrity": "sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^2.4.1", + "jest-regex-util": "^24.9.0", + "jest-watcher": "^24.3.0", + "slash": "^3.0.0", + "string-length": "^3.1.0", + "strip-ansi": "^5.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz", + "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", + "license": "MIT", + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-watcher/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-watcher/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-watcher/node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-watcher/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-watcher/node_modules/string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==", + "license": "MIT", + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/jest/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jose": { + "version": "4.15.4", + "resolved": "https://registry.npmjs.org/jose/-/jose-4.15.4.tgz", + "integrity": "sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "node_modules/js-datepicker": { + "version": "5.18.2", + "resolved": "https://registry.npmjs.org/js-datepicker/-/js-datepicker-5.18.2.tgz", + "integrity": "sha512-lBh5tIwb1ewDVlNHuwczoLiMhTFWnGYuHSA7ONAPKyMeofIFZDFGeOZ71UTY/Mk2evJJt+L66ec/RiXUy8XzEg==", + "license": "MIT" + }, + "node_modules/js-sha256": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz", + "integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "license": "MIT" + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/jsdom/node_modules/acorn-walk": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", + "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/jsdom/node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsdom/node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/jsdom/node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/jsdom/node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdom/node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/jsdom/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/ws": { + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "license": "MIT" + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/json-stable-stringify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.0.tgz", + "integrity": "sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "license": "MIT" + }, + "node_modules/json-stable-stringify/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "license": "ISC" + }, + "node_modules/json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "license": "Public Domain", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "license": "MIT", + "dependencies": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsonpath/node_modules/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==", + "license": "MIT" + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jspdf": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-2.5.1.tgz", + "integrity": "sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.14.0", + "atob": "^2.1.2", + "btoa": "^1.2.1", + "fflate": "^0.4.8" + }, + "optionalDependencies": { + "canvg": "^3.0.6", + "core-js": "^3.6.0", + "dompurify": "^2.2.0", + "html2canvas": "^1.0.0-rc.5" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", + "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.1", + "object.assign": "^4.1.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "license": "(MIT OR GPL-3.0-or-later)", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "node_modules/jszip/node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "license": "ISC" + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/konva": { + "version": "8.1.4", + "resolved": "https://registry.npmjs.org/konva/-/konva-8.1.4.tgz", + "integrity": "sha512-w75KG4Suu4C7JSNqi8xJb9Dkf4Q6de48mnDvLQ5NgFJzCAFJIh9eLTSJl6G9HMjej4qoK+kWC39PSkkl18br6Q==", + "funding": [ + { + "type": "patreon", + "url": "https://www.patreon.com/lavrton" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/konva" + }, + { + "type": "github", + "url": "https://github.com/sponsors/lavrton" + } + ], + "license": "MIT" + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "license": "WTFPL" + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/levenary": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz", + "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==", + "license": "MIT", + "dependencies": { + "leven": "^3.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "license": "MIT", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/linkify-it": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz", + "integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==", + "license": "MIT", + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-fs-cache": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz", + "integrity": "sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + } + }, + "node_modules/loader-fs-cache/node_modules/find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", + "integrity": "sha512-Z9XSBoNE7xQiV6MSgPuCfyMokH2K7JdpRkOYE1+mu3d4BFJtx3GW+f6Bo4q8IX6rlf5MYbLBKW0pjl2cWdkm2A==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-fs-cache/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "license": "MIT", + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-fs-cache/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "license": "MIT", + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-fs-cache/node_modules/pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha512-c6pv3OE78mcZ92ckebVDqg0aWSoKhOTbwCV6qbCWMk546mAL9pZln0+QsN/yQ7fkucd4+yJPLrCBXNt8Ruk+Eg==", + "license": "MIT", + "dependencies": { + "find-up": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "license": "MIT" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "license": "MIT" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "license": "MIT" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "license": "MIT" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "license": "MIT", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "license": "MIT", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "license": "MIT" + }, + "node_modules/loglevel": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", + "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "license": "Apache-2.0" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lottie-react": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/lottie-react/-/lottie-react-2.4.0.tgz", + "integrity": "sha512-pDJGj+AQlnlyHvOHFK7vLdsDcvbuqvwPZdMlJ360wrzGFurXeKPr8SiRCjLf3LrNYKANQtSsh5dz9UYQHuqx4w==", + "license": "MIT", + "dependencies": { + "lottie-web": "^5.10.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/lottie-web": { + "version": "5.12.2", + "resolved": "https://registry.npmjs.org/lottie-web/-/lottie-web-5.12.2.tgz", + "integrity": "sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==", + "license": "MIT" + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lru-cache/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-cancellable-promise": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/make-cancellable-promise/-/make-cancellable-promise-1.3.2.tgz", + "integrity": "sha512-GCXh3bq/WuMbS+Ky4JBPW1hYTOU+znU+Q5m9Pu+pI8EoUqIHk9+tviOKC6/qhHh8C4/As3tzJ69IF32kdz85ww==", + "license": "MIT", + "funding": { + "url": "https://github.com/wojtekmaj/make-cancellable-promise?sponsor=1" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/make-event-props": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/make-event-props/-/make-event-props-1.6.2.tgz", + "integrity": "sha512-iDwf7mA03WPiR8QxvcVHmVWEPfMY1RZXerDVNCRYW7dUr2ppH3J58Rwb39/WG39yTZdRSxr3x+2v22tvI0VEvA==", + "license": "MIT", + "funding": { + "url": "https://github.com/wojtekmaj/make-event-props?sponsor=1" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/mamacro": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", + "license": "MIT" + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "license": "MIT", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/material-colors": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz", + "integrity": "sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==", + "license": "ISC" + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.6.0.tgz", + "integrity": "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==", + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "license": "MIT", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/merge-deep": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz", + "integrity": "sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "clone-deep": "^0.2.4", + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-deep/node_modules/clone-deep": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", + "integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==", + "license": "MIT", + "dependencies": { + "for-own": "^0.1.3", + "is-plain-object": "^2.0.1", + "kind-of": "^3.0.2", + "lazy-cache": "^1.0.3", + "shallow-clone": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-deep/node_modules/shallow-clone": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", + "integrity": "sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.1", + "kind-of": "^2.0.1", + "lazy-cache": "^0.2.3", + "mixin-object": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-deep/node_modules/shallow-clone/node_modules/kind-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-deep/node_modules/shallow-clone/node_modules/lazy-cache": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", + "integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "license": "MIT" + }, + "node_modules/merge-refs": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/merge-refs/-/merge-refs-1.2.2.tgz", + "integrity": "sha512-RwcT7GsQR3KbuLw1rRuodq4Nt547BKEBkliZ0qqsrpyNne9bGTFtsFIsIpx82huWhcl3kOlOlH4H0xkPk/DqVw==", + "license": "MIT", + "funding": { + "url": "https://github.com/wojtekmaj/merge-refs?sponsor=1" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==", + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "license": "BSD-2-Clause", + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "license": "MIT" + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-object": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", + "integrity": "sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==", + "license": "MIT", + "dependencies": { + "for-in": "^0.1.3", + "is-extendable": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-object/node_modules/for-in": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", + "integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixpanel-browser": { + "version": "2.48.1", + "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.48.1.tgz", + "integrity": "sha512-vXTuUzZMg+ht7sRqyjtc3dUDy/81Z/H6FLFgFkUZJqKFaAqcx1JSXmOdY/2kmsxCkUdy5JN5zW9m9TMCk+rxGQ==", + "license": "Apache-2.0" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/monaco-editor": { + "version": "0.34.1", + "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.34.1.tgz", + "integrity": "sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==", + "license": "MIT" + }, + "node_modules/monaco-editor-webpack-plugin": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-7.1.0.tgz", + "integrity": "sha512-ZjnGINHN963JQkFqjjcBtn1XBtUATDZBMgNQhDQwd78w2ukRhFXAPNgWuacaQiDZsUr4h1rWv5Mv6eriKuOSzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.2" + }, + "peerDependencies": { + "monaco-editor": ">= 0.31.0", + "webpack": "^4.5.0 || 5.x" + } + }, + "node_modules/monaco-editor-webpack-plugin/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "license": "ISC", + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "license": "MIT" + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "license": "ISC" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "license": "MIT", + "optional": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "license": "MIT" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "license": "ISC" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "license": "MIT", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "license": "MIT" + }, + "node_modules/node-notifier": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.5.tgz", + "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", + "license": "MIT", + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + } + }, + "node_modules/node-notifier/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "license": "MIT" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==", + "license": "MIT" + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nub": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/nub/-/nub-0.0.0.tgz", + "integrity": "sha512-dK0Ss9C34R/vV0FfYJXuqDAqHlaW9fvWVufq9MmGF2umCuDbd5GRfRD9fpi/LiM0l4ZXf8IBB+RYmZExqCrf0w==", + "license": "MIT/X11" + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", + "license": "MIT" + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "license": "MIT" + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "license": "MIT", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", + "license": "MIT", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "license": "MIT", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "license": "MIT", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "license": "MIT" + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA==", + "license": "MIT", + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz", + "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==", + "license": "(MIT AND Zlib)" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "license": "MIT", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "license": "ISC", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "license": "MIT" + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "license": "(WTFPL OR MIT)" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path2d-polyfill": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path2d-polyfill/-/path2d-polyfill-2.0.1.tgz", + "integrity": "sha512-ad/3bsalbbWhmBo0D6FZ4RNMwsLsPpL6gnvhuSaU5Vm7b06Kr5ubSltQQ0T7YKsiJQO+g22zJ4dJKNTXIyOXtA==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "license": "MIT", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/pdfjs-dist": { + "version": "3.11.174", + "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-3.11.174.tgz", + "integrity": "sha512-TdTZPf1trZ8/UFu5Cx/GXB7GZM30LT+wWUNfsi6Bq8ePLnb+woNKtDymI2mxZYBpMbonNFqKmiz684DIfnd8dA==", + "license": "Apache-2.0", + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "canvas": "^2.11.2", + "path2d-polyfill": "^2.0.1" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "license": "MIT", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "license": "MIT" + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "license": "MIT", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pnp-webpack-plugin/node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "license": "MIT", + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "node_modules/postcss-attribute-case-insensitive/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-attribute-case-insensitive/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "browserslist": "^4" + } + }, + "node_modules/postcss-browser-comments/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-browser-comments/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-functional-notation/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-color-functional-notation/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "license": "ISC", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-gray/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-color-gray/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-hex-alpha/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-color-hex-alpha/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-mod-function/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-color-mod-function/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-rebeccapurple/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-color-rebeccapurple/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-colormin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", + "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", + "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-media/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-custom-media/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-properties/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-custom-properties/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-custom-selectors/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-custom-selectors/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-dir-pseudo-class/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-discard-comments": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", + "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", + "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", + "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", + "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-double-position-gradients/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-double-position-gradients/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-env-function/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-env-function/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz", + "integrity": "sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + } + }, + "node_modules/postcss-flexbugs-fixes/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-flexbugs-fixes/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-visible/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-focus-visible/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-within/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-focus-within/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-font-variant/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-font-variant/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-gap-properties/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-gap-properties/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-image-set-function/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-image-set-function/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", + "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-initial/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-initial/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-lab-function/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-lab-function/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "license": "ISC", + "engines": { + "node": ">= 14" + } + }, + "node_modules/postcss-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", + "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/postcss-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-logical/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-logical/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-media-minmax/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-media-minmax/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", + "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", + "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules/node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", + "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", + "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients/node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", + "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params/node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", + "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-nesting/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-nesting/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", + "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", + "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", + "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", + "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", + "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", + "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", + "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", + "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", + "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize/node_modules/@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==", + "license": "CC0-1.0" + }, + "node_modules/postcss-normalize/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-normalize/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize/node_modules/sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==", + "license": "CC0-1.0" + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", + "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values/node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-overflow-shorthand/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-overflow-shorthand/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-page-break/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-page-break/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-place/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-place/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-preset-env": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.2.tgz", + "integrity": "sha512-nz+VyUUEB9uAxo5VxI0Gq4E31UjHCG3cUiZW3PzRn7KqkGlAEWuYgb/VLbAitEq7Ooubfix+H2JCm9v+C6hJuw==", + "dev": true, + "license": "CC0-1.0", + "dependencies": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-preset-env/node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/postcss-preset-env/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true, + "license": "ISC" + }, + "node_modules/postcss-preset-env/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", + "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", + "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-replace-overflow-wrap/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-replace-overflow-wrap/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-safe-parser": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz", + "integrity": "sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-safe-parser/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-safe-parser/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-matches/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-selector-matches/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-not/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/postcss-selector-not/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", + "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.0.2" + }, + "engines": { + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/postcss-svgo/node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/postcss-svgo/node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/postcss-svgo/node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/postcss-svgo/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.4.tgz", + "integrity": "sha512-T+Xul3JwuJ6VGXKo/p2ndqx1ibxNKnLTvRc1ZTWKCfyKS/GgNjRZcYsK84fxTsy/izr91g/Rwx6fGnVgaFSI5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.2.1", + "css-what": "^6.1.0", + "csso": "5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", + "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "license": "MIT", + "dependencies": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=6.14.4" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prettier": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", + "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "license": "ISC" + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/protobufjs": { + "version": "6.11.4", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz", + "integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "license": "MIT" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "license": "MIT", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qr.js": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/qr.js/-/qr.js-0.0.0.tgz", + "integrity": "sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==", + "license": "MIT" + }, + "node_modules/qrcode-generator": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/qrcode-generator/-/qrcode-generator-1.4.4.tgz", + "integrity": "sha512-HM7yY8O2ilqhmULxGMpcHSF1EhJJ9yBj8gvDEuZ6M+KGJ0YY2hKpnXvRD+hZPLrDVck3ExIGhmPtSdcjC+guuw==", + "license": "MIT" + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "license": "MIT", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/raf-schd": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", + "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==", + "license": "MIT" + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "license": "MIT", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-1.0.6.tgz", + "integrity": "sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==", + "license": "MIT", + "dependencies": { + "core-js": "^3.5.0", + "object-assign": "^4.1.1", + "promise": "^8.0.3", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.3", + "whatwg-fetch": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-beautiful-dnd": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", + "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", + "license": "Apache-2.0", + "dependencies": { + "@babel/runtime": "^7.9.2", + "css-box-model": "^1.2.0", + "memoize-one": "^5.1.1", + "raf-schd": "^4.0.2", + "react-redux": "^7.2.0", + "redux": "^4.0.4", + "use-memo-one": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.5 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-circular-progressbar": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/react-circular-progressbar/-/react-circular-progressbar-2.1.0.tgz", + "integrity": "sha512-xp4THTrod4aLpGy68FX/k1Q3nzrfHUjUe5v6FsdwXBl3YVMwgeXYQKDrku7n/D6qsJA9CuunarAboC2xCiKs1g==", + "license": "MIT", + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-color": { + "version": "2.19.3", + "resolved": "https://registry.npmjs.org/react-color/-/react-color-2.19.3.tgz", + "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==", + "license": "MIT", + "dependencies": { + "@icons/material": "^0.2.4", + "lodash": "^4.17.15", + "lodash-es": "^4.17.15", + "material-colors": "^1.2.1", + "prop-types": "^15.5.10", + "reactcss": "^1.2.0", + "tinycolor2": "^1.4.1" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-dev-utils": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz", + "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "7.8.3", + "address": "1.1.2", + "browserslist": "4.10.0", + "chalk": "2.4.2", + "cross-spawn": "7.0.1", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.0.1", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "3.1.1", + "global-modules": "2.0.0", + "globby": "8.0.2", + "gzip-size": "5.1.1", + "immer": "1.10.0", + "inquirer": "7.0.4", + "is-root": "2.1.0", + "loader-utils": "1.2.3", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "react-error-overlay": "^6.0.7", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=8.10" + } + }, + "node_modules/react-dev-utils/node_modules/@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.8.3" + } + }, + "node_modules/react-dev-utils/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-dev-utils/node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "license": "MIT", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/react-dev-utils/node_modules/browserslist": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz", + "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==", + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001035", + "electron-to-chromium": "^1.3.378", + "node-releases": "^1.1.52", + "pkg-up": "^3.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-dev-utils/node_modules/cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", + "license": "ISC" + }, + "node_modules/react-dev-utils/node_modules/cross-spawn": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz", + "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-dev-utils/node_modules/dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "license": "MIT", + "dependencies": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "license": "MIT", + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "license": "ISC", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "license": "MIT", + "dependencies": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "license": "MIT" + }, + "node_modules/react-dev-utils/node_modules/inquirer": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz", + "integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^2.4.2", + "cli-cursor": "^3.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.15", + "mute-stream": "0.0.8", + "run-async": "^2.2.0", + "rxjs": "^6.5.3", + "string-width": "^4.1.0", + "strip-ansi": "^5.1.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/inquirer/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-dev-utils/node_modules/inquirer/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-dev-utils/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==", + "license": "MIT" + }, + "node_modules/react-dev-utils/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "license": "MIT", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", + "license": "MIT" + }, + "node_modules/react-dev-utils/node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-diff-viewer": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/react-diff-viewer/-/react-diff-viewer-3.1.1.tgz", + "integrity": "sha512-rmvwNdcClp6ZWdS11m1m01UnBA4OwYaLG/li0dB781e/bQEzsGyj+qewVd6W5ztBwseQ72pO7nwaCcq5jnlzcw==", + "license": "MIT", + "dependencies": { + "classnames": "^2.2.6", + "create-emotion": "^10.0.14", + "diff": "^4.0.1", + "emotion": "^10.0.14", + "memoize-one": "^5.0.4", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">= 8" + }, + "peerDependencies": { + "react": "^15.3.0 || ^16.0.0", + "react-dom": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-draft-wysiwyg": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/react-draft-wysiwyg/-/react-draft-wysiwyg-1.15.0.tgz", + "integrity": "sha512-p1cYZcWc6/ALFBVksbFoCM3b29fGQDlZLIMrXng0TU/UElxIOF2/AWWo4L5auIYVhmqKTZ0NkNjnXOzGGuxyeA==", + "license": "MIT", + "dependencies": { + "classnames": "^2.2.6", + "draftjs-utils": "^0.10.2", + "html-to-draftjs": "^1.5.0", + "linkify-it": "^2.2.0", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "draft-js": "^0.10.x || ^0.11.x", + "immutable": "3.x.x || 4.x.x", + "react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x.x || ^16.0.0-0 || ^16.x.x || ^17.x.x || ^18.x.x", + "react-dom": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x.x || ^16.0.0-0 || ^16.x.x || ^17.x.x || ^18.x.x" + } + }, + "node_modules/react-easy-swipe": { + "version": "0.0.23", + "resolved": "https://registry.npmjs.org/react-easy-swipe/-/react-easy-swipe-0.0.23.tgz", + "integrity": "sha512-bOSwpZQVPbckL3aN2HdcvYD0j+mgAgISS+AGHmdhpPoNh3Mh3l3NfNQ0mVHuWGyBBvH+VIrU/6GbS1XoST9Pxw==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.5.8" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==", + "license": "MIT" + }, + "node_modules/react-final-form": { + "version": "6.5.9", + "resolved": "https://registry.npmjs.org/react-final-form/-/react-final-form-6.5.9.tgz", + "integrity": "sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.15.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/final-form" + }, + "peerDependencies": { + "final-form": "^4.20.4", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-flame-graph": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/react-flame-graph/-/react-flame-graph-1.4.0.tgz", + "integrity": "sha512-DaCK9ZX+xK0mNca72kUE5cu6T8hGe/KLsefQWf+eT9sVt+0WP1dVxZCGD8Svfn2KrZB9Mv011Intg/yG2YWSxA==", + "license": "MIT", + "dependencies": { + "flow-bin": "^0.118.0", + "memoize-one": "^3.1.1", + "react-window": "^1" + }, + "engines": { + "node": ">8.0.0" + }, + "peerDependencies": { + "react": "^15.0.0 || ^16.0.0", + "react-dom": "^15.0.0 || ^16.0.0" + } + }, + "node_modules/react-flame-graph/node_modules/memoize-one": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-3.1.1.tgz", + "integrity": "sha512-YqVh744GsMlZu6xkhGslPSqSurOv6P+kLN2J3ysBZfagLcL5FdRK/0UpgLoL8hwjjEvvAVkjJZyFP+1T6p1vgA==", + "license": "MIT" + }, + "node_modules/react-ga4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/react-ga4/-/react-ga4-2.1.0.tgz", + "integrity": "sha512-ZKS7PGNFqqMd3PJ6+C2Jtz/o1iU9ggiy8Y8nUeksgVuvNISbmrQtJiZNvC/TjDsqD0QlU5Wkgs7i+w9+OjHhhQ==", + "license": "MIT" + }, + "node_modules/react-google-drive-picker": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/react-google-drive-picker/-/react-google-drive-picker-1.2.2.tgz", + "integrity": "sha512-x30mYkt9MIwPCgL+fyK75HZ8E6G5L/WGW0bfMG6kbD4NG2kmdlmV9oH5lPa6P6d46y9hj5Y3btAMrZd4JRRkSA==", + "license": "MIT", + "peerDependencies": { + "react": ">=17.0.0", + "react-dom": ">=17.0.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-pdf": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/react-pdf/-/react-pdf-7.5.1.tgz", + "integrity": "sha512-NVno97L3wfX3RLGB3C+QtroOiQrgCKPHLMFKMSQaRqDlH3gkq2CB2NyXJ+IDQNLrT/gSMPPgtZQL8cOUySc/3w==", + "license": "MIT", + "dependencies": { + "clsx": "^2.0.0", + "make-cancellable-promise": "^1.3.1", + "make-event-props": "^1.6.0", + "merge-refs": "^1.2.1", + "pdfjs-dist": "3.11.174", + "prop-types": "^15.6.2", + "tiny-invariant": "^1.0.0", + "tiny-warning": "^1.0.0" + }, + "funding": { + "url": "https://github.com/wojtekmaj/react-pdf?sponsor=1" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-qr-code": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/react-qr-code/-/react-qr-code-2.0.12.tgz", + "integrity": "sha512-k+pzP5CKLEGBRwZsDPp98/CAJeXlsYRHM2iZn1Sd5Th/HnKhIZCSg27PXO58zk8z02RaEryg+60xa4vyywMJwg==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1", + "qr.js": "0.0.0" + }, + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x", + "react-native-svg": "*" + }, + "peerDependenciesMeta": { + "react-native-svg": { + "optional": true + } + } + }, + "node_modules/react-qrcode-logo": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-qrcode-logo/-/react-qrcode-logo-2.9.0.tgz", + "integrity": "sha512-x9uctB/8kuQ+x7p4V/BRv6qbQV4xYopLcitBuQT3925U/zVFb3bbDUsUZsi7hEKuAX/wRsfhs331FhlPSYCO9Q==", + "license": "MIT", + "dependencies": { + "lodash.isequal": "^4.5.0", + "qrcode-generator": "^1.4.1" + }, + "peerDependencies": { + "react": ">=16.4.1", + "react-dom": ">=16.4.1" + } + }, + "node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz", + "integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-3.4.4.tgz", + "integrity": "sha512-7J7GZyF/QvZkKAZLneiOIhHozvOMHey7hO9cdO9u68jjhGZlI8hDdOm6UyuHofn6Ajc9Uji5I6Psm/nKNuWdyw==", + "license": "MIT", + "dependencies": { + "@babel/core": "7.9.0", + "@svgr/webpack": "4.3.3", + "@typescript-eslint/eslint-plugin": "^2.10.0", + "@typescript-eslint/parser": "^2.10.0", + "babel-eslint": "10.1.0", + "babel-jest": "^24.9.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.6", + "babel-preset-react-app": "^9.1.2", + "camelcase": "^5.3.1", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "3.4.2", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^6.6.0", + "eslint-config-react-app": "^5.2.1", + "eslint-loader": "3.0.3", + "eslint-plugin-flowtype": "4.6.0", + "eslint-plugin-import": "2.20.1", + "eslint-plugin-jsx-a11y": "6.2.3", + "eslint-plugin-react": "7.19.0", + "eslint-plugin-react-hooks": "^1.6.1", + "file-loader": "4.3.0", + "fs-extra": "^8.1.0", + "html-webpack-plugin": "4.0.0-beta.11", + "identity-obj-proxy": "3.0.0", + "jest": "24.9.0", + "jest-environment-jsdom-fourteen": "1.0.1", + "jest-resolve": "24.9.0", + "jest-watch-typeahead": "0.4.2", + "mini-css-extract-plugin": "0.9.0", + "optimize-css-assets-webpack-plugin": "5.0.3", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.1.0", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "4.0.1", + "react-app-polyfill": "^1.0.6", + "react-dev-utils": "^10.2.1", + "resolve": "1.15.0", + "resolve-url-loader": "3.1.2", + "sass-loader": "8.0.2", + "semver": "6.3.0", + "style-loader": "0.23.1", + "terser-webpack-plugin": "2.3.8", + "ts-pnp": "1.1.6", + "url-loader": "2.3.0", + "webpack": "4.42.0", + "webpack-dev-server": "3.11.0", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "4.3.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=8.10" + }, + "optionalDependencies": { + "fsevents": "2.1.2" + }, + "peerDependencies": { + "typescript": "^3.2.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@babel/core": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", + "integrity": "sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.9.0", + "@babel/helper-module-transforms": "^7.9.0", + "@babel/helpers": "^7.9.0", + "@babel/parser": "^7.9.0", + "@babel/template": "^7.8.6", + "@babel/traverse": "^7.9.0", + "@babel/types": "^7.9.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.13", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/react-scripts/node_modules/@babel/core/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/@babel/core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz", + "integrity": "sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-decorators": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz", + "integrity": "sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-decorators": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz", + "integrity": "sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz", + "integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz", + "integrity": "sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-flow": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz", + "integrity": "sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz", + "integrity": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz", + "integrity": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-runtime": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz", + "integrity": "sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "resolve": "^1.8.1", + "semver": "^5.5.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-runtime/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-env": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.0.tgz", + "integrity": "sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.9.0", + "@babel/helper-compilation-targets": "^7.8.7", + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-proposal-async-generator-functions": "^7.8.3", + "@babel/plugin-proposal-dynamic-import": "^7.8.3", + "@babel/plugin-proposal-json-strings": "^7.8.3", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-proposal-numeric-separator": "^7.8.3", + "@babel/plugin-proposal-object-rest-spread": "^7.9.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", + "@babel/plugin-proposal-optional-chaining": "^7.9.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.8.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.8.3", + "@babel/plugin-transform-async-to-generator": "^7.8.3", + "@babel/plugin-transform-block-scoped-functions": "^7.8.3", + "@babel/plugin-transform-block-scoping": "^7.8.3", + "@babel/plugin-transform-classes": "^7.9.0", + "@babel/plugin-transform-computed-properties": "^7.8.3", + "@babel/plugin-transform-destructuring": "^7.8.3", + "@babel/plugin-transform-dotall-regex": "^7.8.3", + "@babel/plugin-transform-duplicate-keys": "^7.8.3", + "@babel/plugin-transform-exponentiation-operator": "^7.8.3", + "@babel/plugin-transform-for-of": "^7.9.0", + "@babel/plugin-transform-function-name": "^7.8.3", + "@babel/plugin-transform-literals": "^7.8.3", + "@babel/plugin-transform-member-expression-literals": "^7.8.3", + "@babel/plugin-transform-modules-amd": "^7.9.0", + "@babel/plugin-transform-modules-commonjs": "^7.9.0", + "@babel/plugin-transform-modules-systemjs": "^7.9.0", + "@babel/plugin-transform-modules-umd": "^7.9.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", + "@babel/plugin-transform-new-target": "^7.8.3", + "@babel/plugin-transform-object-super": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.8.7", + "@babel/plugin-transform-property-literals": "^7.8.3", + "@babel/plugin-transform-regenerator": "^7.8.7", + "@babel/plugin-transform-reserved-words": "^7.8.3", + "@babel/plugin-transform-shorthand-properties": "^7.8.3", + "@babel/plugin-transform-spread": "^7.8.3", + "@babel/plugin-transform-sticky-regex": "^7.8.3", + "@babel/plugin-transform-template-literals": "^7.8.3", + "@babel/plugin-transform-typeof-symbol": "^7.8.4", + "@babel/plugin-transform-unicode-regex": "^7.8.3", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.9.0", + "browserslist": "^4.9.1", + "core-js-compat": "^3.6.2", + "invariant": "^2.2.2", + "levenary": "^1.1.1", + "semver": "^5.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-env/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-modules": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz", + "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-react": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.1.tgz", + "integrity": "sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-transform-react-display-name": "^7.8.3", + "@babel/plugin-transform-react-jsx": "^7.9.1", + "@babel/plugin-transform-react-jsx-development": "^7.9.0", + "@babel/plugin-transform-react-jsx-self": "^7.9.0", + "@babel/plugin-transform-react-jsx-source": "^7.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-react/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/preset-typescript": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz", + "integrity": "sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-transform-typescript": "^7.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/runtime": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.0.tgz", + "integrity": "sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/react-scripts/node_modules/@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/@jest/core/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/@jest/core/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/react-scripts/node_modules/@jest/core/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/@babel/core": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.3.tgz", + "integrity": "sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.3", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.3", + "@babel/types": "^7.23.3", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/react-scripts/node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/ast": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", + "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", + "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", + "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/ieee754": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", + "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/leb128": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", + "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", + "license": "MIT", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/utf8": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", + "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", + "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/helper-wasm-section": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-opt": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "@webassemblyjs/wast-printer": "1.8.5" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", + "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", + "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5" + } + }, + "node_modules/react-scripts/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", + "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" + } + }, + "node_modules/react-scripts/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/react-scripts/node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/react-scripts/node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/react-scripts/node_modules/babel-eslint/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 6.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/react-scripts/node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/react-scripts/node_modules/babel-preset-react-app": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz", + "integrity": "sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA==", + "license": "MIT", + "dependencies": { + "@babel/core": "7.9.0", + "@babel/plugin-proposal-class-properties": "7.8.3", + "@babel/plugin-proposal-decorators": "7.8.3", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", + "@babel/plugin-proposal-numeric-separator": "7.8.3", + "@babel/plugin-proposal-optional-chaining": "7.9.0", + "@babel/plugin-transform-flow-strip-types": "7.9.0", + "@babel/plugin-transform-react-display-name": "7.8.3", + "@babel/plugin-transform-runtime": "7.9.0", + "@babel/preset-env": "7.9.0", + "@babel/preset-react": "7.9.1", + "@babel/preset-typescript": "7.9.0", + "@babel/runtime": "7.9.0", + "babel-plugin-macros": "2.8.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + } + }, + "node_modules/react-scripts/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "license": "MIT", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/react-scripts/node_modules/chokidar/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/react-scripts/node_modules/chokidar/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "license": "ISC", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/react-scripts/node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/react-scripts/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/cosmiconfig/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/react-scripts/node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/react-scripts/node_modules/css-loader": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", + "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", + "license": "MIT", + "dependencies": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/react-scripts/node_modules/css-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/react-scripts/node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "license": "MIT", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/react-scripts/node_modules/eslint": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", + "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/react-scripts/node_modules/eslint-config-react-app": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz", + "integrity": "sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==", + "license": "MIT", + "dependencies": { + "confusing-browser-globals": "^1.0.9" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "2.x", + "@typescript-eslint/parser": "2.x", + "babel-eslint": "10.x", + "eslint": "6.x", + "eslint-plugin-flowtype": "3.x || 4.x", + "eslint-plugin-import": "2.x", + "eslint-plugin-jsx-a11y": "6.x", + "eslint-plugin-react": "7.x", + "eslint-plugin-react-hooks": "1.x || 2.x" + } + }, + "node_modules/react-scripts/node_modules/eslint-loader": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-3.0.3.tgz", + "integrity": "sha512-+YRqB95PnNvxNp1HEjQmvf9KNvCin5HXYYseOXVC2U0KEcw4IkQ2IQEBG46j7+gW39bMzeu0GsUhVbBY3Votpw==", + "license": "MIT", + "dependencies": { + "fs-extra": "^8.1.0", + "loader-fs-cache": "^1.0.2", + "loader-utils": "^1.2.3", + "object-hash": "^2.0.1", + "schema-utils": "^2.6.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/react-scripts/node_modules/eslint-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-scripts/node_modules/eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", + "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/eslint/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/eslint/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/react-scripts/node_modules/eslint/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/eslint/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/react-scripts/node_modules/espree/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/react-scripts/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/react-scripts/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", + "license": "MIT", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/react-scripts/node_modules/faye-websocket/node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-scripts/node_modules/file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "license": "MIT", + "dependencies": { + "flat-cache": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/file-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz", + "integrity": "sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.2.3", + "schema-utils": "^2.5.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/react-scripts/node_modules/file-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "license": "MIT", + "dependencies": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "license": "ISC" + }, + "node_modules/react-scripts/node_modules/fsevents": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", + "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/react-scripts/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/html-webpack-plugin": { + "version": "4.0.0-beta.11", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz", + "integrity": "sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg==", + "license": "MIT", + "dependencies": { + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/react-scripts/node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "license": "MIT", + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-scripts/node_modules/icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "license": "ISC", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/react-scripts/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/react-scripts/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-report/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-source-maps/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-source-maps/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-source-maps/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/istanbul-reports": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", + "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", + "license": "MIT", + "dependencies": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-changed-files": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", + "license": "MIT", + "dependencies": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/react-scripts/node_modules/jest-haste-map/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/react-scripts/node_modules/jest-haste-map/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-resolve-dependencies": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/jest-util/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/react-scripts/node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "license": "MIT", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/react-scripts/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/mini-css-extract-plugin": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", + "integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.4.0" + } + }, + "node_modules/react-scripts/node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/react-scripts/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/optimize-css-assets-webpack-plugin": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz", + "integrity": "sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA==", + "license": "MIT", + "dependencies": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/react-scripts/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "license": "MIT", + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/react-scripts/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/react-scripts/node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/react-scripts/node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/react-scripts/node_modules/postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "license": "MIT", + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "license": "MIT", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "license": "MIT", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "license": "ISC", + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "license": "MIT", + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "license": "ISC", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "license": "ISC", + "dependencies": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "license": "MIT", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "license": "MIT", + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-url/node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-url/node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "license": "CC0-1.0", + "dependencies": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/postcss/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/pretty-format/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/react-scripts/node_modules/regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "license": "MIT", + "engines": { + "node": ">=6.5.0" + } + }, + "node_modules/react-scripts/node_modules/resolve": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz", + "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==", + "license": "MIT", + "dependencies": { + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/react-scripts/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/react-scripts/node_modules/sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", + "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0", + "sass": "^1.3.0", + "webpack": "^4.36.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/sass-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/sass-loader/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "license": "MIT", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/react-scripts/node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "license": "MIT", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/react-scripts/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/react-scripts/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/sockjs": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", + "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.10.0", + "uuid": "^3.4.0", + "websocket-driver": "0.6.5" + } + }, + "node_modules/react-scripts/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "license": "ISC", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/react-scripts/node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==", + "license": "MIT", + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/string-length/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/string-length/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/style-loader": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz", + "integrity": "sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.1.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/react-scripts/node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "license": "MIT", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/terser-webpack-plugin": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", + "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", + "license": "MIT", + "dependencies": { + "cacache": "^13.0.1", + "find-cache-dir": "^3.3.1", + "jest-worker": "^25.4.0", + "p-limit": "^2.3.0", + "schema-utils": "^2.6.6", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/react-scripts/node_modules/terser-webpack-plugin/node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/react-scripts/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/url-loader": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz", + "integrity": "sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.2.3", + "mime": "^2.4.4", + "schema-utils": "^2.5.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/url-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/react-scripts/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/react-scripts/node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "optional": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "optional": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/watchpack/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/react-scripts/node_modules/webpack": { + "version": "4.42.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.42.0.tgz", + "integrity": "sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/wasm-edit": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "acorn": "^6.2.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.1.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.6.0", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "license": "MIT", + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/react-scripts/node_modules/webpack-dev-server": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", + "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", + "license": "MIT", + "dependencies": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.7", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "0.3.20", + "sockjs-client": "1.4.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "license": "MIT", + "dependencies": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "2 || 3 || 4" + } + }, + "node_modules/react-scripts/node_modules/webpack-manifest-plugin/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/react-scripts/node_modules/webpack/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "license": "ISC", + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/react-scripts/node_modules/webpack/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/react-scripts/node_modules/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "license": "MIT", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/react-scripts/node_modules/websocket-driver": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", + "integrity": "sha512-oBx6ZM1Gs5q2jwZuSN/Qxyy/fbgomV8+vqsmipaPKB/74hjHlKuM07jNmRhn4qa2AdUwsgxrltq+gaPsHgcl0Q==", + "license": "MIT", + "dependencies": { + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/react-scripts/node_modules/workbox-broadcast-update": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-4.3.1.tgz", + "integrity": "sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-build": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-4.3.1.tgz", + "integrity": "sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.3.4", + "@hapi/joi": "^15.0.0", + "common-tags": "^1.8.0", + "fs-extra": "^4.0.2", + "glob": "^7.1.3", + "lodash.template": "^4.4.0", + "pretty-bytes": "^5.1.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "workbox-background-sync": "^4.3.1", + "workbox-broadcast-update": "^4.3.1", + "workbox-cacheable-response": "^4.3.1", + "workbox-core": "^4.3.1", + "workbox-expiration": "^4.3.1", + "workbox-google-analytics": "^4.3.1", + "workbox-navigation-preload": "^4.3.1", + "workbox-precaching": "^4.3.1", + "workbox-range-requests": "^4.3.1", + "workbox-routing": "^4.3.1", + "workbox-strategies": "^4.3.1", + "workbox-streams": "^4.3.1", + "workbox-sw": "^4.3.1", + "workbox-window": "^4.3.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-scripts/node_modules/workbox-build/node_modules/@babel/runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", + "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/workbox-build/node_modules/fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "node_modules/react-scripts/node_modules/workbox-build/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/workbox-cacheable-response": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-4.3.1.tgz", + "integrity": "sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-core": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-4.3.1.tgz", + "integrity": "sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/workbox-expiration": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-4.3.1.tgz", + "integrity": "sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-google-analytics": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-4.3.1.tgz", + "integrity": "sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "^4.3.1", + "workbox-core": "^4.3.1", + "workbox-routing": "^4.3.1", + "workbox-strategies": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-navigation-preload": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-4.3.1.tgz", + "integrity": "sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-precaching": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-4.3.1.tgz", + "integrity": "sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-range-requests": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-4.3.1.tgz", + "integrity": "sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-routing": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-4.3.1.tgz", + "integrity": "sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-strategies": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-4.3.1.tgz", + "integrity": "sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-streams": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-4.3.1.tgz", + "integrity": "sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/workbox-sw": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-4.3.1.tgz", + "integrity": "sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/workbox-webpack-plugin": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-4.3.1.tgz", + "integrity": "sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.0.0", + "json-stable-stringify": "^1.0.1", + "workbox-build": "^4.3.1" + }, + "engines": { + "node": ">=4.0.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" + } + }, + "node_modules/react-scripts/node_modules/workbox-webpack-plugin/node_modules/@babel/runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", + "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-scripts/node_modules/workbox-webpack-plugin/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "license": "MIT" + }, + "node_modules/react-scripts/node_modules/workbox-window": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-4.3.1.tgz", + "integrity": "sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/react-scripts/node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/react-virtualized-auto-sizer": { + "version": "1.0.20", + "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.20.tgz", + "integrity": "sha512-OdIyHwj4S4wyhbKHOKM1wLSj/UDXm839Z3Cvfg2a9j+He6yDa6i5p0qQvEiCnyQlGO/HyfSnigQwuxvYalaAXA==", + "license": "MIT", + "peerDependencies": { + "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc", + "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc" + } + }, + "node_modules/react-window": { + "version": "1.8.10", + "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.10.tgz", + "integrity": "sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.0.0", + "memoize-one": ">=3.1.1 <6" + }, + "engines": { + "node": ">8.0.0" + }, + "peerDependencies": { + "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/reactcss": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/reactcss/-/reactcss-1.2.3.tgz", + "integrity": "sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==", + "license": "MIT", + "dependencies": { + "lodash": "^4.0.1" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==", + "license": "MIT", + "dependencies": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==", + "license": "MIT", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==", + "license": "MIT", + "dependencies": { + "pify": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "license": "MIT", + "dependencies": { + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/realpath-native/node_modules/util.promisify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.2.tgz", + "integrity": "sha512-PBdZ03m1kBnQ5cjjO0ZvJMJS+QsbyIcFwi4hY4U76OQsCO9JrOYjbCFgIF76ccFg9xnJo7ZHPkqyj1GqmdS7MA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "object.getownpropertydescriptors": "^2.1.6", + "safe-array-concat": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/recoil": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.1.3.tgz", + "integrity": "sha512-/Rm7wN7jqCjhtFK1TgtK0V115SUXNu6d4QYvwxWNLydib0QChSmpB6U8CaHoRPS0MFWtAIsD/IFjpbfk/OYm7Q==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.13.1" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "license": "MIT", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/recursive-readdir/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "license": "MIT" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "license": "MIT", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/registry-auth-token": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", + "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/registry-url": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", + "integrity": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "rc": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "license": "ISC" + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "license": "Apache-2.0", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "license": "ISC", + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "license": "ISC", + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "license": "ISC" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "license": "MIT" + }, + "node_modules/rescript": { + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/rescript/-/rescript-10.1.4.tgz", + "integrity": "sha512-FFKlS9AG/XrLepWsyw7B+A9DtQBPWEPDPDKghV831Y2KGbie+eeFBOS0xtRHp0xbt7S0N2Dm6hhX+kTZQ/3Ybg==", + "dev": true, + "hasInstallScript": true, + "license": "SEE LICENSE IN LICENSE", + "bin": { + "bsc": "bsc", + "bsrefmt": "bsrefmt", + "bstracing": "lib/bstracing", + "rescript": "rescript" + } + }, + "node_modules/rescript-debounce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rescript-debounce/-/rescript-debounce-1.0.1.tgz", + "integrity": "sha512-bdClQdmKw5k1PZLilZNYiZqqqDBXdHUZ3dKqrKGuLlYdLL5dC6A/m6jyv8yemcdtgRJAwPdUVfYFf2tZ1t3eMw==", + "license": "MIT" + }, + "node_modules/rescript-debounce-react": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rescript-debounce-react/-/rescript-debounce-react-1.0.1.tgz", + "integrity": "sha512-V/R3uA5O7QHVWtK8H1p5hYMRSvQ2blD40GTNTxeQ8iR+DdJHQ+enLhH9+gVojuUx51XV4bZnl7BJ6AwDR0VxZA==", + "license": "MIT", + "dependencies": { + "rescript-debounce": "^1.0.0" + } + }, + "node_modules/rescript-webapi": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/rescript-webapi/-/rescript-webapi-0.7.0.tgz", + "integrity": "sha512-fA1LPXSmQY3HtcIStQ2sHu9Xye1XLxd4JvkGQMupux9Q6Tp/jbcdh7bnCaGwHW6aI1QFmTmA/xWxUMb6oPphsQ==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "license": "MIT", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "license": "MIT" + }, + "node_modules/resolve-url-loader": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", + "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", + "license": "MIT", + "dependencies": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "1.2.3", + "postcss": "7.0.21", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/resolve-url-loader/node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url-loader/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", + "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/resolve-url-loader/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "license": "MIT", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==", + "dependencies": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + } + }, + "node_modules/rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==", + "license": "MIT" + }, + "node_modules/rework/node_modules/convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==", + "license": "MIT" + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==", + "license": "MIT" + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==", + "license": "MIT" + }, + "node_modules/rgbcolor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz", + "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", + "license": "MIT OR SEE LICENSE IN FEEL-FREE.md", + "optional": true, + "engines": { + "node": ">= 0.8.15" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/terser": { + "version": "5.24.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", + "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/rrdom": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/rrdom/-/rrdom-0.1.7.tgz", + "integrity": "sha512-ZLd8f14z9pUy2Hk9y636cNv5Y2BMnNEY99wxzW9tD2BLDfe1xFxtLjB4q/xCBYo6HRe0wofzKzjm4JojmpBfFw==", + "license": "MIT", + "dependencies": { + "rrweb-snapshot": "^2.0.0-alpha.4" + } + }, + "node_modules/rrweb": { + "version": "2.0.0-alpha.4", + "resolved": "https://registry.npmjs.org/rrweb/-/rrweb-2.0.0-alpha.4.tgz", + "integrity": "sha512-wEHUILbxDPcNwkM3m4qgPgXAiBJyqCbbOHyVoNEVBJzHszWEFYyTbrZqUdeb1EfmTRC2PsumCIkVcomJ/xcOzA==", + "license": "MIT", + "dependencies": { + "@rrweb/types": "^2.0.0-alpha.4", + "@types/css-font-loading-module": "0.0.7", + "@xstate/fsm": "^1.4.0", + "base64-arraybuffer": "^1.0.1", + "fflate": "^0.4.4", + "mitt": "^3.0.0", + "rrdom": "^0.1.7", + "rrweb-snapshot": "^2.0.0-alpha.4" + } + }, + "node_modules/rrweb-snapshot": { + "version": "2.0.0-alpha.4", + "resolved": "https://registry.npmjs.org/rrweb-snapshot/-/rrweb-snapshot-2.0.0-alpha.4.tgz", + "integrity": "sha512-KQ2OtPpXO5jLYqg1OnXS/Hf+EzqnZyP5A+XPqBCjYpj3XIje/Od4gdUwjbFo3cVuWq5Cw5Y1d3/xwgIS7/XpQQ==", + "license": "MIT" + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "license": "MIT", + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "license": "ISC", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "license": "MIT", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "license": "MIT", + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/sane/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/sane/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==", + "license": "CC0-1.0" + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "license": "MIT", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "license": "ISC" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "license": "MIT" + }, + "node_modules/selenium-webdriver": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.2.tgz", + "integrity": "sha512-e4Ap8vQvhipgBB8Ry9zBiKGkU6kHKyNnWiavGGLKkrdW81Zv7NVMtFOL/j3yX0G8QScM7XIXijKssNd4EUxSOw==", + "license": "Apache-2.0", + "dependencies": { + "jszip": "^3.6.0", + "tmp": "^0.2.1", + "ws": ">=7.4.6" + }, + "engines": { + "node": ">= 10.15.0" + } + }, + "node_modules/selenium-webdriver/node_modules/ws": { + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/serve/-/serve-14.2.1.tgz", + "integrity": "sha512-48er5fzHh7GCShLnNyPBRPEjs2I6QBozeGr02gaacROiyS/8ARADlj595j39iZXAqBbJHH/ivJJyPRWY9sQWZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@zeit/schemas": "2.29.0", + "ajv": "8.11.0", + "arg": "5.0.2", + "boxen": "7.0.0", + "chalk": "5.0.1", + "chalk-template": "0.4.0", + "clipboardy": "3.0.0", + "compression": "1.7.4", + "is-port-reachable": "4.0.0", + "serve-handler": "6.1.5", + "update-check": "1.5.4" + }, + "bin": { + "serve": "build/main.js" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/serve-handler": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.5.tgz", + "integrity": "sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "3.0.0", + "content-disposition": "0.5.2", + "fast-url-parser": "1.1.3", + "mime-types": "2.1.18", + "minimatch": "3.1.2", + "path-is-inside": "1.0.2", + "path-to-regexp": "2.2.1", + "range-parser": "1.2.0" + } + }, + "node_modules/serve-handler/node_modules/mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "~1.33.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/path-to-regexp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", + "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/serve-handler/node_modules/range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/serve/node_modules/chalk": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", + "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "license": "ISC" + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "license": "MIT" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "license": "MIT", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "license": "MIT", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", + "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.5", + "eventsource": "^1.0.7", + "faye-websocket": "~0.11.1", + "inherits": "^2.0.3", + "json3": "^3.3.2", + "url-parse": "^1.4.3" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "license": "MIT" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-loader/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "license": "MIT" + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "license": "MIT" + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "license": "CC0-1.0" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", + "license": "MIT", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.1.tgz", + "integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==", + "license": "ISC", + "dependencies": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "license": "MIT" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackblur-canvas": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz", + "integrity": "sha512-8S1aIA+UoF6erJYnglGPug6MaHYGo1Ot7h5fuXx4fUPvcvQfcdw2o/ppCse63+eZf8PPidSu4v1JnmEVtEDnpg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.14" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/state-local": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz", + "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==", + "license": "MIT" + }, + "node_modules/static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "license": "MIT", + "dependencies": { + "escodegen": "^1.8.1" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "license": "MIT", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", + "license": "ISC", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "license": "MIT", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "license": "MIT" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", + "license": "MIT" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "license": "BSD-2-Clause", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "license": "MIT", + "dependencies": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/stylehacks": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", + "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/subnet-cidr-calculator": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/subnet-cidr-calculator/-/subnet-cidr-calculator-1.0.12.tgz", + "integrity": "sha512-eb2MzNoUhgDTML73/omX2xQnRHQnEvvJI2ZlDqOxLCR8gDLvWzkfef2ZzcukTxog6vXrG8HEObJb8RRGBzO0Zw==", + "license": "MIT", + "dependencies": { + "underscore": "^1.8.3" + } + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "license": "MIT" + }, + "node_modules/svg-pathdata": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", + "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/svgo/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "license": "MIT" + }, + "node_modules/table": { + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "license": "BSD-3-Clause", + "dependencies": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/table/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/table/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/table/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tailwindcss": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.5.tgz", + "integrity": "sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==", + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tailwindcss/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/tailwindcss/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/tailwindcss/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "license": "MIT", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "license": "BSD-2-Clause", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.24.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", + "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/test-exclude/node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/test-exclude/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/test-exclude/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "license": "MIT", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/test-exclude/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/test-exclude/node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "license": "MIT", + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/test-exclude/node_modules/read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "license": "MIT", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "license": "MIT" + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "license": "MIT", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", + "license": "MIT" + }, + "node_modules/tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==", + "license": "MIT" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==", + "license": "MIT" + }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "license": "MIT", + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmp/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "license": "MIT" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "license": "MIT", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", + "license": "MIT" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/ts-pnp": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.1.6.tgz", + "integrity": "sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "license": "MIT" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "license": "Unlicense" + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "license": "ISC" + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "license": "MIT" + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", + "license": "MIT" + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==", + "license": "MIT" + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "license": "ISC", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", + "license": "MIT" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "license": "MIT", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-check": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/update-check/-/update-check-1.5.4.tgz", + "integrity": "sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "registry-auth-token": "3.3.2", + "registry-url": "3.1.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "license": "MIT" + }, + "node_modules/url": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", + "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "license": "MIT", + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.2" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "license": "MIT" + }, + "node_modules/url/node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/use-memo-one": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz", + "integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "license": "MIT", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "license": "MIT", + "dependencies": { + "base64-arraybuffer": "^1.0.2" + } + }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "license": "MIT" + }, + "node_modules/verror/node_modules/extsprintf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", + "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "license": "MIT" + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "license": "MIT", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/w3c-xmlserializer/node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "license": "MIT", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "license": "MIT", + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "license": "ISC", + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "license": "MIT", + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "license": "MIT", + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "license": "BSD-2-Clause" + }, + "node_modules/webpack": { + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", + "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.2.0", + "@webpack-cli/info": "^1.5.0", + "@webpack-cli/serve": "^1.7.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "cross-spawn": "^7.0.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "@webpack-cli/migrate": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-cli/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "license": "MIT", + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "license": "MIT", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.19", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", + "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==", + "license": "MIT" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "license": "MIT" + }, + "node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "license": "MIT", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "license": "ISC" + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/widest-line": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", + "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/widest-line/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/widest-line/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/widest-line/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/widest-line/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-4.3.1.tgz", + "integrity": "sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==", + "license": "MIT", + "dependencies": { + "workbox-core": "^4.3.1" + } + }, + "node_modules/workbox-background-sync/node_modules/workbox-core": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-4.3.1.tgz", + "integrity": "sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==", + "license": "MIT" + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.1.tgz", + "integrity": "sha512-fBhffRdaANdeQ1V8s692R9l/gzvjjRtydBOvR6WCSB0BNE2BacA29Z4r9/RHd9KaXCPl6JTdI9q0bR25YKP8TQ==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-build": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.1.tgz", + "integrity": "sha512-INPgDx6aRycAugUixbKgiEQBWD0MPZqU5r0jyr24CehvNuLPSXp/wGOpdRJmts656lNiXwqV7dC2nzyrzWEDnw==", + "license": "MIT", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.1", + "workbox-broadcast-update": "6.6.1", + "workbox-cacheable-response": "6.6.1", + "workbox-core": "6.6.1", + "workbox-expiration": "6.6.1", + "workbox-google-analytics": "6.6.1", + "workbox-navigation-preload": "6.6.1", + "workbox-precaching": "6.6.1", + "workbox-range-requests": "6.6.1", + "workbox-recipes": "6.6.1", + "workbox-routing": "6.6.1", + "workbox-strategies": "6.6.1", + "workbox-streams": "6.6.1", + "workbox-sw": "6.6.1", + "workbox-window": "6.6.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "license": "MIT", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "license": "ISC" + }, + "node_modules/workbox-build/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/workbox-build/node_modules/workbox-background-sync": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.1.tgz", + "integrity": "sha512-trJd3ovpWCvzu4sW0E8rV3FUyIcC0W8G+AZ+VcqzzA890AsWZlUGOTSxIMmIHVusUw/FDq1HFWfy/kC/WTRqSg==", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.1.tgz", + "integrity": "sha512-85LY4veT2CnTCDxaVG7ft3NKaFbH6i4urZXgLiU4AiwvKqS2ChL6/eILiGRYXfZ6gAwDnh5RkuDbr/GMS4KSag==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-core": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.1.tgz", + "integrity": "sha512-ZrGBXjjaJLqzVothoE12qTbVnOAjFrHDXpZe7coCb6q65qI/59rDLwuFMO4PcZ7jcbxY+0+NhUVztzR/CbjEFw==", + "license": "MIT" + }, + "node_modules/workbox-expiration": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.1.tgz", + "integrity": "sha512-qFiNeeINndiOxaCrd2DeL1Xh1RFug3JonzjxUHc5WkvkD2u5abY3gZL1xSUNt3vZKsFFGGORItSjVTVnWAZO4A==", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-expiration/node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "license": "ISC" + }, + "node_modules/workbox-google-analytics": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.1.tgz", + "integrity": "sha512-1TjSvbFSLmkpqLcBsF7FuGqqeDsf+uAXO/pjiINQKg3b1GN0nBngnxLcXDYo1n/XxK4N7RaRrpRlkwjY/3ocuA==", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "6.6.1", + "workbox-core": "6.6.1", + "workbox-routing": "6.6.1", + "workbox-strategies": "6.6.1" + } + }, + "node_modules/workbox-google-analytics/node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "license": "ISC" + }, + "node_modules/workbox-google-analytics/node_modules/workbox-background-sync": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.1.tgz", + "integrity": "sha512-trJd3ovpWCvzu4sW0E8rV3FUyIcC0W8G+AZ+VcqzzA890AsWZlUGOTSxIMmIHVusUw/FDq1HFWfy/kC/WTRqSg==", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.1.tgz", + "integrity": "sha512-DQCZowCecO+wRoIxJI2V6bXWK6/53ff+hEXLGlQL4Rp9ZaPDLrgV/32nxwWIP7QpWDkVEtllTAK5h6cnhxNxDA==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-precaching": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.1.tgz", + "integrity": "sha512-K4znSJ7IKxCnCYEdhNkMr7X1kNh8cz+mFgx9v5jFdz1MfI84pq8C2zG+oAoeE5kFrUf7YkT5x4uLWBNg0DVZ5A==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1", + "workbox-routing": "6.6.1", + "workbox-strategies": "6.6.1" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.1.tgz", + "integrity": "sha512-4BDzk28govqzg2ZpX0IFkthdRmCKgAKreontYRC5YsAPB2jDtPNxqx3WtTXgHw1NZalXpcH/E4LqUa9+2xbv1g==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-recipes": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.1.tgz", + "integrity": "sha512-/oy8vCSzromXokDA+X+VgpeZJvtuf8SkQ8KL0xmRivMgJZrjwM3c2tpKTJn6PZA6TsbxGs3Sc7KwMoZVamcV2g==", + "license": "MIT", + "dependencies": { + "workbox-cacheable-response": "6.6.1", + "workbox-core": "6.6.1", + "workbox-expiration": "6.6.1", + "workbox-precaching": "6.6.1", + "workbox-routing": "6.6.1", + "workbox-strategies": "6.6.1" + } + }, + "node_modules/workbox-routing": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.1.tgz", + "integrity": "sha512-j4ohlQvfpVdoR8vDYxTY9rA9VvxTHogkIDwGdJ+rb2VRZQ5vt1CWwUUZBeD/WGFAni12jD1HlMXvJ8JS7aBWTg==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-strategies": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.1.tgz", + "integrity": "sha512-WQLXkRnsk4L81fVPkkgon1rZNxnpdO5LsO+ws7tYBC6QQQFJVI6v98klrJEjFtZwzw/mB/HT5yVp7CcX0O+mrw==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1" + } + }, + "node_modules/workbox-streams": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.1.tgz", + "integrity": "sha512-maKG65FUq9e4BLotSKWSTzeF0sgctQdYyTMq529piEN24Dlu9b6WhrAfRpHdCncRS89Zi2QVpW5V33NX8PgH3Q==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.1", + "workbox-routing": "6.6.1" + } + }, + "node_modules/workbox-sw": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.1.tgz", + "integrity": "sha512-R7whwjvU2abHH/lR6kQTTXLHDFU2izht9kJOvBRYK65FbwutT4VvnUAJIgHvfWZ/fokrOPhfoWYoPCMpSgUKHQ==", + "license": "MIT" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.1.tgz", + "integrity": "sha512-zpZ+ExFj9NmiI66cFEApyjk7hGsfJ1YMOaLXGXBoZf0v7Iu6hL0ZBe+83mnDq3YYWAfA3fnyFejritjOHkFcrA==", + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.1" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-window": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.1.tgz", + "integrity": "sha512-wil4nwOY58nTdCvif/KEZjQ2NP8uk3gGeRNy2jPBbzypU4BT4D9L8xiwbmDBpZlSgJd2xsT9FvSNU0gsxV51JQ==", + "license": "MIT", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.1" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "license": "MIT", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "license": "MIT", + "dependencies": { + "microevent.ts": "~0.1.1" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/write": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "license": "MIT", + "dependencies": { + "mkdirp": "^0.5.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "license": "Apache-2.0" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "license": "MIT" + }, + "node_modules/xregexp": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.4.1.tgz", + "integrity": "sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag==", + "license": "MIT", + "dependencies": { + "@babel/runtime-corejs3": "^7.12.1" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "license": "MIT", + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index 6cb4a98ee..8fe319b54 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "author": "Shiva Nandan ", "license": "MIT", "scripts": { + "pre-commit": "git config core.hooksPath .githooks && chmod +x .githooks/commit-msg && bash .githooks/commit-msg", "start": "chmod +x ./replace_env.sh && ./replace_env.sh && cp env-config.js ./public/hyperswitch && APP_VERSION=$npm_package_version && appName=hyperswitch webpack serve --config webpack.dev.js", "start:server_compiler": "webpack --config webpack.server.js --watch", "prod:start": "webpack serve --config webpack.dev.js", @@ -23,6 +24,11 @@ "unit:test": "cd tests && npx rescript build -with-deps && jest unit_test", "revert:test": "cd tests && npx rescript clean -with-deps && cd .. && npx rescript build -with-deps" }, + "husky": { + "hooks": { + "pre-commit": "npm run pre-commit" + } + }, "devDependencies": { "@glennsl/rescript-jest": "^0.10.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1", @@ -30,6 +36,7 @@ "css-loader": "^5.0.1", "css-minimizer-webpack-plugin": "^5.0.1", "file-loader": "^6.2.0", + "husky": "^8.0.3", "jest-environment-jsdom": "^29.6.4", "mini-css-extract-plugin": "^1.3.1", "monaco-editor-webpack-plugin": "^7.0.1", @@ -37,6 +44,7 @@ "postcss": "^8.3.6", "postcss-loader": "^4.1.0", "postcss-preset-env": "^6.7.0", + "prettier": "^3.1.0", "react-refresh": "^0.10.0", "rescript": "^10.1.2", "serve": "^14.2.1", diff --git a/public/common/NewThemeOnboarding.css b/public/common/NewThemeOnboarding.css index 2002f6158..d5b1458ca 100644 --- a/public/common/NewThemeOnboarding.css +++ b/public/common/NewThemeOnboarding.css @@ -1,284 +1,287 @@ .introjs-overlay { - display: block; + display: block; } .introjs-showElement { - z-index: 1100 !important; + z-index: 1100 !important; } -tr.introjs-showElement>td { - z-index: 1100 !important; - position: relative; +tr.introjs-showElement > td { + z-index: 1100 !important; + position: relative; } -tr.introjs-showElement>th { - z-index: 1100 !important; - position: relative; +tr.introjs-showElement > th { + z-index: 1100 !important; + position: relative; } .introjs-disableInteraction { - z-index: 1100 !important; - position: absolute; - background-color: #fff; - opacity: 0; + z-index: 1100 !important; + position: absolute; + background-color: #fff; + opacity: 0; } .introjs-relativePosition { - position: relative; + position: relative; } .introjs-helperLayer { - box-sizing: content-box; - position: absolute; - z-index: 1050; - -webkit-transition: all 0.3s ease-out; - -o-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; - border-radius: 8px; - border: 2px solid var(--color-blue-600, #1B85FF); - background: #FFF; - box-shadow: 0px 0px 2px 4px rgba(27, 133, 255, 0.12) !important; + box-sizing: content-box; + position: absolute; + z-index: 1050; + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; + border-radius: 8px; + border: 2px solid var(--color-blue-600, #1b85ff); + background: #fff; + box-shadow: 0px 0px 2px 4px rgba(27, 133, 255, 0.12) !important; } .introjs-helperLayer * { - -webkit-box-sizing: content-box; - box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .introjs-helperLayer :before { - -webkit-box-sizing: content-box; - box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .introjs-helperLayer :after { - -webkit-box-sizing: content-box; - box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .introjs-tooltipReferenceLayer { - font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif; - -webkit-box-sizing: content-box; - box-sizing: content-box; - position: absolute; - visibility: hidden; - z-index: 1200; - background-color: transparent; - -webkit-transition: all 0.3s ease-out; - -o-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; + font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", + Helvetica, Arial, sans-serif; + -webkit-box-sizing: content-box; + box-sizing: content-box; + position: absolute; + visibility: hidden; + z-index: 1200; + background-color: transparent; + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; } .introjs-tooltipReferenceLayer * { - font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif; + font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", + Helvetica, Arial, sans-serif; } .introjs-helperNumberLayer { - font-family: Inter !important; - font-size: 13px !important; - color: #797979 !important; - font-weight: normal; - display: flex; - float: right; - bottom: 0px; - margin-bottom: 18px; - position: absolute; + font-family: Inter !important; + font-size: 13px !important; + color: #797979 !important; + font-weight: normal; + display: flex; + float: right; + bottom: 0px; + margin-bottom: 18px; + position: absolute; } .introjs-tooltip { - -webkit-box-sizing: content-box; - box-sizing: content-box; - visibility: visible; - height: auto; - display: flex; - flex-direction: column; - align-items: flex-start; - position: absolute; - box-sizing: content-box; - background: white; - box-sizing: border-box; - margin-top: 6px; - padding: 16px 16px 12px 16px; - min-width: 300px; - max-width: 300px; - -webkit-box-shadow: 0 1px 10px rgb(33 33 33 / 40%); - box-shadow: 0px 10px 15px -3px rgba(16, 24, 40, 0.10), 0px 4px 6px 0px rgba(0, 0, 0, 0.05); - -webkit-transition: opacity .1s ease-out; - -o-transition: opacity .1s ease-out; - transition: opacity .1s ease-out; - border-radius: 4px; - border: 1px solid #E1E1E1; + -webkit-box-sizing: content-box; + box-sizing: content-box; + visibility: visible; + height: auto; + display: flex; + flex-direction: column; + align-items: flex-start; + position: absolute; + box-sizing: content-box; + background: white; + box-sizing: border-box; + margin-top: 6px; + padding: 16px 16px 12px 16px; + min-width: 300px; + max-width: 300px; + -webkit-box-shadow: 0 1px 10px rgb(33 33 33 / 40%); + box-shadow: + 0px 10px 15px -3px rgba(16, 24, 40, 0.1), + 0px 4px 6px 0px rgba(0, 0, 0, 0.05); + -webkit-transition: opacity 0.1s ease-out; + -o-transition: opacity 0.1s ease-out; + transition: opacity 0.1s ease-out; + border-radius: 4px; + border: 1px solid #e1e1e1; } .introjs-tooltiptext { - margin-top: 5px; - margin-bottom: 10px; - line-height: 18px; - font-family: Inter; - font-size: 12px; - color: #111; - font-weight: normal; - margin: 12px 0 32px; + margin-top: 5px; + margin-bottom: 10px; + line-height: 18px; + font-family: Inter; + font-size: 12px; + color: #111; + font-weight: normal; + margin: 12px 0 32px; } .introjs-tooltip-title { - font-family: Inter; - font-weight: 600 !important; - font-size: 16px !important; - color: #111; + font-family: Inter; + font-weight: 600 !important; + font-size: 16px !important; + color: #111; } .introjs-tooltip-header:after { - content: "."; - visibility: hidden; - display: block; - height: 0; - clear: both; + content: "."; + visibility: hidden; + display: block; + height: 0; + clear: both; } .introjs-tooltipbuttons { - height: 34px; - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; - float: right; + height: 34px; + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + float: right; } .introjs-skipbutton { - box-sizing: content-box; - position: absolute; - top: 10px; - right: 20px; - font-size: 20px; - font-weight: 700; - color: #000000; - display: none; + box-sizing: content-box; + position: absolute; + top: 10px; + right: 20px; + font-size: 20px; + font-weight: 700; + color: #000000; + display: none; } .stepCount { - font-family: Inter; - font-style: normal; - font-weight: normal; - font-size: 14px; - line-height: 18px; - color: #000000; - order: 0; - opacity: 0.5; + font-family: Inter; + font-style: normal; + font-weight: normal; + font-size: 14px; + line-height: 18px; + color: #000000; + order: 0; + opacity: 0.5; } .introjs-prevbutton { - justify-content: center; - align-items: center; - text-align: center; - flex: none; - order: 1; - flex-grow: 0; - text-shadow: none !important; - background-image: none !important; - font-family: Inter !important; - font-style: normal !important; - font-weight: 500 !important; - color: #525252; - box-shadow: none !important; - padding: 7px 16px !important; - font-size: 12px !important; - background: #F2F2F2 !important; - box-sizing: border-box; - text-align: center; - flex: none; - flex-grow: 0; - margin-left: auto; - border-radius: 6px; + justify-content: center; + align-items: center; + text-align: center; + flex: none; + order: 1; + flex-grow: 0; + text-shadow: none !important; + background-image: none !important; + font-family: Inter !important; + font-style: normal !important; + font-weight: 500 !important; + color: #525252; + box-shadow: none !important; + padding: 7px 16px !important; + font-size: 12px !important; + background: #f2f2f2 !important; + box-sizing: border-box; + text-align: center; + flex: none; + flex-grow: 0; + margin-left: auto; + border-radius: 6px; } .introjs-nextbutton { - text-shadow: none !important; - font-family: Inter !important; - font-style: normal !important; - font-weight: 600 !important; - padding: 7px 16px !important; - font-size: 12px !important; - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); - --tw-gradient-from: #1B85FF; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); - --tw-gradient-to: #1B85FF; - background-image: linear-gradient(to top, var(--tw-gradient-stops)); - border-color: rgb(5 133 218 / var(--tw-border-opacity)); - border-width: 1px; - border-radius: 0.375rem; - flex: none; - order: 2; - margin-left: 10px; + text-shadow: none !important; + font-family: Inter !important; + font-style: normal !important; + font-weight: 600 !important; + padding: 7px 16px !important; + font-size: 12px !important; + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); + --tw-gradient-from: #1b85ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); + --tw-gradient-to: #1b85ff; + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + border-color: rgb(5 133 218 / var(--tw-border-opacity)); + border-width: 1px; + border-radius: 0.375rem; + flex: none; + order: 2; + margin-left: 10px; } - .introjs-prevbutton.introjs-disabled { - display: none; + display: none; } .introjs-hidden { - display: none; + display: none; } .introjs-bullets { - display: none; + display: none; } .introjsFloatingElement { - position: absolute; - height: 0; - width: 0; - left: 50%; - top: 50%; + position: absolute; + height: 0; + width: 0; + left: 50%; + top: 50%; } .introjs-fixedTooltip { - position: fixed; + position: fixed; } @-webkit-keyframes introjspulse { - 0% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - } - - 70% { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-box-shadow: 0 0 0 10px transparent; - box-shadow: 0 0 0 10px transparent; - } - - 100% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 transparent; - box-shadow: 0 0 0 0 transparent; - } + 0% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-box-shadow: 0 0 0 10px transparent; + box-shadow: 0 0 0 10px transparent; + } + + 100% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 transparent; + box-shadow: 0 0 0 0 transparent; + } } @keyframes introjspulse { - 0% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - } - - 70% { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-box-shadow: 0 0 0 10px transparent; - box-shadow: 0 0 0 10px transparent; - } - - 100% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 transparent; - box-shadow: 0 0 0 0 transparent; - } -} \ No newline at end of file + 0% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-box-shadow: 0 0 0 10px transparent; + box-shadow: 0 0 0 10px transparent; + } + + 100% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 transparent; + box-shadow: 0 0 0 0 transparent; + } +} diff --git a/public/common/Onboarding.css b/public/common/Onboarding.css index c6c1f2925..639dc4b88 100644 --- a/public/common/Onboarding.css +++ b/public/common/Onboarding.css @@ -1,285 +1,287 @@ .introjs-overlay { - display: block; + display: block; } .introjs-showElement { - z-index: 1100 !important; + z-index: 1100 !important; } -tr.introjs-showElement>td { - z-index: 1100 !important; - position: relative; +tr.introjs-showElement > td { + z-index: 1100 !important; + position: relative; } -tr.introjs-showElement>th { - z-index: 1100 !important; - position: relative; +tr.introjs-showElement > th { + z-index: 1100 !important; + position: relative; } .introjs-disableInteraction { - z-index: 1100 !important; - position: absolute; - background-color: #fff; - opacity: 0; + z-index: 1100 !important; + position: absolute; + background-color: #fff; + opacity: 0; } .introjs-relativePosition { - position: relative; + position: relative; } .introjs-helperLayer { - box-shadow: rgb(0 153 255 / 50%) 0px 0px 2px 5px !important; - /* -webkit-box-sizing: content-box; */ - box-sizing: content-box; - position: absolute; - z-index: 1050; - border-radius: 4px; - -webkit-transition: all 0.3s ease-out; - -o-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; + box-shadow: rgb(0 153 255 / 50%) 0px 0px 2px 5px !important; + /* -webkit-box-sizing: content-box; */ + box-sizing: content-box; + position: absolute; + z-index: 1050; + border-radius: 4px; + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; } .introjs-helperLayer * { - -webkit-box-sizing: content-box; - box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .introjs-helperLayer :before { - -webkit-box-sizing: content-box; - box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .introjs-helperLayer :after { - -webkit-box-sizing: content-box; - box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .introjs-tooltipReferenceLayer { - font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif; - -webkit-box-sizing: content-box; - box-sizing: content-box; - position: absolute; - visibility: hidden; - z-index: 1200; - background-color: transparent; - -webkit-transition: all 0.3s ease-out; - -o-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; + font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", + Helvetica, Arial, sans-serif; + -webkit-box-sizing: content-box; + box-sizing: content-box; + position: absolute; + visibility: hidden; + z-index: 1200; + background-color: transparent; + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; } .introjs-tooltipReferenceLayer * { - font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif; + font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", + Helvetica, Arial, sans-serif; } .introjs-helperNumberLayer { - font-family: IBM Plex Sans !important; - font-size: 13px !important; - color: #354052 !important; - font-weight: normal; - display: flex; - float: right; - bottom: 0px; - margin-top: 18px; - top: 0px; - position: absolute; - right: 50px; + font-family: IBM Plex Sans !important; + font-size: 13px !important; + color: #354052 !important; + font-weight: normal; + display: flex; + float: right; + bottom: 0px; + margin-top: 18px; + top: 0px; + position: absolute; + right: 50px; } .introjs-tooltip { - -webkit-box-sizing: content-box; - box-sizing: content-box; - visibility: visible; - height: auto; - display: flex; - flex-direction: column; - align-items: flex-start; - position: absolute; - box-sizing: content-box; - background: white; - box-sizing: border-box; - padding: 10px; - min-width: 300px; - max-width: 300px; - border-radius: 3px; - -webkit-box-shadow: 0 1px 10px rgb(33 33 33 / 40%); - box-shadow: 0 1px 10px rgb(33 33 33 / 40%); - -webkit-transition: opacity .1s ease-out; - -o-transition: opacity .1s ease-out; - transition: opacity .1s ease-out; + -webkit-box-sizing: content-box; + box-sizing: content-box; + visibility: visible; + height: auto; + display: flex; + flex-direction: column; + align-items: flex-start; + position: absolute; + box-sizing: content-box; + background: white; + box-sizing: border-box; + padding: 10px; + min-width: 300px; + max-width: 300px; + border-radius: 3px; + -webkit-box-shadow: 0 1px 10px rgb(33 33 33 / 40%); + box-shadow: 0 1px 10px rgb(33 33 33 / 40%); + -webkit-transition: opacity 0.1s ease-out; + -o-transition: opacity 0.1s ease-out; + transition: opacity 0.1s ease-out; } .introjs-tooltiptext { - margin-top: 5px; - margin-bottom: 10px; - line-height: 20px; - font-family: IBM Plex Sans; - font-size: 13px; - color: #354052; - font-weight: normal; - margin: 5px 0 10px; + margin-top: 5px; + margin-bottom: 10px; + line-height: 20px; + font-family: IBM Plex Sans; + font-size: 13px; + color: #354052; + font-weight: normal; + margin: 5px 0 10px; } .introjs-tooltip-title { - font-family: IBM Plex Sans; - font-weight: 600 !important; - font-size: 13px !important; - color: #354052; + font-family: IBM Plex Sans; + font-weight: 600 !important; + font-size: 13px !important; + color: #354052; } .introjs-tooltip-header:after { - content: "."; - visibility: hidden; - display: block; - height: 0; - clear: both; + content: "."; + visibility: hidden; + display: block; + height: 0; + clear: both; } .introjs-tooltipbuttons { - height: 34px; - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; - float: right; + height: 34px; + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + float: right; } .introjs-skipbutton { - box-sizing: content-box; - position: absolute; - top: 10px; - right: 20px; - font-size: 20px; - font-weight: 700; - color: #000000; + box-sizing: content-box; + position: absolute; + top: 10px; + right: 20px; + font-size: 20px; + font-weight: 700; + color: #000000; } .stepCount { - font-family: IBM Plex Sans; - font-style: normal; - font-weight: normal; - font-size: 14px; - line-height: 18px; - color: #000000; - order: 0; - opacity: 0.5; + font-family: IBM Plex Sans; + font-style: normal; + font-weight: normal; + font-size: 14px; + line-height: 18px; + color: #000000; + order: 0; + opacity: 0.5; } .introjs-prevbutton { - justify-content: center; - align-items: center; - text-align: center; - flex: none; - order: 1; - flex-grow: 0; - text-shadow: none !important; - background-image: none !important; - font-family: IBM Plex Sans !important; - font-style: normal !important; - font-weight: 500 !important; - color: rgba(53, 64, 82, 0.5); - box-shadow: none !important; - padding: 5px 12px !important; - font-size: 12px !important; - background: #f7f8fa !important; - border: 1px solid #d8dde9; - box-sizing: border-box; - text-align: center; - color: #000000; - flex: none; - flex-grow: 0; - margin-left: auto; - border-radius: 0.375rem; + justify-content: center; + align-items: center; + text-align: center; + flex: none; + order: 1; + flex-grow: 0; + text-shadow: none !important; + background-image: none !important; + font-family: IBM Plex Sans !important; + font-style: normal !important; + font-weight: 500 !important; + color: rgba(53, 64, 82, 0.5); + box-shadow: none !important; + padding: 5px 12px !important; + font-size: 12px !important; + background: #f7f8fa !important; + border: 1px solid #d8dde9; + box-sizing: border-box; + text-align: center; + color: #000000; + flex: none; + flex-grow: 0; + margin-left: auto; + border-radius: 0.375rem; } .introjs-nextbutton { - text-shadow: none !important; - /* background-image: none !important; */ - font-family: IBM Plex Sans !important; - font-style: normal !important; - font-weight: 500 !important; - padding: 5px 12px !important; - font-size: 12px !important; - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); - --tw-gradient-from: #0585DA; - --tw-gradient-to: rgb(5 133 218 / 0); - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); - --tw-gradient-to: #0099ff; - background-image: linear-gradient(to top, var(--tw-gradient-stops)); - border-color: rgb(5 133 218 / var(--tw-border-opacity)); - border-width: 1px; - border-radius: 0.375rem; - flex: none; - order: 2; - margin-left: 10px; + text-shadow: none !important; + /* background-image: none !important; */ + font-family: IBM Plex Sans !important; + font-style: normal !important; + font-weight: 500 !important; + padding: 5px 12px !important; + font-size: 12px !important; + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); + --tw-gradient-from: #0585da; + --tw-gradient-to: rgb(5 133 218 / 0); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); + --tw-gradient-to: #0099ff; + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + border-color: rgb(5 133 218 / var(--tw-border-opacity)); + border-width: 1px; + border-radius: 0.375rem; + flex: none; + order: 2; + margin-left: 10px; } .introjs-prevbutton.introjs-disabled { - display: none; + display: none; } .introjs-hidden { - display: none; + display: none; } .introjs-bullets { - display: none; + display: none; } .introjsFloatingElement { - position: absolute; - height: 0; - width: 0; - left: 50%; - top: 50%; + position: absolute; + height: 0; + width: 0; + left: 50%; + top: 50%; } .introjs-fixedTooltip { - position: fixed; + position: fixed; } @-webkit-keyframes introjspulse { - 0% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - } - - 70% { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-box-shadow: 0 0 0 10px transparent; - box-shadow: 0 0 0 10px transparent; - } - - 100% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 transparent; - box-shadow: 0 0 0 0 transparent; - } + 0% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-box-shadow: 0 0 0 10px transparent; + box-shadow: 0 0 0 10px transparent; + } + + 100% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 transparent; + box-shadow: 0 0 0 0 transparent; + } } @keyframes introjspulse { - 0% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); - } - - 70% { - -webkit-transform: scale(1); - transform: scale(1); - -webkit-box-shadow: 0 0 0 10px transparent; - box-shadow: 0 0 0 10px transparent; - } - - 100% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - -webkit-box-shadow: 0 0 0 0 transparent; - box-shadow: 0 0 0 0 transparent; - } -} \ No newline at end of file + 0% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-box-shadow: 0 0 0 10px transparent; + box-shadow: 0 0 0 10px transparent; + } + + 100% { + -webkit-transform: scale(0.95); + transform: scale(0.95); + -webkit-box-shadow: 0 0 0 0 transparent; + box-shadow: 0 0 0 0 transparent; + } +} diff --git a/public/common/iframe.html b/public/common/iframe.html index 2d07f4b07..bec5c5780 100644 --- a/public/common/iframe.html +++ b/public/common/iframe.html @@ -1,132 +1,140 @@ - + + + Express Checkout - Dashboard - - Express Checkout - Dashboard + - + - + + - - - - - - - - -
- - - - -
- + @media (prefers-color-scheme: dark) { + body { + color: rgba(229, 231, 235, 1); + background-color: rgba(15, 16, 17, 1); + } + } + + + + + +
+ + + + +
+ @@ -170,4 +178,4 @@ clearInterval(interval); } count++ -}, 1000); --> \ No newline at end of file +}, 1000); --> diff --git a/public/common/lottie-files/checkbox.json b/public/common/lottie-files/checkbox.json index 61bffb7d6..c3ebb4b21 100644 --- a/public/common/lottie-files/checkbox.json +++ b/public/common/lottie-files/checkbox.json @@ -1,568 +1,407 @@ { - "v": "4.8.0", - "meta": { - "g": "LottieFiles AE 3.1.1", - "a": "", - "k": "", - "d": "", - "tc": "" - }, - "fr": 30, - "ip": 0, - "op": 8, - "w": 1080, - "h": 1080, - "nm": "Blue_Check", - "ddd": 0, - "assets": [], - "layers": [ + "v": "4.8.0", + "meta": { + "g": "LottieFiles AE 3.1.1", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 30, + "ip": 0, + "op": 8, + "w": 1080, + "h": 1080, + "nm": "Blue_Check", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "Enter_White_Check_Tick", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [0] + }, + { + "t": 4, + "s": [100] + } + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "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": 0, + "s": [25, 25, 100] + }, + { + "t": 8, + "s": [50, 50, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 5, - "ty": 4, - "nm": "Enter_White_Check_Tick", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 0 - ] - }, - { - "t": 4, - "s": [ - 100 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "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": [ + [-394, 16], + [-160, 250], + [386, -296] + ], + "c": false }, - "s": { - "a": 1, - "k": [ - { - "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": 0, - "s": [ - 25, - 25, - 100 - ] - }, - { - "t": 8, - "s": [ - 50, - 50, - 100 - ] - } - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false }, - "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": [ - [ - -394, - 16 - ], - [ - -160, - 250 - ], - [ - 386, - -296 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 1, - 1, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 188, - "ix": 5 - }, - "lc": 2, - "lj": 2, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - }, - { - "ty": "tm", - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "e": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 50 - ] - }, - { - "t": 8, - "s": [ - 100 - ] - } - ], - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "m": 1, - "ix": 2, - "nm": "Trim Paths 1", - "mn": "ADBE Vector Filter - Trim", - "hd": false - } - ], - "ip": 0, - "op": 19, - "st": 0, - "bm": 0 + { + "ty": "st", + "c": { + "a": 0, + "k": [1, 1, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 188, + "ix": 5 + }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false }, { - "ddd": 0, - "ind": 6, - "ty": 4, - "nm": "Enter_Bg_Checkbox", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 0 - ] - }, - { - "t": 4, - "s": [ - 100 - ] - } - ], - "ix": 11 + "ty": "tm", + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 + "o": { + "x": [0.333], + "y": [0] }, - "s": { - "a": 1, - "k": [ - { - "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": 0, - "s": [ - 96, - 96, - 100 - ] - }, - { - "t": 8, - "s": [ - 100, - 100, - 100 - ] - } - ], - "ix": 6 - } - }, - "ao": 0, - "shapes": [ - { - "ty": "gr", - "it": [ - { - "ty": "rc", - "d": 1, - "s": { - "a": 0, - "k": [ - 1060, - 1060 - ], - "ix": 2 - }, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 3 - }, - "r": { - "a": 0, - "k": 280, - "ix": 4 - }, - "nm": "Rectangle Path 1", - "mn": "ADBE Vector Shape - Rect", - "hd": false - }, - { - "ty": "fl", - "c": { - "a": 0, - "k": [ - 0.054901960784, - 0.690196078431, - 0.145098039216, - 1 - ], - "ix": 4 - }, - "o": { - "a": 0, - "k": 100, - "ix": 5 - }, - "r": 1, - "bm": 0, - "nm": "Fill 1", - "mn": "ADBE Vector Graphic - Fill", - "hd": false - }, - { - "ty": "tr", - "p": { - "a": 0, - "k": [ - 0, - -2 - ], - "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": "Rectangle 1", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } + "t": 0, + "s": [50] + }, + { + "t": 8, + "s": [100] + } ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 19, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "Enter_Bg_Checkbox", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [0] + }, + { + "t": 4, + "s": [100] + } + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "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": 0, + "s": [96, 96, 100] + }, + { + "t": 8, + "s": [100, 100, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 0, + "k": [1060, 1060], + "ix": 2 + }, + "p": { + "a": 0, + "k": [0, 0], + "ix": 3 + }, + "r": { + "a": 0, + "k": 280, + "ix": 4 + }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.054901960784, 0.690196078431, 0.145098039216, 1], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { + "a": 0, + "k": [0, -2], + "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": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false } - ], - "markers": [] -} \ No newline at end of file + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/common/lottie-files/checkboxPurple.json b/public/common/lottie-files/checkboxPurple.json index 87d2d858e..318e76c11 100644 --- a/public/common/lottie-files/checkboxPurple.json +++ b/public/common/lottie-files/checkboxPurple.json @@ -1,529 +1,426 @@ { - "nm": "Purple_check", - "ddd": 0, - "h": 1080, - "w": 1080, - "meta": { - "g": "LottieFiles AE 3.1.1" - }, - "layers": [ + "nm": "Purple_check", + "ddd": 0, + "h": 1080, + "w": 1080, + "meta": { + "g": "LottieFiles AE 3.1.1" + }, + "layers": [ + { + "ty": 4, + "nm": "Enter_White_Check_Tick", + "sr": 1, + "st": 0, + "op": 19, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 + }, + "i": { + "x": 0.667, + "y": 1 + }, + "s": [25, 25, 100], + "t": 0 + }, + { + "s": [50, 50, 100], + "t": 8 + } + ], + "ix": 6 + }, + "sk": { + "a": 0, + "k": 0 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "sa": { + "a": 0, + "k": 0 + }, + "o": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 + }, + "i": { + "x": 0.667, + "y": 1 + }, + "s": [0], + "t": 0 + }, + { + "s": [100], + "t": 4 + } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ { - "ty": 4, - "nm": "Enter_White_Check_Tick", - "sr": 1, - "st": 0, - "op": 19, - "ip": 0, - "hd": false, - "ddd": 0, - "bm": 0, - "hasMask": false, - "ao": 0, - "ks": { - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-394, 16], + [-160, 250], + [386, -296] + ] }, - "s": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 25, - 25, - 100 - ], - "t": 0 - }, - { - "s": [ - 50, - 50, - 100 - ], - "t": 8 - } - ], - "ix": 6 - }, - "sk": { - "a": 0, - "k": 0 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "sa": { - "a": 0, - "k": 0 - }, - "o": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 0 - ], - "t": 0 - }, - { - "s": [ - 100 - ], - "t": 4 - } - ], - "ix": 11 - } + "ix": 2 + } }, - "ef": [], - "shapes": [ - { - "ty": "gr", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Group", - "nm": "Shape 1", - "ix": 1, - "cix": 2, - "np": 3, - "it": [ - { - "ty": "sh", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Shape - Group", - "nm": "Path 1", - "ix": 1, - "d": 1, - "ks": { - "a": 0, - "k": { - "c": false, - "i": [ - [ - 0, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 0 - ] - ], - "o": [ - [ - 0, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 0 - ] - ], - "v": [ - [ - -394, - 16 - ], - [ - -160, - 250 - ], - [ - 386, - -296 - ] - ] - }, - "ix": 2 - } - }, - { - "ty": "st", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Graphic - Stroke", - "nm": "Stroke 1", - "lc": 2, - "lj": 2, - "ml": 1, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 188, - "ix": 5 - }, - "c": { - "a": 0, - "k": [ - 1, - 1, - 1 - ], - "ix": 3 - } - }, - { - "ty": "tr", - "a": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - 100, - 100 - ], - "ix": 3 - }, - "sk": { - "a": 0, - "k": 0, - "ix": 4 - }, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 6 - }, - "sa": { - "a": 0, - "k": 0, - "ix": 5 - }, - "o": { - "a": 0, - "k": 100, - "ix": 7 - } - } - ] - }, - { - "ty": "tm", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Filter - Trim", - "nm": "Trim Paths 1", - "ix": 2, - "e": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 50 - ], - "t": 0 - }, - { - "s": [ - 100 - ], - "t": 8 - } - ], - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "m": 1 - } - ], - "ind": 1 + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 2, + "lj": 2, + "ml": 1, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 188, + "ix": 5 + }, + "c": { + "a": 0, + "k": [1, 1, 1], + "ix": 3 + } + }, + { + "ty": "tr", + "a": { + "a": 0, + "k": [0, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [100, 100], + "ix": 3 + }, + "sk": { + "a": 0, + "k": 0, + "ix": 4 + }, + "p": { + "a": 0, + "k": [0, 0], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 6 + }, + "sa": { + "a": 0, + "k": 0, + "ix": 5 + }, + "o": { + "a": 0, + "k": 100, + "ix": 7 + } + } + ] }, { - "ty": 4, - "nm": "Enter_Bg_Checkbox", - "sr": 1, - "st": 0, - "op": 150, - "ip": 0, - "hd": false, - "ddd": 0, - "bm": 0, - "hasMask": false, - "ao": 0, - "ks": { - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 96, - 96, - 100 - ], - "t": 0 - }, - { - "s": [ - 100, - 100, - 100 - ], - "t": 8 - } - ], - "ix": 6 - }, - "sk": { - "a": 0, - "k": 0 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 }, - "sa": { - "a": 0, - "k": 0 + "i": { + "x": 0.667, + "y": 1 }, - "o": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 0 - ], - "t": 0 - }, - { - "s": [ - 100 - ], - "t": 4 - } - ], - "ix": 11 - } - }, - "ef": [], - "shapes": [ - { - "ty": "gr", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Group", - "nm": "Rectangle 1", - "ix": 1, - "cix": 2, - "np": 3, - "it": [ - { - "ty": "rc", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Shape - Rect", - "nm": "Rectangle Path 1", - "d": 1, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 3 - }, - "r": { - "a": 0, - "k": 280, - "ix": 4 - }, - "s": { - "a": 0, - "k": [ - 1060, - 1060 - ], - "ix": 2 - } - }, - { - "ty": "fl", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Graphic - Fill", - "nm": "Fill 1", - "c": { - "a": 0, - "k": [ - 0.3098, - 0.3294, - 0.9373 - ], - "ix": 4 - }, - "r": 1, - "o": { - "a": 0, - "k": 100, - "ix": 5 - } - }, - { - "ty": "tr", - "a": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - 100, - 100 - ], - "ix": 3 - }, - "sk": { - "a": 0, - "k": 0, - "ix": 4 - }, - "p": { - "a": 0, - "k": [ - 0, - -2 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 6 - }, - "sa": { - "a": 0, - "k": 0, - "ix": 5 - }, - "o": { - "a": 0, - "k": 100, - "ix": 7 - } - } - ] - } + "s": [50], + "t": 0 + }, + { + "s": [100], + "t": 8 + } ], - "ind": 2 + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "m": 1 + } + ], + "ind": 1 + }, + { + "ty": 4, + "nm": "Enter_Bg_Checkbox", + "sr": 1, + "st": 0, + "op": 150, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 + }, + "i": { + "x": 0.667, + "y": 1 + }, + "s": [96, 96, 100], + "t": 0 + }, + { + "s": [100, 100, 100], + "t": 8 + } + ], + "ix": 6 + }, + "sk": { + "a": 0, + "k": 0 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "sa": { + "a": 0, + "k": 0 + }, + "o": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 + }, + "i": { + "x": 0.667, + "y": 1 + }, + "s": [0], + "t": 0 + }, + { + "s": [100], + "t": 4 + } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "rc", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Rect", + "nm": "Rectangle Path 1", + "d": 1, + "p": { + "a": 0, + "k": [0, 0], + "ix": 3 + }, + "r": { + "a": 0, + "k": 280, + "ix": 4 + }, + "s": { + "a": 0, + "k": [1060, 1060], + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { + "a": 0, + "k": [0.3098, 0.3294, 0.9373], + "ix": 4 + }, + "r": 1, + "o": { + "a": 0, + "k": 100, + "ix": 5 + } + }, + { + "ty": "tr", + "a": { + "a": 0, + "k": [0, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [100, 100], + "ix": 3 + }, + "sk": { + "a": 0, + "k": 0, + "ix": 4 + }, + "p": { + "a": 0, + "k": [0, -2], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 6 + }, + "sa": { + "a": 0, + "k": 0, + "ix": 5 + }, + "o": { + "a": 0, + "k": 100, + "ix": 7 + } + } + ] } - ], - "v": "4.8.0", - "fr": 30, - "op": 8, - "ip": 0, - "assets": [] -} \ No newline at end of file + ], + "ind": 2 + } + ], + "v": "4.8.0", + "fr": 30, + "op": 8, + "ip": 0, + "assets": [] +} diff --git a/public/common/lottie-files/deselectTick.json b/public/common/lottie-files/deselectTick.json index 1dc0983d6..80f8cca41 100644 --- a/public/common/lottie-files/deselectTick.json +++ b/public/common/lottie-files/deselectTick.json @@ -1,309 +1,224 @@ { - "v": "4.8.0", - "meta": { - "g": "LottieFiles AE 3.1.1", - "a": "", - "k": "", - "d": "", - "tc": "" - }, - "fr": 30, - "ip": 0, - "op": 7, - "w": 1080, - "h": 1080, - "nm": "Blue_Check", - "ddd": 0, - "assets": [], - "layers": [ + "v": "4.8.0", + "meta": { + "g": "LottieFiles AE 3.1.1", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 30, + "ip": 0, + "op": 7, + "w": 1080, + "h": 1080, + "nm": "Blue_Check", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Exit_Blue_Tick", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833], + "y": [1] + }, + "o": { + "x": [0.167], + "y": [0] + }, + "t": 4, + "s": [100] + }, + { + "t": 6, + "s": [0] + } + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "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": 0, + "s": [100, 100, 100] + }, + { + "t": 6, + "s": [50, 50, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 1, - "ty": 4, - "nm": "Exit_Blue_Tick", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.167 - ], - "y": [ - 0 - ] - }, - "t": 4, - "s": [ - 100 - ] - }, - { - "t": 6, - "s": [ - 0 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "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": [ + [-394, 16], + [-160, 250], + [386, -296] + ], + "c": false }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "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": 0, - "s": [ - 100, - 100, - 100 - ] - }, - { - "t": 6, - "s": [ - 50, - 50, - 100 - ] - } - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false }, - "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": [ - [ - -394, - 16 - ], - [ - -160, - 250 - ], - [ - 386, - -296 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 0, - 0.6, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 155, - "ix": 5 - }, - "lc": 2, - "lj": 2, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - }, - { - "ty": "tm", - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "e": { - "a": 0, - "k": 100, - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "m": 1, - "ix": 2, - "nm": "Trim Paths 1", - "mn": "ADBE Vector Filter - Trim", - "hd": false - } - ], - "ip": 0, - "op": 143, - "st": -7, - "bm": 0 + { + "ty": "st", + "c": { + "a": 0, + "k": [0, 0.6, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 155, + "ix": 5 + }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "e": { + "a": 0, + "k": 100, + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false } - ], - "markers": [] -} \ No newline at end of file + ], + "ip": 0, + "op": 143, + "st": -7, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/common/lottie-files/enterCross.json b/public/common/lottie-files/enterCross.json index adbeadb8c..4e49acb36 100644 --- a/public/common/lottie-files/enterCross.json +++ b/public/common/lottie-files/enterCross.json @@ -1,624 +1,472 @@ { - "v": "4.8.0", - "meta": { - "g": "LottieFiles AE 3.1.1", - "a": "", - "k": "", - "d": "", - "tc": "" - }, - "fr": 30, - "ip": 0, - "op": 8, - "w": 1080, - "h": 1080, - "nm": "Blue_Check", - "ddd": 0, - "assets": [], - "layers": [ + "v": "4.8.0", + "meta": { + "g": "LottieFiles AE 3.1.1", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 30, + "ip": 0, + "op": 8, + "w": 1080, + "h": 1080, + "nm": "Blue_Check", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Cross 2", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": -45, + "ix": 10 + }, + "p": { + "a": 0, + "k": [0, 0, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [6.515, 2.536, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [-100, 100, 100], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 1, - "ty": 4, - "nm": "Cross 2", - "parent": 3, - "sr": 1, - "ks": { - "o": { - "a": 0, - "k": 100, - "ix": 11 - }, - "r": { - "a": 0, - "k": -45, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 6.515, - 2.536, - 0 - ], - "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": [ + [6.686, -258.728], + [6.343, 263.8] + ], + "c": false }, - "s": { - "a": 0, - "k": [ - -100, - 100, - 100 - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false }, - "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": [ - [ - 6.686, - -258.728 - ], - [ - 6.343, - 263.8 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 1, - 1, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 58, - "ix": 5 - }, - "lc": 2, - "lj": 1, - "ml": 4, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "ty": "st", + "c": { + "a": 0, + "k": [1, 1, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 58, + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Cross 1", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 0, + "k": 100, + "ix": 11 + }, + "r": { + "a": 0, + "k": 45, + "ix": 10 }, + "p": { + "a": 0, + "k": [0, 0, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [6.515, 2.536, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [100, 100, 100], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 2, - "ty": 4, - "nm": "Cross 1", - "parent": 3, - "sr": 1, - "ks": { - "o": { - "a": 0, - "k": 100, - "ix": 11 - }, - "r": { - "a": 0, - "k": 45, - "ix": 10 + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [6.686, -258.728], + [6.343, 263.8] + ], + "c": false }, - "p": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 6.515, - 2.536, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - 100, - 100, - 100 - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [1, 1, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 58, + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Bg_ic_cross", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] + }, + "o": { + "x": [0.167], + "y": [0.167] + }, + "t": 0, + "s": [0] }, - "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": [ - [ - 6.686, - -258.728 - ], - [ - 6.343, - 263.8 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 1, - 1, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 58, - "ix": 5 - }, - "lc": 2, - "lj": 1, - "ml": 4, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "t": 8, + "s": [25] + } + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667, 0.667, 0.667], + "y": [1, 1, 1] + }, + "o": { + "x": [0.167, 0.167, 0.167], + "y": [0.167, 0.167, 8.333] + }, + "t": 0, + "s": [50, 50, 100] + }, + { + "t": 8, + "s": [100, 100, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 3, - "ty": 4, - "nm": "Bg_ic_cross", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.167 - ], - "y": [ - 0.167 - ] - }, - "t": 0, - "s": [ - 0 - ] - }, - { - "t": 8, - "s": [ - 25 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667, - 0.667, - 0.667 - ], - "y": [ - 1, - 1, - 1 - ] - }, - "o": { - "x": [ - 0.167, - 0.167, - 0.167 - ], - "y": [ - 0.167, - 0.167, - 8.333 - ] - }, - "t": 0, - "s": [ - 50, - 50, - 100 - ] - }, - { - "t": 8, - "s": [ - 100, - 100, - 100 - ] - } - ], - "ix": 6 - } + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 0, + "k": [1060, 1060], + "ix": 2 + }, + "p": { + "a": 0, + "k": [0, 0], + "ix": 3 + }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.207843137255, 0.250980392157, 0.321568627451, 1], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false }, - "ao": 0, - "shapes": [ - { - "ty": "gr", - "it": [ - { - "d": 1, - "ty": "el", - "s": { - "a": 0, - "k": [ - 1060, - 1060 - ], - "ix": 2 - }, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 3 - }, - "nm": "Ellipse Path 1", - "mn": "ADBE Vector Shape - Ellipse", - "hd": false - }, - { - "ty": "fl", - "c": { - "a": 0, - "k": [ - 0.207843137255, - 0.250980392157, - 0.321568627451, - 1 - ], - "ix": 4 - }, - "o": { - "a": 0, - "k": 100, - "ix": 5 - }, - "r": 1, - "bm": 0, - "nm": "Fill 1", - "mn": "ADBE Vector Graphic - Fill", - "hd": false - }, - { - "ty": "tr", - "p": { - "a": 0, - "k": [ - 0, - -2 - ], - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "ty": "tr", + "p": { + "a": 0, + "k": [0, -2], + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false } - ], - "markers": [] -} \ No newline at end of file + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/common/lottie-files/exitCross.json b/public/common/lottie-files/exitCross.json index 473a7adcd..206eb5a51 100644 --- a/public/common/lottie-files/exitCross.json +++ b/public/common/lottie-files/exitCross.json @@ -1,711 +1,523 @@ { - "v": "4.8.0", - "meta": { - "g": "LottieFiles AE 3.1.1", - "a": "", - "k": "", - "d": "", - "tc": "" - }, - "fr": 30, - "ip": 0, - "op": 7, - "w": 1080, - "h": 1080, - "nm": "Exit_ic_cross", - "ddd": 0, - "assets": [], - "layers": [ + "v": "4.8.0", + "meta": { + "g": "LottieFiles AE 3.1.1", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 30, + "ip": 0, + "op": 7, + "w": 1080, + "h": 1080, + "nm": "Exit_ic_cross", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Cross 2", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833], + "y": [0.833] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 4, + "s": [100] + }, + { + "t": 6, + "s": [0] + } + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": -45, + "ix": 10 + }, + "p": { + "a": 0, + "k": [0, 0, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [6.515, 2.536, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [-100, 100, 100], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 1, - "ty": 4, - "nm": "Cross 2", - "parent": 3, - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833 - ], - "y": [ - 0.833 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 4, - "s": [ - 100 - ] - }, - { - "t": 6, - "s": [ - 0 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 0, - "k": -45, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 2 + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [6.686, -258.728], + [6.343, 263.8] + ], + "c": false }, - "a": { - "a": 0, - "k": [ - 6.515, - 2.536, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - -100, - 100, - 100 - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [1, 1, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 58, + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Cross 1", + "parent": 3, + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833], + "y": [0.833] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 4, + "s": [100] }, - "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": [ - [ - 6.686, - -258.728 - ], - [ - 6.343, - 263.8 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 1, - 1, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 58, - "ix": 5 - }, - "lc": 2, - "lj": 1, - "ml": 4, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "t": 6, + "s": [0] + } + ], + "ix": 11 }, + "r": { + "a": 0, + "k": 45, + "ix": 10 + }, + "p": { + "a": 0, + "k": [0, 0, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [6.515, 2.536, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [100, 100, 100], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 2, - "ty": 4, - "nm": "Cross 1", - "parent": 3, - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833 - ], - "y": [ - 0.833 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 4, - "s": [ - 100 - ] - }, - { - "t": 6, - "s": [ - 0 - ] - } - ], - "ix": 11 + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0] + ], + "v": [ + [6.686, -258.728], + [6.343, 263.8] + ], + "c": false }, - "r": { - "a": 0, - "k": 45, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 6.515, - 2.536, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - 100, - 100, - 100 - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [1, 1, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 58, + "ix": 5 + }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Bg_ic_cross", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833], + "y": [0.833] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [25] + }, + { + "t": 6, + "s": [0] + } + ], + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833], + "y": [0.833] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [0] }, - "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": [ - [ - 6.686, - -258.728 - ], - [ - 6.343, - 263.8 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 1, - 1, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 58, - "ix": 5 - }, - "lc": 2, - "lj": 1, - "ml": 4, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "t": 6, + "s": [45] + } + ], + "ix": 10 }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833, 0.833, 0.833], + "y": [0.833, 0.833, 9.333] + }, + "o": { + "x": [0.333, 0.333, 0.333], + "y": [0, 0, 0] + }, + "t": 0, + "s": [100, 100, 100] + }, + { + "t": 6, + "s": [50, 50, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 3, - "ty": 4, - "nm": "Bg_ic_cross", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833 - ], - "y": [ - 0.833 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 25 - ] - }, - { - "t": 6, - "s": [ - 0 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833 - ], - "y": [ - 0.833 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 0 - ] - }, - { - "t": 6, - "s": [ - 45 - ] - } - ], - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833, - 0.833, - 0.833 - ], - "y": [ - 0.833, - 0.833, - 9.333 - ] - }, - "o": { - "x": [ - 0.333, - 0.333, - 0.333 - ], - "y": [ - 0, - 0, - 0 - ] - }, - "t": 0, - "s": [ - 100, - 100, - 100 - ] - }, - { - "t": 6, - "s": [ - 50, - 50, - 100 - ] - } - ], - "ix": 6 - } + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 0, + "k": [1060, 1060], + "ix": 2 + }, + "p": { + "a": 0, + "k": [0, 0], + "ix": 3 + }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.207843137255, 0.250980392157, 0.321568627451, 1], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false }, - "ao": 0, - "shapes": [ - { - "ty": "gr", - "it": [ - { - "d": 1, - "ty": "el", - "s": { - "a": 0, - "k": [ - 1060, - 1060 - ], - "ix": 2 - }, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 3 - }, - "nm": "Ellipse Path 1", - "mn": "ADBE Vector Shape - Ellipse", - "hd": false - }, - { - "ty": "fl", - "c": { - "a": 0, - "k": [ - 0.207843137255, - 0.250980392157, - 0.321568627451, - 1 - ], - "ix": 4 - }, - "o": { - "a": 0, - "k": 100, - "ix": 5 - }, - "r": 1, - "bm": 0, - "nm": "Fill 1", - "mn": "ADBE Vector Graphic - Fill", - "hd": false - }, - { - "ty": "tr", - "p": { - "a": 0, - "k": [ - 0, - -2 - ], - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "ty": "tr", + "p": { + "a": 0, + "k": [0, -2], + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false } - ], - "markers": [] -} \ No newline at end of file + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/common/lottie-files/selectedTick.json b/public/common/lottie-files/selectedTick.json index 80544202d..6e12daf1f 100644 --- a/public/common/lottie-files/selectedTick.json +++ b/public/common/lottie-files/selectedTick.json @@ -1,338 +1,241 @@ { - "v": "4.8.0", - "meta": { - "g": "LottieFiles AE 3.1.1", - "a": "", - "k": "", - "d": "", - "tc": "" - }, - "fr": 30, - "ip": 0, - "op": 8, - "w": 1080, - "h": 1080, - "nm": "Blue_Check", - "ddd": 0, - "assets": [], - "layers": [ - { - "ddd": 0, - "ind": 2, - "ty": 4, - "nm": "Enter_Blue_Tick", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 0 - ] - }, - { - "t": 4, - "s": [ - 100 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 + "v": "4.8.0", + "meta": { + "g": "LottieFiles AE 3.1.1", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 30, + "ip": 0, + "op": 8, + "w": 1080, + "h": 1080, + "nm": "Blue_Check", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Enter_Blue_Tick", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [0] }, - "s": { - "a": 1, - "k": [ - { - "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": 0, - "s": [ - 50, - 50, - 100 - ] - }, - { - "t": 8, - "s": [ - 100, - 100, - 100 - ] - } - ], - "ix": 6 + { + "t": 4, + "s": [100] } - }, - "ao": 0, - "shapes": [ + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ { - "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": [ - [ - -394, - 16 - ], - [ - -160, - 250 - ], - [ - 386, - -296 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 0, - 0.6, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 155, - "ix": 5 - }, - "lc": 2, - "lj": 2, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false + "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": 0, + "s": [50, 50, 100] }, { - "ty": "tm", - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "e": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 50 - ] - }, - { - "t": 8, - "s": [ - 100 - ] - } + "t": 8, + "s": [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] ], - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "m": 1, - "ix": 2, - "nm": "Trim Paths 1", - "mn": "ADBE Vector Filter - Trim", - "hd": false + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-394, 16], + [-160, 250], + [386, -296] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [0, 0.6, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 155, + "ix": 5 + }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "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" } - ], - "ip": 0, - "op": 19, - "st": 0, - "bm": 0 - } - ], - "markers": [] -} \ No newline at end of file + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [50] + }, + { + "t": 8, + "s": [100] + } + ], + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 19, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/common/lottie-files/successConfetti.json b/public/common/lottie-files/successConfetti.json index 2bc8ddcaa..676e4acd4 100644 --- a/public/common/lottie-files/successConfetti.json +++ b/public/common/lottie-files/successConfetti.json @@ -1 +1,31127 @@ -{"nm":"Confetti 1","ddd":0,"h":300,"w":250,"meta":{"g":"@lottiefiles/toolkit-js 0.26.1"},"layers":[{"ty":3,"nm":"Null 3","sr":1,"st":0,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[49.8,59.77,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[125,150,0],"ix":2},"r":{"a":0,"k":260,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":0,"ix":11}},"ef":[],"ind":1},{"ty":4,"nm":"Shape Layer 50","sr":1,"st":14,"op":60,"ip":14,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[41,41,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0],"ix":2},"r":{"a":0,"k":487,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":14},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":19},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":41},{"s":[0],"t":57}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-19.362,34.498],[7.899,-25.433],[37.607,53.867],[11.905,108.592]],"o":[[0,0],[42.457,-75.648],[-9.025,29.061],[-47.221,-67.637],[-3.807,-34.72]],"v":[[1,2],[-48.536,-23.607],[-76.476,-100.021],[27.098,-130.112],[-120.809,-222.715]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[0.4745,1,0.1137],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":14},{"s":[100],"t":49}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":17},{"s":[100],"t":54}],"ix":1},"m":1}],"ind":2,"parent":1},{"ty":4,"nm":"Shape Layer 49","sr":1,"st":13,"op":60,"ip":13,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[70,70,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0],"ix":2},"r":{"a":0,"k":353,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":18},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":40},{"s":[0],"t":56}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[8.506,-58.529],[28.328,67.272],[11.905,108.592]],"o":[[0,0],[9.966,-26.338],[-12.365,85.083],[-32.013,-76.024],[-3.807,-34.72]],"v":[[1,2],[-48.536,-23.607],[-76.476,-100.021],[27.098,-130.112],[-120.809,-222.715]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[0.7294,0.1137,1],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":13},{"s":[100],"t":48}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":16},{"s":[100],"t":53}],"ix":1},"m":1}],"ind":3,"parent":1},{"ty":4,"nm":"Shape Layer 48","sr":1,"st":12,"op":60,"ip":12,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[70,70,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0],"ix":2},"r":{"a":0,"k":187,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":17},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":39},{"s":[0],"t":55}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[8.254,-31.239],[20.685,70.001],[17.795,30.055]],"o":[[0,0],[9.966,-26.338],[-7.439,28.154],[-10.769,-36.442],[-17.795,-30.055]],"v":[[1,2],[2.692,-79.782],[-49.416,-90.653],[-14.589,-135.23],[-105.31,-168.421]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[1,0.898,0.1137],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":12},{"s":[100],"t":47}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":15},{"s":[100],"t":52}],"ix":1},"m":1}],"ind":4,"parent":1},{"ty":4,"nm":"Shape Layer 47","sr":1,"st":11,"op":60,"ip":11,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[58,58,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0],"ix":2},"r":{"a":0,"k":203,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":16},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":38},{"s":[0],"t":54}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[-1,38],[35.009,-27.828],[-11,31]],"o":[[0,0],[9.966,-26.338],[1,-38],[-39,31],[11,-31]],"v":[[1,2],[48,-39],[29,-112],[136,-107],[103,-176]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[1,0.1059,0.3843],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":11},{"s":[100],"t":46}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":14},{"s":[100],"t":51}],"ix":1},"m":1}],"ind":5,"parent":1},{"ty":4,"nm":"Shape Layer 46","sr":1,"st":10,"op":60,"ip":10,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":37},{"s":[0],"t":53}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[-1,38],[35.009,-27.828],[-11,31]],"o":[[0,0],[9.966,-26.338],[1,-38],[-39,31],[11,-31]],"v":[[1,2],[48,-39],[29,-112],[136,-107],[103,-176]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[0.0627,0.2471,0.7373],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":10},{"s":[100],"t":45}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":13},{"s":[100],"t":50}],"ix":1},"m":1}],"ind":6,"parent":1},{"ty":4,"nm":"Shape Layer 45","sr":1,"st":9,"op":60,"ip":9,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[20.02,24.02,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[125,150,0],"ix":2},"r":{"a":0,"k":487,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":14},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":36},{"s":[0],"t":52}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-19.362,34.498],[7.899,-25.433],[37.607,53.867],[11.905,108.592]],"o":[[0,0],[42.457,-75.648],[-9.025,29.061],[-47.221,-67.637],[-3.807,-34.72]],"v":[[1,2],[-48.536,-23.607],[-76.476,-100.021],[27.098,-130.112],[-120.809,-222.715]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[0.4745,1,0.1137],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":9},{"s":[100],"t":44}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":12},{"s":[100],"t":49}],"ix":1},"m":1}],"ind":7},{"ty":4,"nm":"Shape Layer 43","sr":1,"st":8,"op":60,"ip":8,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[34.18,41.02,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[125,150,0],"ix":2},"r":{"a":0,"k":353,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":35},{"s":[0],"t":51}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[8.506,-58.529],[28.328,67.272],[11.905,108.592]],"o":[[0,0],[9.966,-26.338],[-12.365,85.083],[-32.013,-76.024],[-3.807,-34.72]],"v":[[1,2],[-48.536,-23.607],[-76.476,-100.021],[27.098,-130.112],[-120.809,-222.715]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[0.7294,0.1137,1],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":8},{"s":[100],"t":43}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":11},{"s":[100],"t":48}],"ix":1},"m":1}],"ind":8},{"ty":4,"nm":"Shape Layer 42","sr":1,"st":7,"op":60,"ip":7,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[34.18,41.02,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[125,150,0],"ix":2},"r":{"a":0,"k":187,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":34},{"s":[0],"t":50}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[8.254,-31.239],[20.685,70.001],[17.795,30.055]],"o":[[0,0],[9.966,-26.338],[-7.439,28.154],[-10.769,-36.442],[-17.795,-30.055]],"v":[[1,2],[2.692,-79.782],[-49.416,-90.653],[-14.589,-135.23],[-105.31,-168.421]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[1,0.898,0.1137],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":7},{"s":[100],"t":42}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":10},{"s":[100],"t":47}],"ix":1},"m":1}],"ind":9},{"ty":4,"nm":"Shape Layer 44","sr":1,"st":6,"op":60,"ip":6,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[28.32,33.98,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[125,150,0],"ix":2},"r":{"a":0,"k":203,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":33},{"s":[0],"t":49}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[-1,38],[35.009,-27.828],[-11,31]],"o":[[0,0],[9.966,-26.338],[1,-38],[-39,31],[11,-31]],"v":[[1,2],[48,-39],[29,-112],[136,-107],[103,-176]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[1,0.1059,0.3843],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":6},{"s":[100],"t":41}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":9},{"s":[100],"t":46}],"ix":1},"m":1}],"ind":10},{"ty":4,"nm":"Shape Layer 41","sr":1,"st":5,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48.83,58.59,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[125,150,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":32},{"s":[0],"t":48}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-14,37],[-1,38],[35.009,-27.828],[-11,31]],"o":[[0,0],[9.966,-26.338],[1,-38],[-39,31],[11,-31]],"v":[[1,2],[48,-39],[29,-112],[136,-107],[103,-176]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"c":{"a":0,"k":[0.0627,0.2471,0.7373],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tm","bm":0,"hd":false,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","ix":2,"e":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":5},{"s":[100],"t":40}],"ix":2},"o":{"a":0,"k":0,"ix":3},"s":{"a":1,"k":[{"o":{"x":0.139,"y":0},"i":{"x":0,"y":1},"s":[0],"t":8},{"s":[100],"t":45}],"ix":1},"m":1}],"ind":11},{"ty":4,"nm":"Shape Layer 40","sr":1,"st":6,"op":60,"ip":6,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.27},"s":[68.37,51.44,100],"t":6},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.945},"s":[73.11,47.71,100],"t":7},{"o":{"x":0.167,"y":-0.158},"i":{"x":0.833,"y":1.242},"s":[53.05,47.07,100],"t":8},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.932},"s":[59.99,73.8,100],"t":9},{"o":{"x":0.167,"y":-0.361},"i":{"x":0.833,"y":0.849},"s":[32.93,66.8,100],"t":10},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.46},"s":[38,81.89,100],"t":11},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":0.921},"s":[42.13,69.28,100],"t":12},{"o":{"x":0.167,"y":-1.604},"i":{"x":0.833,"y":-0.039},"s":[64.71,49.48,100],"t":13},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":0.895},"s":[63.59,49.88,100],"t":14},{"o":{"x":0.167,"y":0.399},"i":{"x":0.833,"y":1.337},"s":[50.81,61.28,100],"t":15},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.903},"s":[47.44,39.78,100],"t":16},{"o":{"x":0.167,"y":0.607},"i":{"x":0.833,"y":1.652},"s":[64.45,72.77,100],"t":17},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.86},"s":[67.15,42.98,100],"t":18},{"o":{"x":0.167,"y":0.207},"i":{"x":0.833,"y":1.036},"s":[43.27,62.38,100],"t":19},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.926},"s":[27.16,76.08,100],"t":20},{"o":{"x":0.167,"y":-0.634},"i":{"x":0.833,"y":0.262},"s":[50.25,54.94,100],"t":21},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.946},"s":[47.57,54.58,100],"t":22},{"o":{"x":0.167,"y":-0.154},"i":{"x":0.833,"y":0.703},"s":[26.5,72.01,100],"t":23},{"o":{"x":0.167,"y":0.116},"i":{"x":0.833,"y":0.998},"s":[33.88,65.98,100],"t":24},{"o":{"x":0.167,"y":-0.002},"i":{"x":0.833,"y":0.949},"s":[52.83,35.71,100],"t":25},{"o":{"x":0.167,"y":-0.135},"i":{"x":0.833,"y":0.912},"s":[34.38,28.97,100],"t":26},{"o":{"x":0.167,"y":1.486},"i":{"x":0.833,"y":0.585},"s":[41.43,56.93,100],"t":27},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":1.234},"s":[41.85,65.54,100],"t":28},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":0.975},"s":[43.52,57.06,100],"t":29},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":1.375},"s":[37.15,37.07,100],"t":30},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":1.021},"s":[41.61,37.58,100],"t":31},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":0.877},"s":[17.08,42.25,100],"t":32},{"o":{"x":0.167,"y":0.257},"i":{"x":0.833,"y":0.984},"s":[47.78,48.79,100],"t":33},{"o":{"x":0.167,"y":-0.02},"i":{"x":0.833,"y":0.901},"s":[62.47,39.51,100],"t":34},{"o":{"x":0.167,"y":0.536},"i":{"x":0.833,"y":0.553},"s":[50.63,39.15,100],"t":35},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.782},"s":[48.45,47.7,100],"t":36},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.859},"s":[38.93,41.1,100],"t":37},{"o":{"x":0.167,"y":0.203},"i":{"x":0.833,"y":0.953},"s":[23.51,23.99,100],"t":38},{"o":{"x":0.167,"y":-0.106},"i":{"x":0.833,"y":0.831},"s":[12.81,0.96,100],"t":39},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":1.052},"s":[17.52,10.71,100],"t":40},{"o":{"x":0.167,"y":0.032},"i":{"x":0.833,"y":0.639},"s":[22.36,35.43,100],"t":41},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.99},"s":[14.52,21.92,100],"t":42},{"o":{"x":0.167,"y":-0.011},"i":{"x":0.833,"y":0.965},"s":[-11.63,8.12,100],"t":43},{"o":{"x":0.167,"y":-0.06},"i":{"x":0.833,"y":0.893},"s":[11.37,9.29,100],"t":44},{"o":{"x":0.167,"y":0.379},"i":{"x":0.833,"y":1.57},"s":[-1.99,30.27,100],"t":45},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.965},"s":[-5.76,41.83,100],"t":46},{"o":{"x":0.167,"y":-0.061},"i":{"x":0.833,"y":0.84},"s":[23.75,25.28,100],"t":47},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":1.129},"s":[6.66,1.33,100],"t":48},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.979},"s":[-8.98,19.31,100],"t":49},{"o":{"x":0.167,"y":-0.028},"i":{"x":0.833,"y":0.947},"s":[30.85,39.09,100],"t":50},{"o":{"x":0.167,"y":-0.146},"i":{"x":0.833,"y":0.844},"s":[1.1,14.24,100],"t":51},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.934},"s":[11.9,-1.38,100],"t":52},{"o":{"x":0.167,"y":-0.314},"i":{"x":0.833,"y":0.521},"s":[21.32,31.82,100],"t":53},{"o":{"x":0.167,"y":0.101},"i":{"x":0.833,"y":0.932},"s":[19.34,7.82,100],"t":54},{"o":{"x":0.167,"y":-0.359},"i":{"x":0.833,"y":0.265},"s":[9.94,31.4,100],"t":55},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.823},"s":[11.71,10.71,100],"t":56},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":1.068},"s":[25.58,4.72,100],"t":57},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.833},"s":[41.21,-0.28,100],"t":58},{"s":[12.74,8.21,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.647},"s":[131.81,179.95,0],"t":6},{"o":{"x":0.167,"y":0.109},"i":{"x":0.833,"y":0.769},"s":[130.86,178.68,0],"t":7},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.824},"s":[127.87,174.53,0],"t":8},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[123.66,166.23,0],"t":9},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[121.33,155.85,0],"t":10},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[121.79,146.45,0],"t":11},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[124.03,139.02,0],"t":12},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[127.05,133.42,0],"t":13},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[130.32,129.23,0],"t":14},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[133.55,126.08,0],"t":15},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.841},"s":[136.65,123.68,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[139.57,121.85,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[142.3,120.46,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[144.84,119.39,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[147.18,118.57,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[149.33,117.93,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[151.29,117.44,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[153.08,117.08,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[154.72,116.81,0],"t":24},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[156.21,116.63,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[157.56,116.51,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[158.79,116.46,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.89,116.45,0],"t":28},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[160.87,116.49,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[161.75,116.56,0],"t":30},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[162.53,116.66,0],"t":31},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[163.21,116.78,0],"t":32},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[163.8,116.93,0],"t":33},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[164.3,117.08,0],"t":34},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.846},"s":[164.73,117.25,0],"t":35},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.847},"s":[165.09,117.42,0],"t":36},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.848},"s":[165.38,117.6,0],"t":37},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.849},"s":[165.61,117.77,0],"t":38},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.85},"s":[165.79,117.94,0],"t":39},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.85},"s":[165.91,118.1,0],"t":40},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.851},"s":[166,118.25,0],"t":41},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.852},"s":[166.04,118.38,0],"t":42},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.852},"s":[166.05,118.49,0],"t":43},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.847},"s":[166.04,118.57,0],"t":44},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.855},"s":[166.01,118.63,0],"t":45},{"o":{"x":0.167,"y":0.197},"i":{"x":0.833,"y":0.799},"s":[165.97,118.65,0],"t":46},{"o":{"x":0.167,"y":0.143},"i":{"x":0.833,"y":0.778},"s":[165.94,118.63,0],"t":47},{"o":{"x":0.167,"y":0.133},"i":{"x":0.833,"y":0.821},"s":[165.95,118.58,0],"t":48},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.823},"s":[165.97,118.49,0],"t":49},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.826},"s":[165.98,118.38,0],"t":50},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[165.97,118.26,0],"t":51},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[165.96,118.12,0],"t":52},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.832},"s":[165.92,117.99,0],"t":53},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[165.88,117.85,0],"t":54},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[165.83,117.71,0],"t":55},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[165.76,117.58,0],"t":56},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[165.69,117.46,0],"t":57},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.833},"s":[165.61,117.34,0],"t":58},{"s":[165.53,117.24,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":33},{"s":[0],"t":49}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":12},{"ty":4,"nm":"Shape Layer 39","sr":1,"st":11,"op":60,"ip":11,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.877},"s":[28.98,56.32,100],"t":11},{"o":{"x":0.167,"y":0.259},"i":{"x":0.833,"y":0.969},"s":[43.82,25.22,100],"t":12},{"o":{"x":0.167,"y":-0.05},"i":{"x":0.833,"y":0.861},"s":[50.88,38.85,100],"t":13},{"o":{"x":0.167,"y":0.208},"i":{"x":0.833,"y":1.424},"s":[46.48,52.63,100],"t":14},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.819},"s":[43.53,24.5,100],"t":15},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.993},"s":[61.5,43.69,100],"t":16},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":0.815},"s":[82.58,46.68,100],"t":17},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.937},"s":[63.35,59.94,100],"t":18},{"o":{"x":0.167,"y":-0.266},"i":{"x":0.833,"y":0.747},"s":[39.91,58.47,100],"t":19},{"o":{"x":0.167,"y":0.124},"i":{"x":0.833,"y":1.055},"s":[45.51,68.98,100],"t":20},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.922},"s":[56.93,49.53,100],"t":21},{"o":{"x":0.167,"y":-1.179},"i":{"x":0.833,"y":0.473},"s":[37.98,45.39,100],"t":22},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":0.932},"s":[39.23,65.66,100],"t":23},{"o":{"x":0.167,"y":-0.364},"i":{"x":0.833,"y":1.026},"s":[45.89,32.42,100],"t":24},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":1.832},"s":[44.65,26.73,100],"t":25},{"o":{"x":0.167,"y":0.076},"i":{"x":0.833,"y":1.069},"s":[46.28,39.82,100],"t":26},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.954},"s":[28.37,69.42,100],"t":27},{"o":{"x":0.167,"y":-0.102},"i":{"x":0.833,"y":0.954},"s":[61.07,57.04,100],"t":28},{"o":{"x":0.167,"y":-0.104},"i":{"x":0.833,"y":1.408},"s":[46.39,54.53,100],"t":29},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.982},"s":[52.91,37.46,100],"t":30},{"o":{"x":0.167,"y":-0.022},"i":{"x":0.833,"y":0.838},"s":[14.51,54.06,100],"t":31},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.943},"s":[44.82,53,100],"t":32},{"o":{"x":0.167,"y":-0.177},"i":{"x":0.833,"y":0.84},"s":[73.36,32.6,100],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.842},"s":[64.22,46.8,100],"t":34},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.948},"s":[55.87,60.94,100],"t":35},{"o":{"x":0.167,"y":-0.141},"i":{"x":0.833,"y":1.464},"s":[48.41,65.8,100],"t":36},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.912},"s":[51.18,57.87,100],"t":37},{"o":{"x":0.167,"y":1.54},"i":{"x":0.833,"y":1.398},"s":[32.95,39.74,100],"t":38},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.924},"s":[31.91,6.16,100],"t":39},{"o":{"x":0.167,"y":-0.911},"i":{"x":0.833,"y":-3.208},"s":[37.93,42.17,100],"t":40},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":0.93},"s":[37.42,59.4,100],"t":41},{"o":{"x":0.167,"y":-0.443},"i":{"x":0.833,"y":0.96},"s":[12.47,22.98,100],"t":42},{"o":{"x":0.167,"y":-0.077},"i":{"x":0.833,"y":1.134},"s":[16.42,17.9,100],"t":43},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.683},"s":[14.36,37.53,100],"t":44},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":1.008},"s":[19.71,31.64,100],"t":45},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":0.787},"s":[34.73,17.34,100],"t":46},{"o":{"x":0.167,"y":0.137},"i":{"x":0.833,"y":1.078},"s":[18.25,22.75,100],"t":47},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.948},"s":[-7.48,-6.03,100],"t":48},{"o":{"x":0.167,"y":-0.139},"i":{"x":0.833,"y":0.912},"s":[42.34,23.4,100],"t":49},{"o":{"x":0.167,"y":1.669},"i":{"x":0.833,"y":1.314},"s":[23.68,16.14,100],"t":50},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":0.73},"s":[22.7,-3.19,100],"t":51},{"o":{"x":0.167,"y":0.12},"i":{"x":0.833,"y":1.035},"s":[27.37,19.39,100],"t":52},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.934},"s":[37.85,36.43,100],"t":53},{"o":{"x":0.167,"y":-0.324},"i":{"x":0.833,"y":0.866},"s":[22.9,43.01,100],"t":54},{"o":{"x":0.167,"y":0.222},"i":{"x":0.833,"y":0.037},"s":[25.96,15.14,100],"t":55},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":1.024},"s":[27.81,-6.96,100],"t":56},{"o":{"x":0.167,"y":0.019},"i":{"x":0.833,"y":0.891},"s":[47.26,-8.09,100],"t":57},{"o":{"x":0.167,"y":0.356},"i":{"x":0.833,"y":0.833},"s":[22.24,-1.21,100],"t":58},{"s":[14.61,19.56,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.587},"s":[130.23,175.56,0],"t":11},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.764},"s":[130.19,176.89,0],"t":12},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[129.63,182.08,0],"t":13},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[127.37,191.27,0],"t":14},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[123.18,200.66,0],"t":15},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[118.16,207.75,0],"t":16},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[113.1,212.6,0],"t":17},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[108.34,215.81,0],"t":18},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[104,217.9,0],"t":19},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[100.07,219.23,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[96.54,220.04,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[93.37,220.5,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[90.51,220.71,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[87.94,220.74,0],"t":24},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[85.6,220.65,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[83.48,220.47,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[81.56,220.22,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[79.81,219.92,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[78.23,219.59,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[76.79,219.23,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[75.5,218.84,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[74.33,218.44,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[73.27,218.03,0],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[72.32,217.6,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[71.46,217.18,0],"t":35},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[70.68,216.76,0],"t":36},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[69.98,216.36,0],"t":37},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[69.35,215.99,0],"t":38},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[68.79,215.65,0],"t":39},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[68.3,215.34,0],"t":40},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[67.86,215.08,0],"t":41},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[67.49,214.86,0],"t":42},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.851},"s":[67.17,214.69,0],"t":43},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.854},"s":[66.9,214.57,0],"t":44},{"o":{"x":0.167,"y":0.194},"i":{"x":0.833,"y":0.854},"s":[66.68,214.49,0],"t":45},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.846},"s":[66.51,214.48,0],"t":46},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.824},"s":[66.39,214.51,0],"t":47},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.81},"s":[66.31,214.6,0],"t":48},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.81},"s":[66.27,214.73,0],"t":49},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.819},"s":[66.28,214.92,0],"t":50},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.825},"s":[66.32,215.15,0],"t":51},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.827},"s":[66.38,215.41,0],"t":52},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.829},"s":[66.45,215.7,0],"t":53},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[66.52,216.02,0],"t":54},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[66.58,216.35,0],"t":55},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.834},"s":[66.65,216.7,0],"t":56},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.836},"s":[66.73,217.04,0],"t":57},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.833},"s":[66.79,217.39,0],"t":58},{"s":[66.86,217.73,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":16},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":38},{"s":[0],"t":54}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":13},{"ty":4,"nm":"Shape Layer 38","sr":1,"st":7,"op":60,"ip":7,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.684},"s":[49.14,40.81,100],"t":7},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":1.351},"s":[51.03,40.46,100],"t":8},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.905},"s":[56.32,40.91,100],"t":9},{"o":{"x":0.167,"y":0.695},"i":{"x":0.833,"y":1.398},"s":[28.75,51.66,100],"t":10},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.965},"s":[24.99,21.19,100],"t":11},{"o":{"x":0.167,"y":-0.06},"i":{"x":0.833,"y":0.972},"s":[46.7,32.71,100],"t":12},{"o":{"x":0.167,"y":-0.042},"i":{"x":0.833,"y":0.882},"s":[34.05,57.34,100],"t":13},{"o":{"x":0.167,"y":0.285},"i":{"x":0.833,"y":0.246},"s":[42.46,48.18,100],"t":14},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.96},"s":[45.95,33.18,100],"t":15},{"o":{"x":0.167,"y":-0.077},"i":{"x":0.833,"y":0.833},"s":[73.98,61.17,100],"t":16},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.845},"s":[59.4,72.45,100],"t":17},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.987},"s":[44.76,43.03,100],"t":18},{"o":{"x":0.167,"y":-0.015},"i":{"x":0.833,"y":0.867},"s":[32.25,58.17,100],"t":19},{"o":{"x":0.167,"y":0.223},"i":{"x":0.833,"y":0.952},"s":[42.84,38.84,100],"t":20},{"o":{"x":0.167,"y":-0.113},"i":{"x":0.833,"y":0.929},"s":[49.15,28.43,100],"t":21},{"o":{"x":0.167,"y":-0.477},"i":{"x":0.833,"y":1.102},"s":[46.47,63.8,100],"t":22},{"o":{"x":0.167,"y":0.046},"i":{"x":0.833,"y":2.575},"s":[46.87,52.7,100],"t":23},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":1.108},"s":[45.98,34.22,100],"t":24},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":0.975},"s":[63.58,38.58,100],"t":25},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.897},"s":[23.19,73.1,100],"t":26},{"o":{"x":0.167,"y":0.43},"i":{"x":0.833,"y":0.822},"s":[51.3,48.65,100],"t":27},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":1.17},"s":[58.06,63.16,100],"t":28},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":0.86},"s":[65.73,44.48,100],"t":29},{"o":{"x":0.167,"y":0.205},"i":{"x":0.833,"y":1.094},"s":[42.42,58.43,100],"t":30},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.948},"s":[26.5,56.26,100],"t":31},{"o":{"x":0.167,"y":-0.139},"i":{"x":0.833,"y":0.9},"s":[60.47,37.72,100],"t":32},{"o":{"x":0.167,"y":0.496},"i":{"x":0.833,"y":0.39},"s":[47.72,23.27,100],"t":33},{"o":{"x":0.167,"y":0.097},"i":{"x":0.833,"y":0.984},"s":[45.15,44.02,100],"t":34},{"o":{"x":0.167,"y":-0.019},"i":{"x":0.833,"y":0.931},"s":[28.88,63.38,100],"t":35},{"o":{"x":0.167,"y":-0.405},"i":{"x":0.833,"y":0.407},"s":[42.12,74.01,100],"t":36},{"o":{"x":0.167,"y":0.097},"i":{"x":0.833,"y":0.957},"s":[39.86,55.99,100],"t":37},{"o":{"x":0.167,"y":-0.089},"i":{"x":0.833,"y":0.83},"s":[26.03,18.19,100],"t":38},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":1.098},"s":[32.72,24.83,100],"t":39},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.867},"s":[39.65,45.94,100],"t":40},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":0.908},"s":[24.55,8.13,100],"t":41},{"o":{"x":0.167,"y":0.933},"i":{"x":0.833,"y":1.43},"s":[15.62,33.42,100],"t":42},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.97},"s":[14.74,31.66,100],"t":43},{"o":{"x":0.167,"y":-0.046},"i":{"x":0.833,"y":0.919},"s":[20.14,26.55,100],"t":44},{"o":{"x":0.167,"y":-2.661},"i":{"x":0.833,"y":17.435},"s":[16.67,-6.68,100],"t":45},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":0.997},"s":[16.78,5.29,100],"t":46},{"o":{"x":0.167,"y":-0.004},"i":{"x":0.833,"y":0.893},"s":[-4.08,-14.07,100],"t":47},{"o":{"x":0.167,"y":0.375},"i":{"x":0.833,"y":0.892},"s":[15.93,-9.18,100],"t":48},{"o":{"x":0.167,"y":0.364},"i":{"x":0.833,"y":0.847},"s":[21.65,-4.07,100],"t":49},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.476},"s":[23.34,-8.54,100],"t":50},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":1.098},"s":[24.76,5.03,100],"t":51},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.912},"s":[32.25,38.4,100],"t":52},{"o":{"x":0.167,"y":1.665},"i":{"x":0.833,"y":1.638},"s":[15.98,45.77,100],"t":53},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.718},"s":[15.13,7.61,100],"t":54},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":0.934},"s":[22.54,-23.66,100],"t":55},{"o":{"x":0.167,"y":-0.313},"i":{"x":0.833,"y":0.25},"s":[40.25,-16.96,100],"t":56},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.952},"s":[36.53,1.15,100],"t":57},{"o":{"x":0.167,"y":-0.112},"i":{"x":0.833,"y":0.833},"s":[6.75,12.93,100],"t":58},{"s":[19.42,5.37,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.591},"s":[128.14,175.39,0],"t":7},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.764},"s":[129.58,174.73,0],"t":8},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[135.02,171.71,0],"t":9},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[144.32,164.7,0],"t":10},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[153.11,154.55,0],"t":11},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[158.73,143.7,0],"t":12},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[161.3,133.47,0],"t":13},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[161.53,124.48,0],"t":14},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[160.18,116.92,0],"t":15},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[157.84,110.79,0],"t":16},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[155,105.92,0],"t":17},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[151.98,102.07,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[148.96,99.02,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[146.05,96.61,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[143.3,94.68,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[140.73,93.13,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[138.35,91.88,0],"t":23},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[136.15,90.87,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[134.14,90.05,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[132.3,89.41,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[130.62,88.89,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[129.09,88.5,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[127.71,88.21,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[126.46,88.01,0],"t":30},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[125.34,87.89,0],"t":31},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[124.34,87.85,0],"t":32},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[123.45,87.86,0],"t":33},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[122.67,87.93,0],"t":34},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[121.98,88.06,0],"t":35},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[121.39,88.22,0],"t":36},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[120.88,88.42,0],"t":37},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[120.44,88.66,0],"t":38},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[120.09,88.92,0],"t":39},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[119.8,89.2,0],"t":40},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[119.58,89.49,0],"t":41},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[119.42,89.79,0],"t":42},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[119.31,90.09,0],"t":43},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[119.25,90.37,0],"t":44},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[119.24,90.64,0],"t":45},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[119.27,90.88,0],"t":46},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.826},"s":[119.33,91.09,0],"t":47},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[119.41,91.27,0],"t":48},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.829},"s":[119.48,91.47,0],"t":49},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.831},"s":[119.55,91.69,0],"t":50},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[119.61,91.93,0],"t":51},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[119.67,92.17,0],"t":52},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[119.73,92.42,0],"t":53},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[119.78,92.67,0],"t":54},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.839},"s":[119.83,92.91,0],"t":55},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[119.87,93.13,0],"t":56},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.842},"s":[119.92,93.35,0],"t":57},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.833},"s":[119.96,93.54,0],"t":58},{"s":[120,93.71,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":34},{"s":[0],"t":50}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":14},{"ty":4,"nm":"Shape Layer 37","sr":1,"st":9,"op":60,"ip":9,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":2.237},"s":[29.51,40.9,100],"t":9},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":0.948},"s":[27.85,37.45,100],"t":10},{"o":{"x":0.167,"y":-0.136},"i":{"x":0.833,"y":0.869},"s":[54.13,41.48,100],"t":11},{"o":{"x":0.167,"y":0.23},"i":{"x":0.833,"y":0.993},"s":[44.13,68.69,100],"t":12},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":0.615},"s":[38.45,69.53,100],"t":13},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.957},"s":[43.63,53.32,100],"t":14},{"o":{"x":0.167,"y":-0.09},"i":{"x":0.833,"y":0.759},"s":[62.38,73.61,100],"t":15},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.85},"s":[53.37,83.01,100],"t":16},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.93},"s":[36.36,38.16,100],"t":17},{"o":{"x":0.167,"y":-0.45},"i":{"x":0.833,"y":0.468},"s":[22.66,55.36,100],"t":18},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":0.94},"s":[24.8,36.09,100],"t":19},{"o":{"x":0.167,"y":-0.209},"i":{"x":0.833,"y":1.179},"s":[36.32,35.27,100],"t":20},{"o":{"x":0.167,"y":0.057},"i":{"x":0.833,"y":0.903},"s":[33.04,52.54,100],"t":21},{"o":{"x":0.167,"y":0.577},"i":{"x":0.833,"y":-0.318},"s":[43.37,69.93,100],"t":22},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":1.032},"s":[45.11,41.54,100],"t":23},{"o":{"x":0.167,"y":0.023},"i":{"x":0.833,"y":0.912},"s":[70.98,57.16,100],"t":24},{"o":{"x":0.167,"y":1.509},"i":{"x":0.833,"y":1.702},"s":[35.13,67.3,100],"t":25},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.886},"s":[33.04,56.88,100],"t":26},{"o":{"x":0.167,"y":0.312},"i":{"x":0.833,"y":0.837},"s":[52.77,54.2,100],"t":27},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":1.302},"s":[59.97,63.36,100],"t":28},{"o":{"x":0.167,"y":0.065},"i":{"x":0.833,"y":0.944},"s":[66.84,62.09,100],"t":29},{"o":{"x":0.167,"y":-0.168},"i":{"x":0.833,"y":0.917},"s":[35.04,67.26,100],"t":30},{"o":{"x":0.167,"y":-10.728},"i":{"x":0.833,"y":4.698},"s":[45.57,47.43,100],"t":31},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":1.281},"s":[45.49,27.63,100],"t":32},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.918},"s":[49.17,25.82,100],"t":33},{"o":{"x":0.167,"y":-7.898},"i":{"x":0.833,"y":-6.847},"s":[33.05,51.7,100],"t":34},{"o":{"x":0.167,"y":0.084},"i":{"x":0.833,"y":0.94},"s":[33.22,89.12,100],"t":35},{"o":{"x":0.167,"y":-0.209},"i":{"x":0.833,"y":0.562},"s":[48.9,80.42,100],"t":36},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":0.999},"s":[44.43,55.86,100],"t":37},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.918},"s":[25.4,51,100],"t":38},{"o":{"x":0.167,"y":-3.839},"i":{"x":0.833,"y":-2.601},"s":[44.12,50.14,100],"t":39},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":0.926},"s":[43.72,19,100],"t":40},{"o":{"x":0.167,"y":-0.669},"i":{"x":0.833,"y":1.446},"s":[26.94,49.21,100],"t":41},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.934},"s":[28.8,51.72,100],"t":42},{"o":{"x":0.167,"y":-0.325},"i":{"x":0.833,"y":1.109},"s":[16.99,47.46,100],"t":43},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":0.922},"s":[19.4,1.59,100],"t":44},{"o":{"x":0.167,"y":-1.292},"i":{"x":0.833,"y":4.228},"s":[13.84,-0.58,100],"t":45},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.984},"s":[14.18,7.14,100],"t":46},{"o":{"x":0.167,"y":-0.02},"i":{"x":0.833,"y":0.923},"s":[0.8,-11.83,100],"t":47},{"o":{"x":0.167,"y":-0.991},"i":{"x":0.833,"y":2.207},"s":[11.62,0.95,100],"t":48},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":0.933},"s":[10.78,0.23,100],"t":49},{"o":{"x":0.167,"y":-0.338},"i":{"x":0.833,"y":0.444},"s":[23.78,24.48,100],"t":50},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":0.843},"s":[21.21,26.83,100],"t":51},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":1.042},"s":[6.63,42.73,100],"t":52},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":0.846},"s":[-6.27,24.69,100],"t":53},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.907},"s":[13.12,-13.38,100],"t":54},{"o":{"x":0.167,"y":0.832},"i":{"x":0.833,"y":2.014},"s":[29.64,-16.63,100],"t":55},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.956},"s":[31.48,5.02,100],"t":56},{"o":{"x":0.167,"y":-0.093},"i":{"x":0.833,"y":0.945},"s":[7.27,5.19,100],"t":57},{"o":{"x":0.167,"y":-0.162},"i":{"x":0.833,"y":0.833},"s":[18.71,-4.88,100],"t":58},{"s":[14.83,5.82,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.583},"s":[128.94,175.87,0],"t":9},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.763},"s":[128.74,177.51,0],"t":10},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[127.9,184.1,0],"t":11},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[127.11,196.33,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[127.89,209.96,0],"t":13},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[130.66,221.44,0],"t":14},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[134.91,230.07,0],"t":15},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[139.9,236.09,0],"t":16},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[145,240.09,0],"t":17},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[149.87,242.68,0],"t":18},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[154.37,244.33,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[158.48,245.38,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[162.2,246.03,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[165.59,246.4,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[168.67,246.6,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[171.47,246.67,0],"t":24},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[174.02,246.67,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[176.35,246.6,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[178.47,246.49,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[180.41,246.36,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[182.17,246.2,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[183.78,246.02,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[185.24,245.83,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[186.55,245.61,0],"t":32},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[187.74,245.39,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[188.82,245.19,0],"t":34},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[189.79,245.02,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[190.65,244.85,0],"t":36},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[191.43,244.71,0],"t":37},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[192.12,244.57,0],"t":38},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[192.73,244.45,0],"t":39},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[193.26,244.34,0],"t":40},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[193.72,244.24,0],"t":41},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.847},"s":[194.12,244.14,0],"t":42},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.849},"s":[194.45,244.05,0],"t":43},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.851},"s":[194.72,243.97,0],"t":44},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.854},"s":[194.94,243.88,0],"t":45},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.857},"s":[195.11,243.8,0],"t":46},{"o":{"x":0.167,"y":0.2},"i":{"x":0.833,"y":0.857},"s":[195.23,243.72,0],"t":47},{"o":{"x":0.167,"y":0.2},"i":{"x":0.833,"y":0.835},"s":[195.3,243.65,0],"t":48},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.82},"s":[195.33,243.57,0],"t":49},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.823},"s":[195.33,243.49,0],"t":50},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.825},"s":[195.34,243.4,0],"t":51},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.827},"s":[195.36,243.3,0],"t":52},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.829},"s":[195.38,243.18,0],"t":53},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[195.4,243.06,0],"t":54},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[195.43,242.94,0],"t":55},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[195.46,242.81,0],"t":56},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[195.5,242.68,0],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[195.54,242.55,0],"t":58},{"s":[195.6,242.43,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":14},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":36},{"s":[0],"t":52}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":15},{"ty":4,"nm":"Shape Layer 36","sr":1,"st":5,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.896},"s":[54.6,64.09,100],"t":5},{"o":{"x":0.167,"y":0.414},"i":{"x":0.833,"y":0.087},"s":[48.85,62.36,100],"t":6},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.951},"s":[47.41,23.99,100],"t":7},{"o":{"x":0.167,"y":-0.117},"i":{"x":0.833,"y":0.773},"s":[33.01,41.75,100],"t":8},{"o":{"x":0.167,"y":0.132},"i":{"x":0.833,"y":0.893},"s":[39,64.07,100],"t":9},{"o":{"x":0.167,"y":0.381},"i":{"x":0.833,"y":1.215},"s":[49.34,55.33,100],"t":10},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.929},"s":[52.24,80.56,100],"t":11},{"o":{"x":0.167,"y":-0.477},"i":{"x":0.833,"y":0.974},"s":[41.89,59.28,100],"t":12},{"o":{"x":0.167,"y":-0.039},"i":{"x":0.833,"y":1.674},"s":[43.43,66.45,100],"t":13},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.924},"s":[42.38,77.11,100],"t":14},{"o":{"x":0.167,"y":-0.914},"i":{"x":0.833,"y":-0.583},"s":[51.94,64.81,100],"t":15},{"o":{"x":0.167,"y":0.088},"i":{"x":0.833,"y":0.868},"s":[51.14,29.41,100],"t":16},{"o":{"x":0.167,"y":0.225},"i":{"x":0.833,"y":0.873},"s":[36.76,54.86,100],"t":17},{"o":{"x":0.167,"y":0.244},"i":{"x":0.833,"y":0.914},"s":[28.31,60.33,100],"t":18},{"o":{"x":0.167,"y":2.53},"i":{"x":0.833,"y":6.07},"s":[23.92,61.29,100],"t":19},{"o":{"x":0.167,"y":0.082},"i":{"x":0.833,"y":0.801},"s":[23.77,60.76,100],"t":20},{"o":{"x":0.167,"y":0.143},"i":{"x":0.833,"y":0.786},"s":[33.01,63.02,100],"t":21},{"o":{"x":0.167,"y":0.136},"i":{"x":0.833,"y":0.999},"s":[45.88,36.11,100],"t":22},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.898},"s":[66.1,68.63,100],"t":23},{"o":{"x":0.167,"y":0.448},"i":{"x":0.833,"y":0.936},"s":[46.22,48.49,100],"t":24},{"o":{"x":0.167,"y":-0.276},"i":{"x":0.833,"y":0.146},"s":[41.68,50.16,100],"t":25},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.778},"s":[42.73,41.28,100],"t":26},{"o":{"x":0.167,"y":0.134},"i":{"x":0.833,"y":0.973},"s":[52.46,61.11,100],"t":27},{"o":{"x":0.167,"y":-0.04},"i":{"x":0.833,"y":0.792},"s":[68.59,62.34,100],"t":28},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":0.967},"s":[57.69,75.26,100],"t":29},{"o":{"x":0.167,"y":-0.054},"i":{"x":0.833,"y":0.974},"s":[41.39,38.34,100],"t":30},{"o":{"x":0.167,"y":-0.038},"i":{"x":0.833,"y":0.673},"s":[51.28,45.29,100],"t":31},{"o":{"x":0.167,"y":0.112},"i":{"x":0.833,"y":0.925},"s":[44.47,28.28,100],"t":32},{"o":{"x":0.167,"y":-0.747},"i":{"x":0.833,"y":0.647},"s":[24.53,22.05,100],"t":33},{"o":{"x":0.167,"y":0.109},"i":{"x":0.833,"y":0.827},"s":[26.53,58.79,100],"t":34},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":1.244},"s":[33.01,53.3,100],"t":35},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.954},"s":[39.99,54.79,100],"t":36},{"o":{"x":0.167,"y":-0.101},"i":{"x":0.833,"y":0.785},"s":[12.55,52.65,100],"t":37},{"o":{"x":0.167,"y":0.136},"i":{"x":0.833,"y":0.976},"s":[24.98,44.38,100],"t":38},{"o":{"x":0.167,"y":-0.034},"i":{"x":0.833,"y":0.939},"s":[44.6,35.72,100],"t":39},{"o":{"x":0.167,"y":-0.231},"i":{"x":0.833,"y":1.534},"s":[30.63,33.64,100],"t":40},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.938},"s":[34.34,39.44,100],"t":41},{"o":{"x":0.167,"y":-0.24},"i":{"x":0.833,"y":0.896},"s":[6.92,34.48,100],"t":42},{"o":{"x":0.167,"y":0.419},"i":{"x":0.833,"y":1.32},"s":[13.98,11.2,100],"t":43},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":0.869},"s":[15.74,13.09,100],"t":44},{"o":{"x":0.167,"y":0.228},"i":{"x":0.833,"y":1.092},"s":[7.25,18.25,100],"t":45},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.899},"s":[2.35,6.03,100],"t":46},{"o":{"x":0.167,"y":0.472},"i":{"x":0.833,"y":1.075},"s":[12.66,19.09,100],"t":47},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.799},"s":[14.87,5.8,100],"t":48},{"o":{"x":0.167,"y":0.142},"i":{"x":0.833,"y":0.842},"s":[10.66,50.17,100],"t":49},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.674},"s":[4.69,14.43,100],"t":50},{"o":{"x":0.167,"y":0.112},"i":{"x":0.833,"y":1.022},"s":[-0.63,38.73,100],"t":51},{"o":{"x":0.167,"y":0.018},"i":{"x":0.833,"y":0.84},"s":[-16.14,35.01,100],"t":52},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.926},"s":[3.53,8.58,100],"t":53},{"o":{"x":0.167,"y":-0.683},"i":{"x":0.833,"y":0.273},"s":[21.75,7.35,100],"t":54},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.913},"s":[19.77,10.07,100],"t":55},{"o":{"x":0.167,"y":1.953},"i":{"x":0.833,"y":2.637},"s":[4.47,-4.51,100],"t":56},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.935},"s":[3.79,9.64,100],"t":57},{"o":{"x":0.167,"y":-0.3},"i":{"x":0.833,"y":0.833},"s":[17.87,-15.55,100],"t":58},{"s":[14.81,6.91,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.604},"s":[131.1,178.06,0],"t":5},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.775},"s":[132.2,177.12,0],"t":6},{"o":{"x":0.167,"y":0.133},"i":{"x":0.833,"y":0.821},"s":[135.01,172.43,0],"t":7},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.844},"s":[126.48,170.91,0],"t":8},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[116.52,171.85,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[107.83,172.67,0],"t":10},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[100.59,173.14,0],"t":11},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[94.51,173.3,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[89.31,173.19,0],"t":13},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[84.8,172.88,0],"t":14},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[80.85,172.41,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[77.37,171.79,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[74.27,171.06,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[71.5,170.24,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[69.03,169.36,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[66.81,168.42,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[64.83,167.44,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[63.05,166.44,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[61.46,165.43,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[60.04,164.41,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[58.77,163.4,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[57.65,162.41,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[56.66,161.44,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[55.79,160.51,0],"t":28},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[55.02,159.6,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[54.35,158.74,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[53.77,157.92,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[53.27,157.15,0],"t":32},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[52.84,156.43,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[52.48,155.75,0],"t":34},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[52.18,155.12,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[51.93,154.55,0],"t":36},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[51.74,154.02,0],"t":37},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[51.59,153.55,0],"t":38},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[51.49,153.13,0],"t":39},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.848},"s":[51.42,152.76,0],"t":40},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.849},"s":[51.39,152.45,0],"t":41},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.849},"s":[51.4,152.19,0],"t":42},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.845},"s":[51.43,151.98,0],"t":43},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.838},"s":[51.5,151.82,0],"t":44},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[51.59,151.72,0],"t":45},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.849},"s":[51.69,151.64,0],"t":46},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.856},"s":[51.79,151.59,0],"t":47},{"o":{"x":0.167,"y":0.197},"i":{"x":0.833,"y":0.863},"s":[51.87,151.54,0],"t":48},{"o":{"x":0.167,"y":0.214},"i":{"x":0.833,"y":0.876},"s":[51.93,151.5,0],"t":49},{"o":{"x":0.167,"y":0.252},"i":{"x":0.833,"y":0.85},"s":[51.96,151.47,0],"t":50},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.742},"s":[51.97,151.45,0],"t":51},{"o":{"x":0.167,"y":0.123},"i":{"x":0.833,"y":0.781},"s":[51.96,151.44,0],"t":52},{"o":{"x":0.167,"y":0.134},"i":{"x":0.833,"y":0.801},"s":[51.93,151.44,0],"t":53},{"o":{"x":0.167,"y":0.144},"i":{"x":0.833,"y":0.811},"s":[51.87,151.45,0],"t":54},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.817},"s":[51.79,151.47,0],"t":55},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.82},"s":[51.7,151.5,0],"t":56},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.823},"s":[51.58,151.54,0],"t":57},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.833},"s":[51.45,151.59,0],"t":58},{"s":[51.3,151.65,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":32},{"s":[0],"t":48}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":16},{"ty":4,"nm":"Shape Layer 35","sr":1,"st":4,"op":60,"ip":4,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.112},"s":[50.09,66.74,100],"t":4},{"o":{"x":0.167,"y":0.048},"i":{"x":0.833,"y":0.982},"s":[43.62,63.13,100],"t":5},{"o":{"x":0.167,"y":-0.023},"i":{"x":0.833,"y":0.826},"s":[58.79,25.9,100],"t":6},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.974},"s":[46.9,47.12,100],"t":7},{"o":{"x":0.167,"y":-0.038},"i":{"x":0.833,"y":1.007},"s":[34.02,79.55,100],"t":8},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":1.054},"s":[42.83,60.79,100],"t":9},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.958},"s":[33.23,69.02,100],"t":10},{"o":{"x":0.167,"y":-0.085},"i":{"x":0.833,"y":0.847},"s":[49.1,48.54,100],"t":11},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.903},"s":[41.23,51.94,100],"t":12},{"o":{"x":0.167,"y":0.581},"i":{"x":0.833,"y":2.653},"s":[34.69,71.1,100],"t":13},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.928},"s":[33.6,57.43,100],"t":14},{"o":{"x":0.167,"y":-0.52},"i":{"x":0.833,"y":0.876},"s":[56.39,24.93,100],"t":15},{"o":{"x":0.167,"y":0.255},"i":{"x":0.833,"y":-0.015},"s":[53.24,28.19,100],"t":16},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":0.942},"s":[51.71,78.92,100],"t":17},{"o":{"x":0.167,"y":-0.189},"i":{"x":0.833,"y":0.984},"s":[34.66,71.86,100],"t":18},{"o":{"x":0.167,"y":-0.021},"i":{"x":0.833,"y":1.191},"s":[39.88,71.14,100],"t":19},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.88},"s":[35.69,63.11,100],"t":20},{"o":{"x":0.167,"y":0.271},"i":{"x":0.833,"y":1.105},"s":[49.47,33.91,100],"t":21},{"o":{"x":0.167,"y":0.046},"i":{"x":0.833,"y":1.034},"s":[55.6,62.7,100],"t":22},{"o":{"x":0.167,"y":0.024},"i":{"x":0.833,"y":0.956},"s":[41.77,31.49,100],"t":23},{"o":{"x":0.167,"y":-0.094},"i":{"x":0.833,"y":0.812},"s":[61.24,29.96,100],"t":24},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":1.021},"s":[52.11,30.72,100],"t":25},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":0.926},"s":[40.58,47.77,100],"t":26},{"o":{"x":0.167,"y":-0.689},"i":{"x":0.833,"y":0.571},"s":[54.98,68.86,100],"t":27},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":1.176},"s":[53.43,72.69,100],"t":28},{"o":{"x":0.167,"y":0.057},"i":{"x":0.833,"y":0.971},"s":[46.99,45.08,100],"t":29},{"o":{"x":0.167,"y":-0.044},"i":{"x":0.833,"y":0.758},"s":[67,49.93,100],"t":30},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":0.901},"s":[53.91,50.31,100],"t":31},{"o":{"x":0.167,"y":0.527},"i":{"x":0.833,"y":1.016},"s":[29.02,29.97,100],"t":32},{"o":{"x":0.167,"y":0.013},"i":{"x":0.833,"y":0.802},"s":[24.34,42.14,100],"t":33},{"o":{"x":0.167,"y":0.144},"i":{"x":0.833,"y":1.11},"s":[29.91,31.66,100],"t":34},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":0.954},"s":[37.59,48.44,100],"t":35},{"o":{"x":0.167,"y":-0.103},"i":{"x":0.833,"y":0.849},"s":[19.81,38.59,100],"t":36},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":1.016},"s":[27.78,34.29,100],"t":37},{"o":{"x":0.167,"y":0.013},"i":{"x":0.833,"y":1.025},"s":[34.2,46.29,100],"t":38},{"o":{"x":0.167,"y":0.019},"i":{"x":0.833,"y":1.03},"s":[26.54,28.62,100],"t":39},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":0.85},"s":[36.5,28.83,100],"t":40},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":1.102},"s":[22.91,24.56,100],"t":41},{"o":{"x":0.167,"y":0.046},"i":{"x":0.833,"y":1.008},"s":[12.04,13.44,100],"t":42},{"o":{"x":0.167,"y":0.008},"i":{"x":0.833,"y":0.923},"s":[36.17,34.27,100],"t":43},{"o":{"x":0.167,"y":-1.08},"i":{"x":0.833,"y":0.782},"s":[9.64,20.3,100],"t":44},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.772},"s":[11.54,24.36,100],"t":45},{"o":{"x":0.167,"y":0.131},"i":{"x":0.833,"y":1.128},"s":[14.6,28.89,100],"t":46},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":0.837},"s":[19.91,15.27,100],"t":47},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.946},"s":[6.43,46.74,100],"t":48},{"o":{"x":0.167,"y":-0.153},"i":{"x":0.833,"y":0.934},"s":[-6.43,5.42,100],"t":49},{"o":{"x":0.167,"y":-0.32},"i":{"x":0.833,"y":1.831},"s":[-1.9,34.25,100],"t":50},{"o":{"x":0.167,"y":0.076},"i":{"x":0.833,"y":0.879},"s":[-2.83,30.19,100],"t":51},{"o":{"x":0.167,"y":0.266},"i":{"x":0.833,"y":0.861},"s":[7.45,17.93,100],"t":52},{"o":{"x":0.167,"y":0.208},"i":{"x":0.833,"y":1.125},"s":[12.14,12.97,100],"t":53},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":0.882},"s":[15.28,13.83,100],"t":54},{"o":{"x":0.167,"y":0.282},"i":{"x":0.833,"y":1.155},"s":[7.42,1.25,100],"t":55},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":1.018},"s":[4.13,9.04,100],"t":56},{"o":{"x":0.167,"y":0.015},"i":{"x":0.833,"y":1.07},"s":[13.53,-15.61,100],"t":57},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.833},"s":[2.15,-18.75,100],"t":58},{"s":[23.08,30.58,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.58},"s":[131.76,176.93,0],"t":4},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.763},"s":[132.26,176.41,0],"t":5},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[134.27,174.32,0],"t":6},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[137.81,170.29,0],"t":7},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[141.55,165.56,0],"t":8},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[144.65,161.27,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[147.15,157.61,0],"t":10},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[149.22,154.53,0],"t":11},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[151.03,151.92,0],"t":12},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[152.69,149.76,0],"t":13},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.837},"s":[154.39,148.15,0],"t":14},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.842},"s":[156.22,148.15,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[157.18,149.93,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[157.69,151.77,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[158.04,153.46,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[158.32,155.01,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[158.57,156.41,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[158.79,157.68,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[159,158.84,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[159.21,159.89,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[159.41,160.84,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.61,161.7,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.8,162.46,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.99,163.15,0],"t":27},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[160.18,163.76,0],"t":28},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[160.35,164.3,0],"t":29},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[160.52,164.77,0],"t":30},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[160.67,165.18,0],"t":31},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[160.8,165.53,0],"t":32},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.842},"s":[160.86,165.84,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.836},"s":[160.87,166.11,0],"t":34},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.83},"s":[160.82,166.35,0],"t":35},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.826},"s":[160.72,166.56,0],"t":36},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.825},"s":[160.58,166.73,0],"t":37},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.825},"s":[160.39,166.88,0],"t":38},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.826},"s":[160.17,167,0],"t":39},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[159.91,167.1,0],"t":40},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.828},"s":[159.62,167.18,0],"t":41},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[159.31,167.24,0],"t":42},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[158.97,167.27,0],"t":43},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[158.62,167.29,0],"t":44},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[158.25,167.3,0],"t":45},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[157.88,167.32,0],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[157.51,167.34,0],"t":47},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.835},"s":[157.13,167.37,0],"t":48},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[156.76,167.4,0],"t":49},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[156.41,167.44,0],"t":50},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.839},"s":[156.06,167.48,0],"t":51},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.841},"s":[155.73,167.52,0],"t":52},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.843},"s":[155.43,167.56,0],"t":53},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.846},"s":[155.16,167.6,0],"t":54},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.85},"s":[154.92,167.64,0],"t":55},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.857},"s":[154.71,167.67,0],"t":56},{"o":{"x":0.167,"y":0.2},"i":{"x":0.833,"y":0.87},"s":[154.55,167.7,0],"t":57},{"o":{"x":0.167,"y":0.232},"i":{"x":0.833,"y":0.833},"s":[154.43,167.72,0],"t":58},{"s":[154.36,167.73,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":4},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":31},{"s":[0],"t":47}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":17},{"ty":4,"nm":"Shape Layer 34","sr":1,"st":10,"op":60,"ip":10,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.023},"s":[45.09,47.22,100],"t":10},{"o":{"x":0.167,"y":0.018},"i":{"x":0.833,"y":1.063},"s":[30.88,48.72,100],"t":11},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.953},"s":[49.09,65.71,100],"t":12},{"o":{"x":0.167,"y":-0.11},"i":{"x":0.833,"y":0.799},"s":[17.01,69.74,100],"t":13},{"o":{"x":0.167,"y":0.142},"i":{"x":0.833,"y":0.908},"s":[30.85,43.07,100],"t":14},{"o":{"x":0.167,"y":0.917},"i":{"x":0.833,"y":1.12},"s":[50.4,15.31,100],"t":15},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":1.04},"s":[52.36,58.38,100],"t":16},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.987},"s":[47.59,58.74,100],"t":17},{"o":{"x":0.167,"y":-0.016},"i":{"x":0.833,"y":1.007},"s":[54.64,72.52,100],"t":18},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":1.079},"s":[48.7,63.68,100],"t":19},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.885},"s":[55.14,50.51,100],"t":20},{"o":{"x":0.167,"y":0.304},"i":{"x":0.833,"y":1.27},"s":[42.63,47.05,100],"t":21},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.89},"s":[37.89,27.18,100],"t":22},{"o":{"x":0.167,"y":0.348},"i":{"x":0.833,"y":1.303},"s":[57.98,24.19,100],"t":23},{"o":{"x":0.167,"y":0.065},"i":{"x":0.833,"y":0.938},"s":[64.3,32.94,100],"t":24},{"o":{"x":0.167,"y":-0.244},"i":{"x":0.833,"y":0.997},"s":[34.97,34.15,100],"t":25},{"o":{"x":0.167,"y":-0.003},"i":{"x":0.833,"y":0.977},"s":[42.45,79.93,100],"t":26},{"o":{"x":0.167,"y":-0.032},"i":{"x":0.833,"y":0.554},"s":[35.25,76.92,100],"t":27},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.904},"s":[40.43,64.03,100],"t":28},{"o":{"x":0.167,"y":0.64},"i":{"x":0.833,"y":1.416},"s":[63.02,54.97,100],"t":29},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.845},"s":[66.4,61.43,100],"t":30},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.974},"s":[46.12,55.12,100],"t":31},{"o":{"x":0.167,"y":-0.038},"i":{"x":0.833,"y":0.873},"s":[28.7,43.61,100],"t":32},{"o":{"x":0.167,"y":0.243},"i":{"x":0.833,"y":0.889},"s":[40.69,41.74,100],"t":33},{"o":{"x":0.167,"y":0.338},"i":{"x":0.833,"y":0.695},"s":[46.93,57.38,100],"t":34},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":1.062},"s":[48.98,51.38,100],"t":35},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.795},"s":[54.42,43.1,100],"t":36},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":0.993},"s":[44.91,56.84,100],"t":37},{"o":{"x":0.167,"y":-0.007},"i":{"x":0.833,"y":0.87},"s":[31.06,43.34,100],"t":38},{"o":{"x":0.167,"y":0.232},"i":{"x":0.833,"y":1.09},"s":[43.81,40.24,100],"t":39},{"o":{"x":0.167,"y":0.043},"i":{"x":0.833,"y":0.977},"s":[50.95,52.67,100],"t":40},{"o":{"x":0.167,"y":-0.032},"i":{"x":0.833,"y":0.984},"s":[36.14,31.29,100],"t":41},{"o":{"x":0.167,"y":-0.02},"i":{"x":0.833,"y":0.81},"s":[46.8,52.78,100],"t":42},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.816},"s":[38.24,22.51,100],"t":43},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.899},"s":[27.28,31.96,100],"t":44},{"o":{"x":0.167,"y":0.487},"i":{"x":0.833,"y":0.701},"s":[14.07,49.37,100],"t":45},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.904},"s":[11.34,33.35,100],"t":46},{"o":{"x":0.167,"y":0.611},"i":{"x":0.833,"y":0.701},"s":[4.28,47.48,100],"t":47},{"o":{"x":0.167,"y":0.116},"i":{"x":0.833,"y":1.089},"s":[3.16,7.17,100],"t":48},{"o":{"x":0.167,"y":0.043},"i":{"x":0.833,"y":0.758},"s":[0.27,27.42,100],"t":49},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":0.984},"s":[6.25,22.93,100],"t":50},{"o":{"x":0.167,"y":-0.02},"i":{"x":0.833,"y":0.938},"s":[17.66,29.17,100],"t":51},{"o":{"x":0.167,"y":-0.242},"i":{"x":0.833,"y":0.867},"s":[8.5,2.47,100],"t":52},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":0.67},"s":[10.84,13.98,100],"t":53},{"o":{"x":0.167,"y":0.112},"i":{"x":0.833,"y":0.825},"s":[12.23,8.8,100],"t":54},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":1.216},"s":[16.32,10.21,100],"t":55},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.985},"s":[20.81,2.12,100],"t":56},{"o":{"x":0.167,"y":-0.019},"i":{"x":0.833,"y":1.012},"s":[4.72,-21.1,100],"t":57},{"o":{"x":0.167,"y":0.01},"i":{"x":0.833,"y":0.833},"s":[17.88,24.32,100],"t":58},{"s":[2.87,19.36,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.622},"s":[132.45,178.02,0],"t":10},{"o":{"x":0.167,"y":0.107},"i":{"x":0.833,"y":0.767},"s":[133.28,177.34,0],"t":11},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.824},"s":[135.81,174.31,0],"t":12},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[139.21,167.74,0],"t":13},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[141.41,159.58,0],"t":14},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[142.29,152.14,0],"t":15},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.846},"s":[142.46,145.82,0],"t":16},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[142.23,140.51,0],"t":17},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[141.76,136,0],"t":18},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[141.14,132.14,0],"t":19},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[140.4,128.8,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[139.59,125.91,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[138.71,123.38,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[137.78,121.18,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[136.77,119.28,0],"t":24},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.836},"s":[135.7,117.64,0],"t":25},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.836},"s":[134.51,116.32,0],"t":26},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.839},"s":[133.11,115.49,0],"t":27},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.842},"s":[131.67,115.99,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.84},"s":[130.79,117.29,0],"t":29},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[130.16,118.62,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[129.65,119.88,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[129.19,121.05,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[128.79,122.13,0],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[128.41,123.13,0],"t":34},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[128.07,124.05,0],"t":35},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[127.75,124.88,0],"t":36},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[127.46,125.63,0],"t":37},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[127.21,126.31,0],"t":38},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[126.98,126.9,0],"t":39},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.85},"s":[126.8,127.41,0],"t":40},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.854},"s":[126.65,127.84,0],"t":41},{"o":{"x":0.167,"y":0.194},"i":{"x":0.833,"y":0.86},"s":[126.54,128.2,0],"t":42},{"o":{"x":0.167,"y":0.205},"i":{"x":0.833,"y":0.862},"s":[126.49,128.47,0],"t":43},{"o":{"x":0.167,"y":0.21},"i":{"x":0.833,"y":0.829},"s":[126.48,128.66,0],"t":44},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.802},"s":[126.53,128.77,0],"t":45},{"o":{"x":0.167,"y":0.144},"i":{"x":0.833,"y":0.818},"s":[126.64,128.8,0],"t":46},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.823},"s":[126.79,128.78,0],"t":47},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.826},"s":[126.97,128.76,0],"t":48},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.83},"s":[127.18,128.72,0],"t":49},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.832},"s":[127.4,128.67,0],"t":50},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[127.63,128.63,0],"t":51},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[127.86,128.61,0],"t":52},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[128.1,128.61,0],"t":53},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[128.33,128.63,0],"t":54},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[128.56,128.66,0],"t":55},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.839},"s":[128.77,128.71,0],"t":56},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[128.98,128.77,0],"t":57},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.833},"s":[129.16,128.84,0],"t":58},{"s":[129.32,128.91,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":37},{"s":[0],"t":53}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":18},{"ty":4,"nm":"Shape Layer 33","sr":1,"st":1,"op":60,"ip":1,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.161},"s":[43.31,73.42,100],"t":1},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.987},"s":[49.34,38.47,100],"t":2},{"o":{"x":0.167,"y":-0.015},"i":{"x":0.833,"y":0.822},"s":[31.65,70.09,100],"t":3},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":1.03},"s":[46.57,50.38,100],"t":4},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":0.939},"s":[63.59,37.37,100],"t":5},{"o":{"x":0.167,"y":-0.229},"i":{"x":0.833,"y":0.866},"s":[40.41,80.72,100],"t":6},{"o":{"x":0.167,"y":0.219},"i":{"x":0.833,"y":1.05},"s":[46.6,67.25,100],"t":7},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.544},"s":[50.39,47.22,100],"t":8},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":1.032},"s":[44.34,57.97,100],"t":9},{"o":{"x":0.167,"y":0.023},"i":{"x":0.833,"y":0.967},"s":[17.31,64.33,100],"t":10},{"o":{"x":0.167,"y":-0.056},"i":{"x":0.833,"y":0.842},"s":[54.6,65.99,100],"t":11},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":1.085},"s":[32.28,77.58,100],"t":12},{"o":{"x":0.167,"y":0.042},"i":{"x":0.833,"y":0.934},"s":[12.24,51.41,100],"t":13},{"o":{"x":0.167,"y":-0.328},"i":{"x":0.833,"y":0.884},"s":[52.73,38.14,100],"t":14},{"o":{"x":0.167,"y":0.298},"i":{"x":0.833,"y":1.34},"s":[44.54,39.35,100],"t":15},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.92},"s":[41.36,30.96,100],"t":16},{"o":{"x":0.167,"y":-2.065},"i":{"x":0.833,"y":1.04},"s":[57.52,67.73,100],"t":17},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":2.695},"s":[56.9,54.42,100],"t":18},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.902},"s":[57.83,56.16,100],"t":19},{"o":{"x":0.167,"y":0.556},"i":{"x":0.833,"y":1.407},"s":[37.97,33.84,100],"t":20},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.863},"s":[34.47,35.62,100],"t":21},{"o":{"x":0.167,"y":0.213},"i":{"x":0.833,"y":1.073},"s":[55.09,38.46,100],"t":22},{"o":{"x":0.167,"y":0.039},"i":{"x":0.833,"y":0.871},"s":[68.34,48.62,100],"t":23},{"o":{"x":0.167,"y":0.235},"i":{"x":0.833,"y":0.858},"s":[43.48,23.41,100],"t":24},{"o":{"x":0.167,"y":0.202},"i":{"x":0.833,"y":1.03},"s":[29.84,67.4,100],"t":25},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":0.926},"s":[20.27,82.82,100],"t":26},{"o":{"x":0.167,"y":-0.674},"i":{"x":0.833,"y":2.086},"s":[33.33,62.84,100],"t":27},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.999},"s":[31.89,49.58,100],"t":28},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.919},"s":[52.08,33.87,100],"t":29},{"o":{"x":0.167,"y":-3.288},"i":{"x":0.833,"y":0.947},"s":[32.23,38.24,100],"t":30},{"o":{"x":0.167,"y":-0.143},"i":{"x":0.833,"y":-1.723},"s":[32.72,27.2,100],"t":31},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.991},"s":[32.54,30.04,100],"t":32},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.778},"s":[26.82,41.73,100],"t":33},{"o":{"x":0.167,"y":0.133},"i":{"x":0.833,"y":1.071},"s":[31.95,20.64,100],"t":34},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.878},"s":[40.48,21.79,100],"t":35},{"o":{"x":0.167,"y":0.264},"i":{"x":0.833,"y":0.906},"s":[24.67,24.22,100],"t":36},{"o":{"x":0.167,"y":0.747},"i":{"x":0.833,"y":2.063},"s":[17.36,19.14,100],"t":37},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.889},"s":[16.45,13.72,100],"t":38},{"o":{"x":0.167,"y":0.331},"i":{"x":0.833,"y":1.055},"s":[29.06,41.5,100],"t":39},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.967},"s":[33.31,13,100],"t":40},{"o":{"x":0.167,"y":-0.055},"i":{"x":0.833,"y":1.215},"s":[26.24,15.41,100],"t":41},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.832},"s":[30.52,-4.62,100],"t":42},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.925},"s":[15.2,2.17,100],"t":43},{"o":{"x":0.167,"y":-0.72},"i":{"x":0.833,"y":1.261},"s":[-0.29,34.98,100],"t":44},{"o":{"x":0.167,"y":0.063},"i":{"x":0.833,"y":1.131},"s":[1.32,14.84,100],"t":45},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.938},"s":[-5.32,29.02,100],"t":46},{"o":{"x":0.167,"y":-0.242},"i":{"x":0.833,"y":0.851},"s":[11.77,7.4,100],"t":47},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":1.541},"s":[7.4,12.4,100],"t":48},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.973},"s":[3.94,9.66,100],"t":49},{"o":{"x":0.167,"y":-0.04},"i":{"x":0.833,"y":0.881},"s":[29.87,16.33,100],"t":50},{"o":{"x":0.167,"y":0.278},"i":{"x":0.833,"y":1.037},"s":[12.41,-8.38,100],"t":51},{"o":{"x":0.167,"y":0.026},"i":{"x":0.833,"y":0.927},"s":[4.93,5.01,100],"t":52},{"o":{"x":0.167,"y":-0.597},"i":{"x":0.833,"y":0.809},"s":[15.74,2.96,100],"t":53},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.896},"s":[14.42,21.54,100],"t":54},{"o":{"x":0.167,"y":0.422},"i":{"x":0.833,"y":0.876},"s":[12.7,17.71,100],"t":55},{"o":{"x":0.167,"y":0.252},"i":{"x":0.833,"y":0.716},"s":[12.28,10.76,100],"t":56},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":1.719},"s":[12.07,31.98,100],"t":57},{"o":{"x":0.167,"y":0.075},"i":{"x":0.833,"y":0.833},"s":[11.57,20.74,100],"t":58},{"s":[16.41,6.68,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.635},"s":[132.04,178.1,0],"t":1},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.798},"s":[132.93,177.16,0],"t":2},{"o":{"x":0.167,"y":0.142},"i":{"x":0.833,"y":0.803},"s":[136.11,174.37,0],"t":3},{"o":{"x":0.167,"y":0.144},"i":{"x":0.833,"y":0.844},"s":[141.47,175.39,0],"t":4},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[140.66,184.57,0],"t":5},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[139.1,192.5,0],"t":6},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[137.68,199.13,0],"t":7},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.843},"s":[136.45,204.76,0],"t":8},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[135.4,209.63,0],"t":9},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[134.5,213.92,0],"t":10},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[133.71,217.76,0],"t":11},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[133.02,221.21,0],"t":12},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[132.41,224.35,0],"t":13},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[131.87,227.22,0],"t":14},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[131.39,229.84,0],"t":15},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[130.96,232.26,0],"t":16},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[130.58,234.48,0],"t":17},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[130.25,236.53,0],"t":18},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[129.96,238.41,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[129.71,240.14,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[129.5,241.72,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[129.32,243.16,0],"t":22},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[129.19,244.46,0],"t":23},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[129.09,245.63,0],"t":24},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[129.04,246.66,0],"t":25},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[129.02,247.56,0],"t":26},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[129.05,248.33,0],"t":27},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.85},"s":[129.12,248.97,0],"t":28},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.848},"s":[129.23,249.48,0],"t":29},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.839},"s":[129.39,249.85,0],"t":30},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.837},"s":[129.59,250.11,0],"t":31},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[129.81,250.29,0],"t":32},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.837},"s":[130.04,250.43,0],"t":33},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[130.28,250.53,0],"t":34},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[130.51,250.6,0],"t":35},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[130.73,250.63,0],"t":36},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[130.94,250.63,0],"t":37},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[131.14,250.6,0],"t":38},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[131.32,250.55,0],"t":39},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.845},"s":[131.47,250.48,0],"t":40},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.852},"s":[131.6,250.39,0],"t":41},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.858},"s":[131.71,250.3,0],"t":42},{"o":{"x":0.167,"y":0.202},"i":{"x":0.833,"y":0.868},"s":[131.79,250.23,0],"t":43},{"o":{"x":0.167,"y":0.227},"i":{"x":0.833,"y":0.882},"s":[131.85,250.18,0],"t":44},{"o":{"x":0.167,"y":0.281},"i":{"x":0.833,"y":0.799},"s":[131.87,250.14,0],"t":45},{"o":{"x":0.167,"y":0.142},"i":{"x":0.833,"y":0.748},"s":[131.88,250.12,0],"t":46},{"o":{"x":0.167,"y":0.125},"i":{"x":0.833,"y":0.791},"s":[131.85,250.12,0],"t":47},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":0.808},"s":[131.8,250.13,0],"t":48},{"o":{"x":0.167,"y":0.147},"i":{"x":0.833,"y":0.816},"s":[131.73,250.15,0],"t":49},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.822},"s":[131.64,250.18,0],"t":50},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.826},"s":[131.53,250.22,0],"t":51},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.829},"s":[131.4,250.26,0],"t":52},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.831},"s":[131.26,250.3,0],"t":53},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.834},"s":[131.11,250.34,0],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.837},"s":[130.95,250.37,0],"t":55},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.839},"s":[130.8,250.39,0],"t":56},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.842},"s":[130.65,250.4,0],"t":57},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.833},"s":[130.51,250.38,0],"t":58},{"s":[130.39,250.35,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":1},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":28},{"s":[0],"t":44}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":19},{"ty":4,"nm":"Shape Layer 32","sr":1,"st":4,"op":60,"ip":4,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.916},"s":[71.56,33.39,100],"t":4},{"o":{"x":0.167,"y":7.109},"i":{"x":0.833,"y":2.984},"s":[50.12,66.67,100],"t":5},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":1.082},"s":[49.87,67.11,100],"t":6},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":0.769},"s":[56.18,39.67,100],"t":7},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.979},"s":[43.68,61.04,100],"t":8},{"o":{"x":0.167,"y":-0.029},"i":{"x":0.833,"y":0.843},"s":[21.51,70.5,100],"t":9},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":1.068},"s":[38,69.63,100],"t":10},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":1.009},"s":[52.61,70.16,100],"t":11},{"o":{"x":0.167,"y":0.009},"i":{"x":0.833,"y":0.92},"s":[26.11,39.72,100],"t":12},{"o":{"x":0.167,"y":-2.064},"i":{"x":0.833,"y":-1.061},"s":[55.63,58.24,100],"t":13},{"o":{"x":0.167,"y":0.087},"i":{"x":0.833,"y":0.981},"s":[54.48,51.89,100],"t":14},{"o":{"x":0.167,"y":-0.025},"i":{"x":0.833,"y":0.95},"s":[27.29,21.31,100],"t":15},{"o":{"x":0.167,"y":-0.128},"i":{"x":0.833,"y":1.094},"s":[48.23,58.83,100],"t":16},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.97},"s":[39.98,63.61,100],"t":17},{"o":{"x":0.167,"y":-0.047},"i":{"x":0.833,"y":0.853},"s":[57.56,50.32,100],"t":18},{"o":{"x":0.167,"y":0.192},"i":{"x":0.833,"y":1.034},"s":[46.31,34.32,100],"t":19},{"o":{"x":0.167,"y":0.024},"i":{"x":0.833,"y":0.781},"s":[37.68,47.54,100],"t":20},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.98},"s":[49.87,56.19,100],"t":21},{"o":{"x":0.167,"y":-0.026},"i":{"x":0.833,"y":0.835},"s":[69.66,64.58,100],"t":22},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.797},"s":[54.63,28.92,100],"t":23},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":1.009},"s":[39.86,54.35,100],"t":24},{"o":{"x":0.167,"y":0.008},"i":{"x":0.833,"y":0.947},"s":[18.57,77.37,100],"t":25},{"o":{"x":0.167,"y":-0.143},"i":{"x":0.833,"y":1.012},"s":[42.05,51.68,100],"t":26},{"o":{"x":0.167,"y":0.011},"i":{"x":0.833,"y":1.088},"s":[33.41,44.75,100],"t":27},{"o":{"x":0.167,"y":0.043},"i":{"x":0.833,"y":1.042},"s":[43.31,36.7,100],"t":28},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":0.935},"s":[22.94,35.16,100],"t":29},{"o":{"x":0.167,"y":-0.298},"i":{"x":0.833,"y":0.851},"s":[53.65,41.58,100],"t":30},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.881},"s":[46.93,32.31,100],"t":31},{"o":{"x":0.167,"y":0.278},"i":{"x":0.833,"y":1.231},"s":[41.61,53.05,100],"t":32},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":1.189},"s":[39.33,20.59,100],"t":33},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.94},"s":[47.94,38.1,100],"t":34},{"o":{"x":0.167,"y":-0.209},"i":{"x":0.833,"y":0.966},"s":[19.79,35.16,100],"t":35},{"o":{"x":0.167,"y":-0.059},"i":{"x":0.833,"y":0.938},"s":[27.82,30.9,100],"t":36},{"o":{"x":0.167,"y":-0.244},"i":{"x":0.833,"y":0.747},"s":[23.11,15.02,100],"t":37},{"o":{"x":0.167,"y":0.124},"i":{"x":0.833,"y":0.818},"s":[24.31,34.81,100],"t":38},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":1.061},"s":[26.74,11.11,100],"t":39},{"o":{"x":0.167,"y":0.035},"i":{"x":0.833,"y":0.894},"s":[29.61,8,100],"t":40},{"o":{"x":0.167,"y":0.384},"i":{"x":0.833,"y":-0.945},"s":[24.64,4.14,100],"t":41},{"o":{"x":0.167,"y":0.087},"i":{"x":0.833,"y":0.973},"s":[23.27,10.7,100],"t":42},{"o":{"x":0.167,"y":-0.04},"i":{"x":0.833,"y":0.927},"s":[-7.53,34.17,100],"t":43},{"o":{"x":0.167,"y":-0.604},"i":{"x":0.833,"y":1.52},"s":[13.26,15.85,100],"t":44},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.928},"s":[10.74,7.87,100],"t":45},{"o":{"x":0.167,"y":-0.54},"i":{"x":0.833,"y":0.588},"s":[28.98,5.49,100],"t":46},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":1.055},"s":[26.54,5.06,100],"t":47},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.999},"s":[16.92,6.19,100],"t":48},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.881},"s":[32.94,-5.02,100],"t":49},{"o":{"x":0.167,"y":0.276},"i":{"x":0.833,"y":0.92},"s":[17.09,-16.8,100],"t":50},{"o":{"x":0.167,"y":-1.801},"i":{"x":0.833,"y":3.321},"s":[10.21,-8.87,100],"t":51},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":0.876},"s":[10.51,-1.76,100],"t":52},{"o":{"x":0.167,"y":0.256},"i":{"x":0.833,"y":1.331},"s":[1.74,21.91,100],"t":53},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.912},"s":[-2.5,28.33,100],"t":54},{"o":{"x":0.167,"y":1.482},"i":{"x":0.833,"y":0.837},"s":[18.53,38.31,100],"t":55},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.163},"s":[19.79,34.97,100],"t":56},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":1.082},"s":[20.98,31.49,100],"t":57},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":0.833},"s":[31.79,-0.76,100],"t":58},{"s":[10.3,3.35,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.569},"s":[130.81,180.6,0],"t":4},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":0.761},"s":[130.63,179.25,0],"t":5},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[132,173.52,0],"t":6},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[137.16,164.21,0],"t":7},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[143.88,154.66,0],"t":8},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[150.03,146.57,0],"t":9},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[155.22,139.85,0],"t":10},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.843},"s":[159.57,134.13,0],"t":11},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[163.28,129.13,0],"t":12},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.841},"s":[166.46,124.67,0],"t":13},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[169.2,120.6,0],"t":14},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[171.59,116.83,0],"t":15},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[173.65,113.32,0],"t":16},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[175.42,110.05,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[176.89,107,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[178.09,104.14,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[179,101.45,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[179.63,98.94,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[179.94,96.61,0],"t":22},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[179.96,94.49,0],"t":23},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[179.7,92.63,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[179.22,91.05,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[178.58,89.75,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[177.86,88.7,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[177.1,87.86,0],"t":28},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[176.34,87.18,0],"t":29},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[175.58,86.65,0],"t":30},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[174.86,86.23,0],"t":31},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[174.16,85.89,0],"t":32},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[173.49,85.63,0],"t":33},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[172.87,85.43,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[172.28,85.28,0],"t":35},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[171.73,85.16,0],"t":36},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[171.22,85.08,0],"t":37},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[170.76,85.02,0],"t":38},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.846},"s":[170.35,84.98,0],"t":39},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.849},"s":[169.99,84.96,0],"t":40},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.855},"s":[169.69,84.94,0],"t":41},{"o":{"x":0.167,"y":0.196},"i":{"x":0.833,"y":0.865},"s":[169.44,84.92,0],"t":42},{"o":{"x":0.167,"y":0.218},"i":{"x":0.833,"y":0.867},"s":[169.26,84.9,0],"t":43},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":0.836},"s":[169.15,84.87,0],"t":44},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.816},"s":[169.09,84.82,0],"t":45},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.817},"s":[169.06,84.75,0],"t":46},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.82},"s":[169,84.69,0],"t":47},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.822},"s":[168.93,84.62,0],"t":48},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.824},"s":[168.83,84.56,0],"t":49},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.826},"s":[168.72,84.5,0],"t":50},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[168.59,84.44,0],"t":51},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.828},"s":[168.44,84.38,0],"t":52},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[168.29,84.33,0],"t":53},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[168.12,84.28,0],"t":54},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[167.94,84.24,0],"t":55},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[167.76,84.2,0],"t":56},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[167.57,84.16,0],"t":57},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[167.38,84.13,0],"t":58},{"s":[167.18,84.1,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":4},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":31},{"s":[0],"t":47}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":20},{"ty":4,"nm":"Shape Layer 31","sr":1,"st":5,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.272},"s":[43.07,57.45,100],"t":5},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.933},"s":[48.18,29.25,100],"t":6},{"o":{"x":0.167,"y":-0.333},"i":{"x":0.833,"y":0.952},"s":[26.42,41.99,100],"t":7},{"o":{"x":0.167,"y":-0.111},"i":{"x":0.833,"y":1.856},"s":[30.77,61.78,100],"t":8},{"o":{"x":0.167,"y":0.076},"i":{"x":0.833,"y":0.962},"s":[28.9,69.88,100],"t":9},{"o":{"x":0.167,"y":-0.071},"i":{"x":0.833,"y":0.999},"s":[49.98,61.65,100],"t":10},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.903},"s":[38.61,42.08,100],"t":11},{"o":{"x":0.167,"y":0.579},"i":{"x":0.833,"y":1.893},"s":[49.8,67.91,100],"t":12},{"o":{"x":0.167,"y":0.076},"i":{"x":0.833,"y":0.972},"s":[51.68,66.67,100],"t":13},{"o":{"x":0.167,"y":-0.042},"i":{"x":0.833,"y":1.033},"s":[29.63,26.32,100],"t":14},{"o":{"x":0.167,"y":0.024},"i":{"x":0.833,"y":1.04},"s":[44.3,36.27,100],"t":15},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.924},"s":[23.75,62.42,100],"t":16},{"o":{"x":0.167,"y":-0.867},"i":{"x":0.833,"y":1.029},"s":[54.1,61.39,100],"t":17},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":1.309},"s":[51.44,53.36,100],"t":18},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":1.026},"s":[55.04,59.99,100],"t":19},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.929},"s":[38.1,69.52,100],"t":20},{"o":{"x":0.167,"y":-0.493},"i":{"x":0.833,"y":0.73},"s":[60.3,75.44,100],"t":21},{"o":{"x":0.167,"y":0.12},"i":{"x":0.833,"y":0.684},"s":[57.09,48.39,100],"t":22},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.991},"s":[49.89,55.91,100],"t":23},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.886},"s":[29.83,77.16,100],"t":24},{"o":{"x":0.167,"y":0.309},"i":{"x":0.833,"y":0.995},"s":[47.73,46.45,100],"t":25},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.561},"s":[54.33,29.98,100],"t":26},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":0.977},"s":[48.14,50.02,100],"t":27},{"o":{"x":0.167,"y":-0.031},"i":{"x":0.833,"y":0.896},"s":[21.76,39.85,100],"t":28},{"o":{"x":0.167,"y":0.425},"i":{"x":0.833,"y":1.03},"s":[40.91,38.85,100],"t":29},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":1.079},"s":[45.59,31.02,100],"t":30},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":0.872},"s":[39.23,45.69,100],"t":31},{"o":{"x":0.167,"y":0.24},"i":{"x":0.833,"y":1.459},"s":[51.63,27.31,100],"t":32},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.918},"s":[58.22,39.02,100],"t":33},{"o":{"x":0.167,"y":-4.839},"i":{"x":0.833,"y":-0.338},"s":[15.3,39.94,100],"t":34},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.923},"s":[16.03,37.22,100],"t":35},{"o":{"x":0.167,"y":-1.049},"i":{"x":0.833,"y":0.316},"s":[26.97,20.6,100],"t":36},{"o":{"x":0.167,"y":0.095},"i":{"x":0.833,"y":1.082},"s":[26.16,25.63,100],"t":37},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":1.008},"s":[20.35,5.82,100],"t":38},{"o":{"x":0.167,"y":0.008},"i":{"x":0.833,"y":1.021},"s":[31.9,14.83,100],"t":39},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":1.135},"s":[19.19,20.64,100],"t":40},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":0.942},"s":[35.11,13.16,100],"t":41},{"o":{"x":0.167,"y":-0.192},"i":{"x":0.833,"y":0.84},"s":[-6.7,29.36,100],"t":42},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.78},"s":[5.94,32.18,100],"t":43},{"o":{"x":0.167,"y":0.134},"i":{"x":0.833,"y":0.932},"s":[17.6,4.11,100],"t":44},{"o":{"x":0.167,"y":-0.369},"i":{"x":0.833,"y":0.981},"s":[36.75,-6.49,100],"t":45},{"o":{"x":0.167,"y":-0.024},"i":{"x":0.833,"y":0.976},"s":[33.23,10.4,100],"t":46},{"o":{"x":0.167,"y":-0.033},"i":{"x":0.833,"y":0.142},"s":[35.96,18.93,100],"t":47},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.915},"s":[34,-9.24,100],"t":48},{"o":{"x":0.167,"y":4.378},"i":{"x":0.833,"y":0.919},"s":[15.81,-14.25,100],"t":49},{"o":{"x":0.167,"y":-3.24},"i":{"x":0.833,"y":216.656},"s":[15.46,-13.31,100],"t":50},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":0.938},"s":[15.47,0.25,100],"t":51},{"o":{"x":0.167,"y":-0.235},"i":{"x":0.833,"y":0.616},"s":[-7.44,15.71,100],"t":52},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.903},"s":[-1.44,23.34,100],"t":53},{"o":{"x":0.167,"y":0.581},"i":{"x":0.833,"y":0.946},"s":[20.21,53.71,100],"t":54},{"o":{"x":0.167,"y":-0.15},"i":{"x":0.833,"y":1.754},"s":[23.84,28.32,100],"t":55},{"o":{"x":0.167,"y":0.075},"i":{"x":0.833,"y":1.071},"s":[22.55,14.48,100],"t":56},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.871},"s":[35.56,4.82,100],"t":57},{"o":{"x":0.167,"y":0.235},"i":{"x":0.833,"y":0.833},"s":[11.44,6.15,100],"t":58},{"s":[-1.84,14.24,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.6},"s":[134.09,179.44,0],"t":5},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.765},"s":[133.75,177.37,0],"t":6},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[131.68,169.7,0],"t":7},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[127.36,155.94,0],"t":8},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[122.11,140.89,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[117.15,127.94,0],"t":10},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[112.74,117.31,0],"t":11},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[108.8,108.51,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[105.23,101.09,0],"t":13},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[101.96,94.77,0],"t":14},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[98.94,89.32,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[96.13,84.58,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[93.49,80.44,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[91,76.81,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[88.64,73.62,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[86.42,70.81,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[84.3,68.34,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[82.31,66.17,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[80.41,64.27,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[78.63,62.61,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[76.95,61.16,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[75.37,59.9,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[73.91,58.81,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[72.55,57.87,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[71.31,57.07,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[70.18,56.38,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[69.14,55.81,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[68.17,55.32,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[67.27,54.91,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[66.43,54.57,0],"t":34},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[65.66,54.28,0],"t":35},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[64.96,54.05,0],"t":36},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[64.32,53.85,0],"t":37},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[63.74,53.68,0],"t":38},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[63.21,53.55,0],"t":39},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[62.74,53.44,0],"t":40},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[62.33,53.34,0],"t":41},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[61.97,53.26,0],"t":42},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[61.66,53.2,0],"t":43},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.842},"s":[61.41,53.14,0],"t":44},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.832},"s":[61.2,53.1,0],"t":45},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[61.02,53.05,0],"t":46},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[60.83,53,0],"t":47},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[60.64,52.95,0],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[60.46,52.88,0],"t":49},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.835},"s":[60.27,52.82,0],"t":50},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.836},"s":[60.09,52.74,0],"t":51},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.837},"s":[59.92,52.67,0],"t":52},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[59.75,52.59,0],"t":53},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[59.6,52.51,0],"t":54},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.841},"s":[59.45,52.43,0],"t":55},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.843},"s":[59.32,52.35,0],"t":56},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[59.2,52.27,0],"t":57},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.833},"s":[59.1,52.19,0],"t":58},{"s":[59.02,52.12,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":32},{"s":[0],"t":48}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":21},{"ty":4,"nm":"Shape Layer 30","sr":1,"st":8,"op":60,"ip":8,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.949},"s":[30.35,56.57,100],"t":8},{"o":{"x":0.167,"y":-0.13},"i":{"x":0.833,"y":0.907},"s":[48.9,65.8,100],"t":9},{"o":{"x":0.167,"y":0.78},"i":{"x":0.833,"y":-0.255},"s":[41.67,42.02,100],"t":10},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.914},"s":[40.8,65.51,100],"t":11},{"o":{"x":0.167,"y":2.881},"i":{"x":0.833,"y":3.317},"s":[28.63,58.89,100],"t":12},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":0.968},"s":[28.26,44.63,100],"t":13},{"o":{"x":0.167,"y":-0.051},"i":{"x":0.833,"y":1.128},"s":[38.71,40.83,100],"t":14},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.956},"s":[32.25,33.66,100],"t":15},{"o":{"x":0.167,"y":-0.092},"i":{"x":0.833,"y":1.189},"s":[48.67,56.02,100],"t":16},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":1.016},"s":[40.85,66.54,100],"t":17},{"o":{"x":0.167,"y":0.013},"i":{"x":0.833,"y":0.924},"s":[66.41,65.06,100],"t":18},{"o":{"x":0.167,"y":-0.873},"i":{"x":0.833,"y":0.746},"s":[36.03,68,100],"t":19},{"o":{"x":0.167,"y":0.124},"i":{"x":0.833,"y":0.967},"s":[38.67,60.78,100],"t":20},{"o":{"x":0.167,"y":-0.055},"i":{"x":0.833,"y":1.027},"s":[44.08,58.72,100],"t":21},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.852},"s":[40.83,49.11,100],"t":22},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.603},"s":[45.14,69.32,100],"t":23},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.909},"s":[48.47,52.66,100],"t":24},{"o":{"x":0.167,"y":1.02},"i":{"x":0.833,"y":3.481},"s":[60.97,15.23,100],"t":25},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.92},"s":[62.08,52.41,100],"t":26},{"o":{"x":0.167,"y":-2.332},"i":{"x":0.833,"y":0.841},"s":[27.87,46.51,100],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.572},"s":[29.05,26.07,100],"t":28},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":0.638},"s":[30.12,31.26,100],"t":29},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.822},"s":[34.57,39.08,100],"t":30},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":1.094},"s":[49.45,41.13,100],"t":31},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.89},"s":[66.36,36.49,100],"t":32},{"o":{"x":0.167,"y":0.345},"i":{"x":0.833,"y":1.08},"s":[30.32,37.02,100],"t":33},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":0.94},"s":[18.84,52.37,100],"t":34},{"o":{"x":0.167,"y":-0.213},"i":{"x":0.833,"y":0.898},"s":[41.37,47.27,100],"t":35},{"o":{"x":0.167,"y":0.457},"i":{"x":0.833,"y":1.645},"s":[35.03,47.18,100],"t":36},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.967},"s":[33.61,11.88,100],"t":37},{"o":{"x":0.167,"y":-0.053},"i":{"x":0.833,"y":0.963},"s":[46,37.03,100],"t":38},{"o":{"x":0.167,"y":-0.065},"i":{"x":0.833,"y":1.499},"s":[38.45,41.4,100],"t":39},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.912},"s":[42.69,36.79,100],"t":40},{"o":{"x":0.167,"y":1.658},"i":{"x":0.833,"y":0.903},"s":[13.05,26.13,100],"t":41},{"o":{"x":0.167,"y":0.609},"i":{"x":0.833,"y":8.954},"s":[11.48,38.34,100],"t":42},{"o":{"x":0.167,"y":0.082},"i":{"x":0.833,"y":0.931},"s":[11.24,28.42,100],"t":43},{"o":{"x":0.167,"y":-0.407},"i":{"x":0.833,"y":1.153},"s":[35.24,8.28,100],"t":44},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.994},"s":[31.15,27.61,100],"t":45},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.742},"s":[42.72,49.65,100],"t":46},{"o":{"x":0.167,"y":0.123},"i":{"x":0.833,"y":0.929},"s":[31.92,7.88,100],"t":47},{"o":{"x":0.167,"y":-0.497},"i":{"x":0.833,"y":0.536},"s":[9.29,9.62,100],"t":48},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":1.076},"s":[12.54,1.74,100],"t":49},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.924},"s":[27.4,17.13,100],"t":50},{"o":{"x":0.167,"y":-0.906},"i":{"x":0.833,"y":0.444},"s":[-0.92,9.72,100],"t":51},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":0.986},"s":[1.46,5.54,100],"t":52},{"o":{"x":0.167,"y":-0.017},"i":{"x":0.833,"y":0.952},"s":[15,41.5,100],"t":53},{"o":{"x":0.167,"y":-0.111},"i":{"x":0.833,"y":0.484},"s":[3.7,22.39,100],"t":54},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":0.947},"s":[8.54,-3.99,100],"t":55},{"o":{"x":0.167,"y":-0.143},"i":{"x":0.833,"y":0.773},"s":[33.66,11.98,100],"t":56},{"o":{"x":0.167,"y":0.132},"i":{"x":0.833,"y":0.98},"s":[24.43,6.72,100],"t":57},{"o":{"x":0.167,"y":-0.027},"i":{"x":0.833,"y":0.833},"s":[8.54,16.99,100],"t":58},{"s":[20.58,40.66,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.613},"s":[133.54,176.14,0],"t":8},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.766},"s":[133.32,175.2,0],"t":9},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[132.38,171.82,0],"t":10},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[130.48,165.78,0],"t":11},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.852},"s":[127.93,159.31,0],"t":12},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.84},"s":[124.67,154.54,0],"t":13},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.845},"s":[120.92,155.77,0],"t":14},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[119.09,159.6,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[117.91,163.13,0],"t":16},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[117.01,166.28,0],"t":17},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[116.27,169.08,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[115.62,171.59,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[115.03,173.84,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[114.48,175.87,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[113.95,177.7,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[113.44,179.35,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[112.94,180.85,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[112.43,182.19,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[111.92,183.4,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[111.4,184.47,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[110.86,185.42,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[110.31,186.24,0],"t":29},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[109.75,186.95,0],"t":30},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[109.17,187.53,0],"t":31},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[108.57,187.99,0],"t":32},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[107.97,188.35,0],"t":33},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[107.36,188.58,0],"t":34},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[106.76,188.72,0],"t":35},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[106.18,188.76,0],"t":36},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[105.63,188.73,0],"t":37},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[105.12,188.64,0],"t":38},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[104.63,188.52,0],"t":39},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[104.19,188.37,0],"t":40},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[103.78,188.21,0],"t":41},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[103.41,188.06,0],"t":42},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[103.08,187.9,0],"t":43},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.833},"s":[102.79,187.76,0],"t":44},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[102.54,187.64,0],"t":45},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[102.28,187.53,0],"t":46},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.833},"s":[102.02,187.43,0],"t":47},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.831},"s":[101.75,187.35,0],"t":48},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[101.49,187.28,0],"t":49},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[101.21,187.22,0],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[100.93,187.17,0],"t":51},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[100.65,187.13,0],"t":52},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[100.38,187.11,0],"t":53},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[100.11,187.09,0],"t":54},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.839},"s":[99.85,187.09,0],"t":55},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[99.61,187.09,0],"t":56},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[99.38,187.12,0],"t":57},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.833},"s":[99.17,187.15,0],"t":58},{"s":[98.98,187.2,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":35},{"s":[0],"t":51}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":22},{"ty":4,"nm":"Shape Layer 29","sr":1,"st":12,"op":60,"ip":12,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.332},"s":[31.53,50.06,100],"t":12},{"o":{"x":0.167,"y":0.095},"i":{"x":0.833,"y":0.875},"s":[34.15,63.84,100],"t":13},{"o":{"x":0.167,"y":0.249},"i":{"x":0.833,"y":1.206},"s":[52.54,19.24,100],"t":14},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":0.969},"s":[61.78,35.59,100],"t":15},{"o":{"x":0.167,"y":-0.048},"i":{"x":0.833,"y":1},"s":[29.67,50.25,100],"t":16},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":0.908},"s":[50,64.36,100],"t":17},{"o":{"x":0.167,"y":0.877},"i":{"x":0.833,"y":1.333},"s":[29.73,72.81,100],"t":18},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.949},"s":[27.6,48.86,100],"t":19},{"o":{"x":0.167,"y":-0.133},"i":{"x":0.833,"y":1.322},"s":[38.22,56.99,100],"t":20},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":0.976},"s":[34.13,43.62,100],"t":21},{"o":{"x":0.167,"y":-0.033},"i":{"x":0.833,"y":0.923},"s":[54.06,51.96,100],"t":22},{"o":{"x":0.167,"y":-0.984},"i":{"x":0.833,"y":0.066},"s":[39.77,65,100],"t":23},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":1.003},"s":[40.89,23.58,100],"t":24},{"o":{"x":0.167,"y":0.002},"i":{"x":0.833,"y":0.86},"s":[52.28,36.07,100],"t":25},{"o":{"x":0.167,"y":0.206},"i":{"x":0.833,"y":0.865},"s":[40.54,33.09,100],"t":26},{"o":{"x":0.167,"y":0.217},"i":{"x":0.833,"y":0.851},"s":[32.53,19.47,100],"t":27},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":1.158},"s":[27.56,33.71,100],"t":28},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.865},"s":[23.63,42.04,100],"t":29},{"o":{"x":0.167,"y":0.218},"i":{"x":0.833,"y":0.754},"s":[35.01,47.84,100],"t":30},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":1.096},"s":[42.03,23.43,100],"t":31},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.99},"s":[55.7,30.54,100],"t":32},{"o":{"x":0.167,"y":-0.012},"i":{"x":0.833,"y":0.96},"s":[26.25,50.46,100],"t":33},{"o":{"x":0.167,"y":-0.077},"i":{"x":0.833,"y":0.928},"s":[52.12,77.28,100],"t":34},{"o":{"x":0.167,"y":-0.532},"i":{"x":0.833,"y":0.204},"s":[38.68,62.29,100],"t":35},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":0.915},"s":[40.5,39.48,100],"t":36},{"o":{"x":0.167,"y":3.696},"i":{"x":0.833,"y":0.454},"s":[56.07,57.26,100],"t":37},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":1.872},"s":[56.43,63.1,100],"t":38},{"o":{"x":0.167,"y":0.076},"i":{"x":0.833,"y":0.944},"s":[58.42,61.42,100],"t":39},{"o":{"x":0.167,"y":-0.17},"i":{"x":0.833,"y":1.157},"s":[35.56,44.73,100],"t":40},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.962},"s":[43.08,42.67,100],"t":41},{"o":{"x":0.167,"y":-0.07},"i":{"x":0.833,"y":0.853},"s":[21.45,34.3,100],"t":42},{"o":{"x":0.167,"y":0.193},"i":{"x":0.833,"y":0.885},"s":[33.17,39.54,100],"t":43},{"o":{"x":0.167,"y":0.3},"i":{"x":0.833,"y":1.471},"s":[42.05,41.34,100],"t":44},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.904},"s":[45.47,65.85,100],"t":45},{"o":{"x":0.167,"y":0.633},"i":{"x":0.833,"y":0.526},"s":[22.76,27.45,100],"t":46},{"o":{"x":0.167,"y":0.101},"i":{"x":0.833,"y":1.045},"s":[19.32,35.58,100],"t":47},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":0.969},"s":[3.19,26.07,100],"t":48},{"o":{"x":0.167,"y":-0.05},"i":{"x":0.833,"y":0.929},"s":[28.06,47.68,100],"t":49},{"o":{"x":0.167,"y":-0.48},"i":{"x":0.833,"y":0.854},"s":[12.46,18.98,100],"t":50},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":1.966},"s":[14.77,18.31,100],"t":51},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.921},"s":[16.5,21.78,100],"t":52},{"o":{"x":0.167,"y":-1.48},"i":{"x":0.833,"y":-0.996},"s":[-5.26,25.99,100],"t":53},{"o":{"x":0.167,"y":0.087},"i":{"x":0.833,"y":0.91},"s":[-4.1,5.77,100],"t":54},{"o":{"x":0.167,"y":1.177},"i":{"x":0.833,"y":1.194},"s":[22.51,20.73,100],"t":55},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":1.01},"s":[24.53,7.68,100],"t":56},{"o":{"x":0.167,"y":0.009},"i":{"x":0.833,"y":0.876},"s":[17.79,17.3,100],"t":57},{"o":{"x":0.167,"y":0.252},"i":{"x":0.833,"y":0.833},"s":[25.34,37.33,100],"t":58},{"s":[29.07,21.98,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.577},"s":[132.24,179.27,0],"t":12},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.762},"s":[131.98,178.1,0],"t":13},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.842},"s":[130.84,173.36,0],"t":14},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.826},"s":[129.52,164.43,0],"t":15},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.848},"s":[134.84,159.9,0],"t":16},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.847},"s":[141.33,163.96,0],"t":17},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[146.41,167.96,0],"t":18},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[150.59,171.37,0],"t":19},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[154.15,174.25,0],"t":20},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[157.23,176.65,0],"t":21},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[159.94,178.67,0],"t":22},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[162.34,180.35,0],"t":23},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[164.5,181.73,0],"t":24},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[166.45,182.86,0],"t":25},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[168.21,183.75,0],"t":26},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[169.81,184.43,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[171.27,184.92,0],"t":28},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[172.6,185.23,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[173.81,185.38,0],"t":30},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[174.89,185.35,0],"t":31},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[175.84,185.19,0],"t":32},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[176.67,184.89,0],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[177.38,184.49,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[177.97,184.02,0],"t":35},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[178.47,183.51,0],"t":36},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[178.88,182.97,0],"t":37},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[179.21,182.44,0],"t":38},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[179.49,181.92,0],"t":39},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[179.72,181.43,0],"t":40},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[179.91,180.98,0],"t":41},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[180.07,180.58,0],"t":42},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[180.22,180.21,0],"t":43},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[180.36,179.9,0],"t":44},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[180.49,179.63,0],"t":45},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[180.61,179.41,0],"t":46},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[180.74,179.24,0],"t":47},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[180.86,179.11,0],"t":48},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.841},"s":[180.98,179.02,0],"t":49},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.838},"s":[181.1,178.97,0],"t":50},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.833},"s":[181.21,178.96,0],"t":51},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[181.32,178.98,0],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.837},"s":[181.42,179.02,0],"t":53},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.842},"s":[181.52,179.06,0],"t":54},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.849},"s":[181.62,179.1,0],"t":55},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.859},"s":[181.71,179.12,0],"t":56},{"o":{"x":0.167,"y":0.204},"i":{"x":0.833,"y":0.882},"s":[181.78,179.15,0],"t":57},{"o":{"x":0.167,"y":0.285},"i":{"x":0.833,"y":0.833},"s":[181.84,179.16,0],"t":58},{"s":[181.86,179.16,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":17},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":39},{"s":[0],"t":55}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":23},{"ty":4,"nm":"Shape Layer 28","sr":1,"st":3,"op":60,"ip":3,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.903},"s":[46.24,71.87,100],"t":3},{"o":{"x":0.167,"y":0.6},"i":{"x":0.833,"y":1.272},"s":[62.15,76.16,100],"t":4},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.732},"s":[64.72,50.15,100],"t":5},{"o":{"x":0.167,"y":0.121},"i":{"x":0.833,"y":0.963},"s":[53.77,29.31,100],"t":6},{"o":{"x":0.167,"y":-0.066},"i":{"x":0.833,"y":0.861},"s":[29.55,79.31,100],"t":7},{"o":{"x":0.167,"y":0.209},"i":{"x":0.833,"y":1.066},"s":[43.05,79.97,100],"t":8},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":0.966},"s":[52,64.77,100],"t":9},{"o":{"x":0.167,"y":-0.056},"i":{"x":0.833,"y":0.936},"s":[35.95,33.53,100],"t":10},{"o":{"x":0.167,"y":-0.27},"i":{"x":0.833,"y":1.484},"s":[45.52,39.41,100],"t":11},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.866},"s":[43.27,73.99,100],"t":12},{"o":{"x":0.167,"y":0.221},"i":{"x":0.833,"y":1.185},"s":[58.63,31,100],"t":13},{"o":{"x":0.167,"y":0.057},"i":{"x":0.833,"y":0.916},"s":[67.92,40.53,100],"t":14},{"o":{"x":0.167,"y":6.732},"i":{"x":0.833,"y":-1.441},"s":[38.04,46.93,100],"t":15},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.941},"s":[37.67,63.1,100],"t":16},{"o":{"x":0.167,"y":-0.198},"i":{"x":0.833,"y":0.598},"s":[27.07,81.97,100],"t":17},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.889},"s":[30.2,60.14,100],"t":18},{"o":{"x":0.167,"y":0.337},"i":{"x":0.833,"y":0.557},"s":[42.18,45.08,100],"t":19},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":1.048},"s":[46.11,54.88,100],"t":20},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":0.894},"s":[63.07,46.51,100],"t":21},{"o":{"x":0.167,"y":0.385},"i":{"x":0.833,"y":1.003},"s":[36.44,74.2,100],"t":22},{"o":{"x":0.167,"y":0.003},"i":{"x":0.833,"y":0.783},"s":[29.07,56.78,100],"t":23},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.987},"s":[36.7,42.06,100],"t":24},{"o":{"x":0.167,"y":-0.016},"i":{"x":0.833,"y":0.98},"s":[48.94,29.08,100],"t":25},{"o":{"x":0.167,"y":-0.026},"i":{"x":0.833,"y":1.196},"s":[38.66,31.05,100],"t":26},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.937},"s":[46.51,48.95,100],"t":27},{"o":{"x":0.167,"y":-0.251},"i":{"x":0.833,"y":0.998},"s":[20.18,53.91,100],"t":28},{"o":{"x":0.167,"y":-0.002},"i":{"x":0.833,"y":1.333},"s":[26.74,48.31,100],"t":29},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.996},"s":[20.31,16.32,100],"t":30},{"o":{"x":0.167,"y":-0.004},"i":{"x":0.833,"y":0.941},"s":[52.45,30.31,100],"t":31},{"o":{"x":0.167,"y":-0.201},"i":{"x":0.833,"y":0.942},"s":[21.69,34.67,100],"t":32},{"o":{"x":0.167,"y":-0.19},"i":{"x":0.833,"y":0.637},"s":[30.7,70.69,100],"t":33},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.914},"s":[27.95,37.42,100],"t":34},{"o":{"x":0.167,"y":2.63},"i":{"x":0.833,"y":3.767},"s":[18.74,29.71,100],"t":35},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.822},"s":[18.43,40.46,100],"t":36},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.994},"s":[28.75,50.24,100],"t":37},{"o":{"x":0.167,"y":-0.007},"i":{"x":0.833,"y":0.943},"s":[40.53,32.72,100],"t":38},{"o":{"x":0.167,"y":-0.184},"i":{"x":0.833,"y":1.235},"s":[29.66,17.49,100],"t":39},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":0.881},"s":[33.04,34.28,100],"t":40},{"o":{"x":0.167,"y":0.279},"i":{"x":0.833,"y":1.257},"s":[20.13,0.79,100],"t":41},{"o":{"x":0.167,"y":0.063},"i":{"x":0.833,"y":0.914},"s":[14.63,19.95,100],"t":42},{"o":{"x":0.167,"y":2.356},"i":{"x":0.833,"y":3.558},"s":[37.11,24.29,100],"t":43},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.923},"s":[37.93,20.45,100],"t":44},{"o":{"x":0.167,"y":-1.086},"i":{"x":0.833,"y":1.665},"s":[11.82,19.19,100],"t":45},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":1.007},"s":[13.68,16.79,100],"t":46},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.981},"s":[-3.04,23.01,100],"t":47},{"o":{"x":0.167,"y":-0.024},"i":{"x":0.833,"y":1},"s":[15.01,43.86,100],"t":48},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":0.934},"s":[0.99,29.49,100],"t":49},{"o":{"x":0.167,"y":-0.326},"i":{"x":0.833,"y":0.727},"s":[15.02,40.67,100],"t":50},{"o":{"x":0.167,"y":0.12},"i":{"x":0.833,"y":0.902},"s":[12.17,14.36,100],"t":51},{"o":{"x":0.167,"y":0.55},"i":{"x":0.833,"y":2.108},"s":[5.67,3.84,100],"t":52},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":0.948},"s":[4.51,20.02,100],"t":53},{"o":{"x":0.167,"y":-0.138},"i":{"x":0.833,"y":0.825},"s":[21.09,21.55,100],"t":54},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.973},"s":[14.86,21.79,100],"t":55},{"o":{"x":0.167,"y":-0.039},"i":{"x":0.833,"y":0.903},"s":[7.97,25.65,100],"t":56},{"o":{"x":0.167,"y":0.6},"i":{"x":0.833,"y":-0.408},"s":[12.66,30.33,100],"t":57},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.833},"s":[13.42,23.76,100],"t":58},{"s":[25.45,11.82,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.613},"s":[132.11,178.94,0],"t":3},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.766},"s":[131.6,177.3,0],"t":4},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.825},"s":[129.39,171.49,0],"t":5},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.843},"s":[123.2,162.77,0],"t":6},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[113.07,159.78,0],"t":7},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[104.3,163.28,0],"t":8},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[97.91,168.51,0],"t":9},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[93.17,173.89,0],"t":10},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[89.56,179.01,0],"t":11},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[86.79,183.81,0],"t":12},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[84.67,188.29,0],"t":13},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[83.07,192.48,0],"t":14},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[81.94,196.37,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[81.2,199.98,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[80.84,203.31,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[80.82,206.32,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[81.1,209.03,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[81.64,211.41,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[82.37,213.44,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[83.24,215.15,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[84.19,216.56,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[85.18,217.72,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[86.16,218.66,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[87.13,219.42,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[88.06,220.03,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[88.94,220.52,0],"t":28},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[89.78,220.91,0],"t":29},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[90.57,221.22,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[91.32,221.46,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[92.01,221.63,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[92.65,221.76,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[93.25,221.84,0],"t":34},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[93.79,221.88,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[94.28,221.89,0],"t":36},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[94.71,221.87,0],"t":37},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.848},"s":[95.09,221.83,0],"t":38},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.851},"s":[95.41,221.77,0],"t":39},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.856},"s":[95.67,221.7,0],"t":40},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":0.86},"s":[95.87,221.61,0],"t":41},{"o":{"x":0.167,"y":0.206},"i":{"x":0.833,"y":0.845},"s":[96,221.51,0],"t":42},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.817},"s":[96.05,221.4,0],"t":43},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.816},"s":[96.05,221.3,0],"t":44},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.821},"s":[96.04,221.17,0],"t":45},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.824},"s":[96.05,221.02,0],"t":46},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.826},"s":[96.07,220.84,0],"t":47},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[96.1,220.65,0],"t":48},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[96.15,220.45,0],"t":49},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[96.22,220.24,0],"t":50},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[96.3,220.02,0],"t":51},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[96.39,219.8,0],"t":52},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[96.5,219.58,0],"t":53},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[96.62,219.37,0],"t":54},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[96.76,219.16,0],"t":55},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[96.91,218.97,0],"t":56},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[97.08,218.78,0],"t":57},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[97.25,218.61,0],"t":58},{"s":[97.44,218.45,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":3},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":30},{"s":[0],"t":46}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":24},{"ty":4,"nm":"Shape Layer 27","sr":1,"st":1,"op":60,"ip":1,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":-0.282},"s":[35.24,60.25,100],"t":1},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.885},"s":[36.88,66.21,100],"t":2},{"o":{"x":0.167,"y":0.304},"i":{"x":0.833,"y":1.019},"s":[60.42,90.02,100],"t":3},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.693},"s":[69.3,55.03,100],"t":4},{"o":{"x":0.167,"y":0.114},"i":{"x":0.833,"y":0.936},"s":[58.39,38.17,100],"t":5},{"o":{"x":0.167,"y":-0.276},"i":{"x":0.833,"y":0.769},"s":[29.13,61.64,100],"t":6},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":1.003},"s":[35.92,71.14,100],"t":7},{"o":{"x":0.167,"y":0.003},"i":{"x":0.833,"y":1.032},"s":[47.94,73.72,100],"t":8},{"o":{"x":0.167,"y":0.023},"i":{"x":0.833,"y":0.887},"s":[35.47,39.21,100],"t":9},{"o":{"x":0.167,"y":0.315},"i":{"x":0.833,"y":0.904},"s":[52.78,34.31,100],"t":10},{"o":{"x":0.167,"y":0.612},"i":{"x":0.833,"y":1.479},"s":[59.01,68.77,100],"t":11},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.764},"s":[60,47.3,100],"t":12},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.916},"s":[53.35,60.54,100],"t":13},{"o":{"x":0.167,"y":12.53},"i":{"x":0.833,"y":3.633},"s":[41.18,66.37,100],"t":14},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.72},"s":[41.1,59.69,100],"t":15},{"o":{"x":0.167,"y":0.119},"i":{"x":0.833,"y":0.993},"s":[43.75,80.11,100],"t":16},{"o":{"x":0.167,"y":-0.007},"i":{"x":0.833,"y":0.905},"s":[50.01,71.51,100],"t":17},{"o":{"x":0.167,"y":0.667},"i":{"x":0.833,"y":2.566},"s":[44.26,36.21,100],"t":18},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":1.025},"s":[43.44,48.83,100],"t":19},{"o":{"x":0.167,"y":0.019},"i":{"x":0.833,"y":0.879},"s":[59.71,45.89,100],"t":20},{"o":{"x":0.167,"y":0.27},"i":{"x":0.833,"y":1.099},"s":[38.47,59.84,100],"t":21},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.927},"s":[28.98,65.71,100],"t":22},{"o":{"x":0.167,"y":-0.587},"i":{"x":0.833,"y":1.136},"s":[49.81,66.27,100],"t":23},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":0.943},"s":[47.22,37.69,100],"t":24},{"o":{"x":0.167,"y":-0.183},"i":{"x":0.833,"y":0.841},"s":[54.03,57.66,100],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.252},"s":[51.89,56.71,100],"t":26},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.859},"s":[49.97,70.9,100],"t":27},{"o":{"x":0.167,"y":0.205},"i":{"x":0.833,"y":0.964},"s":[34.59,53.34,100],"t":28},{"o":{"x":0.167,"y":-0.063},"i":{"x":0.833,"y":1.045},"s":[24.02,30.32,100],"t":29},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":0.816},"s":[30.06,33.74,100],"t":30},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":1.115},"s":[20.76,47.01,100],"t":31},{"o":{"x":0.167,"y":0.048},"i":{"x":0.833,"y":0.93},"s":[9.52,36.53,100],"t":32},{"o":{"x":0.167,"y":-0.45},"i":{"x":0.833,"y":0.463},"s":[36.33,27.38,100],"t":33},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":0.951},"s":[32.14,18.27,100],"t":34},{"o":{"x":0.167,"y":-0.12},"i":{"x":0.833,"y":0.744},"s":[9.39,30.53,100],"t":35},{"o":{"x":0.167,"y":0.124},"i":{"x":0.833,"y":0.91},"s":[18.72,40.03,100],"t":36},{"o":{"x":0.167,"y":1.166},"i":{"x":0.833,"y":1.615},"s":[38.02,22.83,100],"t":37},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.84},"s":[39.5,1.09,100],"t":38},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.914},"s":[27.06,40.78,100],"t":39},{"o":{"x":0.167,"y":2.748},"i":{"x":0.833,"y":4.375},"s":[15.57,3.65,100],"t":40},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.903},"s":[15.21,6.73,100],"t":41},{"o":{"x":0.167,"y":0.59},"i":{"x":0.833,"y":1.257},"s":[30.12,32.92,100],"t":42},{"o":{"x":0.167,"y":0.063},"i":{"x":0.833,"y":0.875},"s":[32.57,-9.03,100],"t":43},{"o":{"x":0.167,"y":0.252},"i":{"x":0.833,"y":0.777},"s":[22.54,18.9,100],"t":44},{"o":{"x":0.167,"y":0.133},"i":{"x":0.833,"y":1.071},"s":[17.58,-5.4,100],"t":45},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":1.042},"s":[9.27,9.97,100],"t":46},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":0.967},"s":[24.7,25.45,100],"t":47},{"o":{"x":0.167,"y":-0.054},"i":{"x":0.833,"y":0.951},"s":[1.56,29.4,100],"t":48},{"o":{"x":0.167,"y":-0.121},"i":{"x":0.833,"y":0.826},"s":[15.61,42.53,100],"t":49},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.958},"s":[9.88,25.36,100],"t":50},{"o":{"x":0.167,"y":-0.084},"i":{"x":0.833,"y":0.531},"s":[3.63,-21.93,100],"t":51},{"o":{"x":0.167,"y":0.101},"i":{"x":0.833,"y":0.924},"s":[6.74,16.68,100],"t":52},{"o":{"x":0.167,"y":-0.872},"i":{"x":0.833,"y":-0.207},"s":[21.16,24.88,100],"t":53},{"o":{"x":0.167,"y":0.09},"i":{"x":0.833,"y":0.956},"s":[19.9,28.01,100],"t":54},{"o":{"x":0.167,"y":-0.092},"i":{"x":0.833,"y":1.074},"s":[2.93,35.31,100],"t":55},{"o":{"x":0.167,"y":0.039},"i":{"x":0.833,"y":0.951},"s":[10.99,32.97,100],"t":56},{"o":{"x":0.167,"y":-0.12},"i":{"x":0.833,"y":0.823},"s":[-4.23,35.21,100],"t":57},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.833},"s":[2.02,5.62,100],"t":58},{"s":[9.04,32.11,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.551},"s":[129.19,177.77,0],"t":1},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.762},"s":[129.64,176.68,0],"t":2},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[131.34,171.78,0],"t":3},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[133.63,162.29,0],"t":4},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[135.57,151.53,0],"t":5},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[137.23,142.15,0],"t":6},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[138.86,134.41,0],"t":7},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[140.59,128.04,0],"t":8},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[142.45,122.76,0],"t":9},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[144.47,118.38,0],"t":10},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[146.61,114.78,0],"t":11},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[148.84,111.86,0],"t":12},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[151.11,109.52,0],"t":13},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[153.36,107.69,0],"t":14},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[155.54,106.26,0],"t":15},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[157.63,105.16,0],"t":16},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[159.61,104.3,0],"t":17},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[161.46,103.64,0],"t":18},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[163.18,103.12,0],"t":19},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[164.77,102.69,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[166.23,102.35,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[167.58,102.06,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[168.8,101.8,0],"t":23},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[169.91,101.58,0],"t":24},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[170.91,101.39,0],"t":25},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[171.8,101.21,0],"t":26},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[172.58,101.05,0],"t":27},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.839},"s":[173.26,100.92,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[173.84,100.79,0],"t":29},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[174.37,100.63,0],"t":30},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[174.85,100.43,0],"t":31},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[175.3,100.21,0],"t":32},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[175.71,99.96,0],"t":33},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[176.08,99.7,0],"t":34},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[176.41,99.43,0],"t":35},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[176.71,99.16,0],"t":36},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[176.97,98.88,0],"t":37},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[177.21,98.62,0],"t":38},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[177.42,98.36,0],"t":39},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.841},"s":[177.59,98.11,0],"t":40},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.839},"s":[177.74,97.89,0],"t":41},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[177.87,97.68,0],"t":42},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[178.01,97.5,0],"t":43},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[178.15,97.35,0],"t":44},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[178.3,97.24,0],"t":45},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[178.44,97.15,0],"t":46},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[178.59,97.09,0],"t":47},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.835},"s":[178.73,97.07,0],"t":48},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.834},"s":[178.87,97.07,0],"t":49},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.834},"s":[179.01,97.11,0],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[179.13,97.16,0],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[179.25,97.25,0],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[179.35,97.35,0],"t":53},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[179.43,97.47,0],"t":54},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[179.5,97.6,0],"t":55},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[179.56,97.74,0],"t":56},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.836},"s":[179.59,97.88,0],"t":57},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.833},"s":[179.59,98.02,0],"t":58},{"s":[179.58,98.15,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":1},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":28},{"s":[0],"t":44}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":25},{"ty":4,"nm":"Shape Layer 26","sr":1,"st":4,"op":60,"ip":4,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.947},"s":[47.56,38.7,100],"t":4},{"o":{"x":0.167,"y":-0.148},"i":{"x":0.833,"y":0.753},"s":[21.76,44.62,100],"t":5},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":1.004},"s":[31.06,42.81,100],"t":6},{"o":{"x":0.167,"y":0.004},"i":{"x":0.833,"y":0.971},"s":[49.29,57.21,100],"t":7},{"o":{"x":0.167,"y":-0.045},"i":{"x":0.833,"y":0.792},"s":[30.18,41.13,100],"t":8},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":0.951},"s":[42.63,37.86,100],"t":9},{"o":{"x":0.167,"y":-0.12},"i":{"x":0.833,"y":0.68},"s":[61.27,65.4,100],"t":10},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.883},"s":[53.62,60.98,100],"t":11},{"o":{"x":0.167,"y":0.289},"i":{"x":0.833,"y":1.123},"s":[31.9,61.34,100],"t":12},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":0.897},"s":[23.07,78.54,100],"t":13},{"o":{"x":0.167,"y":0.445},"i":{"x":0.833,"y":0.754},"s":[44.88,63.73,100],"t":14},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":0.965},"s":[49.9,82.22,100],"t":15},{"o":{"x":0.167,"y":-0.059},"i":{"x":0.833,"y":0.598},"s":[59.72,64.67,100],"t":16},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.954},"s":[53.98,36.42,100],"t":17},{"o":{"x":0.167,"y":-0.102},"i":{"x":0.833,"y":0.992},"s":[32.06,45.39,100],"t":18},{"o":{"x":0.167,"y":-0.009},"i":{"x":0.833,"y":0.964},"s":[41.93,38.27,100],"t":19},{"o":{"x":0.167,"y":-0.062},"i":{"x":0.833,"y":0.389},"s":[33.06,29.25,100],"t":20},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":0.983},"s":[38.14,57.14,100],"t":21},{"o":{"x":0.167,"y":-0.021},"i":{"x":0.833,"y":0.976},"s":[70.3,66.39,100],"t":22},{"o":{"x":0.167,"y":-0.034},"i":{"x":0.833,"y":1.021},"s":[44.53,47.39,100],"t":23},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":1.004},"s":[62.76,69.12,100],"t":24},{"o":{"x":0.167,"y":0.004},"i":{"x":0.833,"y":0.938},"s":[39.96,43.85,100],"t":25},{"o":{"x":0.167,"y":-0.245},"i":{"x":0.833,"y":0.701},"s":[63.77,60.91,100],"t":26},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.848},"s":[57.73,68.9,100],"t":27},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.924},"s":[42.08,53.64,100],"t":28},{"o":{"x":0.167,"y":-0.857},"i":{"x":0.833,"y":2.239},"s":[29.2,47.68,100],"t":29},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":1.06},"s":[30.34,59.69,100],"t":30},{"o":{"x":0.167,"y":0.035},"i":{"x":0.833,"y":0.904},"s":[12.23,36.3,100],"t":31},{"o":{"x":0.167,"y":0.64},"i":{"x":0.833,"y":1.113},"s":[43.38,37.57,100],"t":32},{"o":{"x":0.167,"y":0.048},"i":{"x":0.833,"y":0.878},"s":[48.04,35.18,100],"t":33},{"o":{"x":0.167,"y":0.265},"i":{"x":0.833,"y":0.973},"s":[37.07,26.53,100],"t":34},{"o":{"x":0.167,"y":-0.04},"i":{"x":0.833,"y":0.487},"s":[32.03,28.34,100],"t":35},{"o":{"x":0.167,"y":0.1},"i":{"x":0.833,"y":1.02},"s":[35.44,18.59,100],"t":36},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.839},"s":[52.97,15.72,100],"t":37},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.939},"s":[31.28,43.91,100],"t":38},{"o":{"x":0.167,"y":-0.226},"i":{"x":0.833,"y":0.807},"s":[11.13,15.05,100],"t":39},{"o":{"x":0.167,"y":0.147},"i":{"x":0.833,"y":1.039},"s":[16.56,3.75,100],"t":40},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.952},"s":[23.7,31.58,100],"t":41},{"o":{"x":0.167,"y":-0.114},"i":{"x":0.833,"y":0.843},"s":[13.19,-5.77,100],"t":42},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":1.415},"s":[17.64,18.38,100],"t":43},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":1.042},"s":[21.57,-6.19,100],"t":44},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":0.979},"s":[-1.97,-2.52,100],"t":45},{"o":{"x":0.167,"y":-0.027},"i":{"x":0.833,"y":0.945},"s":[33.33,15.62,100],"t":46},{"o":{"x":0.167,"y":-0.164},"i":{"x":0.833,"y":0.863},"s":[6.72,24.81,100],"t":47},{"o":{"x":0.167,"y":0.213},"i":{"x":0.833,"y":1.171},"s":[15.68,28.38,100],"t":48},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":0.938},"s":[21.46,26.47,100],"t":49},{"o":{"x":0.167,"y":-0.238},"i":{"x":0.833,"y":0.907},"s":[3.84,-24.49,100],"t":50},{"o":{"x":0.167,"y":0.767},"i":{"x":0.833,"y":-0.765},"s":[8.41,-3.17,100],"t":51},{"o":{"x":0.167,"y":0.087},"i":{"x":0.833,"y":0.963},"s":[8.97,21.63,100],"t":52},{"o":{"x":0.167,"y":-0.066},"i":{"x":0.833,"y":1.047},"s":[20.22,24.34,100],"t":53},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":1.142},"s":[13.93,29.07,100],"t":54},{"o":{"x":0.167,"y":0.053},"i":{"x":0.833,"y":0.933},"s":[23.74,28.53,100],"t":55},{"o":{"x":0.167,"y":-0.344},"i":{"x":0.833,"y":0.831},"s":[-2.8,30.75,100],"t":56},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.959},"s":[2.37,12.7,100],"t":57},{"o":{"x":0.167,"y":-0.082},"i":{"x":0.833,"y":0.833},"s":[7.69,27.62,100],"t":58},{"s":[5.01,10.67,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.589},"s":[131.59,179.3,0],"t":4},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.764},"s":[132.66,180.22,0],"t":5},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[136.75,184.07,0],"t":6},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[144.54,190.63,0],"t":7},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[153.63,197.12,0],"t":8},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[161.85,202.09,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[168.86,205.77,0],"t":10},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[174.85,208.54,0],"t":11},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[180,210.68,0],"t":12},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[184.49,212.38,0],"t":13},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[188.46,213.73,0],"t":14},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[192.01,214.8,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[195.21,215.64,0],"t":16},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[198.12,216.31,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[200.76,216.84,0],"t":18},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[203.18,217.27,0],"t":19},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[205.4,217.61,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[207.44,217.88,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[209.31,218.1,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[211.04,218.28,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[212.62,218.43,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[214.09,218.56,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[215.43,218.68,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[216.66,218.79,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[217.79,218.9,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[218.83,219.01,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[219.77,219.13,0],"t":30},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[220.62,219.25,0],"t":31},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[221.38,219.39,0],"t":32},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[222.07,219.53,0],"t":33},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[222.67,219.67,0],"t":34},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[223.2,219.83,0],"t":35},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[223.66,219.99,0],"t":36},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[224.04,220.15,0],"t":37},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.851},"s":[224.35,220.32,0],"t":38},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.855},"s":[224.59,220.48,0],"t":39},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.857},"s":[224.77,220.63,0],"t":40},{"o":{"x":0.167,"y":0.2},"i":{"x":0.833,"y":0.85},"s":[224.88,220.78,0],"t":41},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.811},"s":[224.92,220.91,0],"t":42},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.813},"s":[224.9,221.01,0],"t":43},{"o":{"x":0.167,"y":0.151},"i":{"x":0.833,"y":0.825},"s":[224.83,221.12,0],"t":44},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.827},"s":[224.74,221.25,0],"t":45},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[224.65,221.41,0],"t":46},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.829},"s":[224.57,221.6,0],"t":47},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[224.51,221.8,0],"t":48},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[224.45,222.02,0],"t":49},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[224.41,222.26,0],"t":50},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[224.38,222.51,0],"t":51},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[224.36,222.77,0],"t":52},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[224.36,223.04,0],"t":53},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[224.38,223.31,0],"t":54},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[224.42,223.59,0],"t":55},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.832},"s":[224.47,223.87,0],"t":56},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[224.53,224.15,0],"t":57},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[224.61,224.42,0],"t":58},{"s":[224.7,224.69,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":4},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":31},{"s":[0],"t":47}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":26},{"ty":4,"nm":"Shape Layer 25","sr":1,"st":10,"op":60,"ip":10,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.872},"s":[54.04,68.18,100],"t":10},{"o":{"x":0.167,"y":0.239},"i":{"x":0.833,"y":1.04},"s":[29.19,57.72,100],"t":11},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.934},"s":[15.9,69.72,100],"t":12},{"o":{"x":0.167,"y":-0.327},"i":{"x":0.833,"y":1.283},"s":[35.64,63.53,100],"t":13},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.904},"s":[31.63,82.18,100],"t":14},{"o":{"x":0.167,"y":0.643},"i":{"x":0.833,"y":1.471},"s":[49.24,67.42,100],"t":15},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.917},"s":[51.87,37.81,100],"t":16},{"o":{"x":0.167,"y":-10.254},"i":{"x":0.833,"y":7.839},"s":[34.4,62.9,100],"t":17},{"o":{"x":0.167,"y":0.082},"i":{"x":0.833,"y":1.07},"s":[34.55,52.57,100],"t":18},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.822},"s":[22.85,20.91,100],"t":19},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":1.002},"s":[44.38,47.61,100],"t":20},{"o":{"x":0.167,"y":0.002},"i":{"x":0.833,"y":0.942},"s":[68.8,61.01,100],"t":21},{"o":{"x":0.167,"y":-0.196},"i":{"x":0.833,"y":1.056},"s":[43.73,56.72,100],"t":22},{"o":{"x":0.167,"y":0.034},"i":{"x":0.833,"y":0.972},"s":[51.22,69.74,100],"t":23},{"o":{"x":0.167,"y":-0.041},"i":{"x":0.833,"y":0.839},"s":[38.66,45.63,100],"t":24},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":1.075},"s":[47.05,32.45,100],"t":25},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.864},"s":[54.9,65.23,100],"t":26},{"o":{"x":0.167,"y":0.216},"i":{"x":0.833,"y":0.964},"s":[39.98,46.64,100],"t":27},{"o":{"x":0.167,"y":-0.063},"i":{"x":0.833,"y":1.136},"s":[30.6,61.65,100],"t":28},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":1.04},"s":[35.94,53.79,100],"t":29},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.897},"s":[21.92,52.82,100],"t":30},{"o":{"x":0.167,"y":0.445},"i":{"x":0.833,"y":0.864},"s":[42.7,45.97,100],"t":31},{"o":{"x":0.167,"y":0.216},"i":{"x":0.833,"y":0.687},"s":[47.49,52.12,100],"t":32},{"o":{"x":0.167,"y":0.114},"i":{"x":0.833,"y":1.172},"s":[50.49,45.44,100],"t":33},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":1.025},"s":[58.77,37.41,100],"t":34},{"o":{"x":0.167,"y":0.019},"i":{"x":0.833,"y":0.939},"s":[33.44,24.21,100],"t":35},{"o":{"x":0.167,"y":-0.226},"i":{"x":0.833,"y":0.781},"s":[66.33,36.61,100],"t":36},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.836},"s":[57.48,57.49,100],"t":37},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.955},"s":[43.1,36.18,100],"t":38},{"o":{"x":0.167,"y":-0.097},"i":{"x":0.833,"y":1.161},"s":[29.19,31.34,100],"t":39},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.92},"s":[35.6,20.62,100],"t":40},{"o":{"x":0.167,"y":-1.932},"i":{"x":0.833,"y":0.014},"s":[16.77,15.79,100],"t":41},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":1.166},"s":[17.55,21.22,100],"t":42},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":1.01},"s":[25.99,15.08,100],"t":43},{"o":{"x":0.167,"y":0.009},"i":{"x":0.833,"y":0.967},"s":[0.79,6.4,100],"t":44},{"o":{"x":0.167,"y":-0.054},"i":{"x":0.833,"y":0.916},"s":[28.9,15.89,100],"t":45},{"o":{"x":0.167,"y":28.082},"i":{"x":0.833,"y":32.334},"s":[11.9,28.77,100],"t":46},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":0.963},"s":[11.85,28.38,100],"t":47},{"o":{"x":0.167,"y":-0.066},"i":{"x":0.833,"y":0.911},"s":[30.93,33.27,100],"t":48},{"o":{"x":0.167,"y":1.325},"i":{"x":0.833,"y":-0.402},"s":[20.29,-7.17,100],"t":49},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.891},"s":[19.58,-8.42,100],"t":50},{"o":{"x":0.167,"y":0.357},"i":{"x":0.833,"y":1.348},"s":[8.29,6.59,100],"t":51},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.893},"s":[4.85,15.51,100],"t":52},{"o":{"x":0.167,"y":0.372},"i":{"x":0.833,"y":1.223},"s":[22.63,9.13,100],"t":53},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":0.949},"s":[27.75,20,100],"t":54},{"o":{"x":0.167,"y":-0.133},"i":{"x":0.833,"y":0.872},"s":[8.89,3.76,100],"t":55},{"o":{"x":0.167,"y":0.239},"i":{"x":0.833,"y":1.098},"s":[16.17,15.47,100],"t":56},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.855},"s":[20.06,30.86,100],"t":57},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.833},"s":[11.59,30.84,100],"t":58},{"s":[5.28,-10.95,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.59},"s":[131.72,174.91,0],"t":10},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.764},"s":[132.8,174.36,0],"t":11},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[136.97,171.96,0],"t":12},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[144.26,166.77,0],"t":13},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[152.05,160.43,0],"t":14},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[158.83,154.9,0],"t":15},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[164.61,150.59,0],"t":16},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[169.63,147.33,0],"t":17},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[174.05,144.88,0],"t":18},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[177.98,143.06,0],"t":19},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[181.49,141.73,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[184.65,140.76,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[187.49,140.06,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[190.05,139.57,0],"t":23},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[192.37,139.24,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[194.46,139.01,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[196.35,138.86,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[198.06,138.75,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[199.61,138.68,0],"t":28},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[201.02,138.68,0],"t":29},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[202.32,138.75,0],"t":30},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[203.52,138.89,0],"t":31},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[204.63,139.07,0],"t":32},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[205.66,139.3,0],"t":33},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[206.61,139.56,0],"t":34},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[207.51,139.85,0],"t":35},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[208.34,140.16,0],"t":36},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[209.12,140.48,0],"t":37},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[209.86,140.81,0],"t":38},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[210.55,141.15,0],"t":39},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[211.21,141.49,0],"t":40},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[211.82,141.82,0],"t":41},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[212.4,142.15,0],"t":42},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[212.95,142.47,0],"t":43},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[213.46,142.77,0],"t":44},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[213.93,143.06,0],"t":45},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[214.38,143.33,0],"t":46},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[214.78,143.58,0],"t":47},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[215.15,143.81,0],"t":48},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.842},"s":[215.48,144.01,0],"t":49},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.839},"s":[215.77,144.18,0],"t":50},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[216.03,144.33,0],"t":51},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.843},"s":[216.29,144.45,0],"t":52},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.845},"s":[216.52,144.54,0],"t":53},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.849},"s":[216.74,144.61,0],"t":54},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.853},"s":[216.92,144.64,0],"t":55},{"o":{"x":0.167,"y":0.192},"i":{"x":0.833,"y":0.85},"s":[217.08,144.65,0],"t":56},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.809},"s":[217.19,144.62,0],"t":57},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.833},"s":[217.27,144.55,0],"t":58},{"s":[217.35,144.44,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":37},{"s":[0],"t":53}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":27},{"ty":4,"nm":"Shape Layer 24","sr":1,"st":7,"op":60,"ip":7,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.856},"s":[32.99,59.33,100],"t":7},{"o":{"x":0.167,"y":0.076},"i":{"x":0.833,"y":0.965},"s":[30.31,35.49,100],"t":8},{"o":{"x":0.167,"y":-0.062},"i":{"x":0.833,"y":0.899},"s":[60.45,52.5,100],"t":9},{"o":{"x":0.167,"y":0.485},"i":{"x":0.833,"y":0.652},"s":[43.14,64.93,100],"t":10},{"o":{"x":0.167,"y":0.11},"i":{"x":0.833,"y":0.902},"s":[39.54,52.54,100],"t":11},{"o":{"x":0.167,"y":0.569},"i":{"x":0.833,"y":1.494},"s":[28.11,51.6,100],"t":12},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.815},"s":[26.15,59.25,100],"t":13},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":1.035},"s":[39.73,67.14,100],"t":14},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.939},"s":[56.22,48.16,100],"t":15},{"o":{"x":0.167,"y":-0.235},"i":{"x":0.833,"y":1.154},"s":[32.76,64.9,100],"t":16},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":1.037},"s":[38.9,68.33,100],"t":17},{"o":{"x":0.167,"y":0.026},"i":{"x":0.833,"y":0.885},"s":[21.43,46.61,100],"t":18},{"o":{"x":0.167,"y":0.301},"i":{"x":0.833,"y":0.972},"s":[46.73,29.13,100],"t":19},{"o":{"x":0.167,"y":-0.043},"i":{"x":0.833,"y":0.783},"s":[56.44,59.55,100],"t":20},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.957},"s":[50.02,62.51,100],"t":21},{"o":{"x":0.167,"y":-0.087},"i":{"x":0.833,"y":0.875},"s":[39.75,80.53,100],"t":22},{"o":{"x":0.167,"y":0.25},"i":{"x":0.833,"y":0.844},"s":[44.77,63.62,100],"t":23},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":1.4},"s":[47.27,38.61,100],"t":24},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.924},"s":[49.46,57.95,100],"t":25},{"o":{"x":0.167,"y":-0.902},"i":{"x":0.833,"y":1.186},"s":[36.75,36.4,100],"t":26},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.894},"s":[37.83,61.76,100],"t":27},{"o":{"x":0.167,"y":0.393},"i":{"x":0.833,"y":1.167},"s":[34.35,65.06,100],"t":28},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":0.394},"s":[33.41,66.25,100],"t":29},{"o":{"x":0.167,"y":0.097},"i":{"x":0.833,"y":0.999},"s":[36.23,46.61,100],"t":30},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.979},"s":[53.89,44.99,100],"t":31},{"o":{"x":0.167,"y":-0.029},"i":{"x":0.833,"y":1.071},"s":[36.42,57.83,100],"t":32},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":1.005},"s":[49.43,48.31,100],"t":33},{"o":{"x":0.167,"y":0.004},"i":{"x":0.833,"y":0.897},"s":[25.29,29.04,100],"t":34},{"o":{"x":0.167,"y":0.43},"i":{"x":0.833,"y":0.916},"s":[50.77,23.98,100],"t":35},{"o":{"x":0.167,"y":6.077},"i":{"x":0.833,"y":22.316},"s":[56.89,34.88,100],"t":36},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":0.868},"s":[56.98,26.36,100],"t":37},{"o":{"x":0.167,"y":0.226},"i":{"x":0.833,"y":0.915},"s":[35.13,49.46,100],"t":38},{"o":{"x":0.167,"y":4.525},"i":{"x":0.833,"y":-0.19},"s":[22.33,12.33,100],"t":39},{"o":{"x":0.167,"y":0.09},"i":{"x":0.833,"y":0.945},"s":[22.09,18.94,100],"t":40},{"o":{"x":0.167,"y":-0.16},"i":{"x":0.833,"y":2.147},"s":[18.9,8.74,100],"t":41},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":1.02},"s":[19.99,5.87,100],"t":42},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.96},"s":[3.91,2.66,100],"t":43},{"o":{"x":0.167,"y":-0.078},"i":{"x":0.833,"y":0.811},"s":[23.9,-0.53,100],"t":44},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.977},"s":[13.56,13.91,100],"t":45},{"o":{"x":0.167,"y":-0.033},"i":{"x":0.833,"y":0.789},"s":[0.46,12.49,100],"t":46},{"o":{"x":0.167,"y":0.138},"i":{"x":0.833,"y":0.934},"s":[9.89,32.46,100],"t":47},{"o":{"x":0.167,"y":-0.317},"i":{"x":0.833,"y":0.839},"s":[24.36,3.88,100],"t":48},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.533},"s":[21.35,-1.04,100],"t":49},{"o":{"x":0.167,"y":0.101},"i":{"x":0.833,"y":0.939},"s":[18.54,8.08,100],"t":50},{"o":{"x":0.167,"y":-0.234},"i":{"x":0.833,"y":0.517},"s":[5.61,9.61,100],"t":51},{"o":{"x":0.167,"y":0.101},"i":{"x":0.833,"y":0.963},"s":[9.01,-5.24,100],"t":52},{"o":{"x":0.167,"y":-0.068},"i":{"x":0.833,"y":1.022},"s":[25.3,17.2,100],"t":53},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":0.996},"s":[16.3,0.8,100],"t":54},{"o":{"x":0.167,"y":-0.004},"i":{"x":0.833,"y":0.888},"s":[27.66,-1.77,100],"t":55},{"o":{"x":0.167,"y":0.324},"i":{"x":0.833,"y":0.486},"s":[16.83,22.26,100],"t":56},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":1.009},"s":[13.07,37.05,100],"t":57},{"o":{"x":0.167,"y":0.008},"i":{"x":0.833,"y":0.833},"s":[-6.35,24.9,100],"t":58},{"s":[15.21,18.72,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.604},"s":[129.41,176.62,0],"t":7},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.765},"s":[128.41,176.12,0],"t":8},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[124.94,173.54,0],"t":9},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[119.35,167.67,0],"t":10},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[114.29,159.82,0],"t":11},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[110.62,152.31,0],"t":12},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[107.8,145.84,0],"t":13},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[105.44,140.42,0],"t":14},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[103.35,135.86,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[101.45,132,0],"t":16},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[99.7,128.69,0],"t":17},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[98.09,125.85,0],"t":18},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[96.61,123.39,0],"t":19},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[95.26,121.25,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[94.03,119.38,0],"t":21},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[92.92,117.75,0],"t":22},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[91.92,116.31,0],"t":23},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[91.04,115.04,0],"t":24},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[90.27,113.91,0],"t":25},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[89.6,112.92,0],"t":26},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[89.02,112.03,0],"t":27},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[88.54,111.23,0],"t":28},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[88.14,110.52,0],"t":29},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[87.82,109.88,0],"t":30},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[87.58,109.31,0],"t":31},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[87.4,108.79,0],"t":32},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.841},"s":[87.28,108.31,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[87.21,107.88,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[87.18,107.48,0],"t":35},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[87.18,107.1,0],"t":36},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[87.21,106.76,0],"t":37},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[87.25,106.43,0],"t":38},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[87.3,106.13,0],"t":39},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.837},"s":[87.35,105.83,0],"t":40},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.833},"s":[87.38,105.55,0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.829},"s":[87.39,105.28,0],"t":42},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[87.39,105.01,0],"t":43},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[87.43,104.73,0],"t":44},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.835},"s":[87.49,104.44,0],"t":45},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[87.58,104.16,0],"t":46},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[87.68,103.89,0],"t":47},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[87.78,103.64,0],"t":48},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.843},"s":[87.86,103.39,0],"t":49},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.845},"s":[87.91,103.16,0],"t":50},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[87.94,102.95,0],"t":51},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.842},"s":[87.94,102.76,0],"t":52},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.833},"s":[87.9,102.61,0],"t":53},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.821},"s":[87.84,102.49,0],"t":54},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.815},"s":[87.74,102.42,0],"t":55},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.815},"s":[87.6,102.38,0],"t":56},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.817},"s":[87.44,102.39,0],"t":57},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.833},"s":[87.24,102.44,0],"t":58},{"s":[87.01,102.54,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":34},{"s":[0],"t":50}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":28},{"ty":4,"nm":"Shape Layer 23","sr":1,"st":5,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.657},"s":[59.66,55.34,100],"t":5},{"o":{"x":0.167,"y":0.11},"i":{"x":0.833,"y":0.995},"s":[49.89,66.7,100],"t":6},{"o":{"x":0.167,"y":-0.005},"i":{"x":0.833,"y":0.918},"s":[19.43,58.47,100],"t":7},{"o":{"x":0.167,"y":-5.85},"i":{"x":0.833,"y":3.373},"s":[48.08,34.4,100],"t":8},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":1.007},"s":[47.67,57.55,100],"t":9},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.861},"s":[59.53,50.29,100],"t":10},{"o":{"x":0.167,"y":0.208},"i":{"x":0.833,"y":0.953},"s":[46.7,49.99,100],"t":11},{"o":{"x":0.167,"y":-0.109},"i":{"x":0.833,"y":0.37},"s":[38.11,45,100],"t":12},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":1.019},"s":[41.84,60.14,100],"t":13},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.951},"s":[66.31,60.81,100],"t":14},{"o":{"x":0.167,"y":-0.12},"i":{"x":0.833,"y":0.984},"s":[36.22,57.51,100],"t":15},{"o":{"x":0.167,"y":-0.019},"i":{"x":0.833,"y":1.067},"s":[48.58,67.79,100],"t":16},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":0.975},"s":[38.55,70.36,100],"t":17},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.978},"s":[56.61,27.91,100],"t":18},{"o":{"x":0.167,"y":-0.029},"i":{"x":0.833,"y":1.04},"s":[44,40.53,100],"t":19},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":1.011},"s":[53.32,76.38,100],"t":20},{"o":{"x":0.167,"y":0.01},"i":{"x":0.833,"y":0.972},"s":[39.52,86.22,100],"t":21},{"o":{"x":0.167,"y":-0.043},"i":{"x":0.833,"y":1.048},"s":[55.11,68.6,100],"t":22},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":1.002},"s":[44.8,66.34,100],"t":23},{"o":{"x":0.167,"y":0.002},"i":{"x":0.833,"y":0.913},"s":[61.01,62.93,100],"t":24},{"o":{"x":0.167,"y":1.871},"i":{"x":0.833,"y":-0.03},"s":[44.38,50.72,100],"t":25},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":1.06},"s":[43.61,56.73,100],"t":26},{"o":{"x":0.167,"y":0.035},"i":{"x":0.833,"y":0.994},"s":[34.8,74.54,100],"t":27},{"o":{"x":0.167,"y":-0.007},"i":{"x":0.833,"y":1.064},"s":[49.93,86.57,100],"t":28},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":1.023},"s":[35.91,46.14,100],"t":29},{"o":{"x":0.167,"y":0.018},"i":{"x":0.833,"y":0.89},"s":[60.77,42.51,100],"t":30},{"o":{"x":0.167,"y":0.347},"i":{"x":0.833,"y":0.937},"s":[29.06,52.79,100],"t":31},{"o":{"x":0.167,"y":-0.254},"i":{"x":0.833,"y":0.122},"s":[19.04,52.78,100],"t":32},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.937},"s":[21.51,42.32,100],"t":33},{"o":{"x":0.167,"y":-0.262},"i":{"x":0.833,"y":1.05},"s":[45.09,22.5,100],"t":34},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":1.058},"s":[39.41,23.85,100],"t":35},{"o":{"x":0.167,"y":0.034},"i":{"x":0.833,"y":0.872},"s":[48.5,25.33,100],"t":36},{"o":{"x":0.167,"y":0.238},"i":{"x":0.833,"y":0.945},"s":[33.08,56.35,100],"t":37},{"o":{"x":0.167,"y":-0.16},"i":{"x":0.833,"y":0.837},"s":[24.77,40.49,100],"t":38},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.787},"s":[27.61,42.06,100],"t":39},{"o":{"x":0.167,"y":0.137},"i":{"x":0.833,"y":1.453},"s":[30.34,29.68,100],"t":40},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.984},"s":[34.56,11.18,100],"t":41},{"o":{"x":0.167,"y":-0.02},"i":{"x":0.833,"y":0.921},"s":[7.35,-6.83,100],"t":42},{"o":{"x":0.167,"y":-1.554},"i":{"x":0.833,"y":-0.296},"s":[29.23,-12.83,100],"t":43},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.84},"s":[28.12,-5.24,100],"t":44},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":1.049},"s":[11.92,-11.91,100],"t":45},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.912},"s":[-2.99,14.66,100],"t":46},{"o":{"x":0.167,"y":1.626},"i":{"x":0.833,"y":0.989},"s":[20.7,6.48,100],"t":47},{"o":{"x":0.167,"y":-0.013},"i":{"x":0.833,"y":1.274},"s":[21.98,-0.98,100],"t":48},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":1.577},"s":[20.87,14.42,100],"t":49},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.975},"s":[25.63,23.52,100],"t":50},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.91},"s":[-12.12,10.67,100],"t":51},{"o":{"x":0.167,"y":1.154},"i":{"x":0.833,"y":0.149},"s":[14.29,13.28,100],"t":52},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":1.047},"s":[16.34,14.88,100],"t":53},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":0.891},"s":[35.28,-0.79,100],"t":54},{"o":{"x":0.167,"y":0.355},"i":{"x":0.833,"y":0.937},"s":[5.62,7.71,100],"t":55},{"o":{"x":0.167,"y":-0.26},"i":{"x":0.833,"y":0.127},"s":[-3.49,21.03,100],"t":56},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.908},"s":[-1.28,37.29,100],"t":57},{"o":{"x":0.167,"y":0.867},"i":{"x":0.833,"y":0.833},"s":[19.69,37,100],"t":58},{"s":[21.92,27.45,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.598},"s":[127.83,176.96,0],"t":5},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.765},"s":[127.3,175.33,0],"t":6},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[125.75,168.9,0],"t":7},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[124.36,156.81,0],"t":8},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[125.44,143.33,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[128.79,132.19,0],"t":10},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[133,123.65,0],"t":11},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[137.26,116.99,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[141.25,111.58,0],"t":13},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[144.89,107,0],"t":14},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[148.15,102.99,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[151.03,99.36,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[153.56,96.02,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[155.72,92.87,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[157.51,89.87,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[158.94,87,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.99,84.26,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[160.69,81.67,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[161.07,79.28,0],"t":23},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[161.19,77.1,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[161.11,75.14,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[160.88,73.39,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[160.53,71.83,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[160.16,70.43,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[159.79,69.17,0],"t":29},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.45,68.04,0],"t":30},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[159.13,67.02,0],"t":31},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[158.83,66.12,0],"t":32},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[158.55,65.32,0],"t":33},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[158.29,64.62,0],"t":34},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[158.05,64.02,0],"t":35},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[157.81,63.5,0],"t":36},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[157.58,63.08,0],"t":37},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[157.36,62.74,0],"t":38},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.841},"s":[157.13,62.49,0],"t":39},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.835},"s":[156.9,62.32,0],"t":40},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.83},"s":[156.67,62.22,0],"t":41},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.826},"s":[156.43,62.21,0],"t":42},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.824},"s":[156.19,62.26,0],"t":43},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.823},"s":[155.94,62.39,0],"t":44},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.824},"s":[155.68,62.59,0],"t":45},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.826},"s":[155.41,62.83,0],"t":46},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[155.11,63.09,0],"t":47},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[154.78,63.38,0],"t":48},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.831},"s":[154.42,63.68,0],"t":49},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[154.06,64,0],"t":50},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[153.68,64.33,0],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.836},"s":[153.3,64.66,0],"t":52},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.838},"s":[152.92,64.99,0],"t":53},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[152.56,65.32,0],"t":54},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.844},"s":[152.23,65.63,0],"t":55},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[151.92,65.93,0],"t":56},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[151.66,66.19,0],"t":57},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.833},"s":[151.44,66.43,0],"t":58},{"s":[151.25,66.63,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":32},{"s":[0],"t":48}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":29},{"ty":4,"nm":"Shape Layer 22","sr":1,"st":2,"op":60,"ip":2,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.986},"s":[38.09,58.16,100],"t":2},{"o":{"x":0.167,"y":-0.017},"i":{"x":0.833,"y":0.926},"s":[62.61,42.75,100],"t":3},{"o":{"x":0.167,"y":-0.687},"i":{"x":0.833,"y":1.337},"s":[42.33,46.32,100],"t":4},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.838},"s":[44.53,62.85,100],"t":5},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":1.041},"s":[33.47,71.37,100],"t":6},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.872},"s":[23.04,50.35,100],"t":7},{"o":{"x":0.167,"y":0.24},"i":{"x":0.833,"y":0.787},"s":[38.6,31.64,100],"t":8},{"o":{"x":0.167,"y":0.137},"i":{"x":0.833,"y":1.016},"s":[46.86,40.43,100],"t":9},{"o":{"x":0.167,"y":0.013},"i":{"x":0.833,"y":0.952},"s":[59.69,46.55,100],"t":10},{"o":{"x":0.167,"y":-0.111},"i":{"x":0.833,"y":0.768},"s":[44.45,56.24,100],"t":11},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":1.026},"s":[51,67.17,100],"t":12},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.962},"s":[62.69,59.25,100],"t":13},{"o":{"x":0.167,"y":-0.071},"i":{"x":0.833,"y":0.99},"s":[47.32,48.76,100],"t":14},{"o":{"x":0.167,"y":-0.011},"i":{"x":0.833,"y":1.026},"s":[55.6,66.47,100],"t":15},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.96},"s":[48.3,68.52,100],"t":16},{"o":{"x":0.167,"y":-0.077},"i":{"x":0.833,"y":0.845},"s":[57.88,49.13,100],"t":17},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.612},"s":[52.9,30.25,100],"t":18},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":1.07},"s":[48.6,70.36,100],"t":19},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.987},"s":[32.9,84.68,100],"t":20},{"o":{"x":0.167,"y":-0.016},"i":{"x":0.833,"y":0.993},"s":[61.71,50.33,100],"t":21},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":0.911},"s":[37.42,60.81,100],"t":22},{"o":{"x":0.167,"y":1.349},"i":{"x":0.833,"y":1.779},"s":[59.59,69.03,100],"t":23},{"o":{"x":0.167,"y":0.075},"i":{"x":0.833,"y":0.843},"s":[61.05,59.81,100],"t":24},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":1.135},"s":[45.94,65.73,100],"t":25},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":0.981},"s":[32.56,53.73,100],"t":26},{"o":{"x":0.167,"y":-0.024},"i":{"x":0.833,"y":0.946},"s":[67.69,88.97,100],"t":27},{"o":{"x":0.167,"y":-0.153},"i":{"x":0.833,"y":1.1},"s":[40.43,60.71,100],"t":28},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.825},"s":[50.06,50.05,100],"t":29},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.959},"s":[28.89,50.11,100],"t":30},{"o":{"x":0.167,"y":-0.081},"i":{"x":0.833,"y":0.781},"s":[5.5,33.46,100],"t":31},{"o":{"x":0.167,"y":0.134},"i":{"x":0.833,"y":0.97},"s":[17.37,44.16,100],"t":32},{"o":{"x":0.167,"y":-0.047},"i":{"x":0.833,"y":0.91},"s":[36.75,25.79,100],"t":33},{"o":{"x":0.167,"y":1.081},"i":{"x":0.833,"y":-0.16},"s":[24.34,31.24,100],"t":34},{"o":{"x":0.167,"y":0.09},"i":{"x":0.833,"y":1.019},"s":[23.3,27.49,100],"t":35},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.937},"s":[9.91,51.07,100],"t":36},{"o":{"x":0.167,"y":-0.252},"i":{"x":0.833,"y":0.992},"s":[26.41,42.35,100],"t":37},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":0.683},"s":[22.32,45.74,100],"t":38},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":1.156},"s":[26.04,41.94,100],"t":39},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.955},"s":[36.49,30.73,100],"t":40},{"o":{"x":0.167,"y":-0.096},"i":{"x":0.833,"y":0.831},"s":[6.45,-3.25,100],"t":41},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.979},"s":[20.44,-10.39,100],"t":42},{"o":{"x":0.167,"y":-0.027},"i":{"x":0.833,"y":0.774},"s":[34.83,-4.36,100],"t":43},{"o":{"x":0.167,"y":0.132},"i":{"x":0.833,"y":0.967},"s":[23.99,-14.11,100],"t":44},{"o":{"x":0.167,"y":-0.056},"i":{"x":0.833,"y":0.882},"s":[5.48,-2.49,100],"t":45},{"o":{"x":0.167,"y":0.282},"i":{"x":0.833,"y":0.917},"s":[16.56,9.38,100],"t":46},{"o":{"x":0.167,"y":-41.355},"i":{"x":0.833,"y":26.628},"s":[21.21,6.31,100],"t":47},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":2.023},"s":[21.2,1.89,100],"t":48},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.937},"s":[24.08,33.57,100],"t":49},{"o":{"x":0.167,"y":-0.255},"i":{"x":0.833,"y":0.757},"s":[-14.17,26.4,100],"t":50},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":0.807},"s":[-4.73,12.89,100],"t":51},{"o":{"x":0.167,"y":0.147},"i":{"x":0.833,"y":1.012},"s":[13.31,8.3,100],"t":52},{"o":{"x":0.167,"y":0.01},"i":{"x":0.833,"y":0.85},"s":[37.08,19.27,100],"t":53},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.972},"s":[9.94,17.95,100],"t":54},{"o":{"x":0.167,"y":-0.041},"i":{"x":0.833,"y":0.765},"s":[-11.8,16.07,100],"t":55},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.956},"s":[2.75,13.33,100],"t":56},{"o":{"x":0.167,"y":-0.092},"i":{"x":0.833,"y":0.972},"s":[29.19,42.48,100],"t":57},{"o":{"x":0.167,"y":-0.043},"i":{"x":0.833,"y":0.833},"s":[16.64,37.39,100],"t":58},{"s":[24.91,22.58,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.555},"s":[128.51,175.47,0],"t":2},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":0.762},"s":[127.44,175.56,0],"t":3},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[122.8,176.1,0],"t":4},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[114.26,177.85,0],"t":5},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[105,181.11,0],"t":6},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[97.33,185.26,0],"t":7},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[91.41,189.76,0],"t":8},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[86.89,194.34,0],"t":9},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[83.45,198.84,0],"t":10},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[80.84,203.19,0],"t":11},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[78.87,207.32,0],"t":12},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[77.43,211.2,0],"t":13},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[76.4,214.81,0],"t":14},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[75.69,218.16,0],"t":15},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[75.22,221.27,0],"t":16},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.93,224.13,0],"t":17},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.77,226.77,0],"t":18},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.7,229.2,0],"t":19},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.7,231.43,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.74,233.49,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.8,235.38,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.86,237.12,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.93,238.72,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[74.98,240.18,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[75.01,241.52,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[75.02,242.74,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[74.99,243.86,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[74.94,244.88,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[74.86,245.8,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[74.75,246.64,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[74.61,247.39,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.44,248.07,0],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.25,248.67,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.04,249.21,0],"t":35},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[73.81,249.68,0],"t":36},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[73.58,250.09,0],"t":37},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[73.34,250.44,0],"t":38},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[73.11,250.74,0],"t":39},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.848},"s":[72.88,250.99,0],"t":40},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.85},"s":[72.68,251.2,0],"t":41},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.85},"s":[72.5,251.36,0],"t":42},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.853},"s":[72.35,251.46,0],"t":43},{"o":{"x":0.167,"y":0.193},"i":{"x":0.833,"y":0.858},"s":[72.23,251.54,0],"t":44},{"o":{"x":0.167,"y":0.202},"i":{"x":0.833,"y":0.864},"s":[72.13,251.59,0],"t":45},{"o":{"x":0.167,"y":0.214},"i":{"x":0.833,"y":0.858},"s":[72.06,251.61,0],"t":46},{"o":{"x":0.167,"y":0.201},"i":{"x":0.833,"y":0.811},"s":[72.01,251.6,0],"t":47},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.791},"s":[71.99,251.58,0],"t":48},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":0.803},"s":[71.99,251.53,0],"t":49},{"o":{"x":0.167,"y":0.144},"i":{"x":0.833,"y":0.812},"s":[72.01,251.45,0],"t":50},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.817},"s":[72.05,251.36,0],"t":51},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.821},"s":[72.12,251.26,0],"t":52},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.824},"s":[72.2,251.13,0],"t":53},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.826},"s":[72.3,251,0],"t":54},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[72.41,250.85,0],"t":55},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[72.54,250.7,0],"t":56},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.831},"s":[72.67,250.54,0],"t":57},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[72.81,250.37,0],"t":58},{"s":[72.96,250.2,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":2},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":29},{"s":[0],"t":45}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":30},{"ty":4,"nm":"Shape Layer 21","sr":1,"st":8,"op":60,"ip":8,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":-5.266},"s":[49.43,28.25,100],"t":8},{"o":{"x":0.167,"y":0.084},"i":{"x":0.833,"y":0.994},"s":[49.25,33.1,100],"t":9},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.87},"s":[35.65,58.73,100],"t":10},{"o":{"x":0.167,"y":0.233},"i":{"x":0.833,"y":0.943},"s":[48.32,69.64,100],"t":11},{"o":{"x":0.167,"y":-0.185},"i":{"x":0.833,"y":0.692},"s":[55.38,58.22,100],"t":12},{"o":{"x":0.167,"y":0.114},"i":{"x":0.833,"y":0.962},"s":[53.18,30.67,100],"t":13},{"o":{"x":0.167,"y":-0.07},"i":{"x":0.833,"y":1.185},"s":[47.25,55.82,100],"t":14},{"o":{"x":0.167,"y":0.057},"i":{"x":0.833,"y":1.076},"s":[50.47,45.9,100],"t":15},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.937},"s":[40.07,45.68,100],"t":16},{"o":{"x":0.167,"y":-0.254},"i":{"x":0.833,"y":0.435},"s":[60.01,47.35,100],"t":17},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":0.986},"s":[55.09,52.32,100],"t":18},{"o":{"x":0.167,"y":-0.016},"i":{"x":0.833,"y":0.908},"s":[26.67,78.49,100],"t":19},{"o":{"x":0.167,"y":0.871},"i":{"x":0.833,"y":0.977},"s":[50.4,49.07,100],"t":20},{"o":{"x":0.167,"y":-0.032},"i":{"x":0.833,"y":1.079},"s":[52.91,39.92,100],"t":21},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.812},"s":[51.1,62.55,100],"t":22},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":1.481},"s":[54.62,63.45,100],"t":23},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":1.008},"s":[59.04,77.64,100],"t":24},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":0.948},"s":[29.11,35.84,100],"t":25},{"o":{"x":0.167,"y":-0.141},"i":{"x":0.833,"y":0.83},"s":[61.91,61.65,100],"t":26},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.965},"s":[49.75,69.29,100],"t":27},{"o":{"x":0.167,"y":-0.059},"i":{"x":0.833,"y":1.119},"s":[37.1,53.03,100],"t":28},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":0.983},"s":[44.48,75.77,100],"t":29},{"o":{"x":0.167,"y":-0.022},"i":{"x":0.833,"y":0.873},"s":[26.57,28.21,100],"t":30},{"o":{"x":0.167,"y":0.244},"i":{"x":0.833,"y":1.036},"s":[40.72,47.93,100],"t":31},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.914},"s":[48.08,57.09,100],"t":32},{"o":{"x":0.167,"y":3.172},"i":{"x":0.833,"y":-4.522},"s":[37.59,57.69,100],"t":33},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":0.977},"s":[37.3,44.13,100],"t":34},{"o":{"x":0.167,"y":-0.032},"i":{"x":0.833,"y":0.837},"s":[18.82,58.39,100],"t":35},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.978},"s":[32.17,43.2,100],"t":36},{"o":{"x":0.167,"y":-0.03},"i":{"x":0.833,"y":1.051},"s":[44.91,43.46,100],"t":37},{"o":{"x":0.167,"y":0.032},"i":{"x":0.833,"y":1.063},"s":[35.51,39.77,100],"t":38},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.933},"s":[50.68,50.18,100],"t":39},{"o":{"x":0.167,"y":-0.353},"i":{"x":0.833,"y":0.65},"s":[24.01,22.8,100],"t":40},{"o":{"x":0.167,"y":0.109},"i":{"x":0.833,"y":0.946},"s":[29.1,20.84,100],"t":41},{"o":{"x":0.167,"y":-0.154},"i":{"x":0.833,"y":0.678},"s":[45.4,32.6,100],"t":42},{"o":{"x":0.167,"y":0.112},"i":{"x":0.833,"y":0.84},"s":[39.67,28.51,100],"t":43},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.985},"s":[23.25,14.33,100],"t":44},{"o":{"x":0.167,"y":-0.018},"i":{"x":0.833,"y":0.939},"s":[8.13,25.6,100],"t":45},{"o":{"x":0.167,"y":-0.225},"i":{"x":0.833,"y":0.962},"s":[20.6,28.01,100],"t":46},{"o":{"x":0.167,"y":-0.07},"i":{"x":0.833,"y":1.962},"s":[17.23,7.5,100],"t":47},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.877},"s":[19.06,23.51,100],"t":48},{"o":{"x":0.167,"y":0.257},"i":{"x":0.833,"y":1.027},"s":[-3.88,14.6,100],"t":49},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.741},"s":[-14.87,3.68,100],"t":50},{"o":{"x":0.167,"y":0.123},"i":{"x":0.833,"y":0.947},"s":[-0.38,-2.84,100],"t":51},{"o":{"x":0.167,"y":-0.147},"i":{"x":0.833,"y":0.692},"s":[30.23,30.35,100],"t":52},{"o":{"x":0.167,"y":0.114},"i":{"x":0.833,"y":0.975},"s":[19.16,39.26,100],"t":53},{"o":{"x":0.167,"y":-0.035},"i":{"x":0.833,"y":0.829},"s":[-10.69,32.32,100],"t":54},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.981},"s":[10.35,-5.06,100],"t":55},{"o":{"x":0.167,"y":-0.025},"i":{"x":0.833,"y":0.959},"s":[32.4,17.82,100],"t":56},{"o":{"x":0.167,"y":-0.08},"i":{"x":0.833,"y":0.943},"s":[15.5,27.7,100],"t":57},{"o":{"x":0.167,"y":-0.182},"i":{"x":0.833,"y":0.833},"s":[24.14,15.19,100],"t":58},{"s":[21.42,9.98,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.611},"s":[130.99,179.4,0],"t":8},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.766},"s":[131,181.13,0],"t":9},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.825},"s":[131.35,187.5,0],"t":10},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[133,198.88,0],"t":11},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.848},"s":[136.89,210.72,0],"t":12},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[142.64,219.35,0],"t":13},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[148.94,224.51,0],"t":14},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[154.85,227.43,0],"t":15},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[160.09,229.17,0],"t":16},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[164.69,230.35,0],"t":17},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[168.74,231.28,0],"t":18},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[172.31,232.14,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[175.46,233.02,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[178.26,233.98,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[180.74,235.05,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[182.92,236.24,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[184.81,237.55,0],"t":24},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[186.46,238.96,0],"t":25},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.841},"s":[187.88,240.44,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[189.09,241.95,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[190.1,243.42,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[190.95,244.83,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[191.65,246.15,0],"t":30},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[192.24,247.39,0],"t":31},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[192.74,248.53,0],"t":32},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[193.16,249.58,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[193.51,250.53,0],"t":34},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[193.81,251.39,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[194.07,252.17,0],"t":36},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[194.3,252.87,0],"t":37},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[194.49,253.48,0],"t":38},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[194.66,254.03,0],"t":39},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[194.81,254.5,0],"t":40},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[194.95,254.92,0],"t":41},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[195.06,255.27,0],"t":42},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.848},"s":[195.17,255.57,0],"t":43},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.851},"s":[195.26,255.82,0],"t":44},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.854},"s":[195.34,256.03,0],"t":45},{"o":{"x":0.167,"y":0.194},"i":{"x":0.833,"y":0.858},"s":[195.4,256.19,0],"t":46},{"o":{"x":0.167,"y":0.203},"i":{"x":0.833,"y":0.847},"s":[195.46,256.3,0],"t":47},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.824},"s":[195.5,256.38,0],"t":48},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.824},"s":[195.54,256.44,0],"t":49},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.824},"s":[195.58,256.52,0],"t":50},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.825},"s":[195.61,256.61,0],"t":51},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.826},"s":[195.63,256.71,0],"t":52},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[195.65,256.83,0],"t":53},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[195.67,256.96,0],"t":54},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.823},"s":[195.68,257.09,0],"t":55},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.821},"s":[195.68,257.24,0],"t":56},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.826},"s":[195.67,257.41,0],"t":57},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.833},"s":[195.65,257.6,0],"t":58},{"s":[195.62,257.81,0],"t":59}],"ix":2},"r":{"a":0,"k":92,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":35},{"s":[0],"t":51}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":31},{"ty":4,"nm":"Shape Layer 20","sr":1,"st":6,"op":60,"ip":6,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.05},"s":[55.54,55.25,100],"t":6},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.873},"s":[69.49,24.9,100],"t":7},{"o":{"x":0.167,"y":0.241},"i":{"x":0.833,"y":0.888},"s":[47.11,28.13,100],"t":8},{"o":{"x":0.167,"y":0.325},"i":{"x":0.833,"y":1.204},"s":[35.3,54.84,100],"t":9},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":0.921},"s":[31.23,49.89,100],"t":10},{"o":{"x":0.167,"y":-1.529},"i":{"x":0.833,"y":-0.459},"s":[45.3,43.32,100],"t":11},{"o":{"x":0.167,"y":0.088},"i":{"x":0.833,"y":0.995},"s":[44.57,16.76,100],"t":12},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.992},"s":[32.56,33.63,100],"t":13},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":0.995},"s":[43.79,41.87,100],"t":14},{"o":{"x":0.167,"y":-0.005},"i":{"x":0.833,"y":0.731},"s":[33.58,30.43,100],"t":15},{"o":{"x":0.167,"y":0.121},"i":{"x":0.833,"y":1.035},"s":[43.17,43.71,100],"t":16},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.935},"s":[64.57,52.18,100],"t":17},{"o":{"x":0.167,"y":-0.305},"i":{"x":0.833,"y":0.575},"s":[34.17,74.01,100],"t":18},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.931},"s":[40.69,57.5,100],"t":19},{"o":{"x":0.167,"y":-0.391},"i":{"x":0.833,"y":0.313},"s":[67.44,43.23,100],"t":20},{"o":{"x":0.167,"y":0.095},"i":{"x":0.833,"y":0.993},"s":[62.74,54.06,100],"t":21},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":0.953},"s":[28.65,71.46,100],"t":22},{"o":{"x":0.167,"y":-0.109},"i":{"x":0.833,"y":0.815},"s":[59.82,85.99,100],"t":23},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.991},"s":[46.32,46.1,100],"t":24},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":1.02},"s":[29.82,45.91,100],"t":25},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.963},"s":[44.47,55.65,100],"t":26},{"o":{"x":0.167,"y":-0.068},"i":{"x":0.833,"y":0.849},"s":[26.28,25.25,100],"t":27},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.888},"s":[36.31,61.89,100],"t":28},{"o":{"x":0.167,"y":0.324},"i":{"x":0.833,"y":0.814},"s":[44.48,39.09,100],"t":29},{"o":{"x":0.167,"y":0.151},"i":{"x":0.833,"y":1.498},"s":[47.3,32.49,100],"t":30},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.992},"s":[50.79,50.67,100],"t":31},{"o":{"x":0.167,"y":-0.009},"i":{"x":0.833,"y":0.986},"s":[26.43,53.37,100],"t":32},{"o":{"x":0.167,"y":-0.017},"i":{"x":0.833,"y":0.906},"s":[48.51,24.01,100],"t":33},{"o":{"x":0.167,"y":0.764},"i":{"x":0.833,"y":1.666},"s":[30.17,29.15,100],"t":34},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.993},"s":[27.93,27.44,100],"t":35},{"o":{"x":0.167,"y":-0.008},"i":{"x":0.833,"y":1.011},"s":[48.12,22.05,100],"t":36},{"o":{"x":0.167,"y":0.009},"i":{"x":0.833,"y":1.007},"s":[29.63,18.04,100],"t":37},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":0.882},"s":[50.46,30.99,100],"t":38},{"o":{"x":0.167,"y":0.282},"i":{"x":0.833,"y":1.098},"s":[27.81,13.16,100],"t":39},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":0.953},"s":[18.3,17.16,100],"t":40},{"o":{"x":0.167,"y":-0.106},"i":{"x":0.833,"y":0.913},"s":[39.03,29.63,100],"t":41},{"o":{"x":0.167,"y":1.804},"i":{"x":0.833,"y":-5.816},"s":[29.93,42.54,100],"t":42},{"o":{"x":0.167,"y":0.084},"i":{"x":0.833,"y":0.946},"s":[29.48,31.81,100],"t":43},{"o":{"x":0.167,"y":-0.155},"i":{"x":0.833,"y":0.87},"s":[-6.16,43.62,100],"t":44},{"o":{"x":0.167,"y":0.231},"i":{"x":0.833,"y":0.795},"s":[6.31,25.84,100],"t":45},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":1.094},"s":[13.36,22.52,100],"t":46},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.924},"s":[23.63,24.82,100],"t":47},{"o":{"x":0.167,"y":-0.898},"i":{"x":0.833,"y":1.231},"s":[1.81,1.91,100],"t":48},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":1.188},"s":[3.66,-7.85,100],"t":49},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.899},"s":[-3.33,-6.63,100],"t":50},{"o":{"x":0.167,"y":0.485},"i":{"x":0.833,"y":1.382},"s":[19.4,18.17,100],"t":51},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":0.967},"s":[24.11,33.99,100],"t":52},{"o":{"x":0.167,"y":-0.055},"i":{"x":0.833,"y":0.795},"s":[-2.21,38.34,100],"t":53},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":0.999},"s":[13.6,4.09,100],"t":54},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.947},"s":[36.63,3.17,100],"t":55},{"o":{"x":0.167,"y":-0.146},"i":{"x":0.833,"y":0.867},"s":[13.9,11.75,100],"t":56},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":1.164},"s":[22.17,12.79,100],"t":57},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.833},"s":[27.07,18.42,100],"t":58},{"s":[12.53,-13.57,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.574},"s":[133.78,151.3,0],"t":6},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.763},"s":[133.12,152.22,0],"t":7},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[130.17,155.73,0],"t":8},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[123.83,160.91,0],"t":9},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[115.73,163.95,0],"t":10},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[108.36,163.68,0],"t":11},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[102.56,161.24,0],"t":12},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[98.23,157.8,0],"t":13},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[95.02,154.04,0],"t":14},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[92.63,150.3,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[90.83,146.73,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[89.45,143.38,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[88.36,140.28,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[87.5,137.41,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[86.81,134.77,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[86.23,132.34,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[85.75,130.1,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[85.34,128.06,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[84.98,126.18,0],"t":24},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[84.66,124.46,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[84.38,122.9,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[84.12,121.47,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[83.88,120.18,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[83.66,119.01,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[83.46,117.96,0],"t":30},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[83.28,117.03,0],"t":31},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[83.11,116.19,0],"t":32},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[82.96,115.46,0],"t":33},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[82.83,114.83,0],"t":34},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.848},"s":[82.71,114.28,0],"t":35},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.851},"s":[82.62,113.82,0],"t":36},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.854},"s":[82.55,113.44,0],"t":37},{"o":{"x":0.167,"y":0.193},"i":{"x":0.833,"y":0.856},"s":[82.51,113.13,0],"t":38},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":0.855},"s":[82.5,112.9,0],"t":39},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.852},"s":[82.52,112.74,0],"t":40},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.821},"s":[82.58,112.63,0],"t":41},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.805},"s":[82.66,112.61,0],"t":42},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.812},"s":[82.74,112.65,0],"t":43},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.819},"s":[82.83,112.76,0],"t":44},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.831},"s":[82.93,112.91,0],"t":45},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.84},"s":[83.02,113.1,0],"t":46},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.842},"s":[83.12,113.3,0],"t":47},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.845},"s":[83.22,113.47,0],"t":48},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[83.31,113.62,0],"t":49},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[83.41,113.75,0],"t":50},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.845},"s":[83.5,113.83,0],"t":51},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.832},"s":[83.58,113.88,0],"t":52},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.816},"s":[83.66,113.88,0],"t":53},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.811},"s":[83.73,113.84,0],"t":54},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.812},"s":[83.8,113.75,0],"t":55},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.816},"s":[83.86,113.62,0],"t":56},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.819},"s":[83.91,113.45,0],"t":57},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.833},"s":[83.96,113.23,0],"t":58},{"s":[83.99,112.97,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":33},{"s":[0],"t":49}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":32},{"ty":4,"nm":"Shape Layer 19","sr":1,"st":11,"op":60,"ip":11,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":2.45},"s":[31.58,17.33,100],"t":11},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.851},"s":[31.06,18.55,100],"t":12},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":1.096},"s":[40.57,55.65,100],"t":13},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":1.044},"s":[48.06,40.05,100],"t":14},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":0.951},"s":[31.9,27.36,100],"t":15},{"o":{"x":0.167,"y":-0.117},"i":{"x":0.833,"y":0.846},"s":[56.63,47.92,100],"t":16},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":1.191},"s":[46.32,78.83,100],"t":17},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.903},"s":[37.55,48.32,100],"t":18},{"o":{"x":0.167,"y":0.576},"i":{"x":0.833,"y":1.592},"s":[66.45,42.28,100],"t":19},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.95},"s":[71.33,55.3,100],"t":20},{"o":{"x":0.167,"y":-0.126},"i":{"x":0.833,"y":0.84},"s":[31.74,77.61,100],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":1.163},"s":[47.48,89.12,100],"t":22},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.936},"s":[61.92,69.29,100],"t":23},{"o":{"x":0.167,"y":-0.273},"i":{"x":0.833,"y":0.87},"s":[19.25,59.86,100],"t":24},{"o":{"x":0.167,"y":0.231},"i":{"x":0.833,"y":1.013},"s":[29.22,55.01,100],"t":25},{"o":{"x":0.167,"y":0.011},"i":{"x":0.833,"y":1.068},"s":[34.83,27.85,100],"t":26},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":0.87},"s":[28.37,26.26,100],"t":27},{"o":{"x":0.167,"y":0.234},"i":{"x":0.833,"y":0.848},"s":[40.1,52,100],"t":28},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":1.37},"s":[46.61,41.42,100],"t":29},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":0.991},"s":[51.95,24.22,100],"t":30},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.931},"s":[22.87,55.7,100],"t":31},{"o":{"x":0.167,"y":-0.417},"i":{"x":0.833,"y":0.867},"s":[48.95,44.75,100],"t":32},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":1.202},"s":[44.6,27.32,100],"t":33},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":0.962},"s":[42.03,42.35,100],"t":34},{"o":{"x":0.167,"y":-0.069},"i":{"x":0.833,"y":1.193},"s":[50.84,29.9,100],"t":35},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.964},"s":[46.04,36.4,100],"t":36},{"o":{"x":0.167,"y":-0.063},"i":{"x":0.833,"y":0.717},"s":[61.98,54.54,100],"t":37},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":0.99},"s":[52.9,38.64,100],"t":38},{"o":{"x":0.167,"y":-0.012},"i":{"x":0.833,"y":0.969},"s":[31.11,25.86,100],"t":39},{"o":{"x":0.167,"y":-0.049},"i":{"x":0.833,"y":0.947},"s":[50.25,28.52,100],"t":40},{"o":{"x":0.167,"y":-0.147},"i":{"x":0.833,"y":1.464},"s":[38.22,41.99,100],"t":41},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.902},"s":[42.57,44.15,100],"t":42},{"o":{"x":0.167,"y":0.554},"i":{"x":0.833,"y":1.234},"s":[14.02,64.95,100],"t":43},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":0.845},"s":[8.96,27.23,100],"t":44},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":1.091},"s":[28.2,23.39,100],"t":45},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.948},"s":[44.67,47.59,100],"t":46},{"o":{"x":0.167,"y":-0.137},"i":{"x":0.833,"y":0.953},"s":[10.19,28.62,100],"t":47},{"o":{"x":0.167,"y":-0.108},"i":{"x":0.833,"y":0.976},"s":[23.23,2.24,100],"t":48},{"o":{"x":0.167,"y":-0.035},"i":{"x":0.833,"y":0.831},"s":[17.56,7,100],"t":49},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":1.412},"s":[21.57,2.58,100],"t":50},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.937},"s":[25.67,9.24,100],"t":51},{"o":{"x":0.167,"y":-0.254},"i":{"x":0.833,"y":0.454},"s":[1.25,35.24,100],"t":52},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":0.959},"s":[7.27,16.17,100],"t":53},{"o":{"x":0.167,"y":-0.082},"i":{"x":0.833,"y":0.849},"s":[40.74,18.42,100],"t":54},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":1.046},"s":[23.83,5.22,100],"t":55},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":0.963},"s":[10.16,28.82,100],"t":56},{"o":{"x":0.167,"y":-0.065},"i":{"x":0.833,"y":0.959},"s":[31.4,23.98,100],"t":57},{"o":{"x":0.167,"y":-0.079},"i":{"x":0.833,"y":0.833},"s":[19.49,11.05,100],"t":58},{"s":[25.59,-2.08,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.51},"s":[133.65,148.59,0],"t":11},{"o":{"x":0.167,"y":0.1},"i":{"x":0.833,"y":0.759},"s":[134.47,148.49,0],"t":12},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":0.823},"s":[138.53,148.88,0],"t":13},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[145.96,151.19,0],"t":14},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[153.64,155.82,0],"t":15},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[159.44,161.55,0],"t":16},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[163.39,167.41,0],"t":17},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.843},"s":[165.98,172.98,0],"t":18},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[167.65,178.12,0],"t":19},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[168.71,182.79,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[169.36,187.02,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[169.74,190.85,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[169.96,194.33,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[170.08,197.49,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[170.15,200.37,0],"t":25},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[170.2,203.02,0],"t":26},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[170.23,205.48,0],"t":27},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[170.25,207.77,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[170.28,209.89,0],"t":29},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[170.3,211.87,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[170.34,213.7,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[170.39,215.38,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[170.45,216.94,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[170.51,218.35,0],"t":34},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[170.59,219.64,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[170.68,220.79,0],"t":36},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[170.77,221.82,0],"t":37},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[170.87,222.73,0],"t":38},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[170.98,223.51,0],"t":39},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[171.09,224.18,0],"t":40},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.852},"s":[171.2,224.74,0],"t":41},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.855},"s":[171.31,225.18,0],"t":42},{"o":{"x":0.167,"y":0.196},"i":{"x":0.833,"y":0.859},"s":[171.42,225.52,0],"t":43},{"o":{"x":0.167,"y":0.204},"i":{"x":0.833,"y":0.86},"s":[171.52,225.75,0],"t":44},{"o":{"x":0.167,"y":0.205},"i":{"x":0.833,"y":0.84},"s":[171.62,225.89,0],"t":45},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.806},"s":[171.72,225.94,0],"t":46},{"o":{"x":0.167,"y":0.146},"i":{"x":0.833,"y":0.804},"s":[171.81,225.9,0],"t":47},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.811},"s":[171.89,225.78,0],"t":48},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.817},"s":[171.97,225.59,0],"t":49},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.827},"s":[172.04,225.33,0],"t":50},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.835},"s":[172.09,225.02,0],"t":51},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[172.14,224.68,0],"t":52},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.839},"s":[172.17,224.35,0],"t":53},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.841},"s":[172.18,224.02,0],"t":54},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[172.17,223.72,0],"t":55},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[172.16,223.44,0],"t":56},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[172.16,223.2,0],"t":57},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.833},"s":[172.19,222.98,0],"t":58},{"s":[172.23,222.78,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":16},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":38},{"s":[0],"t":54}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":33},{"ty":4,"nm":"Shape Layer 18","sr":1,"st":12,"op":60,"ip":12,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.085},"s":[46.84,57.24,100],"t":12},{"o":{"x":0.167,"y":0.042},"i":{"x":0.833,"y":0.959},"s":[58.52,59.07,100],"t":13},{"o":{"x":0.167,"y":-0.082},"i":{"x":0.833,"y":0.846},"s":[34.97,27.86,100],"t":14},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":1.108},"s":[46.83,43.47,100],"t":15},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":0.971},"s":[56.9,73.95,100],"t":16},{"o":{"x":0.167,"y":-0.046},"i":{"x":0.833,"y":0.765},"s":[33.83,48.22,100],"t":17},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":1.014},"s":[48.73,36.88,100],"t":18},{"o":{"x":0.167,"y":0.012},"i":{"x":0.833,"y":0.925},"s":[75.91,59.3,100],"t":19},{"o":{"x":0.167,"y":-0.787},"i":{"x":0.833,"y":0.797},"s":[44.11,83.73,100],"t":20},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":1.16},"s":[47.15,83.73,100],"t":21},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.834},"s":[51.52,84.93,100],"t":22},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.994},"s":[38.76,73.04,100],"t":23},{"o":{"x":0.167,"y":-0.007},"i":{"x":0.833,"y":0.849},"s":[26.17,70.9,100],"t":24},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":1.006},"s":[37.81,55.32,100],"t":25},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.991},"s":[47.2,27.88,100],"t":26},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.869},"s":[37.09,45.84,100],"t":27},{"o":{"x":0.167,"y":0.23},"i":{"x":0.833,"y":1.159},"s":[46.11,68.32,100],"t":28},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.918},"s":[51.22,24.1,100],"t":29},{"o":{"x":0.167,"y":-4.52},"i":{"x":0.833,"y":-2.162},"s":[36.38,50.19,100],"t":30},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.955},"s":[36.64,80.48,100],"t":31},{"o":{"x":0.167,"y":-0.097},"i":{"x":0.833,"y":0.922},"s":[46.58,45.77,100],"t":32},{"o":{"x":0.167,"y":-1.248},"i":{"x":0.833,"y":3.564},"s":[41.99,62.31,100],"t":33},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":1.138},"s":[42.27,34.61,100],"t":34},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":0.92},"s":[33.15,45.28,100],"t":35},{"o":{"x":0.167,"y":-1.951},"i":{"x":0.833,"y":0.048},"s":[57.4,66.01,100],"t":36},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":0.968},"s":[56.41,68.85,100],"t":37},{"o":{"x":0.167,"y":-0.052},"i":{"x":0.833,"y":1.028},"s":[46.06,42.14,100],"t":38},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":0.911},"s":[52.45,34.14,100],"t":39},{"o":{"x":0.167,"y":1.225},"i":{"x":0.833,"y":-1.313},"s":[43.91,29.45,100],"t":40},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.885},"s":[43.28,33.15,100],"t":41},{"o":{"x":0.167,"y":0.303},"i":{"x":0.833,"y":1.028},"s":[26.6,43.27,100],"t":42},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":0.806},"s":[20.28,37.42,100],"t":43},{"o":{"x":0.167,"y":0.146},"i":{"x":0.833,"y":1.052},"s":[28.75,7.22,100],"t":44},{"o":{"x":0.167,"y":0.032},"i":{"x":0.833,"y":0.928},"s":[39.97,47.89,100],"t":45},{"o":{"x":0.167,"y":-0.543},"i":{"x":0.833,"y":0.858},"s":[21.73,57.01,100],"t":46},{"o":{"x":0.167,"y":0.202},"i":{"x":0.833,"y":1.018},"s":[24.16,17.37,100],"t":47},{"o":{"x":0.167,"y":0.015},"i":{"x":0.833,"y":1.415},"s":[25.87,11.61,100],"t":48},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":1.126},"s":[23.8,11.6,100],"t":49},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":0.939},"s":[36.18,0.47,100],"t":50},{"o":{"x":0.167,"y":-0.229},"i":{"x":0.833,"y":0.788},"s":[5.01,36.82,100],"t":51},{"o":{"x":0.167,"y":0.137},"i":{"x":0.833,"y":0.913},"s":[13.34,27.23,100],"t":52},{"o":{"x":0.167,"y":2.212},"i":{"x":0.833,"y":3.588},"s":[26.18,40.42,100],"t":53},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.93},"s":[26.68,4.95,100],"t":54},{"o":{"x":0.167,"y":-0.428},"i":{"x":0.833,"y":0.974},"s":[10.57,24.39,100],"t":55},{"o":{"x":0.167,"y":-0.037},"i":{"x":0.833,"y":1.031},"s":[13.2,12.23,100],"t":56},{"o":{"x":0.167,"y":0.023},"i":{"x":0.833,"y":1.011},"s":[11.38,15.26,100],"t":57},{"o":{"x":0.167,"y":0.01},"i":{"x":0.833,"y":0.833},"s":[13.87,15.66,100],"t":58},{"s":[11.04,18.88,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.544},"s":[130.79,149.57,0],"t":12},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.761},"s":[130.32,148.16,0],"t":13},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[127.79,142.06,0],"t":14},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[121.83,131.5,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[113.31,121.67,0],"t":16},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[104.36,115.68,0],"t":17},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[96.07,113.32,0],"t":18},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[88.9,113.7,0],"t":19},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[83.02,115.92,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[78.39,119.24,0],"t":21},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[74.84,123.09,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[72.16,127.08,0],"t":23},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[70.16,131.01,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[68.68,134.74,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[67.58,138.24,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[66.78,141.47,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[66.19,144.42,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[65.76,147.11,0],"t":29},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[65.46,149.55,0],"t":30},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[65.24,151.74,0],"t":31},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[65.09,153.7,0],"t":32},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[64.98,155.46,0],"t":33},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[64.91,157.01,0],"t":34},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[64.85,158.39,0],"t":35},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[64.8,159.6,0],"t":36},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[64.76,160.67,0],"t":37},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[64.71,161.6,0],"t":38},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[64.66,162.41,0],"t":39},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[64.6,163.12,0],"t":40},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[64.53,163.74,0],"t":41},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.846},"s":[64.49,164.27,0],"t":42},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.847},"s":[64.46,164.73,0],"t":43},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.849},"s":[64.44,165.12,0],"t":44},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.851},"s":[64.43,165.44,0],"t":45},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.854},"s":[64.43,165.7,0],"t":46},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.859},"s":[64.44,165.9,0],"t":47},{"o":{"x":0.167,"y":0.204},"i":{"x":0.833,"y":0.866},"s":[64.45,166.06,0],"t":48},{"o":{"x":0.167,"y":0.222},"i":{"x":0.833,"y":0.869},"s":[64.47,166.16,0],"t":49},{"o":{"x":0.167,"y":0.23},"i":{"x":0.833,"y":0.811},"s":[64.49,166.22,0],"t":50},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.815},"s":[64.52,166.23,0],"t":51},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.845},"s":[64.55,166.2,0],"t":52},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.838},"s":[64.58,166.16,0],"t":53},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.83},"s":[64.61,166.14,0],"t":54},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.826},"s":[64.65,166.13,0],"t":55},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.826},"s":[64.69,166.14,0],"t":56},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[64.73,166.16,0],"t":57},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.833},"s":[64.77,166.19,0],"t":58},{"s":[64.81,166.23,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":17},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":39},{"s":[0],"t":55}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":34},{"ty":4,"nm":"Shape Layer 17","sr":1,"st":8,"op":60,"ip":8,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.944},"s":[24.03,60.83,100],"t":8},{"o":{"x":0.167,"y":-0.166},"i":{"x":0.833,"y":1.111},"s":[47.32,54.38,100],"t":9},{"o":{"x":0.167,"y":0.048},"i":{"x":0.833,"y":0.903},"s":[39.55,36,100],"t":10},{"o":{"x":0.167,"y":0.607},"i":{"x":0.833,"y":1.606},"s":[57.71,35.93,100],"t":11},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.989},"s":[60.6,63.08,100],"t":12},{"o":{"x":0.167,"y":-0.013},"i":{"x":0.833,"y":0.917},"s":[36.71,34.68,100],"t":13},{"o":{"x":0.167,"y":-62.917},"i":{"x":0.833,"y":-66.49},"s":[57.46,50.97,100],"t":14},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":0.946},"s":[57.43,55.09,100],"t":15},{"o":{"x":0.167,"y":-0.154},"i":{"x":0.833,"y":0.649},"s":[35.23,52.58,100],"t":16},{"o":{"x":0.167,"y":0.109},"i":{"x":0.833,"y":0.994},"s":[43.02,39.99,100],"t":17},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.926},"s":[68.09,46.81,100],"t":18},{"o":{"x":0.167,"y":-0.681},"i":{"x":0.833,"y":1.246},"s":[44.72,71.44,100],"t":19},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":1.031},"s":[47.27,63.9,100],"t":20},{"o":{"x":0.167,"y":0.023},"i":{"x":0.833,"y":0.909},"s":[37.19,71.31,100],"t":21},{"o":{"x":0.167,"y":1.035},"i":{"x":0.833,"y":2.265},"s":[51.03,55.46,100],"t":22},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":1.009},"s":[52.24,67.2,100],"t":23},{"o":{"x":0.167,"y":0.008},"i":{"x":0.833,"y":0.918},"s":[32.64,62.35,100],"t":24},{"o":{"x":0.167,"y":-4.987},"i":{"x":0.833,"y":-2.408},"s":[54.43,62.57,100],"t":25},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":0.975},"s":[54.07,46.25,100],"t":26},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.884},"s":[39.78,69.48,100],"t":27},{"o":{"x":0.167,"y":0.293},"i":{"x":0.833,"y":1.215},"s":[49.72,33.37,100],"t":28},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.963},"s":[53.66,45.85,100],"t":29},{"o":{"x":0.167,"y":-0.066},"i":{"x":0.833,"y":0.916},"s":[39.52,80.42,100],"t":30},{"o":{"x":0.167,"y":12.816},"i":{"x":0.833,"y":-6.827},"s":[47.42,59.73,100],"t":31},{"o":{"x":0.167,"y":0.084},"i":{"x":0.833,"y":1.453},"s":[47.47,75.23,100],"t":32},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.989},"s":[52.28,45.52,100],"t":33},{"o":{"x":0.167,"y":-0.013},"i":{"x":0.833,"y":0.947},"s":[21.37,47.95,100],"t":34},{"o":{"x":0.167,"y":-0.143},"i":{"x":0.833,"y":0.92},"s":[48.13,56.64,100],"t":35},{"o":{"x":0.167,"y":-2.31},"i":{"x":0.833,"y":2.435},"s":[38.26,55.86,100],"t":36},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.931},"s":[38.61,36.24,100],"t":37},{"o":{"x":0.167,"y":-0.407},"i":{"x":0.833,"y":0.227},"s":[32.35,36.7,100],"t":38},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":1.092},"s":[33.41,25.99,100],"t":39},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.901},"s":[42.23,25.45,100],"t":40},{"o":{"x":0.167,"y":0.541},"i":{"x":0.833,"y":0.779},"s":[23.72,5.62,100],"t":41},{"o":{"x":0.167,"y":0.134},"i":{"x":0.833,"y":0.776},"s":[20.34,29.97,100],"t":42},{"o":{"x":0.167,"y":0.133},"i":{"x":0.833,"y":1.092},"s":[14.77,-4.8,100],"t":43},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.935},"s":[5.36,33.65,100],"t":44},{"o":{"x":0.167,"y":-0.287},"i":{"x":0.833,"y":0.606},"s":[25.16,33.81,100],"t":45},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.918},"s":[20.71,17.29,100],"t":46},{"o":{"x":0.167,"y":-5.253},"i":{"x":0.833,"y":-8.496},"s":[4.1,-14.2,100],"t":47},{"o":{"x":0.167,"y":0.084},"i":{"x":0.833,"y":0.961},"s":[4.36,12.75,100],"t":48},{"o":{"x":0.167,"y":-0.072},"i":{"x":0.833,"y":0.956},"s":[33.65,17.25,100],"t":49},{"o":{"x":0.167,"y":-0.094},"i":{"x":0.833,"y":1.049},"s":[17.93,30.63,100],"t":50},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.899},"s":[25.32,31.23,100],"t":51},{"o":{"x":0.167,"y":0.481},"i":{"x":0.833,"y":1.136},"s":[13.54,34.66,100],"t":52},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":1.062},"s":[11.08,5.31,100],"t":53},{"o":{"x":0.167,"y":0.035},"i":{"x":0.833,"y":0.882},"s":[17.56,2.41,100],"t":54},{"o":{"x":0.167,"y":0.285},"i":{"x":0.833,"y":1.028},"s":[6.27,-18.23,100],"t":55},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":0.846},"s":[1.6,-2.9,100],"t":56},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.815},"s":[7.84,16.27,100],"t":57},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.833},"s":[13.1,26.39,100],"t":58},{"s":[19.5,20.64,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.628},"s":[134.5,152.08,0],"t":8},{"o":{"x":0.167,"y":0.107},"i":{"x":0.833,"y":0.767},"s":[136.1,152.64,0],"t":9},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.825},"s":[141.8,153.78,0],"t":10},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[152.18,154.65,0],"t":11},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[163.64,153.56,0],"t":12},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[173.19,150.14,0],"t":13},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[180.29,145.02,0],"t":14},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[185.16,139.08,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[188.3,133.05,0],"t":16},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[190.24,127.32,0],"t":17},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[191.39,122.04,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[192.01,117.24,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[192.28,112.88,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[192.32,108.91,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[192.19,105.29,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[191.96,101.99,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[191.65,98.97,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[191.29,96.21,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[190.91,93.68,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[190.53,91.37,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[190.15,89.25,0],"t":28},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[189.78,87.3,0],"t":29},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[189.42,85.53,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[189.09,83.91,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[188.79,82.43,0],"t":32},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[188.51,81.08,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[188.26,79.87,0],"t":34},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[188.04,78.77,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[187.86,77.78,0],"t":36},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[187.7,76.9,0],"t":37},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[187.57,76.12,0],"t":38},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[187.48,75.43,0],"t":39},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[187.41,74.84,0],"t":40},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.848},"s":[187.37,74.33,0],"t":41},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.85},"s":[187.36,73.9,0],"t":42},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.851},"s":[187.38,73.55,0],"t":43},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.852},"s":[187.41,73.27,0],"t":44},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.849},"s":[187.47,73.06,0],"t":45},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.839},"s":[187.55,72.92,0],"t":46},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.833},"s":[187.64,72.83,0],"t":47},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.838},"s":[187.74,72.8,0],"t":48},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[187.85,72.8,0],"t":49},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.843},"s":[187.96,72.8,0],"t":50},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.846},"s":[188.05,72.79,0],"t":51},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.848},"s":[188.14,72.77,0],"t":52},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.844},"s":[188.2,72.75,0],"t":53},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.838},"s":[188.25,72.71,0],"t":54},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.817},"s":[188.29,72.67,0],"t":55},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.813},"s":[188.33,72.64,0],"t":56},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.817},"s":[188.39,72.65,0],"t":57},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.833},"s":[188.46,72.68,0],"t":58},{"s":[188.53,72.73,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":35},{"s":[0],"t":51}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":35},{"ty":4,"nm":"Shape Layer 16","sr":1,"st":9,"op":60,"ip":9,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.563},"s":[45.08,55.03,100],"t":9},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":1.109},"s":[46.51,24.66,100],"t":10},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":1.054},"s":[52.58,62.36,100],"t":11},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.929},"s":[38.59,48.31,100],"t":12},{"o":{"x":0.167,"y":-0.475},"i":{"x":0.833,"y":0.393},"s":[61.72,43.79,100],"t":13},{"o":{"x":0.167,"y":0.097},"i":{"x":0.833,"y":0.968},"s":[58.27,33.4,100],"t":14},{"o":{"x":0.167,"y":-0.053},"i":{"x":0.833,"y":0.834},"s":[36.56,47.96,100],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.042},"s":[49.83,54.82,100],"t":16},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":0.894},"s":[63.05,30.4,100],"t":17},{"o":{"x":0.167,"y":0.389},"i":{"x":0.833,"y":0.863},"s":[43.15,47.6,100],"t":18},{"o":{"x":0.167,"y":0.212},"i":{"x":0.833,"y":1.102},"s":[37.72,35.13,100],"t":19},{"o":{"x":0.167,"y":0.046},"i":{"x":0.833,"y":0.698},"s":[34.2,51.54,100],"t":20},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.995},"s":[42.04,41.33,100],"t":21},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.904},"s":[62.6,55.18,100],"t":22},{"o":{"x":0.167,"y":0.627},"i":{"x":0.833,"y":1.376},"s":[43.38,33.2,100],"t":23},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":0.999},"s":[40.43,73.76,100],"t":24},{"o":{"x":0.167,"y":-0.002},"i":{"x":0.833,"y":0.976},"s":[56.66,49.08,100],"t":25},{"o":{"x":0.167,"y":-0.033},"i":{"x":0.833,"y":0.9},"s":[40.72,67.08,100],"t":26},{"o":{"x":0.167,"y":0.508},"i":{"x":0.833,"y":1.069},"s":[52.13,28.07,100],"t":27},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.758},"s":[54.37,45.88,100],"t":28},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":1.163},"s":[50.27,49.47,100],"t":29},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.9},"s":[42.46,47.9,100],"t":30},{"o":{"x":0.167,"y":0.493},"i":{"x":0.833,"y":1.429},"s":[65.56,60.25,100],"t":31},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.944},"s":[70.26,60.83,100],"t":32},{"o":{"x":0.167,"y":-0.171},"i":{"x":0.833,"y":0.922},"s":[41.34,56.55,100],"t":33},{"o":{"x":0.167,"y":-1.171},"i":{"x":0.833,"y":-0.547},"s":[50.82,68.82,100],"t":34},{"o":{"x":0.167,"y":0.088},"i":{"x":0.833,"y":0.772},"s":[50.19,39.54,100],"t":35},{"o":{"x":0.167,"y":0.131},"i":{"x":0.833,"y":0.975},"s":[39.13,32.68,100],"t":36},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.822},"s":[19.92,32.38,100],"t":37},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.966},"s":[33.37,34.33,100],"t":38},{"o":{"x":0.167,"y":-0.058},"i":{"x":0.833,"y":0.795},"s":[48.61,30.46,100],"t":39},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":0.792},"s":[39.64,13.71,100],"t":40},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":0.896},"s":[26.6,39.24,100],"t":41},{"o":{"x":0.167,"y":0.427},"i":{"x":0.833,"y":1.334},"s":[7.11,2.07,100],"t":42},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.853},"s":[2.39,36.6,100],"t":43},{"o":{"x":0.167,"y":0.192},"i":{"x":0.833,"y":1.066},"s":[26.02,6.02,100],"t":44},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":0.882},"s":[44.19,27.24,100],"t":45},{"o":{"x":0.167,"y":0.284},"i":{"x":0.833,"y":1.078},"s":[11.64,-3.39,100],"t":46},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.862},"s":[-1.84,5.53,100],"t":47},{"o":{"x":0.167,"y":0.211},"i":{"x":0.833,"y":0.96},"s":[24.34,24.66,100],"t":48},{"o":{"x":0.167,"y":-0.077},"i":{"x":0.833,"y":0.76},"s":[41.44,28.97,100],"t":49},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.867},"s":[32.53,17.64,100],"t":50},{"o":{"x":0.167,"y":0.222},"i":{"x":0.833,"y":0.951},"s":[15.77,15.74,100],"t":51},{"o":{"x":0.167,"y":-0.117},"i":{"x":0.833,"y":0.916},"s":[5.7,-0.32,100],"t":52},{"o":{"x":0.167,"y":10.387},"i":{"x":0.833,"y":2.198},"s":[9.89,10.27,100],"t":53},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":0.475},"s":[9.92,-26.76,100],"t":54},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":1.442},"s":[9.4,-5.24,100],"t":55},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.962},"s":[6.64,19.02,100],"t":56},{"o":{"x":0.167,"y":-0.071},"i":{"x":0.833,"y":1.007},"s":[24.01,8.08,100],"t":57},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.833},"s":[14.61,20.58,100],"t":58},{"s":[24.78,43.2,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.587},"s":[134.53,152.99,0],"t":9},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.774},"s":[133.63,151.89,0],"t":10},{"o":{"x":0.167,"y":0.132},"i":{"x":0.833,"y":0.821},"s":[129.56,148.82,0],"t":11},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.844},"s":[128.52,159.21,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[129.6,171.2,0],"t":13},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[130.54,181.63,0],"t":14},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[131.16,190.31,0],"t":15},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[131.48,197.6,0],"t":16},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[131.58,203.81,0],"t":17},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[131.5,209.17,0],"t":18},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[131.28,213.85,0],"t":19},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[130.96,217.96,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[130.54,221.58,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[130.06,224.8,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[129.52,227.66,0],"t":23},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[128.95,230.2,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[128.36,232.46,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[127.74,234.47,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[127.12,236.26,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[126.51,237.85,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[125.91,239.27,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[125.32,240.52,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[124.75,241.64,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[124.21,242.63,0],"t":32},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[123.69,243.52,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[123.2,244.31,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[122.74,245.02,0],"t":35},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[122.31,245.66,0],"t":36},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[121.91,246.24,0],"t":37},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[121.53,246.77,0],"t":38},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.844},"s":[121.17,247.26,0],"t":39},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[120.84,247.7,0],"t":40},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[120.56,248.1,0],"t":41},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.846},"s":[120.33,248.46,0],"t":42},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.848},"s":[120.14,248.77,0],"t":43},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.849},"s":[119.98,249.04,0],"t":44},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.852},"s":[119.86,249.26,0],"t":45},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.856},"s":[119.77,249.45,0],"t":46},{"o":{"x":0.167,"y":0.197},"i":{"x":0.833,"y":0.862},"s":[119.7,249.6,0],"t":47},{"o":{"x":0.167,"y":0.211},"i":{"x":0.833,"y":0.853},"s":[119.65,249.71,0],"t":48},{"o":{"x":0.167,"y":0.193},"i":{"x":0.833,"y":0.822},"s":[119.62,249.79,0],"t":49},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.815},"s":[119.6,249.84,0],"t":50},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.814},"s":[119.55,249.88,0],"t":51},{"o":{"x":0.167,"y":0.151},"i":{"x":0.833,"y":0.816},"s":[119.48,249.91,0],"t":52},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.818},"s":[119.4,249.94,0],"t":53},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.821},"s":[119.29,249.95,0],"t":54},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.823},"s":[119.17,249.95,0],"t":55},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.824},"s":[119.02,249.94,0],"t":56},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.826},"s":[118.86,249.93,0],"t":57},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.833},"s":[118.68,249.9,0],"t":58},{"s":[118.48,249.87,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":14},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":36},{"s":[0],"t":52}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":36},{"ty":4,"nm":"Shape Layer 15","sr":1,"st":6,"op":60,"ip":6,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.755},"s":[40.28,48.85,100],"t":6},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":1.13},"s":[45.2,71.43,100],"t":7},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.954},"s":[54.71,47.36,100],"t":8},{"o":{"x":0.167,"y":-0.103},"i":{"x":0.833,"y":0.879},"s":[30.34,30.06,100],"t":9},{"o":{"x":0.167,"y":0.269},"i":{"x":0.833,"y":0.612},"s":[41.25,56.36,100],"t":10},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.946},"s":[46.16,69.72,100],"t":11},{"o":{"x":0.167,"y":-0.155},"i":{"x":0.833,"y":0.7},"s":[64.09,36.17,100],"t":12},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.907},"s":[57.82,16.99,100],"t":13},{"o":{"x":0.167,"y":0.826},"i":{"x":0.833,"y":1.355},"s":[41.54,37.68,100],"t":14},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.982},"s":[39.71,72.8,100],"t":15},{"o":{"x":0.167,"y":-0.023},"i":{"x":0.833,"y":0.912},"s":[49.32,38.14,100],"t":16},{"o":{"x":0.167,"y":1.722},"i":{"x":0.833,"y":-1.675},"s":[41.78,30.58,100],"t":17},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.895},"s":[41.4,26.67,100],"t":18},{"o":{"x":0.167,"y":0.406},"i":{"x":0.833,"y":1.611},"s":[29.48,44.78,100],"t":19},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.931},"s":[26.4,50.92,100],"t":20},{"o":{"x":0.167,"y":-0.399},"i":{"x":0.833,"y":0.849},"s":[52.06,60.09,100],"t":21},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.815},"s":[47.63,20.78,100],"t":22},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.903},"s":[44.05,48.84,100],"t":23},{"o":{"x":0.167,"y":0.578},"i":{"x":0.833,"y":3.319},"s":[39.69,47.33,100],"t":24},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":0.951},"s":[38.96,70.46,100],"t":25},{"o":{"x":0.167,"y":-0.122},"i":{"x":0.833,"y":0.962},"s":[60.1,33.89,100],"t":26},{"o":{"x":0.167,"y":-0.07},"i":{"x":0.833,"y":1.232},"s":[51.51,56.15,100],"t":27},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":1.055},"s":[56.16,41.67,100],"t":28},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.912},"s":[38.55,34.16,100],"t":29},{"o":{"x":0.167,"y":1.606},"i":{"x":0.833,"y":1.622},"s":[67.72,31.31,100],"t":30},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.84},"s":[69.32,56.57,100],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":1.001},"s":[55.8,61.45,100],"t":32},{"o":{"x":0.167,"y":0.001},"i":{"x":0.833,"y":1.034},"s":[43.42,71.12,100],"t":33},{"o":{"x":0.167,"y":0.024},"i":{"x":0.833,"y":0.803},"s":[55.94,27.71,100],"t":34},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.958},"s":[38.31,32.76,100],"t":35},{"o":{"x":0.167,"y":-0.086},"i":{"x":0.833,"y":0.8},"s":[14.33,17.3,100],"t":36},{"o":{"x":0.167,"y":0.143},"i":{"x":0.833,"y":0.943},"s":[26.11,23.93,100],"t":37},{"o":{"x":0.167,"y":-0.176},"i":{"x":0.833,"y":0.752},"s":[42.65,12.15,100],"t":38},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":0.766},"s":[37.33,22.05,100],"t":39},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.931},"s":[26.85,51.44,100],"t":40},{"o":{"x":0.167,"y":-0.403},"i":{"x":0.833,"y":1.044},"s":[7.93,14.91,100],"t":41},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":1.502},"s":[11.17,33.3,100],"t":42},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.932},"s":[6.21,-4.62,100],"t":43},{"o":{"x":0.167,"y":-0.373},"i":{"x":0.833,"y":0.475},"s":[41.04,22.49,100],"t":44},{"o":{"x":0.167,"y":0.099},"i":{"x":0.833,"y":0.949},"s":[34.68,20.8,100],"t":45},{"o":{"x":0.167,"y":-0.133},"i":{"x":0.833,"y":0.795},"s":[0.95,9.26,100],"t":46},{"o":{"x":0.167,"y":0.14},"i":{"x":0.833,"y":0.93},"s":[13.95,4.7,100],"t":47},{"o":{"x":0.167,"y":-0.452},"i":{"x":0.833,"y":0.248},"s":[32.97,29.22,100],"t":48},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.928},"s":[30.01,0.43,100],"t":49},{"o":{"x":0.167,"y":-0.542},"i":{"x":0.833,"y":0.813},"s":[6.27,2.3,100],"t":50},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":1.066},"s":[9.43,-16.38,100],"t":51},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":1.028},"s":[13.39,19.7,100],"t":52},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":1.067},"s":[6.31,-5.64,100],"t":53},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":0.982},"s":[15.78,0.85,100],"t":54},{"o":{"x":0.167,"y":-0.022},"i":{"x":0.833,"y":0.849},"s":[-1.33,35.47,100],"t":55},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.975},"s":[12.18,-3.5,100],"t":56},{"o":{"x":0.167,"y":-0.035},"i":{"x":0.833,"y":0.875},"s":[23.18,-0.88,100],"t":57},{"o":{"x":0.167,"y":0.25},"i":{"x":0.833,"y":0.833},"s":[15.42,35.64,100],"t":58},{"s":[11.53,12.02,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.63},"s":[134.51,150.92,0],"t":6},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.767},"s":[134.19,150.04,0],"t":7},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.824},"s":[132.5,147.4,0],"t":8},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[129.13,142.97,0],"t":9},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[125.16,138.35,0],"t":10},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[121.57,134.49,0],"t":11},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[118.53,131.35,0],"t":12},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[115.97,128.72,0],"t":13},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.842},"s":[113.82,126.42,0],"t":14},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[112.03,124.3,0],"t":15},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.837},"s":[110.71,122.17,0],"t":16},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.843},"s":[110.71,119.85,0],"t":17},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[112.23,118.56,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[113.8,117.87,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[115.26,117.42,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[116.59,117.11,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[117.8,116.91,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[118.9,116.8,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[119.9,116.78,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[120.81,116.79,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[121.66,116.81,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[122.43,116.83,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[123.13,116.86,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[123.77,116.88,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[124.34,116.9,0],"t":30},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[124.85,116.91,0],"t":31},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[125.29,116.9,0],"t":32},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[125.67,116.89,0],"t":33},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.851},"s":[125.99,116.86,0],"t":34},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.854},"s":[126.24,116.82,0],"t":35},{"o":{"x":0.167,"y":0.194},"i":{"x":0.833,"y":0.856},"s":[126.44,116.77,0],"t":36},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":0.852},"s":[126.59,116.7,0],"t":37},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.83},"s":[126.67,116.62,0],"t":38},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.809},"s":[126.71,116.53,0],"t":39},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.808},"s":[126.69,116.43,0],"t":40},{"o":{"x":0.167,"y":0.147},"i":{"x":0.833,"y":0.813},"s":[126.63,116.31,0],"t":41},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.818},"s":[126.52,116.19,0],"t":42},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.821},"s":[126.37,116.06,0],"t":43},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.824},"s":[126.18,115.93,0],"t":44},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.829},"s":[125.95,115.8,0],"t":45},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.833},"s":[125.69,115.67,0],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[125.42,115.54,0],"t":47},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[125.14,115.41,0],"t":48},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[124.87,115.3,0],"t":49},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[124.6,115.2,0],"t":50},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.842},"s":[124.35,115.11,0],"t":51},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.845},"s":[124.11,115.04,0],"t":52},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.848},"s":[123.9,115,0],"t":53},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.842},"s":[123.71,114.99,0],"t":54},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.83},"s":[123.56,115.03,0],"t":55},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.821},"s":[123.45,115.13,0],"t":56},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.82},"s":[123.38,115.28,0],"t":57},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.833},"s":[123.34,115.47,0],"t":58},{"s":[123.34,115.7,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":33},{"s":[0],"t":49}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Polystar 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sr","bm":0,"hd":false,"mn":"ADBE Vector Shape - Star","nm":"Polystar Path 1","ix":1,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[6,32],"ix":4},"or":{"a":0,"k":6.599,"ix":7},"os":{"a":0,"k":0,"ix":9},"r":{"a":0,"k":0,"ix":5},"sy":2},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,0.7176,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-7.382,-25.677],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":37},{"ty":4,"nm":"Shape Layer 14","sr":1,"st":7,"op":60,"ip":7,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.973},"s":[48.17,41.46,100],"t":7},{"o":{"x":0.167,"y":-0.04},"i":{"x":0.833,"y":0.848},"s":[25.59,42.53,100],"t":8},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.779},"s":[40.9,47.33,100],"t":9},{"o":{"x":0.167,"y":0.134},"i":{"x":0.833,"y":0.979},"s":[53.6,70.37,100],"t":10},{"o":{"x":0.167,"y":-0.028},"i":{"x":0.833,"y":0.877},"s":[74.66,48.14,100],"t":11},{"o":{"x":0.167,"y":0.257},"i":{"x":0.833,"y":0.679},"s":[58.92,34.82,100],"t":12},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.91},"s":[51.37,40.27,100],"t":13},{"o":{"x":0.167,"y":1.14},"i":{"x":0.833,"y":1.545},"s":[29.87,59.3,100],"t":14},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.937},"s":[28.17,49.75,100],"t":15},{"o":{"x":0.167,"y":-0.256},"i":{"x":0.833,"y":0.643},"s":[40.96,36.79,100],"t":16},{"o":{"x":0.167,"y":0.109},"i":{"x":0.833,"y":0.821},"s":[37.82,50.26,100],"t":17},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":1.087},"s":[27.48,59.55,100],"t":18},{"o":{"x":0.167,"y":0.042},"i":{"x":0.833,"y":0.943},"s":[15.68,72.83,100],"t":19},{"o":{"x":0.167,"y":-0.178},"i":{"x":0.833,"y":1.091},"s":[39.76,75.81,100],"t":20},{"o":{"x":0.167,"y":0.043},"i":{"x":0.833,"y":1.009},"s":[32.07,39.68,100],"t":21},{"o":{"x":0.167,"y":0.008},"i":{"x":0.833,"y":0.955},"s":[48.14,22.55,100],"t":22},{"o":{"x":0.167,"y":-0.096},"i":{"x":0.833,"y":0.732},"s":[30.43,32.94,100],"t":23},{"o":{"x":0.167,"y":0.121},"i":{"x":0.833,"y":0.936},"s":[38.66,47.62,100],"t":24},{"o":{"x":0.167,"y":-0.276},"i":{"x":0.833,"y":0.932},"s":[56.91,50.27,100],"t":25},{"o":{"x":0.167,"y":-0.377},"i":{"x":0.833,"y":1.592},"s":[52.68,70.78,100],"t":26},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":1.083},"s":[53.45,65.43,100],"t":27},{"o":{"x":0.167,"y":0.042},"i":{"x":0.833,"y":0.998},"s":[47.24,54.38,100],"t":28},{"o":{"x":0.167,"y":-0.002},"i":{"x":0.833,"y":0.958},"s":[59.62,34.41,100],"t":29},{"o":{"x":0.167,"y":-0.084},"i":{"x":0.833,"y":1.192},"s":[47.51,41.18,100],"t":30},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.964},"s":[53.53,59.86,100],"t":31},{"o":{"x":0.167,"y":-0.063},"i":{"x":0.833,"y":0.897},"s":[33.66,71.29,100],"t":32},{"o":{"x":0.167,"y":0.428},"i":{"x":0.833,"y":1.514},"s":[45.01,43.87,100],"t":33},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.944},"s":[47.76,58.68,100],"t":34},{"o":{"x":0.167,"y":-0.175},"i":{"x":0.833,"y":0.734},"s":[28.08,53.25,100],"t":35},{"o":{"x":0.167,"y":0.121},"i":{"x":0.833,"y":1.006},"s":[34.44,36.13,100],"t":36},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.907},"s":[48.35,13.05,100],"t":37},{"o":{"x":0.167,"y":0.773},"i":{"x":0.833,"y":1.045},"s":[33.39,20.16,100],"t":38},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":0.907},"s":[31.59,43.91,100],"t":39},{"o":{"x":0.167,"y":0.82},"i":{"x":0.833,"y":8.194},"s":[34.37,55.84,100],"t":40},{"o":{"x":0.167,"y":0.082},"i":{"x":0.833,"y":0.944},"s":[34.68,48.43,100],"t":41},{"o":{"x":0.167,"y":-0.168},"i":{"x":0.833,"y":0.654},"s":[7.22,13.39,100],"t":42},{"o":{"x":0.167,"y":0.11},"i":{"x":0.833,"y":1.026},"s":[16.33,14.76,100],"t":43},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.908},"s":[45.06,27.15,100],"t":44},{"o":{"x":0.167,"y":0.884},"i":{"x":0.833,"y":0.981},"s":[7.35,28.69,100],"t":45},{"o":{"x":0.167,"y":-0.024},"i":{"x":0.833,"y":0.761},"s":[3.42,18.31,100],"t":46},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":1.054},"s":[6.47,22.6,100],"t":47},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":0.957},"s":[12.15,1.91,100],"t":48},{"o":{"x":0.167,"y":-0.09},"i":{"x":0.833,"y":0.6},"s":[2.8,7.23,100],"t":49},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.956},"s":[7.31,-0.96,100],"t":50},{"o":{"x":0.167,"y":-0.091},"i":{"x":0.833,"y":0.929},"s":[24.42,8.13,100],"t":51},{"o":{"x":0.167,"y":-0.46},"i":{"x":0.833,"y":2.185},"s":[16.25,6.02,100],"t":52},{"o":{"x":0.167,"y":0.078},"i":{"x":0.833,"y":0.869},"s":[17.5,-1.01,100],"t":53},{"o":{"x":0.167,"y":0.228},"i":{"x":0.833,"y":1.164},"s":[-1.6,32.84,100],"t":54},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.948},"s":[-12.63,11.48,100],"t":55},{"o":{"x":0.167,"y":-0.139},"i":{"x":0.833,"y":0.951},"s":[20.15,-7.6,100],"t":56},{"o":{"x":0.167,"y":-0.118},"i":{"x":0.833,"y":1.325},"s":[7.84,26.11,100],"t":57},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":0.833},"s":[12.92,17.61,100],"t":58},{"s":[-11.99,-1.28,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.588},"s":[135.19,146.97,0],"t":7},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.763},"s":[134.64,146.19,0],"t":8},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[132.09,143.5,0],"t":9},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[126.62,139.92,0],"t":10},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.848},"s":[119.92,137.82,0],"t":11},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[113.89,137.26,0],"t":12},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[108.88,137.5,0],"t":13},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[104.7,138.13,0],"t":14},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[101.16,138.95,0],"t":15},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[98.13,139.86,0],"t":16},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[95.51,140.81,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[93.2,141.78,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[91.17,142.76,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[89.37,143.75,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[87.77,144.75,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[86.37,145.79,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.847},"s":[85.18,146.92,0],"t":23},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.842},"s":[84.38,148.24,0],"t":24},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[84.65,149.55,0],"t":25},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[85.54,150.13,0],"t":26},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[86.41,150.39,0],"t":27},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[87.19,150.51,0],"t":28},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[87.88,150.54,0],"t":29},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[88.48,150.53,0],"t":30},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.846},"s":[88.99,150.49,0],"t":31},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.847},"s":[89.43,150.44,0],"t":32},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.848},"s":[89.79,150.37,0],"t":33},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.848},"s":[90.1,150.29,0],"t":34},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.85},"s":[90.35,150.22,0],"t":35},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.85},"s":[90.56,150.15,0],"t":36},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.848},"s":[90.72,150.09,0],"t":37},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.838},"s":[90.85,150.04,0],"t":38},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.822},"s":[90.96,150.02,0],"t":39},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.817},"s":[91.06,150.04,0],"t":40},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.818},"s":[91.16,150.12,0],"t":41},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.821},"s":[91.26,150.25,0],"t":42},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.824},"s":[91.35,150.42,0],"t":43},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.826},"s":[91.44,150.62,0],"t":44},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[91.53,150.86,0],"t":45},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[91.62,151.12,0],"t":46},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[91.7,151.4,0],"t":47},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[91.79,151.69,0],"t":48},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[91.9,151.99,0],"t":49},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[92.04,152.29,0],"t":50},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[92.19,152.59,0],"t":51},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[92.35,152.88,0],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[92.53,153.17,0],"t":53},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[92.72,153.44,0],"t":54},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[92.91,153.7,0],"t":55},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[93.11,153.94,0],"t":56},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[93.31,154.16,0],"t":57},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.833},"s":[93.51,154.35,0],"t":58},{"s":[93.7,154.52,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":34},{"s":[0],"t":50}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":38},{"ty":4,"nm":"Shape Layer 13","sr":1,"st":10,"op":60,"ip":10,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.884},"s":[73.25,49.4,100],"t":10},{"o":{"x":0.167,"y":0.295},"i":{"x":0.833,"y":0.718},"s":[56.41,55.53,100],"t":11},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":0.873},"s":[49.78,49.45,100],"t":12},{"o":{"x":0.167,"y":0.243},"i":{"x":0.833,"y":1.035},"s":[33.93,39.31,100],"t":13},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.989},"s":[25.66,37.09,100],"t":14},{"o":{"x":0.167,"y":-0.012},"i":{"x":0.833,"y":0.856},"s":[37.44,47.06,100],"t":15},{"o":{"x":0.167,"y":0.197},"i":{"x":0.833,"y":0.805},"s":[27.2,59.42,100],"t":16},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":1.152},"s":[19.72,70.83,100],"t":17},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.954},"s":[9.68,65.59,100],"t":18},{"o":{"x":0.167,"y":-0.102},"i":{"x":0.833,"y":1.016},"s":[38.09,73.68,100],"t":19},{"o":{"x":0.167,"y":0.013},"i":{"x":0.833,"y":0.949},"s":[25.29,44.3,100],"t":20},{"o":{"x":0.167,"y":-0.135},"i":{"x":0.833,"y":1.062},"s":[40.5,28.04,100],"t":21},{"o":{"x":0.167,"y":0.035},"i":{"x":0.833,"y":0.885},"s":[34.69,27.04,100],"t":22},{"o":{"x":0.167,"y":0.302},"i":{"x":0.833,"y":0.784},"s":[44.81,27.5,100],"t":23},{"o":{"x":0.167,"y":0.136},"i":{"x":0.833,"y":0.922},"s":[48.66,33.76,100],"t":24},{"o":{"x":0.167,"y":-1.133},"i":{"x":0.833,"y":0.883},"s":[54.8,71.53,100],"t":25},{"o":{"x":0.167,"y":0.289},"i":{"x":0.833,"y":4.25},"s":[54.38,70.51,100],"t":26},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":1.223},"s":[54.21,68.94,100],"t":27},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":0.926},"s":[61.02,56.31,100],"t":28},{"o":{"x":0.167,"y":-0.648},"i":{"x":0.833,"y":1.488},"s":[35.95,43.8,100],"t":29},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.933},"s":[38.81,56.79,100],"t":30},{"o":{"x":0.167,"y":-0.337},"i":{"x":0.833,"y":0.44},"s":[19.22,48.83,100],"t":31},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":0.955},"s":[23.11,52.75,100],"t":32},{"o":{"x":0.167,"y":-0.099},"i":{"x":0.833,"y":0.968},"s":[45.34,57.15,100],"t":33},{"o":{"x":0.167,"y":-0.051},"i":{"x":0.833,"y":0.719},"s":[35.16,86.83,100],"t":34},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":1.036},"s":[41.47,67.33,100],"t":35},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.917},"s":[56.46,33.26,100],"t":36},{"o":{"x":0.167,"y":-14.6},"i":{"x":0.833,"y":-3.33},"s":[35.03,37.09,100],"t":37},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":0.842},"s":[35.15,31.35,100],"t":38},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":1.296},"s":[41.35,65.04,100],"t":39},{"o":{"x":0.167,"y":0.065},"i":{"x":0.833,"y":0.873},"s":[46.89,73.03,100],"t":40},{"o":{"x":0.167,"y":0.241},"i":{"x":0.833,"y":1.082},"s":[21.66,39.91,100],"t":41},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":0.979},"s":[8.3,19.44,100],"t":42},{"o":{"x":0.167,"y":-0.028},"i":{"x":0.833,"y":0.848},"s":[34.82,18.53,100],"t":43},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.963},"s":[14.92,29.89,100],"t":44},{"o":{"x":0.167,"y":-0.066},"i":{"x":0.833,"y":0.958},"s":[-1.39,48.87,100],"t":45},{"o":{"x":0.167,"y":-0.084},"i":{"x":0.833,"y":1.188},"s":[7.7,21.46,100],"t":46},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.924},"s":[3.19,15.2,100],"t":47},{"o":{"x":0.167,"y":-0.823},"i":{"x":0.833,"y":1.308},"s":[17.87,16.75,100],"t":48},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":0.857},"s":[16.52,34.35,100],"t":49},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":1.022},"s":[22.86,11.51,100],"t":50},{"o":{"x":0.167,"y":0.018},"i":{"x":0.833,"y":0.667},"s":[27.42,-2.03,100],"t":51},{"o":{"x":0.167,"y":0.111},"i":{"x":0.833,"y":0.868},"s":[21.65,4.95,100],"t":52},{"o":{"x":0.167,"y":0.227},"i":{"x":0.833,"y":1.071},"s":[4.34,17.8,100],"t":53},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":1.016},"s":[-5.68,29.81,100],"t":54},{"o":{"x":0.167,"y":0.013},"i":{"x":0.833,"y":1.012},"s":[12.88,5.18,100],"t":55},{"o":{"x":0.167,"y":0.011},"i":{"x":0.833,"y":0.938},"s":[-9.26,20.71,100],"t":56},{"o":{"x":0.167,"y":-0.244},"i":{"x":0.833,"y":1.128},"s":[16.14,38.12,100],"t":57},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.833},"s":[9.66,-9.84,100],"t":58},{"s":[26.11,-0.81,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.569},"s":[135.91,149.97,0],"t":10},{"o":{"x":0.167,"y":0.103},"i":{"x":0.833,"y":0.794},"s":[135.31,149.15,0],"t":11},{"o":{"x":0.167,"y":0.14},"i":{"x":0.833,"y":0.801},"s":[133.01,145.58,0],"t":12},{"o":{"x":0.167,"y":0.143},"i":{"x":0.833,"y":0.845},"s":[133.74,139.23,0],"t":13},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.848},"s":[141.43,139.94,0],"t":14},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[148.03,141.54,0],"t":15},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[153.49,142.99,0],"t":16},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[158.06,144.2,0],"t":17},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[161.96,145.18,0],"t":18},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[165.32,145.99,0],"t":19},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[168.27,146.64,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[170.87,147.16,0],"t":21},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.841},"s":[173.18,147.57,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.84},"s":[175.24,147.89,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[177.11,148.14,0],"t":24},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[178.84,148.37,0],"t":25},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[180.43,148.59,0],"t":26},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[181.91,148.78,0],"t":27},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[183.3,148.97,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[184.59,149.14,0],"t":29},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[185.79,149.29,0],"t":30},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[186.92,149.44,0],"t":31},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[187.97,149.56,0],"t":32},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[188.96,149.67,0],"t":33},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[189.88,149.77,0],"t":34},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[190.74,149.85,0],"t":35},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[191.54,149.91,0],"t":36},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[192.29,149.95,0],"t":37},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[192.97,149.98,0],"t":38},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[193.6,149.98,0],"t":39},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[194.18,149.97,0],"t":40},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[194.7,149.93,0],"t":41},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[195.17,149.88,0],"t":42},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[195.58,149.81,0],"t":43},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[195.94,149.72,0],"t":44},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[196.25,149.61,0],"t":45},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[196.5,149.48,0],"t":46},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[196.69,149.34,0],"t":47},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.838},"s":[196.83,149.18,0],"t":48},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.828},"s":[196.91,149.01,0],"t":49},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.825},"s":[196.93,148.82,0],"t":50},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.825},"s":[196.9,148.63,0],"t":51},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.831},"s":[196.85,148.42,0],"t":52},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.842},"s":[196.75,148.21,0],"t":53},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[196.64,148.01,0],"t":54},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[196.52,147.85,0],"t":55},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.838},"s":[196.39,147.73,0],"t":56},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.835},"s":[196.26,147.64,0],"t":57},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.833},"s":[196.13,147.59,0],"t":58},{"s":[196,147.58,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":37},{"s":[0],"t":53}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":39},{"ty":4,"nm":"Shape Layer 12","sr":1,"st":11,"op":60,"ip":11,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.894},"s":[34.36,42.83,100],"t":11},{"o":{"x":0.167,"y":0.387},"i":{"x":0.833,"y":1.011},"s":[39.77,29.16,100],"t":12},{"o":{"x":0.167,"y":0.009},"i":{"x":0.833,"y":0.535},"s":[41.25,35.59,100],"t":13},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.814},"s":[39.58,47.95,100],"t":14},{"o":{"x":0.167,"y":0.151},"i":{"x":0.833,"y":0.818},"s":[31.93,42.67,100],"t":15},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":1.16},"s":[22.5,57.9,100],"t":16},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.958},"s":[11.35,39.64,100],"t":17},{"o":{"x":0.167,"y":-0.086},"i":{"x":0.833,"y":0.924},"s":[43.98,49.8,100],"t":18},{"o":{"x":0.167,"y":-0.806},"i":{"x":0.833,"y":-0.171},"s":[27.93,39.97,100],"t":19},{"o":{"x":0.167,"y":0.09},"i":{"x":0.833,"y":0.965},"s":[29.44,39.29,100],"t":20},{"o":{"x":0.167,"y":-0.06},"i":{"x":0.833,"y":0.989},"s":[49.06,46.52,100],"t":21},{"o":{"x":0.167,"y":-0.013},"i":{"x":0.833,"y":0.87},"s":[37.68,36.76,100],"t":22},{"o":{"x":0.167,"y":0.233},"i":{"x":0.833,"y":0.823},"s":[47.55,20.07,100],"t":23},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":1.123},"s":[53.03,59.5,100],"t":24},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":0.977},"s":[59.18,65.36,100],"t":25},{"o":{"x":0.167,"y":-0.031},"i":{"x":0.833,"y":0.983},"s":[43.96,57.48,100],"t":26},{"o":{"x":0.167,"y":-0.021},"i":{"x":0.833,"y":0.835},"s":[55.06,49.66,100],"t":27},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.751},"s":[46.2,60.4,100],"t":28},{"o":{"x":0.167,"y":0.125},"i":{"x":0.833,"y":0.906},"s":[37.49,65.41,100],"t":29},{"o":{"x":0.167,"y":0.74},"i":{"x":0.833,"y":1.547},"s":[20.16,45.98,100],"t":30},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.914},"s":[17.95,45.21,100],"t":31},{"o":{"x":0.167,"y":2.649},"i":{"x":0.833,"y":0.441},"s":[34.61,34.31,100],"t":32},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":0.52},"s":[35.15,69.84,100],"t":33},{"o":{"x":0.167,"y":0.101},"i":{"x":0.833,"y":0.977},"s":[38.24,79.92,100],"t":34},{"o":{"x":0.167,"y":-0.031},"i":{"x":0.833,"y":0.766},"s":[52.96,44.45,100],"t":35},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.959},"s":[42.24,59.37,100],"t":36},{"o":{"x":0.167,"y":-0.079},"i":{"x":0.833,"y":0.84},"s":[22.84,43.72,100],"t":37},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.98},"s":[32.81,52.7,100],"t":38},{"o":{"x":0.167,"y":-0.027},"i":{"x":0.833,"y":0.699},"s":[41.95,62.61,100],"t":39},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.914},"s":[35.02,63.49,100],"t":40},{"o":{"x":0.167,"y":2.984},"i":{"x":0.833,"y":2.929},"s":[16.94,35.8,100],"t":41},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":1.084},"s":[16.42,28.55,100],"t":42},{"o":{"x":0.167,"y":0.042},"i":{"x":0.833,"y":1.001},"s":[28.97,21.36,100],"t":43},{"o":{"x":0.167,"y":0.001},"i":{"x":0.833,"y":0.944},"s":[3.81,54.35,100],"t":44},{"o":{"x":0.167,"y":-0.168},"i":{"x":0.833,"y":0.889},"s":[29.27,21.81,100],"t":45},{"o":{"x":0.167,"y":0.335},"i":{"x":0.833,"y":1.33},"s":[20.82,26.17,100],"t":46},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.973},"s":[18.01,23.98,100],"t":47},{"o":{"x":0.167,"y":-0.04},"i":{"x":0.833,"y":0.915},"s":[31.91,34.94,100],"t":48},{"o":{"x":0.167,"y":3.347},"i":{"x":0.833,"y":0.366},"s":[22.5,25.07,100],"t":49},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":0.284},"s":[22.25,-6.61,100],"t":50},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":0.976},"s":[20.66,18.22,100],"t":51},{"o":{"x":0.167,"y":-0.033},"i":{"x":0.833,"y":0.91},"s":[8.58,18.5,100],"t":52},{"o":{"x":0.167,"y":1.171},"i":{"x":0.833,"y":4.784},"s":[17.21,41.13,100],"t":53},{"o":{"x":0.167,"y":0.082},"i":{"x":0.833,"y":0.95},"s":[17.87,23.89,100],"t":54},{"o":{"x":0.167,"y":-0.123},"i":{"x":0.833,"y":0.762},"s":[-12.8,7.55,100],"t":55},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.889},"s":[-0.39,42.58,100],"t":56},{"o":{"x":0.167,"y":0.335},"i":{"x":0.833,"y":0.804},"s":[22.69,-1.06,100],"t":57},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.833},"s":[30.33,11.29,100],"t":58},{"s":[40.66,12.24,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.583},"s":[136.17,154.16,0],"t":11},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.762},"s":[135.01,154.49,0],"t":12},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[130.18,153.13,0],"t":13},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[122.25,147.36,0],"t":14},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[114.09,139.74,0],"t":15},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[107.19,132.77,0],"t":16},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[101.48,126.92,0],"t":17},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[96.67,122.04,0],"t":18},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[92.51,117.93,0],"t":19},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[88.83,114.43,0],"t":20},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[85.53,111.45,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[82.53,108.9,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[79.76,106.72,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[77.18,104.89,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[74.77,103.37,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[72.49,102.15,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[70.34,101.24,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[68.31,100.64,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[66.41,100.36,0],"t":29},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[64.67,100.39,0],"t":30},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[63.12,100.7,0],"t":31},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[61.78,101.24,0],"t":32},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[60.65,101.91,0],"t":33},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[59.7,102.63,0],"t":34},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[58.9,103.36,0],"t":35},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[58.23,104.06,0],"t":36},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[57.66,104.72,0],"t":37},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[57.17,105.33,0],"t":38},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[56.75,105.88,0],"t":39},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[56.38,106.37,0],"t":40},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[56.05,106.82,0],"t":41},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[55.77,107.21,0],"t":42},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[55.52,107.55,0],"t":43},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[55.29,107.84,0],"t":44},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.847},"s":[55.1,108.09,0],"t":45},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[54.94,108.3,0],"t":46},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.851},"s":[54.79,108.47,0],"t":47},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.855},"s":[54.67,108.6,0],"t":48},{"o":{"x":0.167,"y":0.197},"i":{"x":0.833,"y":0.861},"s":[54.58,108.7,0],"t":49},{"o":{"x":0.167,"y":0.208},"i":{"x":0.833,"y":0.855},"s":[54.5,108.77,0],"t":50},{"o":{"x":0.167,"y":0.196},"i":{"x":0.833,"y":0.838},"s":[54.44,108.79,0],"t":51},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.831},"s":[54.4,108.81,0],"t":52},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.827},"s":[54.36,108.84,0],"t":53},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.827},"s":[54.34,108.89,0],"t":54},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[54.32,108.94,0],"t":55},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.831},"s":[54.31,109,0],"t":56},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.834},"s":[54.3,109.07,0],"t":57},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.833},"s":[54.3,109.14,0],"t":58},{"s":[54.3,109.21,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":16},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":38},{"s":[0],"t":54}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":40},{"ty":4,"nm":"Shape Layer 11","sr":1,"st":5,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.938},"s":[24.15,86.88,100],"t":5},{"o":{"x":0.167,"y":-0.246},"i":{"x":0.833,"y":1.038},"s":[46.99,34.74,100],"t":6},{"o":{"x":0.167,"y":0.026},"i":{"x":0.833,"y":0.894},"s":[41.21,22.81,100],"t":7},{"o":{"x":0.167,"y":0.391},"i":{"x":0.833,"y":1.66},"s":[49.59,36.78,100],"t":8},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.929},"s":[51.87,33.89,100],"t":9},{"o":{"x":0.167,"y":-0.472},"i":{"x":0.833,"y":0.162},"s":[31.59,20.67,100],"t":10},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":0.955},"s":[34.63,33.78,100],"t":11},{"o":{"x":0.167,"y":-0.098},"i":{"x":0.833,"y":0.827},"s":[62.17,43.79,100],"t":12},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.934},"s":[49.54,58.36,100],"t":13},{"o":{"x":0.167,"y":-0.314},"i":{"x":0.833,"y":1.386},"s":[35.98,39.87,100],"t":14},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":1.064},"s":[38.83,45.37,100],"t":15},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.928},"s":[22.79,25.2,100],"t":16},{"o":{"x":0.167,"y":-0.543},"i":{"x":0.833,"y":0.358},"s":[51.19,22.39,100],"t":17},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":1.006},"s":[47.41,39.13,100],"t":18},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.947},"s":[22.05,34.21,100],"t":19},{"o":{"x":0.167,"y":-0.142},"i":{"x":0.833,"y":0.954},"s":[49.31,53.89,100],"t":20},{"o":{"x":0.167,"y":-0.105},"i":{"x":0.833,"y":0.782},"s":[39.24,58.77,100],"t":21},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.813},"s":[43.7,36.6,100],"t":22},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":1.187},"s":[50.9,40.06,100],"t":23},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.922},"s":[59.85,51.5,100],"t":24},{"o":{"x":0.167,"y":-1.303},"i":{"x":0.833,"y":-0.546},"s":[30.79,41.24,100],"t":25},{"o":{"x":0.167,"y":0.088},"i":{"x":0.833,"y":0.939},"s":[32.54,20.43,100],"t":26},{"o":{"x":0.167,"y":-0.233},"i":{"x":0.833,"y":0.782},"s":[63.19,42.19,100],"t":27},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.806},"s":[55.11,52.8,100],"t":28},{"o":{"x":0.167,"y":0.146},"i":{"x":0.833,"y":0.928},"s":[42.1,67.03,100],"t":29},{"o":{"x":0.167,"y":-0.514},"i":{"x":0.833,"y":1.021},"s":[24.85,48.3,100],"t":30},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":1.248},"s":[27.26,25.81,100],"t":31},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.895},"s":[24.23,31.41,100],"t":32},{"o":{"x":0.167,"y":0.404},"i":{"x":0.833,"y":0.992},"s":[36.26,66.95,100],"t":33},{"o":{"x":0.167,"y":-0.009},"i":{"x":0.833,"y":0.123},"s":[39.38,45.93,100],"t":34},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.943},"s":[36.55,44.42,100],"t":35},{"o":{"x":0.167,"y":-0.176},"i":{"x":0.833,"y":0.802},"s":[9.62,44.69,100],"t":36},{"o":{"x":0.167,"y":0.144},"i":{"x":0.833,"y":0.938},"s":[18.26,47.03,100],"t":37},{"o":{"x":0.167,"y":-0.243},"i":{"x":0.833,"y":0.507},"s":[30.13,24.34,100],"t":38},{"o":{"x":0.167,"y":0.1},"i":{"x":0.833,"y":0.85},"s":[27.09,58.7,100],"t":39},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":1.039},"s":[12.19,45.48,100],"t":40},{"o":{"x":0.167,"y":0.026},"i":{"x":0.833,"y":1.03},"s":[0.18,39.86,100],"t":41},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":1.01},"s":[17.76,19.43,100],"t":42},{"o":{"x":0.167,"y":0.009},"i":{"x":0.833,"y":0.865},"s":[-6.11,33.23,100],"t":43},{"o":{"x":0.167,"y":0.219},"i":{"x":0.833,"y":1.071},"s":[20.74,-2.52,100],"t":44},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.953},"s":[37.29,19.58,100],"t":45},{"o":{"x":0.167,"y":-0.108},"i":{"x":0.833,"y":0.979},"s":[6.55,21.73,100],"t":46},{"o":{"x":0.167,"y":-0.028},"i":{"x":0.833,"y":0.943},"s":[19.94,9.79,100],"t":47},{"o":{"x":0.167,"y":-0.176},"i":{"x":0.833,"y":0.911},"s":[9.95,20,100],"t":48},{"o":{"x":0.167,"y":1.367},"i":{"x":0.833,"y":3.32},"s":[13.16,0.99,100],"t":49},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":1.176},"s":[13.37,21.63,100],"t":50},{"o":{"x":0.167,"y":0.057},"i":{"x":0.833,"y":0.984},"s":[7.36,24.19,100],"t":51},{"o":{"x":0.167,"y":-0.019},"i":{"x":0.833,"y":0.862},"s":[26.05,38.9,100],"t":52},{"o":{"x":0.167,"y":0.21},"i":{"x":0.833,"y":0.873},"s":[10.85,47.51,100],"t":53},{"o":{"x":0.167,"y":0.242},"i":{"x":0.833,"y":1.145},"s":[0.84,-5.3,100],"t":54},{"o":{"x":0.167,"y":0.053},"i":{"x":0.833,"y":0.874},"s":[-4.41,16.3,100],"t":55},{"o":{"x":0.167,"y":0.245},"i":{"x":0.833,"y":0.791},"s":[10.01,2.19,100],"t":56},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":1.021},"s":[17.45,2.56,100],"t":57},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":0.833},"s":[28.62,21.82,100],"t":58},{"s":[14.66,18.78,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.595},"s":[137.16,154.28,0],"t":5},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.764},"s":[135.49,154.9,0],"t":6},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[129.21,157.77,0],"t":7},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[117.89,163.51,0],"t":8},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[105.5,170.39,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[94.83,176.8,0],"t":10},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[86.03,182.46,0],"t":11},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[78.71,187.44,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[72.51,191.89,0],"t":13},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[67.18,195.9,0],"t":14},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[62.55,199.56,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[58.49,202.91,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[54.91,206,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[51.74,208.86,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[48.94,211.52,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[46.46,213.99,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[44.28,216.3,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[42.36,218.46,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[40.69,220.48,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[39.22,222.36,0],"t":24},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[37.94,224.1,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[36.83,225.73,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[35.86,227.23,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[35.04,228.62,0],"t":28},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[34.33,229.89,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[33.74,231.07,0],"t":30},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[33.25,232.13,0],"t":31},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[32.85,233.1,0],"t":32},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[32.53,233.98,0],"t":33},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[32.28,234.76,0],"t":34},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[32.1,235.45,0],"t":35},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[31.98,236.06,0],"t":36},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.848},"s":[31.9,236.59,0],"t":37},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.849},"s":[31.87,237.03,0],"t":38},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.851},"s":[31.87,237.4,0],"t":39},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.852},"s":[31.91,237.69,0],"t":40},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.849},"s":[31.97,237.91,0],"t":41},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.838},"s":[32.06,238.06,0],"t":42},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.824},"s":[32.16,238.14,0],"t":43},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.827},"s":[32.27,238.16,0],"t":44},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.839},"s":[32.4,238.11,0],"t":45},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[32.52,238.03,0],"t":46},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[32.63,237.94,0],"t":47},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[32.72,237.85,0],"t":48},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.835},"s":[32.79,237.75,0],"t":49},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.825},"s":[32.84,237.64,0],"t":50},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.82},"s":[32.86,237.53,0],"t":51},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.833},"s":[32.84,237.4,0],"t":52},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.832},"s":[32.79,237.26,0],"t":53},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.831},"s":[32.71,237.14,0],"t":54},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.831},"s":[32.61,237.05,0],"t":55},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[32.49,236.98,0],"t":56},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.831},"s":[32.36,236.94,0],"t":57},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[32.22,236.92,0],"t":58},{"s":[32.07,236.94,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":32},{"s":[0],"t":48}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":41},{"ty":4,"nm":"Shape Layer 10","sr":1,"st":8,"op":60,"ip":8,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.866},"s":[62.23,53.08,100],"t":8},{"o":{"x":0.167,"y":0.22},"i":{"x":0.833,"y":1.119},"s":[43.99,16.42,100],"t":9},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":0.948},"s":[32.87,47.69,100],"t":10},{"o":{"x":0.167,"y":-0.141},"i":{"x":0.833,"y":0.746},"s":[59.83,40.88,100],"t":11},{"o":{"x":0.167,"y":0.124},"i":{"x":0.833,"y":0.94},"s":[49.81,57.95,100],"t":12},{"o":{"x":0.167,"y":-0.21},"i":{"x":0.833,"y":0.968},"s":[29.31,52.76,100],"t":13},{"o":{"x":0.167,"y":-0.051},"i":{"x":0.833,"y":1.429},"s":[35.14,68.23,100],"t":14},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":0.886},"s":[31.54,37.17,100],"t":15},{"o":{"x":0.167,"y":0.307},"i":{"x":0.833,"y":1.12},"s":[53.71,26.15,100],"t":16},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":0.887},"s":[61.98,35.05,100],"t":17},{"o":{"x":0.167,"y":0.316},"i":{"x":0.833,"y":0.971},"s":[41.8,43.03,100],"t":18},{"o":{"x":0.167,"y":-0.045},"i":{"x":0.833,"y":0.831},"s":[34.56,41.49,100],"t":19},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.913},"s":[39.25,56.68,100],"t":20},{"o":{"x":0.167,"y":1.79},"i":{"x":0.833,"y":0.179},"s":[44.09,51.52,100],"t":21},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":1.589},"s":[44.32,34.32,100],"t":22},{"o":{"x":0.167,"y":0.073},"i":{"x":0.833,"y":0.878},"s":[46.41,31.89,100],"t":23},{"o":{"x":0.167,"y":0.262},"i":{"x":0.833,"y":1.33},"s":[29.56,40.13,100],"t":24},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.901},"s":[21.7,21.22,100],"t":25},{"o":{"x":0.167,"y":0.525},"i":{"x":0.833,"y":0.929},"s":[60.68,28.03,100],"t":26},{"o":{"x":0.167,"y":-0.486},"i":{"x":0.833,"y":-1.352},"s":[68.04,27.21,100],"t":27},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.883},"s":[66.97,59.27,100],"t":28},{"o":{"x":0.167,"y":0.29},"i":{"x":0.833,"y":0.867},"s":[37.65,60.72,100],"t":29},{"o":{"x":0.167,"y":0.222},"i":{"x":0.833,"y":1.16},"s":[25.84,39.61,100],"t":30},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.876},"s":[18.75,38.87,100],"t":31},{"o":{"x":0.167,"y":0.255},"i":{"x":0.833,"y":1.058},"s":[39.48,51.81,100],"t":32},{"o":{"x":0.167,"y":0.034},"i":{"x":0.833,"y":0.897},"s":[49.57,63.88,100],"t":33},{"o":{"x":0.167,"y":0.446},"i":{"x":0.833,"y":1.242},"s":[32.42,55.69,100],"t":34},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.892},"s":[28.47,39.52,100],"t":35},{"o":{"x":0.167,"y":0.364},"i":{"x":0.833,"y":1.044},"s":[43.88,66.87,100],"t":36},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":0.587},"s":[48.45,31.25,100],"t":37},{"o":{"x":0.167,"y":0.104},"i":{"x":0.833,"y":0.912},"s":[41.47,55.64,100],"t":38},{"o":{"x":0.167,"y":1.495},"i":{"x":0.833,"y":1.439},"s":[13.8,64.27,100],"t":39},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":1.035},"s":[12.17,44.86,100],"t":40},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":0.948},"s":[22.4,33.25,100],"t":41},{"o":{"x":0.167,"y":-0.138},"i":{"x":0.833,"y":0.603},"s":[7.86,38.17,100],"t":42},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":1.028},"s":[13.34,-3.22,100],"t":43},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":0.923},"s":[33.95,30.52,100],"t":44},{"o":{"x":0.167,"y":-1.056},"i":{"x":0.833,"y":1.395},"s":[6.52,32.75,100],"t":45},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.991},"s":[8.52,15.54,100],"t":46},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.906},"s":[-2.99,27.05,100],"t":47},{"o":{"x":0.167,"y":0.74},"i":{"x":0.833,"y":1.079},"s":[7.3,21.07,100],"t":48},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":1.225},"s":[8.6,26.22,100],"t":49},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":1.151},"s":[6.06,13.02,100],"t":50},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.952},"s":[15.46,14.61,100],"t":51},{"o":{"x":0.167,"y":-0.115},"i":{"x":0.833,"y":0.879},"s":[-10.93,39.1,100],"t":52},{"o":{"x":0.167,"y":0.269},"i":{"x":0.833,"y":0.835},"s":[0.13,18.04,100],"t":53},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.829},"s":[5.09,4.68,100],"t":54},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.817},"s":[9.94,15.32,100],"t":55},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":1.012},"s":[15.07,-4.05,100],"t":56},{"o":{"x":0.167,"y":0.011},"i":{"x":0.833,"y":0.986},"s":[21.22,11.44,100],"t":57},{"o":{"x":0.167,"y":-0.017},"i":{"x":0.833,"y":0.833},"s":[14.18,14.55,100],"t":58},{"s":[20.03,9.34,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.609},"s":[132.87,149.46,0],"t":8},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.765},"s":[132.09,149.64,0],"t":9},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[129.31,150.8,0],"t":10},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[124.34,153.22,0],"t":11},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.852},"s":[119.05,156.44,0],"t":12},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.84},"s":[115.18,160.46,0],"t":13},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.845},"s":[116.33,164.88,0],"t":14},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[119.55,166.91,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[122.52,168.19,0],"t":16},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[125.15,169.17,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[127.49,169.99,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[129.59,170.71,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[131.48,171.37,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[133.19,171.98,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[134.74,172.57,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[136.16,173.13,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[137.44,173.67,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[138.61,174.2,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[139.67,174.72,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[140.63,175.23,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[141.49,175.73,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[142.25,176.23,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[142.92,176.71,0],"t":30},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[143.48,177.19,0],"t":31},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[143.95,177.65,0],"t":32},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[144.31,178.1,0],"t":33},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.851},"s":[144.58,178.51,0],"t":34},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.852},"s":[144.74,178.89,0],"t":35},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.844},"s":[144.82,179.21,0],"t":36},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.831},"s":[144.81,179.46,0],"t":37},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.829},"s":[144.74,179.67,0],"t":38},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[144.61,179.84,0],"t":39},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.832},"s":[144.45,179.99,0],"t":40},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.834},"s":[144.27,180.11,0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.836},"s":[144.08,180.22,0],"t":42},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.838},"s":[143.88,180.31,0],"t":43},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.84},"s":[143.69,180.4,0],"t":44},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.842},"s":[143.5,180.48,0],"t":45},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.844},"s":[143.34,180.55,0],"t":46},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.84},"s":[143.19,180.62,0],"t":47},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.833},"s":[143.06,180.69,0],"t":48},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.831},"s":[142.95,180.78,0],"t":49},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.829},"s":[142.86,180.89,0],"t":50},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.828},"s":[142.79,181.02,0],"t":51},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.827},"s":[142.73,181.17,0],"t":52},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.827},"s":[142.7,181.35,0],"t":53},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.827},"s":[142.69,181.54,0],"t":54},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.828},"s":[142.7,181.75,0],"t":55},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[142.73,181.97,0],"t":56},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[142.78,182.2,0],"t":57},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[142.85,182.43,0],"t":58},{"s":[142.94,182.67,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":35},{"s":[0],"t":51}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":42},{"ty":4,"nm":"Shape Layer 9","sr":1,"st":10,"op":60,"ip":10,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.838},"s":[53.64,41.07,100],"t":10},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.856},"s":[42.35,39.99,100],"t":11},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":1.028},"s":[31.7,52.37,100],"t":12},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":0.797},"s":[24.01,86.13,100],"t":13},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":0.92},"s":[34.25,55.37,100],"t":14},{"o":{"x":0.167,"y":-1.941},"i":{"x":0.833,"y":2.944},"s":[49,49.35,100],"t":15},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":1.003},"s":[48.39,37.69,100],"t":16},{"o":{"x":0.167,"y":0.002},"i":{"x":0.833,"y":0.843},"s":[63.15,60.5,100],"t":17},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.977},"s":[47.94,42.79,100],"t":18},{"o":{"x":0.167,"y":-0.032},"i":{"x":0.833,"y":0.969},"s":[34.43,42.86,100],"t":19},{"o":{"x":0.167,"y":-0.048},"i":{"x":0.833,"y":0.819},"s":[44.18,44.41,100],"t":20},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.879},"s":[38.01,43.49,100],"t":21},{"o":{"x":0.167,"y":0.269},"i":{"x":0.833,"y":1.071},"s":[30.79,37.75,100],"t":22},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.698},"s":[27.55,42.77,100],"t":23},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.807},"s":[33.56,46.36,100],"t":24},{"o":{"x":0.167,"y":0.147},"i":{"x":0.833,"y":0.911},"s":[49.36,44.15,100],"t":25},{"o":{"x":0.167,"y":1.265},"i":{"x":0.833,"y":1.698},"s":[70.12,31.92,100],"t":26},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":0.73},"s":[71.59,37.48,100],"t":27},{"o":{"x":0.167,"y":0.121},"i":{"x":0.833,"y":0.888},"s":[57.85,54.37,100],"t":28},{"o":{"x":0.167,"y":0.324},"i":{"x":0.833,"y":1.05},"s":[27.05,34.68,100],"t":29},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.866},"s":[16.37,60.74,100],"t":30},{"o":{"x":0.167,"y":0.22},"i":{"x":0.833,"y":1.028},"s":[33.47,44.6,100],"t":31},{"o":{"x":0.167,"y":0.021},"i":{"x":0.833,"y":0.9},"s":[43.93,49.19,100],"t":32},{"o":{"x":0.167,"y":0.497},"i":{"x":0.833,"y":2.007},"s":[29.98,64.89,100],"t":33},{"o":{"x":0.167,"y":0.077},"i":{"x":0.833,"y":0.966},"s":[27.17,33.36,100],"t":34},{"o":{"x":0.167,"y":-0.058},"i":{"x":0.833,"y":0.958},"s":[63.93,66.64,100],"t":35},{"o":{"x":0.167,"y":-0.086},"i":{"x":0.833,"y":1.106},"s":[42.21,45.1,100],"t":36},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":0.866},"s":[52.88,55.76,100],"t":37},{"o":{"x":0.167,"y":0.221},"i":{"x":0.833,"y":1.04},"s":[28.59,52.23,100],"t":38},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.947},"s":[13.86,38.75,100],"t":39},{"o":{"x":0.167,"y":-0.148},"i":{"x":0.833,"y":0.89},"s":[35.64,25.77,100],"t":40},{"o":{"x":0.167,"y":0.339},"i":{"x":0.833,"y":1.128},"s":[27.8,32.44,100],"t":41},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":1.199},"s":[25.25,7.56,100],"t":42},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":0.938},"s":[31.71,38.63,100],"t":43},{"o":{"x":0.167,"y":-0.238},"i":{"x":0.833,"y":1.252},"s":[9.83,42.38,100],"t":44},{"o":{"x":0.167,"y":0.063},"i":{"x":0.833,"y":0.97},"s":[15.5,22.02,100],"t":45},{"o":{"x":0.167,"y":-0.046},"i":{"x":0.833,"y":0.893},"s":[-7.31,42.7,100],"t":46},{"o":{"x":0.167,"y":0.373},"i":{"x":0.833,"y":1.07},"s":[7.34,34.59,100],"t":47},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":1.075},"s":[11.56,44.55,100],"t":48},{"o":{"x":0.167,"y":0.039},"i":{"x":0.833,"y":1.071},"s":[3.8,9.88,100],"t":49},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.941},"s":[18.52,0.64,100],"t":50},{"o":{"x":0.167,"y":-0.205},"i":{"x":0.833,"y":0.813},"s":[-8.66,6.83,100],"t":51},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.814},"s":[-0.79,33.02,100],"t":52},{"o":{"x":0.167,"y":0.151},"i":{"x":0.833,"y":0.897},"s":[8.99,20.44,100],"t":53},{"o":{"x":0.167,"y":0.441},"i":{"x":0.833,"y":0.817},"s":[21.01,34.29,100],"t":54},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.877},"s":[23.81,10.17,100],"t":55},{"o":{"x":0.167,"y":0.259},"i":{"x":0.833,"y":1.206},"s":[27.15,10.44,100],"t":56},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":0.986},"s":[28.74,2.77,100],"t":57},{"o":{"x":0.167,"y":-0.017},"i":{"x":0.833,"y":0.833},"s":[23.23,-10.21,100],"t":58},{"s":[27.8,12.25,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.607},"s":[136.65,149.57,0],"t":10},{"o":{"x":0.167,"y":0.106},"i":{"x":0.833,"y":0.764},"s":[135.65,150.2,0],"t":11},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.843},"s":[131.7,151.96,0],"t":12},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.826},"s":[124.26,154.03,0],"t":13},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.848},"s":[120.26,147.91,0],"t":14},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[123.37,140.04,0],"t":15},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[126.48,133.79,0],"t":16},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[129.14,128.56,0],"t":17},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[131.37,124.04,0],"t":18},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[133.23,120.03,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[134.79,116.41,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[136.09,113.1,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[137.15,110.02,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[137.97,107.17,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[138.56,104.54,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[138.95,102.1,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[139.14,99.84,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[139.17,97.75,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[139.03,95.83,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[138.76,94.08,0],"t":29},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[138.36,92.5,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[137.87,91.1,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[137.3,89.87,0],"t":32},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[136.68,88.82,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[136.05,87.93,0],"t":34},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[135.41,87.19,0],"t":35},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[134.8,86.58,0],"t":36},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[134.23,86.1,0],"t":37},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[133.71,85.72,0],"t":38},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.849},"s":[133.25,85.43,0],"t":39},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.852},"s":[132.85,85.22,0],"t":40},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.855},"s":[132.52,85.08,0],"t":41},{"o":{"x":0.167,"y":0.196},"i":{"x":0.833,"y":0.861},"s":[132.25,85,0],"t":42},{"o":{"x":0.167,"y":0.208},"i":{"x":0.833,"y":0.868},"s":[132.05,84.96,0],"t":43},{"o":{"x":0.167,"y":0.226},"i":{"x":0.833,"y":0.86},"s":[131.91,84.96,0],"t":44},{"o":{"x":0.167,"y":0.205},"i":{"x":0.833,"y":0.798},"s":[131.84,85,0],"t":45},{"o":{"x":0.167,"y":0.142},"i":{"x":0.833,"y":0.789},"s":[131.83,85.06,0],"t":46},{"o":{"x":0.167,"y":0.138},"i":{"x":0.833,"y":0.804},"s":[131.87,85.14,0],"t":47},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.814},"s":[131.96,85.22,0],"t":48},{"o":{"x":0.167,"y":0.151},"i":{"x":0.833,"y":0.827},"s":[132.1,85.31,0],"t":49},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.835},"s":[132.29,85.4,0],"t":50},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.833},"s":[132.49,85.46,0],"t":51},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.831},"s":[132.7,85.49,0],"t":52},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[132.91,85.47,0],"t":53},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[133.12,85.42,0],"t":54},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.833},"s":[133.32,85.33,0],"t":55},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.834},"s":[133.52,85.2,0],"t":56},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.835},"s":[133.71,85.05,0],"t":57},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.833},"s":[133.87,84.88,0],"t":58},{"s":[134.02,84.69,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":37},{"s":[0],"t":53}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.012,10.621],[-5.695,5.34],[-2.557,-7.377],[3.15,-2.096]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.7922,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.421,4.043],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":43},{"ty":4,"nm":"Shape Layer 8","sr":1,"st":9,"op":60,"ip":9,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.872},"s":[59.22,40.56,100],"t":9},{"o":{"x":0.167,"y":0.239},"i":{"x":0.833,"y":0.683},"s":[49.99,44.04,100],"t":10},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.98},"s":[45.05,36.32,100],"t":11},{"o":{"x":0.167,"y":-0.026},"i":{"x":0.833,"y":0.931},"s":[31.18,61.39,100],"t":12},{"o":{"x":0.167,"y":-0.401},"i":{"x":0.833,"y":0.274},"s":[41.71,49.81,100],"t":13},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":1.092},"s":[39.9,63.33,100],"t":14},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.882},"s":[25.93,57.74,100],"t":15},{"o":{"x":0.167,"y":0.286},"i":{"x":0.833,"y":1.078},"s":[55.32,77.15,100],"t":16},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":0.91},"s":[67.4,59.37,100],"t":17},{"o":{"x":0.167,"y":1.209},"i":{"x":0.833,"y":0.965},"s":[43.99,48.96,100],"t":18},{"o":{"x":0.167,"y":-0.061},"i":{"x":0.833,"y":2.383},"s":[42.25,36.76,100],"t":19},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.943},"s":[43.25,50.38,100],"t":20},{"o":{"x":0.167,"y":-0.181},"i":{"x":0.833,"y":0.633},"s":[25.68,70.15,100],"t":21},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.913},"s":[31.23,44.38,100],"t":22},{"o":{"x":0.167,"y":1.9},"i":{"x":0.833,"y":-0.114},"s":[50.12,64.43,100],"t":23},{"o":{"x":0.167,"y":0.09},"i":{"x":0.833,"y":0.968},"s":[50.99,65.46,100],"t":24},{"o":{"x":0.167,"y":-0.051},"i":{"x":0.833,"y":0.984},"s":[61.7,50.78,100],"t":25},{"o":{"x":0.167,"y":-0.02},"i":{"x":0.833,"y":1.465},"s":[55.05,50.31,100],"t":26},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.895},"s":[60.41,51.89,100],"t":27},{"o":{"x":0.167,"y":0.407},"i":{"x":0.833,"y":1.153},"s":[25.19,27.99,100],"t":28},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.924},"s":[16.11,60.14,100],"t":29},{"o":{"x":0.167,"y":-0.892},"i":{"x":0.833,"y":1.199},"s":[41.85,62.26,100],"t":30},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":1.078},"s":[39.65,34.27,100],"t":31},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":1.008},"s":[47.08,66.64,100],"t":32},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":1.02},"s":[32.72,47.6,100],"t":33},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.963},"s":[48.49,64.62,100],"t":34},{"o":{"x":0.167,"y":-0.067},"i":{"x":0.833,"y":0.823},"s":[28.98,62.56,100],"t":35},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":1.189},"s":[39.77,58.95,100],"t":36},{"o":{"x":0.167,"y":0.058},"i":{"x":0.833,"y":0.974},"s":[51.87,32.32,100],"t":37},{"o":{"x":0.167,"y":-0.038},"i":{"x":0.833,"y":0.965},"s":[12.28,34.15,100],"t":38},{"o":{"x":0.167,"y":-0.061},"i":{"x":0.833,"y":0.948},"s":[39.46,26.29,100],"t":39},{"o":{"x":0.167,"y":-0.137},"i":{"x":0.833,"y":0.833},"s":[23.79,7.68,100],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.058},"s":[29.72,17,100],"t":41},{"o":{"x":0.167,"y":0.034},"i":{"x":0.833,"y":0.967},"s":[35.65,25.68,100],"t":42},{"o":{"x":0.167,"y":-0.054},"i":{"x":0.833,"y":1.288},"s":[25.58,30.38,100],"t":43},{"o":{"x":0.167,"y":0.065},"i":{"x":0.833,"y":0.942},"s":[31.68,5.56,100],"t":44},{"o":{"x":0.167,"y":-0.193},"i":{"x":0.833,"y":0.756},"s":[4.56,34.1,100],"t":45},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":1.038},"s":[12.75,37.77,100],"t":46},{"o":{"x":0.167,"y":0.026},"i":{"x":0.833,"y":1.014},"s":[28.52,43.99,100],"t":47},{"o":{"x":0.167,"y":0.012},"i":{"x":0.833,"y":0.98},"s":[5.62,20.66,100],"t":48},{"o":{"x":0.167,"y":-0.026},"i":{"x":0.833,"y":0.932},"s":[32.35,9.79,100],"t":49},{"o":{"x":0.167,"y":-0.377},"i":{"x":0.833,"y":0.825},"s":[12.03,-9.37,100],"t":50},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.942},"s":[15.71,23.51,100],"t":51},{"o":{"x":0.167,"y":-0.193},"i":{"x":0.833,"y":1.214},"s":[19.76,43.45,100],"t":52},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.906},"s":[18.54,39.54,100],"t":53},{"o":{"x":0.167,"y":0.711},"i":{"x":0.833,"y":-0.566},"s":[22.89,14.2,100],"t":54},{"o":{"x":0.167,"y":0.088},"i":{"x":0.833,"y":1.073},"s":[23.47,26.81,100],"t":55},{"o":{"x":0.167,"y":0.039},"i":{"x":0.833,"y":0.938},"s":[33.76,4.55,100],"t":56},{"o":{"x":0.167,"y":-0.247},"i":{"x":0.833,"y":1.021},"s":[14.41,-18.79,100],"t":57},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":0.833},"s":[19.29,9.99,100],"t":58},{"s":[13.19,20.28,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.626},"s":[136.16,149.89,0],"t":9},{"o":{"x":0.167,"y":0.107},"i":{"x":0.833,"y":0.768},"s":[134.67,150.39,0],"t":10},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.827},"s":[129.74,153.03,0],"t":11},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.844},"s":[122.49,160.51,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.848},"s":[120.13,172.51,0],"t":13},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.847},"s":[123.11,182.61,0],"t":14},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.846},"s":[127.44,189.78,0],"t":15},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[131.81,194.95,0],"t":16},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[135.92,198.76,0],"t":17},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[139.72,201.58,0],"t":18},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[143.23,203.63,0],"t":19},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[146.46,205.07,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[149.44,205.98,0],"t":21},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[152.18,206.43,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[154.7,206.46,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[156.97,206.12,0],"t":24},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[159,205.45,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[160.79,204.51,0],"t":26},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[162.33,203.37,0],"t":27},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[163.63,202.11,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[164.72,200.8,0],"t":29},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[165.64,199.49,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[166.43,198.22,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[167.1,197.01,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[167.69,195.88,0],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[168.22,194.83,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[168.7,193.85,0],"t":35},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.837},"s":[169.15,192.97,0],"t":36},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.837},"s":[169.56,192.14,0],"t":37},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.837},"s":[169.96,191.36,0],"t":38},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[170.36,190.62,0],"t":39},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[170.74,189.91,0],"t":40},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.84},"s":[171.11,189.26,0],"t":41},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.841},"s":[171.45,188.64,0],"t":42},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[171.78,188.08,0],"t":43},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[172.07,187.57,0],"t":44},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.845},"s":[172.34,187.1,0],"t":45},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[172.58,186.69,0],"t":46},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.85},"s":[172.79,186.33,0],"t":47},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.848},"s":[172.95,186.03,0],"t":48},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.842},"s":[173.08,185.78,0],"t":49},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[173.17,185.57,0],"t":50},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.84},"s":[173.22,185.37,0],"t":51},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.836},"s":[173.24,185.18,0],"t":52},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.832},"s":[173.22,185,0],"t":53},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.828},"s":[173.17,184.84,0],"t":54},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.826},"s":[173.08,184.71,0],"t":55},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.826},"s":[172.96,184.59,0],"t":56},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[172.81,184.5,0],"t":57},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.833},"s":[172.64,184.43,0],"t":58},{"s":[172.45,184.38,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":9},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":14},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":36},{"s":[0],"t":52}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":44},{"ty":4,"nm":"Shape Layer 7","sr":1,"st":5,"op":60,"ip":5,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.747},"s":[32.76,76.03,100],"t":5},{"o":{"x":0.167,"y":0.075},"i":{"x":0.833,"y":0.927},"s":[30.43,63.98,100],"t":6},{"o":{"x":0.167,"y":-0.593},"i":{"x":0.833,"y":1.16},"s":[53.57,48.57,100],"t":7},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.95},"s":[50.72,37.02,100],"t":8},{"o":{"x":0.167,"y":-0.126},"i":{"x":0.833,"y":0.652},"s":[59.04,63.56,100],"t":9},{"o":{"x":0.167,"y":0.11},"i":{"x":0.833,"y":0.996},"s":[55.73,33.61,100],"t":10},{"o":{"x":0.167,"y":-0.004},"i":{"x":0.833,"y":0.991},"s":[45.23,45.15,100],"t":11},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.717},"s":[55.2,37.95,100],"t":12},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":0.956},"s":[46.3,61.37,100],"t":13},{"o":{"x":0.167,"y":-0.095},"i":{"x":0.833,"y":0.686},"s":[24.92,68.19,100],"t":14},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.935},"s":[34.92,72.69,100],"t":15},{"o":{"x":0.167,"y":-0.292},"i":{"x":0.833,"y":0.826},"s":[62.58,56.21,100],"t":16},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.867},"s":[56.44,48.4,100],"t":17},{"o":{"x":0.167,"y":0.223},"i":{"x":0.833,"y":0.512},"s":[49.75,43.97,100],"t":18},{"o":{"x":0.167,"y":0.1},"i":{"x":0.833,"y":0.973},"s":[45.78,55.02,100],"t":19},{"o":{"x":0.167,"y":-0.041},"i":{"x":0.833,"y":0.898},"s":[26.49,76.97,100],"t":20},{"o":{"x":0.167,"y":0.465},"i":{"x":0.833,"y":0.724},"s":[39.43,51.43,100],"t":21},{"o":{"x":0.167,"y":0.119},"i":{"x":0.833,"y":0.924},"s":[42.26,53.38,100],"t":22},{"o":{"x":0.167,"y":-0.912},"i":{"x":0.833,"y":0.904},"s":[48.79,71.51,100],"t":23},{"o":{"x":0.167,"y":0.63},"i":{"x":0.833,"y":11.64},"s":[48.24,50.33,100],"t":24},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":1.179},"s":[48.16,70.15,100],"t":25},{"o":{"x":0.167,"y":0.057},"i":{"x":0.833,"y":0.897},"s":[58.9,58.43,100],"t":26},{"o":{"x":0.167,"y":0.428},"i":{"x":0.833,"y":1.129},"s":[25.13,36.88,100],"t":27},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.842},"s":[16.97,58.5,100],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.887},"s":[37.7,76.84,100],"t":29},{"o":{"x":0.167,"y":0.319},"i":{"x":0.833,"y":1.072},"s":[56.26,46,100],"t":30},{"o":{"x":0.167,"y":0.039},"i":{"x":0.833,"y":0.783},"s":[62.81,66.15,100],"t":31},{"o":{"x":0.167,"y":0.135},"i":{"x":0.833,"y":0.926},"s":[50.63,45.96,100],"t":32},{"o":{"x":0.167,"y":-0.662},"i":{"x":0.833,"y":1.008},"s":[31.09,45.55,100],"t":33},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":1.628},"s":[33.27,64.28,100],"t":34},{"o":{"x":0.167,"y":0.074},"i":{"x":0.833,"y":1.039},"s":[30.89,48.49,100],"t":35},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.925},"s":[51.22,30.15,100],"t":36},{"o":{"x":0.167,"y":-0.727},"i":{"x":0.833,"y":1.219},"s":[21.31,15.25,100],"t":37},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.892},"s":[24.38,42.59,100],"t":38},{"o":{"x":0.167,"y":0.367},"i":{"x":0.833,"y":1.243},"s":[13.22,5.7,100],"t":39},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.832},"s":[9.94,27.71,100],"t":40},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.936},"s":[22.77,8.96,100],"t":41},{"o":{"x":0.167,"y":-0.284},"i":{"x":0.833,"y":0.362},"s":[35.85,9.71,100],"t":42},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":0.887},"s":[32.88,-13.42,100],"t":43},{"o":{"x":0.167,"y":0.315},"i":{"x":0.833,"y":1.174},"s":[13.14,3.71,100],"t":44},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":0.937},"s":[6.06,30.01,100],"t":45},{"o":{"x":0.167,"y":-0.264},"i":{"x":0.833,"y":1.142},"s":[27.91,10.79,100],"t":46},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":0.933},"s":[22.66,7.86,100],"t":47},{"o":{"x":0.167,"y":-0.344},"i":{"x":0.833,"y":0.849},"s":[36.83,19.21,100],"t":48},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":1.055},"s":[34.07,-7.08,100],"t":49},{"o":{"x":0.167,"y":0.033},"i":{"x":0.833,"y":1.398},"s":[31.81,7.89,100],"t":50},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.884},"s":[35.56,34.44,100],"t":51},{"o":{"x":0.167,"y":0.296},"i":{"x":0.833,"y":0.911},"s":[13.86,36.02,100],"t":52},{"o":{"x":0.167,"y":1.317},"i":{"x":0.833,"y":3.369},"s":[5.36,6.65,100],"t":53},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":1.072},"s":[4.78,16.1,100],"t":54},{"o":{"x":0.167,"y":0.039},"i":{"x":0.833,"y":0.975},"s":[21.68,24.12,100],"t":55},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.912},"s":[-9.85,-8.29,100],"t":56},{"o":{"x":0.167,"y":1.504},"i":{"x":0.833,"y":0.193},"s":[12.23,11.68,100],"t":57},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":0.833},"s":[13.53,8.25,100],"t":58},{"s":[24.76,29.12,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.638},"s":[131.81,150.55,0],"t":5},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.768},"s":[130.5,149.81,0],"t":6},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.825},"s":[125.98,147.72,0],"t":7},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[117.64,145.08,0],"t":8},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[108.28,142.92,0],"t":9},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[100.12,141.07,0],"t":10},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.845},"s":[93.37,139.22,0],"t":11},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[87.8,137.22,0],"t":12},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.844},"s":[83.17,135.04,0],"t":13},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[79.34,132.68,0],"t":14},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[76.21,130.16,0],"t":15},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[73.68,127.54,0],"t":16},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[71.69,124.88,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[70.17,122.27,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[69.04,119.75,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[68.22,117.37,0],"t":20},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[67.66,115.16,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[67.3,113.1,0],"t":22},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[67.12,111.16,0],"t":23},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[67.07,109.36,0],"t":24},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[67.11,107.68,0],"t":25},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[67.23,106.13,0],"t":26},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[67.39,104.7,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[67.6,103.38,0],"t":28},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[67.82,102.18,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[68.05,101.09,0],"t":30},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[68.29,100.1,0],"t":31},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[68.51,99.21,0],"t":32},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[68.73,98.42,0],"t":33},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[68.92,97.73,0],"t":34},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[69.09,97.13,0],"t":35},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.85},"s":[69.24,96.61,0],"t":36},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.853},"s":[69.36,96.18,0],"t":37},{"o":{"x":0.167,"y":0.192},"i":{"x":0.833,"y":0.858},"s":[69.45,95.83,0],"t":38},{"o":{"x":0.167,"y":0.201},"i":{"x":0.833,"y":0.865},"s":[69.51,95.56,0],"t":39},{"o":{"x":0.167,"y":0.218},"i":{"x":0.833,"y":0.873},"s":[69.54,95.36,0],"t":40},{"o":{"x":0.167,"y":0.243},"i":{"x":0.833,"y":0.833},"s":[69.55,95.24,0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.765},"s":[69.52,95.19,0],"t":42},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.791},"s":[69.47,95.2,0],"t":43},{"o":{"x":0.167,"y":0.139},"i":{"x":0.833,"y":0.816},"s":[69.4,95.27,0],"t":44},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.828},"s":[69.3,95.41,0],"t":45},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[69.19,95.57,0],"t":46},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[69.08,95.75,0],"t":47},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.835},"s":[68.95,95.93,0],"t":48},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.837},"s":[68.83,96.11,0],"t":49},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.829},"s":[68.71,96.29,0],"t":50},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.824},"s":[68.6,96.47,0],"t":51},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.828},"s":[68.47,96.65,0],"t":52},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.831},"s":[68.32,96.84,0],"t":53},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[68.14,97.01,0],"t":54},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.835},"s":[67.95,97.18,0],"t":55},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.837},"s":[67.75,97.34,0],"t":56},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.839},"s":[67.55,97.47,0],"t":57},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.833},"s":[67.34,97.59,0],"t":58},{"s":[67.15,97.68,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":32},{"s":[0],"t":48}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":45},{"ty":4,"nm":"Shape Layer 6","sr":1,"st":12,"op":60,"ip":12,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.887},"s":[58.37,60.8,100],"t":12},{"o":{"x":0.167,"y":0.32},"i":{"x":0.833,"y":1.117},"s":[36.86,57.14,100],"t":13},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":0.839},"s":[29.27,54.56,100],"t":14},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.919},"s":[47.55,39,100],"t":15},{"o":{"x":0.167,"y":-2.464},"i":{"x":0.833,"y":-2.744},"s":[64.67,27.91,100],"t":16},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":0.896},"s":[64.11,47.68,100],"t":17},{"o":{"x":0.167,"y":0.42},"i":{"x":0.833,"y":1.123},"s":[39.5,69.09,100],"t":18},{"o":{"x":0.167,"y":0.05},"i":{"x":0.833,"y":1.005},"s":[33.4,52.3,100],"t":19},{"o":{"x":0.167,"y":0.004},"i":{"x":0.833,"y":0.919},"s":[48.49,56.97,100],"t":20},{"o":{"x":0.167,"y":-3.282},"i":{"x":0.833,"y":-0.384},"s":[32.56,35.85,100],"t":21},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.766},"s":[32.96,56.95,100],"t":22},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.858},"s":[39.11,42.14,100],"t":23},{"o":{"x":0.167,"y":0.201},"i":{"x":0.833,"y":1.241},"s":[50.27,72.38,100],"t":24},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.932},"s":[58.14,48.42,100],"t":25},{"o":{"x":0.167,"y":-0.378},"i":{"x":0.833,"y":0.957},"s":[27.45,42.62,100],"t":26},{"o":{"x":0.167,"y":-0.089},"i":{"x":0.833,"y":1.764},"s":[33,65.95,100],"t":27},{"o":{"x":0.167,"y":0.075},"i":{"x":0.833,"y":0.911},"s":[30.32,75.39,100],"t":28},{"o":{"x":0.167,"y":1.415},"i":{"x":0.833,"y":1.018},"s":[57.55,67.95,100],"t":29},{"o":{"x":0.167,"y":0.015},"i":{"x":0.833,"y":0.145},"s":[59.26,76.31,100],"t":30},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":1.007},"s":[57.18,48.5,100],"t":31},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":0.944},"s":[37.9,29.54,100],"t":32},{"o":{"x":0.167,"y":-0.172},"i":{"x":0.833,"y":0.856},"s":[58.87,57.62,100],"t":33},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":1},"s":[52.02,55.73,100],"t":34},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1.217},"s":[47.07,51.01,100],"t":35},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.943},"s":[51.99,26.53,100],"t":36},{"o":{"x":0.167,"y":-0.179},"i":{"x":0.833,"y":1.104},"s":[34.23,69.38,100],"t":37},{"o":{"x":0.167,"y":0.046},"i":{"x":0.833,"y":1.008},"s":[39.86,50.25,100],"t":38},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":0.912},"s":[27.17,68.49,100],"t":39},{"o":{"x":0.167,"y":1.675},"i":{"x":0.833,"y":-0.011},"s":[41.01,31.16,100],"t":40},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":1.17},"s":[41.73,28.8,100],"t":41},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":0.916},"s":[49.81,16.04,100],"t":42},{"o":{"x":0.167,"y":7.85},"i":{"x":0.833,"y":1.131},"s":[25.31,13.26,100],"t":43},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":-1.033},"s":[25.05,41.5,100],"t":44},{"o":{"x":0.167,"y":0.087},"i":{"x":0.833,"y":0.9},"s":[25.72,5.88,100],"t":45},{"o":{"x":0.167,"y":0.491},"i":{"x":0.833,"y":0.828},"s":[41.52,4.11,100],"t":46},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":1.048},"s":[44.75,22.85,100],"t":47},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.854},"s":[48.16,7.3,100],"t":48},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":0.425},"s":[42.77,2.28,100],"t":49},{"o":{"x":0.167,"y":0.097},"i":{"x":0.833,"y":0.84},"s":[38.74,15,100],"t":50},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.932},"s":[14.98,24.15,100],"t":51},{"o":{"x":0.167,"y":-0.362},"i":{"x":0.833,"y":0.381},"s":[-6.84,16.62,100],"t":52},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":1.031},"s":[-2.76,2.13,100],"t":53},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":0.941},"s":[23.52,23.09,100],"t":54},{"o":{"x":0.167,"y":-0.197},"i":{"x":0.833,"y":0.726},"s":[-12.46,18.61,100],"t":55},{"o":{"x":0.167,"y":0.12},"i":{"x":0.833,"y":0.914},"s":[-1.76,14.75,100],"t":56},{"o":{"x":0.167,"y":2.415},"i":{"x":0.833,"y":2.387},"s":[22.71,-4.94,100],"t":57},{"o":{"x":0.167,"y":0.079},"i":{"x":0.833,"y":0.833},"s":[23.59,27.01,100],"t":58},{"s":[8.15,-2.66,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.603},"s":[131.36,148.34,0],"t":12},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.765},"s":[132.34,147.13,0],"t":13},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[135.67,142.21,0],"t":14},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[141.16,132.75,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[146.54,121.74,0],"t":16},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[150.71,111.82,0],"t":17},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[153.84,103.4,0],"t":18},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.845},"s":[156.25,96.23,0],"t":19},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[158.15,90.07,0],"t":20},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[159.69,84.72,0],"t":21},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[160.96,80.03,0],"t":22},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[162.02,75.89,0],"t":23},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[162.91,72.21,0],"t":24},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[163.67,68.93,0],"t":25},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[164.31,65.99,0],"t":26},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[164.87,63.35,0],"t":27},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[165.34,60.98,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[165.75,58.84,0],"t":29},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[166.09,56.92,0],"t":30},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[166.38,55.18,0],"t":31},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[166.62,53.6,0],"t":32},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[166.82,52.17,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[166.97,50.86,0],"t":34},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[167.09,49.67,0],"t":35},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[167.17,48.58,0],"t":36},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[167.2,47.6,0],"t":37},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[167.19,46.72,0],"t":38},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[167.13,45.92,0],"t":39},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[167.04,45.19,0],"t":40},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[166.92,44.54,0],"t":41},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[166.8,43.94,0],"t":42},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[166.66,43.4,0],"t":43},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[166.52,42.9,0],"t":44},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[166.38,42.44,0],"t":45},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[166.24,42.02,0],"t":46},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[166.12,41.63,0],"t":47},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[166.01,41.28,0],"t":48},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[165.92,40.95,0],"t":49},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[165.84,40.64,0],"t":50},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.834},"s":[165.79,40.37,0],"t":51},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.826},"s":[165.76,40.11,0],"t":52},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.826},"s":[165.76,39.86,0],"t":53},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[165.79,39.59,0],"t":54},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.828},"s":[165.84,39.3,0],"t":55},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.829},"s":[165.93,39,0],"t":56},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.831},"s":[166.03,38.68,0],"t":57},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.833},"s":[166.17,38.36,0],"t":58},{"s":[166.32,38.05,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":17},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":39},{"s":[0],"t":55}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":46},{"ty":4,"nm":"Shape Layer 5","sr":1,"st":8,"op":60,"ip":8,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.87},"s":[58.33,32.55,100],"t":8},{"o":{"x":0.167,"y":0.231},"i":{"x":0.833,"y":0.948},"s":[52.22,40.84,100],"t":9},{"o":{"x":0.167,"y":-0.135},"i":{"x":0.833,"y":1.287},"s":[48.76,55.27,100],"t":10},{"o":{"x":0.167,"y":0.065},"i":{"x":0.833,"y":0.885},"s":[50.08,53.48,100],"t":11},{"o":{"x":0.167,"y":0.301},"i":{"x":0.833,"y":0.741},"s":[44.22,46.24,100],"t":12},{"o":{"x":0.167,"y":0.123},"i":{"x":0.833,"y":1.394},"s":[41.98,41.29,100],"t":13},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.896},"s":[37.26,44.51,100],"t":14},{"o":{"x":0.167,"y":0.413},"i":{"x":0.833,"y":1.334},"s":[64.3,23.19,100],"t":15},{"o":{"x":0.167,"y":0.067},"i":{"x":0.833,"y":0.923},"s":[71.14,37.61,100],"t":16},{"o":{"x":0.167,"y":-0.941},"i":{"x":0.833,"y":0.286},"s":[36.9,67.97,100],"t":17},{"o":{"x":0.167,"y":0.094},"i":{"x":0.833,"y":1.026},"s":[39.69,52.95,100],"t":18},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.88},"s":[60.78,53.85,100],"t":19},{"o":{"x":0.167,"y":0.275},"i":{"x":0.833,"y":1.062},"s":[32.98,24.9,100],"t":20},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.861},"s":[20.86,40.45,100],"t":21},{"o":{"x":0.167,"y":0.208},"i":{"x":0.833,"y":0.922},"s":[41.99,39.23,100],"t":22},{"o":{"x":0.167,"y":-1.187},"i":{"x":0.833,"y":-1.537},"s":[56.13,47.16,100],"t":23},{"o":{"x":0.167,"y":0.086},"i":{"x":0.833,"y":0.967},"s":[55.2,47.17,100],"t":24},{"o":{"x":0.167,"y":-0.054},"i":{"x":0.833,"y":0.925},"s":[27.91,52.37,100],"t":25},{"o":{"x":0.167,"y":-0.754},"i":{"x":0.833,"y":1.098},"s":[44.49,74.25,100],"t":26},{"o":{"x":0.167,"y":0.045},"i":{"x":0.833,"y":1.09},"s":[42.84,74.04,100],"t":27},{"o":{"x":0.167,"y":0.043},"i":{"x":0.833,"y":0.908},"s":[46.43,86.32,100],"t":28},{"o":{"x":0.167,"y":0.913},"i":{"x":0.833,"y":-0.56},"s":[38.97,75.14,100],"t":29},{"o":{"x":0.167,"y":0.088},"i":{"x":0.833,"y":1.128},"s":[38.23,68.55,100],"t":30},{"o":{"x":0.167,"y":0.051},"i":{"x":0.833,"y":0.943},"s":[24.95,36.9,100],"t":31},{"o":{"x":0.167,"y":-0.177},"i":{"x":0.833,"y":0.755},"s":[58.64,41.73,100],"t":32},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":0.967},"s":[47.84,59.39,100],"t":33},{"o":{"x":0.167,"y":-0.054},"i":{"x":0.833,"y":0.958},"s":[26.93,49.78,100],"t":34},{"o":{"x":0.167,"y":-0.086},"i":{"x":0.833,"y":0.921},"s":[39.58,34.04,100],"t":35},{"o":{"x":0.167,"y":-1.655},"i":{"x":0.833,"y":1.51},"s":[33.34,36.59,100],"t":36},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":1.243},"s":[33.64,34.06,100],"t":37},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":1.116},"s":[31.52,53.69,100],"t":38},{"o":{"x":0.167,"y":0.048},"i":{"x":0.833,"y":1.007},"s":[39.85,24.32,100],"t":39},{"o":{"x":0.167,"y":0.007},"i":{"x":0.833,"y":1.027},"s":[19.93,28.58,100],"t":40},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.952},"s":[41.61,27.26,100],"t":41},{"o":{"x":0.167,"y":-0.112},"i":{"x":0.833,"y":0.945},"s":[12.95,0.16,100],"t":42},{"o":{"x":0.167,"y":-0.158},"i":{"x":0.833,"y":0.934},"s":[25.16,21.03,100],"t":43},{"o":{"x":0.167,"y":-0.318},"i":{"x":0.833,"y":-0.358},"s":[20.95,-5.76,100],"t":44},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.956},"s":[21.82,-6.25,100],"t":45},{"o":{"x":0.167,"y":-0.095},"i":{"x":0.833,"y":0.922},"s":[35.21,-2.16,100],"t":46},{"o":{"x":0.167,"y":-1.25},"i":{"x":0.833,"y":2.789},"s":[28.95,8.66,100],"t":47},{"o":{"x":0.167,"y":0.08},"i":{"x":0.833,"y":0.827},"s":[29.34,4.89,100],"t":48},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.698},"s":[20.54,0.31,100],"t":49},{"o":{"x":0.167,"y":0.115},"i":{"x":0.833,"y":0.95},"s":[11.04,1.92,100],"t":50},{"o":{"x":0.167,"y":-0.126},"i":{"x":0.833,"y":0.627},"s":[-13.94,27.4,100],"t":51},{"o":{"x":0.167,"y":0.107},"i":{"x":0.833,"y":0.957},"s":[-4.01,6.07,100],"t":52},{"o":{"x":0.167,"y":-0.089},"i":{"x":0.833,"y":0.796},"s":[30.55,8.43,100],"t":53},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":0.988},"s":[13.83,29.22,100],"t":54},{"o":{"x":0.167,"y":-0.015},"i":{"x":0.833,"y":0.858},"s":[-10.34,24.33,100],"t":55},{"o":{"x":0.167,"y":0.202},"i":{"x":0.833,"y":1.006},"s":[10.24,2.59,100],"t":56},{"o":{"x":0.167,"y":0.005},"i":{"x":0.833,"y":0.939},"s":[24.72,24.2,100],"t":57},{"o":{"x":0.167,"y":-0.223},"i":{"x":0.833,"y":0.833},"s":[9.25,12.5,100],"t":58},{"s":[13.45,9.97,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.549},"s":[132.93,150.64,0],"t":8},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.761},"s":[132.57,149.51,0],"t":9},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[130.54,144.76,0],"t":10},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[126.07,136.36,0],"t":11},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.848},"s":[120.59,127.4,0],"t":12},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.847},"s":[115.81,119.62,0],"t":13},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[112.06,113,0],"t":14},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[109.18,107.23,0],"t":15},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[106.98,102.14,0],"t":16},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[105.3,97.6,0],"t":17},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[104.01,93.51,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[103.01,89.81,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[102.23,86.45,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[101.61,83.38,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[101.08,80.61,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[100.64,78.1,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[100.26,75.83,0],"t":24},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[99.93,73.76,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[99.64,71.88,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[99.38,70.17,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[99.16,68.6,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[98.96,67.17,0],"t":29},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.79,65.86,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.64,64.66,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.53,63.56,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.43,62.56,0],"t":33},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.37,61.63,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.33,60.78,0],"t":35},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.31,60,0],"t":36},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.33,59.28,0],"t":37},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.37,58.62,0],"t":38},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.44,58.02,0],"t":39},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[98.53,57.47,0],"t":40},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[98.65,56.97,0],"t":41},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[98.79,56.53,0],"t":42},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[98.96,56.13,0],"t":43},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[99.14,55.78,0],"t":44},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[99.34,55.47,0],"t":45},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.838},"s":[99.55,55.22,0],"t":46},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.835},"s":[99.78,55.02,0],"t":47},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.834},"s":[100.01,54.86,0],"t":48},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[100.25,54.74,0],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.831},"s":[100.49,54.63,0],"t":50},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.832},"s":[100.74,54.54,0],"t":51},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[101,54.48,0],"t":52},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.834},"s":[101.26,54.45,0],"t":53},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.836},"s":[101.53,54.45,0],"t":54},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[101.79,54.47,0],"t":55},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.838},"s":[102.04,54.51,0],"t":56},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[102.28,54.56,0],"t":57},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.833},"s":[102.51,54.64,0],"t":58},{"s":[102.71,54.73,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":35},{"s":[0],"t":51}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":47},{"ty":4,"nm":"Shape Layer 4","sr":1,"st":2,"op":60,"ip":2,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.052},"s":[44.63,43.3,100],"t":2},{"o":{"x":0.167,"y":0.032},"i":{"x":0.833,"y":0.827},"s":[32.14,53.86,100],"t":3},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":1.046},"s":[52.46,54.43,100],"t":4},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":0.942},"s":[74.26,58.07,100],"t":5},{"o":{"x":0.167,"y":-0.195},"i":{"x":0.833,"y":0.847},"s":[40.38,29.51,100],"t":6},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":1.029},"s":[50.53,31.77,100],"t":7},{"o":{"x":0.167,"y":0.022},"i":{"x":0.833,"y":0.79},"s":[59.03,38.36,100],"t":8},{"o":{"x":0.167,"y":0.138},"i":{"x":0.833,"y":0.94},"s":[47.54,53.24,100],"t":9},{"o":{"x":0.167,"y":-0.209},"i":{"x":0.833,"y":0.855},"s":[30.06,47.55,100],"t":10},{"o":{"x":0.167,"y":0.196},"i":{"x":0.833,"y":1.023},"s":[35.05,49.83,100],"t":11},{"o":{"x":0.167,"y":0.018},"i":{"x":0.833,"y":1.369},"s":[38.73,27.36,100],"t":12},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":0.894},"s":[34.01,57.95,100],"t":13},{"o":{"x":0.167,"y":0.384},"i":{"x":0.833,"y":1.223},"s":[59.66,52.22,100],"t":14},{"o":{"x":0.167,"y":0.061},"i":{"x":0.833,"y":0.92},"s":[66.78,47.2,100],"t":15},{"o":{"x":0.167,"y":-1.772},"i":{"x":0.833,"y":-0.268},"s":[40.64,56.76,100],"t":16},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":1.041},"s":[41.81,61.05,100],"t":17},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":0.882},"s":[58.52,50.41,100],"t":18},{"o":{"x":0.167,"y":0.286},"i":{"x":0.833,"y":1.101},"s":[33.5,24.7,100],"t":19},{"o":{"x":0.167,"y":0.046},"i":{"x":0.833,"y":0.862},"s":[23.2,25.57,100],"t":20},{"o":{"x":0.167,"y":0.21},"i":{"x":0.833,"y":0.951},"s":[45.94,49.11,100],"t":21},{"o":{"x":0.167,"y":-0.12},"i":{"x":0.833,"y":0.63},"s":[60.85,26.63,100],"t":22},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.959},"s":[54.75,43.41,100],"t":23},{"o":{"x":0.167,"y":-0.082},"i":{"x":0.833,"y":0.798},"s":[33.77,61.6,100],"t":24},{"o":{"x":0.167,"y":0.142},"i":{"x":0.833,"y":0.989},"s":[44.34,72.39,100],"t":25},{"o":{"x":0.167,"y":-0.013},"i":{"x":0.833,"y":0.836},"s":[59.37,56.1,100],"t":26},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.88},"s":[46.41,83.39,100],"t":27},{"o":{"x":0.167,"y":0.275},"i":{"x":0.833,"y":0.702},"s":[33.94,66.74,100],"t":28},{"o":{"x":0.167,"y":0.116},"i":{"x":0.833,"y":0.962},"s":[28.52,65.07,100],"t":29},{"o":{"x":0.167,"y":-0.069},"i":{"x":0.833,"y":0.975},"s":[14.54,57.81,100],"t":30},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":0.682},"s":[22.17,32.89,100],"t":31},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.99},"s":[16.84,48.99,100],"t":32},{"o":{"x":0.167,"y":-0.012},"i":{"x":0.833,"y":0.867},"s":[1.85,40.01,100],"t":33},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":0.991},"s":[14.99,47.09,100],"t":34},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":1.11},"s":[22.78,18.97,100],"t":35},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":0.919},"s":[15.79,0.66,100],"t":36},{"o":{"x":0.167,"y":-2.466},"i":{"x":0.833,"y":-0.962},"s":[32.01,21.69,100],"t":37},{"o":{"x":0.167,"y":0.087},"i":{"x":0.833,"y":1.026},"s":[31.48,7.14,100],"t":38},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":1.059},"s":[19.53,21.89,100],"t":39},{"o":{"x":0.167,"y":0.034},"i":{"x":0.833,"y":0.936},"s":[35.27,19.68,100],"t":40},{"o":{"x":0.167,"y":-0.269},"i":{"x":0.833,"y":0.744},"s":[8.41,-5.06,100],"t":41},{"o":{"x":0.167,"y":0.124},"i":{"x":0.833,"y":1.021},"s":[14.77,-1.13,100],"t":42},{"o":{"x":0.167,"y":0.017},"i":{"x":0.833,"y":0.994},"s":[27.92,-2.64,100],"t":43},{"o":{"x":0.167,"y":-0.006},"i":{"x":0.833,"y":0.998},"s":[11.5,1.56,100],"t":44},{"o":{"x":0.167,"y":-0.002},"i":{"x":0.833,"y":0.948},"s":[26.81,-1.43,100],"t":45},{"o":{"x":0.167,"y":-0.138},"i":{"x":0.833,"y":1.044},"s":[11.83,17.73,100],"t":46},{"o":{"x":0.167,"y":0.029},"i":{"x":0.833,"y":0.98},"s":[17.46,29.79,100],"t":47},{"o":{"x":0.167,"y":-0.027},"i":{"x":0.833,"y":1.284},"s":[8.88,6.14,100],"t":48},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.93},"s":[15.35,9.58,100],"t":49},{"o":{"x":0.167,"y":-0.427},"i":{"x":0.833,"y":0.369},"s":[-13.2,32.91,100],"t":50},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":0.885},"s":[-8.53,16.23,100],"t":51},{"o":{"x":0.167,"y":0.306},"i":{"x":0.833,"y":1.145},"s":[22.1,-4.03,100],"t":52},{"o":{"x":0.167,"y":0.053},"i":{"x":0.833,"y":0.872},"s":[33.58,15.19,100],"t":53},{"o":{"x":0.167,"y":0.239},"i":{"x":0.833,"y":1.048},"s":[2.18,26.32,100],"t":54},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":0.954},"s":[-14.68,4.34,100],"t":55},{"o":{"x":0.167,"y":-0.101},"i":{"x":0.833,"y":1.082},"s":[11.9,36.5,100],"t":56},{"o":{"x":0.167,"y":0.041},"i":{"x":0.833,"y":0.894},"s":[-0.11,20.14,100],"t":57},{"o":{"x":0.167,"y":0.394},"i":{"x":0.833,"y":0.833},"s":[23.74,21.21,100],"t":58},{"s":[30.13,0.14,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.599},"s":[133.76,152.55,0],"t":2},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.765},"s":[133.23,153.65,0],"t":3},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[131.08,157.74,0],"t":4},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[126.28,164.43,0],"t":5},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.847},"s":[119.83,170.52,0],"t":6},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[113.63,174.93,0],"t":7},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[108.29,178.3,0],"t":8},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[103.76,181.12,0],"t":9},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[99.92,183.62,0],"t":10},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[96.63,185.92,0],"t":11},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[93.79,188.05,0],"t":12},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[91.33,190.05,0],"t":13},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[89.18,191.93,0],"t":14},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[87.3,193.69,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[85.65,195.35,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[84.2,196.9,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[82.93,198.34,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[81.82,199.7,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[80.85,200.96,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[80,202.13,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[79.27,203.22,0],"t":22},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[78.64,204.22,0],"t":23},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[78.11,205.14,0],"t":24},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[77.66,205.99,0],"t":25},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[77.29,206.76,0],"t":26},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[76.98,207.46,0],"t":27},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[76.74,208.1,0],"t":28},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.845},"s":[76.56,208.66,0],"t":29},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.847},"s":[76.42,209.15,0],"t":30},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.848},"s":[76.32,209.58,0],"t":31},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.851},"s":[76.26,209.95,0],"t":32},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.854},"s":[76.23,210.26,0],"t":33},{"o":{"x":0.167,"y":0.194},"i":{"x":0.833,"y":0.842},"s":[76.21,210.5,0],"t":34},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.828},"s":[76.21,210.68,0],"t":35},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.826},"s":[76.23,210.84,0],"t":36},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.826},"s":[76.3,211,0],"t":37},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.827},"s":[76.41,211.14,0],"t":38},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.829},"s":[76.54,211.27,0],"t":39},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[76.69,211.39,0],"t":40},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.833},"s":[76.87,211.49,0],"t":41},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.836},"s":[77.06,211.58,0],"t":42},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.837},"s":[77.25,211.66,0],"t":43},{"o":{"x":0.167,"y":0.171},"i":{"x":0.833,"y":0.838},"s":[77.43,211.76,0],"t":44},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.839},"s":[77.59,211.86,0],"t":45},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[77.74,211.97,0],"t":46},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.842},"s":[77.88,212.08,0],"t":47},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[78,212.19,0],"t":48},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[78.1,212.3,0],"t":49},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.847},"s":[78.18,212.41,0],"t":50},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.849},"s":[78.24,212.51,0],"t":51},{"o":{"x":0.167,"y":0.185},"i":{"x":0.833,"y":0.85},"s":[78.28,212.6,0],"t":52},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.85},"s":[78.31,212.67,0],"t":53},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.844},"s":[78.32,212.74,0],"t":54},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.831},"s":[78.31,212.8,0],"t":55},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.82},"s":[78.28,212.83,0],"t":56},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.816},"s":[78.25,212.85,0],"t":57},{"o":{"x":0.167,"y":0.152},"i":{"x":0.833,"y":0.833},"s":[78.2,212.86,0],"t":58},{"s":[78.14,212.84,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":2},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":29},{"s":[0],"t":45}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":48},{"ty":4,"nm":"Shape Layer 3","sr":1,"st":7,"op":60,"ip":7,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.852},"s":[59.32,51.99,100],"t":7},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.91},"s":[44.47,51.66,100],"t":8},{"o":{"x":0.167,"y":1.162},"i":{"x":0.833,"y":0.429},"s":[32.92,63.32,100],"t":9},{"o":{"x":0.167,"y":0.098},"i":{"x":0.833,"y":1.033},"s":[32.02,62.67,100],"t":10},{"o":{"x":0.167,"y":0.024},"i":{"x":0.833,"y":0.841},"s":[26.79,28.4,100],"t":11},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.733},"s":[34.12,43.47,100],"t":12},{"o":{"x":0.167,"y":0.121},"i":{"x":0.833,"y":1.032},"s":[40.74,63.36,100],"t":13},{"o":{"x":0.167,"y":0.023},"i":{"x":0.833,"y":0.978},"s":[55.29,73.54,100],"t":14},{"o":{"x":0.167,"y":-0.03},"i":{"x":0.833,"y":0.937},"s":[35.2,63.28,100],"t":15},{"o":{"x":0.167,"y":-0.261},"i":{"x":0.833,"y":0.63},"s":[49.99,57.33,100],"t":16},{"o":{"x":0.167,"y":0.108},"i":{"x":0.833,"y":0.922},"s":[46.41,43.8,100],"t":17},{"o":{"x":0.167,"y":-1.116},"i":{"x":0.833,"y":0.758},"s":[34.1,32.57,100],"t":18},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":-0.253},"s":[34.95,19.46,100],"t":19},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":0.962},"s":[36.58,48.87,100],"t":20},{"o":{"x":0.167,"y":-0.069},"i":{"x":0.833,"y":0.895},"s":[59.46,43.03,100],"t":21},{"o":{"x":0.167,"y":0.41},"i":{"x":0.833,"y":0.929},"s":[46.91,37.99,100],"t":22},{"o":{"x":0.167,"y":-0.493},"i":{"x":0.833,"y":-2.344},"s":[43.7,53.83,100],"t":23},{"o":{"x":0.167,"y":0.085},"i":{"x":0.833,"y":1},"s":[44.17,56.33,100],"t":24},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":0.913},"s":[62.27,38.68,100],"t":25},{"o":{"x":0.167,"y":1.831},"i":{"x":0.833,"y":1.203},"s":[44.08,56.82,100],"t":26},{"o":{"x":0.167,"y":0.059},"i":{"x":0.833,"y":1.094},"s":[43.21,71.67,100],"t":27},{"o":{"x":0.167,"y":0.044},"i":{"x":0.833,"y":0.722},"s":[46.19,53.48,100],"t":28},{"o":{"x":0.167,"y":0.119},"i":{"x":0.833,"y":0.905},"s":[39.84,64.96,100],"t":29},{"o":{"x":0.167,"y":0.689},"i":{"x":0.833,"y":0.81},"s":[24.98,44.28,100],"t":30},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.817},"s":[22.94,54.54,100],"t":31},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":1.272},"s":[20.32,50.73,100],"t":32},{"o":{"x":0.167,"y":0.064},"i":{"x":0.833,"y":0.928},"s":[17.18,72.85,100],"t":33},{"o":{"x":0.167,"y":-0.532},"i":{"x":0.833,"y":1.499},"s":[30.56,51.72,100],"t":34},{"o":{"x":0.167,"y":0.071},"i":{"x":0.833,"y":0.951},"s":[28.75,15.42,100],"t":35},{"o":{"x":0.167,"y":-0.121},"i":{"x":0.833,"y":1.072},"s":[41.42,28.19,100],"t":36},{"o":{"x":0.167,"y":0.038},"i":{"x":0.833,"y":0.946},"s":[36.26,27.52,100],"t":37},{"o":{"x":0.167,"y":-0.15},"i":{"x":0.833,"y":0.594},"s":[45.84,34.86,100],"t":38},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.867},"s":[42.42,34.9,100],"t":39},{"o":{"x":0.167,"y":0.224},"i":{"x":0.833,"y":1.076},"s":[29.18,14.24,100],"t":40},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":1.02},"s":[21.31,16.61,100],"t":41},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.928},"s":[36.33,25.79,100],"t":42},{"o":{"x":0.167,"y":-0.523},"i":{"x":0.833,"y":1.401},"s":[17.67,20.01,100],"t":43},{"o":{"x":0.167,"y":0.069},"i":{"x":0.833,"y":0.943},"s":[20.24,29.87,100],"t":44},{"o":{"x":0.167,"y":-0.183},"i":{"x":0.833,"y":1.109},"s":[5.33,31.6,100],"t":45},{"o":{"x":0.167,"y":0.047},"i":{"x":0.833,"y":1.042},"s":[9.99,45.8,100],"t":46},{"o":{"x":0.167,"y":0.028},"i":{"x":0.833,"y":1.003},"s":[-0.77,7.9,100],"t":47},{"o":{"x":0.167,"y":0.003},"i":{"x":0.833,"y":0.927},"s":[15.36,23.22,100],"t":48},{"o":{"x":0.167,"y":-0.568},"i":{"x":0.833,"y":0.201},"s":[-1.38,44.41,100],"t":49},{"o":{"x":0.167,"y":0.093},"i":{"x":0.833,"y":0.885},"s":[0.76,29.75,100],"t":50},{"o":{"x":0.167,"y":0.302},"i":{"x":0.833,"y":0.966},"s":[19.17,-14.98,100],"t":51},{"o":{"x":0.167,"y":-0.057},"i":{"x":0.833,"y":0.108},"s":[26.17,2.03,100],"t":52},{"o":{"x":0.167,"y":0.092},"i":{"x":0.833,"y":0.962},"s":[22,19.7,100],"t":53},{"o":{"x":0.167,"y":-0.07},"i":{"x":0.833,"y":0.964},"s":[-18.48,-4.86,100],"t":54},{"o":{"x":0.167,"y":-0.063},"i":{"x":0.833,"y":1.116},"s":[3.52,33.26,100],"t":55},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":0.896},"s":[-9.05,22.3,100],"t":56},{"o":{"x":0.167,"y":0.416},"i":{"x":0.833,"y":0.835},"s":[21.08,32.94,100],"t":57},{"o":{"x":0.167,"y":0.168},"i":{"x":0.833,"y":0.833},"s":[28.63,-8.51,100],"t":58},{"s":[36.02,0.58,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.551},"s":[133,151.22,0],"t":7},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.762},"s":[131.84,151.7,0],"t":8},{"o":{"x":0.167,"y":0.128},"i":{"x":0.833,"y":0.824},"s":[126.73,153.62,0],"t":9},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[116.91,155.58,0],"t":10},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[105.84,154.68,0],"t":11},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[96.64,151.03,0],"t":12},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[89.57,146.3,0],"t":13},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[84.06,141.5,0],"t":14},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[79.57,137.01,0],"t":15},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[75.78,132.97,0],"t":16},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[72.45,129.39,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[69.44,126.28,0],"t":18},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[66.63,123.62,0],"t":19},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[63.97,121.41,0],"t":20},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[61.45,119.71,0],"t":21},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[59.06,118.5,0],"t":22},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[56.79,117.79,0],"t":23},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[54.68,117.53,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[52.75,117.67,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.839},"s":[51.01,118.12,0],"t":26},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[49.46,118.8,0],"t":27},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[48.11,119.63,0],"t":28},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.839},"s":[46.92,120.54,0],"t":29},{"o":{"x":0.167,"y":0.173},"i":{"x":0.833,"y":0.84},"s":[45.88,121.5,0],"t":30},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[44.98,122.47,0],"t":31},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[44.19,123.42,0],"t":32},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[43.51,124.35,0],"t":33},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[42.91,125.23,0],"t":34},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[42.4,126.06,0],"t":35},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[41.97,126.84,0],"t":36},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[41.59,127.56,0],"t":37},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.845},"s":[41.28,128.2,0],"t":38},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[41.02,128.78,0],"t":39},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.849},"s":[40.81,129.29,0],"t":40},{"o":{"x":0.167,"y":0.186},"i":{"x":0.833,"y":0.852},"s":[40.64,129.73,0],"t":41},{"o":{"x":0.167,"y":0.19},"i":{"x":0.833,"y":0.857},"s":[40.52,130.09,0],"t":42},{"o":{"x":0.167,"y":0.199},"i":{"x":0.833,"y":0.865},"s":[40.43,130.37,0],"t":43},{"o":{"x":0.167,"y":0.219},"i":{"x":0.833,"y":0.882},"s":[40.38,130.58,0],"t":44},{"o":{"x":0.167,"y":0.284},"i":{"x":0.833,"y":0.84},"s":[40.36,130.71,0],"t":45},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.751},"s":[40.36,130.77,0],"t":46},{"o":{"x":0.167,"y":0.125},"i":{"x":0.833,"y":0.805},"s":[40.4,130.74,0],"t":47},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.812},"s":[40.44,130.65,0],"t":48},{"o":{"x":0.167,"y":0.149},"i":{"x":0.833,"y":0.827},"s":[40.48,130.52,0],"t":49},{"o":{"x":0.167,"y":0.161},"i":{"x":0.833,"y":0.831},"s":[40.51,130.35,0],"t":50},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.834},"s":[40.55,130.17,0],"t":51},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.836},"s":[40.6,129.99,0],"t":52},{"o":{"x":0.167,"y":0.17},"i":{"x":0.833,"y":0.839},"s":[40.66,129.82,0],"t":53},{"o":{"x":0.167,"y":0.172},"i":{"x":0.833,"y":0.841},"s":[40.72,129.65,0],"t":54},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.844},"s":[40.77,129.49,0],"t":55},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.848},"s":[40.82,129.35,0],"t":56},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.853},"s":[40.86,129.23,0],"t":57},{"o":{"x":0.167,"y":0.192},"i":{"x":0.833,"y":0.833},"s":[40.89,129.12,0],"t":58},{"s":[40.91,129.04,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":7},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":34},{"s":[0],"t":50}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1686,1,0.1608],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":49},{"ty":4,"nm":"Shape Layer 2","sr":1,"st":6,"op":60,"ip":6,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.867},"s":[58.18,62.01,100],"t":6},{"o":{"x":0.167,"y":0.222},"i":{"x":0.833,"y":0.795},"s":[53.18,52.55,100],"t":7},{"o":{"x":0.167,"y":0.141},"i":{"x":0.833,"y":0.672},"s":[50.18,72.01,100],"t":8},{"o":{"x":0.167,"y":0.112},"i":{"x":0.833,"y":0.908},"s":[45.8,81.35,100],"t":9},{"o":{"x":0.167,"y":0.904},"i":{"x":0.833,"y":0.347},"s":[32.96,51.92,100],"t":10},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":1.047},"s":[31.66,26.38,100],"t":11},{"o":{"x":0.167,"y":0.03},"i":{"x":0.833,"y":1.006},"s":[22.76,31.82,100],"t":12},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":1.068},"s":[36.74,91.36,100],"t":13},{"o":{"x":0.167,"y":0.037},"i":{"x":0.833,"y":0.917},"s":[21.73,82.04,100],"t":14},{"o":{"x":0.167,"y":270.204},"i":{"x":0.833,"y":152.322},"s":[48.91,55.76,100],"t":15},{"o":{"x":0.167,"y":0.083},"i":{"x":0.833,"y":1.025},"s":[48.92,37.91,100],"t":16},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":1.006},"s":[33.69,48.62,100],"t":17},{"o":{"x":0.167,"y":0.006},"i":{"x":0.833,"y":0.991},"s":[53.58,45.11,100],"t":18},{"o":{"x":0.167,"y":-0.01},"i":{"x":0.833,"y":0.999},"s":[32.22,25.95,100],"t":19},{"o":{"x":0.167,"y":-0.001},"i":{"x":0.833,"y":0.952},"s":[51.29,51.01,100],"t":20},{"o":{"x":0.167,"y":-0.115},"i":{"x":0.833,"y":0.907},"s":[32.35,51.99,100],"t":21},{"o":{"x":0.167,"y":0.774},"i":{"x":0.833,"y":-0.395},"s":[40.29,31.4,100],"t":22},{"o":{"x":0.167,"y":0.089},"i":{"x":0.833,"y":1.013},"s":[41.25,29.16,100],"t":23},{"o":{"x":0.167,"y":0.011},"i":{"x":0.833,"y":0.914},"s":[56.32,32.33,100],"t":24},{"o":{"x":0.167,"y":2.433},"i":{"x":0.833,"y":3.517},"s":[38.97,40.36,100],"t":25},{"o":{"x":0.167,"y":0.081},"i":{"x":0.833,"y":0.948},"s":[38.35,74.44,100],"t":26},{"o":{"x":0.167,"y":-0.137},"i":{"x":0.833,"y":0.885},"s":[57.56,52.33,100],"t":27},{"o":{"x":0.167,"y":0.305},"i":{"x":0.833,"y":0.672},"s":[50.31,58.21,100],"t":28},{"o":{"x":0.167,"y":0.112},"i":{"x":0.833,"y":0.965},"s":[47.59,43.12,100],"t":29},{"o":{"x":0.167,"y":-0.06},"i":{"x":0.833,"y":1.366},"s":[39.59,39.22,100],"t":30},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":0.944},"s":[44.24,48.12,100],"t":31},{"o":{"x":0.167,"y":-0.173},"i":{"x":0.833,"y":0.794},"s":[19.2,47.45,100],"t":32},{"o":{"x":0.167,"y":0.14},"i":{"x":0.833,"y":0.967},"s":[27.34,58.58,100],"t":33},{"o":{"x":0.167,"y":-0.055},"i":{"x":0.833,"y":0.774},"s":[39.34,41.71,100],"t":34},{"o":{"x":0.167,"y":0.132},"i":{"x":0.833,"y":1.053},"s":[32.1,29.56,100],"t":35},{"o":{"x":0.167,"y":0.032},"i":{"x":0.833,"y":0.93},"s":[19.71,45.79,100],"t":36},{"o":{"x":0.167,"y":-0.444},"i":{"x":0.833,"y":0.919},"s":[39.99,45.87,100],"t":37},{"o":{"x":0.167,"y":-2.408},"i":{"x":0.833,"y":8.691},"s":[36.79,44.45,100],"t":38},{"o":{"x":0.167,"y":0.082},"i":{"x":0.833,"y":0.962},"s":[36.89,27.92,100],"t":39},{"o":{"x":0.167,"y":-0.069},"i":{"x":0.833,"y":1.151},"s":[26.89,30.74,100],"t":40},{"o":{"x":0.167,"y":0.054},"i":{"x":0.833,"y":0.832},"s":[32.38,47.46,100],"t":41},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.912},"s":[16.97,23.6,100],"t":42},{"o":{"x":0.167,"y":1.584},"i":{"x":0.833,"y":1.421},"s":[1.27,34.76,100],"t":43},{"o":{"x":0.167,"y":0.07},"i":{"x":0.833,"y":1.174},"s":[0.39,35.87,100],"t":44},{"o":{"x":0.167,"y":0.056},"i":{"x":0.833,"y":1.039},"s":[5.67,32.43,100],"t":45},{"o":{"x":0.167,"y":0.027},"i":{"x":0.833,"y":0.955},"s":[-10.63,-11.46,100],"t":46},{"o":{"x":0.167,"y":-0.096},"i":{"x":0.833,"y":1.083},"s":[13.39,4.94,100],"t":47},{"o":{"x":0.167,"y":0.042},"i":{"x":0.833,"y":0.896},"s":[2.24,38.97,100],"t":48},{"o":{"x":0.167,"y":0.425},"i":{"x":0.833,"y":1.087},"s":[24.47,32.56,100],"t":49},{"o":{"x":0.167,"y":0.043},"i":{"x":0.833,"y":0.942},"s":[29.89,-11.16,100],"t":50},{"o":{"x":0.167,"y":-0.186},"i":{"x":0.833,"y":1.717},"s":[18.78,-2.83,100],"t":51},{"o":{"x":0.167,"y":0.075},"i":{"x":0.833,"y":0.956},"s":[22.22,10.44,100],"t":52},{"o":{"x":0.167,"y":-0.092},"i":{"x":0.833,"y":0.926},"s":[-10.75,-3.88,100],"t":53},{"o":{"x":0.167,"y":-0.679},"i":{"x":0.833,"y":1.362},"s":[4.89,22.76,100],"t":54},{"o":{"x":0.167,"y":0.068},"i":{"x":0.833,"y":0.873},"s":[3.18,24.69,100],"t":55},{"o":{"x":0.167,"y":0.243},"i":{"x":0.833,"y":0.708},"s":[12.33,24.63,100],"t":56},{"o":{"x":0.167,"y":0.117},"i":{"x":0.833,"y":0.976},"s":[17.1,1.23,100],"t":57},{"o":{"x":0.167,"y":-0.034},"i":{"x":0.833,"y":0.833},"s":[29.04,3.46,100],"t":58},{"s":[20.59,33.38,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.592},"s":[133.18,150.97,0],"t":6},{"o":{"x":0.167,"y":0.105},"i":{"x":0.833,"y":0.764},"s":[133.24,152.47,0],"t":7},{"o":{"x":0.167,"y":0.129},"i":{"x":0.833,"y":0.824},"s":[133.79,158.28,0],"t":8},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.844},"s":[135.48,168.76,0],"t":9},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[138.45,180.09,0],"t":10},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[142.1,189.51,0],"t":11},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.845},"s":[145.97,196.84,0],"t":12},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[149.86,202.48,0],"t":13},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.843},"s":[153.65,206.83,0],"t":14},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.842},"s":[157.28,210.17,0],"t":15},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[160.7,212.73,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[163.91,214.69,0],"t":17},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[166.9,216.18,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[169.68,217.31,0],"t":19},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[172.25,218.16,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[174.62,218.8,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[176.82,219.27,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[178.85,219.61,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[180.72,219.84,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[182.45,220,0],"t":25},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[184.05,220.08,0],"t":26},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[185.52,220.12,0],"t":27},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[186.87,220.11,0],"t":28},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[188.11,220.06,0],"t":29},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[189.24,219.98,0],"t":30},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[190.26,219.87,0],"t":31},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[191.19,219.74,0],"t":32},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[192.01,219.58,0],"t":33},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.84},"s":[192.74,219.4,0],"t":34},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[193.39,219.21,0],"t":35},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[193.99,219.01,0],"t":36},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.843},"s":[194.53,218.82,0],"t":37},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.844},"s":[195.01,218.64,0],"t":38},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.846},"s":[195.43,218.47,0],"t":39},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.848},"s":[195.8,218.31,0],"t":40},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.851},"s":[196.12,218.16,0],"t":41},{"o":{"x":0.167,"y":0.189},"i":{"x":0.833,"y":0.856},"s":[196.37,218.04,0],"t":42},{"o":{"x":0.167,"y":0.198},"i":{"x":0.833,"y":0.864},"s":[196.58,217.94,0],"t":43},{"o":{"x":0.167,"y":0.215},"i":{"x":0.833,"y":0.881},"s":[196.72,217.86,0],"t":44},{"o":{"x":0.167,"y":0.276},"i":{"x":0.833,"y":0.888},"s":[196.81,217.8,0],"t":45},{"o":{"x":0.167,"y":0.327},"i":{"x":0.833,"y":0.805},"s":[196.84,217.77,0],"t":46},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.754},"s":[196.84,217.75,0],"t":47},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":0.789},"s":[196.82,217.75,0],"t":48},{"o":{"x":0.167,"y":0.138},"i":{"x":0.833,"y":0.805},"s":[196.78,217.77,0],"t":49},{"o":{"x":0.167,"y":0.145},"i":{"x":0.833,"y":0.813},"s":[196.73,217.8,0],"t":50},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.818},"s":[196.66,217.85,0],"t":51},{"o":{"x":0.167,"y":0.154},"i":{"x":0.833,"y":0.821},"s":[196.57,217.91,0],"t":52},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.824},"s":[196.47,217.98,0],"t":53},{"o":{"x":0.167,"y":0.158},"i":{"x":0.833,"y":0.826},"s":[196.35,218.07,0],"t":54},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.828},"s":[196.23,218.16,0],"t":55},{"o":{"x":0.167,"y":0.162},"i":{"x":0.833,"y":0.83},"s":[196.09,218.27,0],"t":56},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.832},"s":[195.94,218.38,0],"t":57},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[195.79,218.5,0],"t":58},{"s":[195.63,218.61,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":33},{"s":[0],"t":49}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":50},{"ty":4,"nm":"Shape Layer 1","sr":1,"st":3,"op":60,"ip":3,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":1.013},"s":[45.98,51.96,100],"t":3},{"o":{"x":0.167,"y":0.011},"i":{"x":0.833,"y":0.854},"s":[30.59,60.79,100],"t":4},{"o":{"x":0.167,"y":0.195},"i":{"x":0.833,"y":1},"s":[48.3,52.88,100],"t":5},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":0.962},"s":[61.55,48.58,100],"t":6},{"o":{"x":0.167,"y":-0.071},"i":{"x":0.833,"y":1.12},"s":[48.35,46.39,100],"t":7},{"o":{"x":0.167,"y":0.049},"i":{"x":0.833,"y":0.877},"s":[55.48,70.95,100],"t":8},{"o":{"x":0.167,"y":0.258},"i":{"x":0.833,"y":0.808},"s":[38.04,62.77,100],"t":9},{"o":{"x":0.167,"y":0.147},"i":{"x":0.833,"y":1.024},"s":[29.73,43.33,100],"t":10},{"o":{"x":0.167,"y":0.019},"i":{"x":0.833,"y":1.02},"s":[18.92,23.82,100],"t":11},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.997},"s":[32.91,64.08,100],"t":12},{"o":{"x":0.167,"y":-0.003},"i":{"x":0.833,"y":0.787},"s":[15.49,89.29,100],"t":13},{"o":{"x":0.167,"y":0.137},"i":{"x":0.833,"y":0.983},"s":[32.35,51.95,100],"t":14},{"o":{"x":0.167,"y":-0.021},"i":{"x":0.833,"y":0.996},"s":[58.5,35.29,100],"t":15},{"o":{"x":0.167,"y":-0.004},"i":{"x":0.833,"y":0.949},"s":[37.56,47.83,100],"t":16},{"o":{"x":0.167,"y":-0.135},"i":{"x":0.833,"y":0.975},"s":[57.47,72.71,100],"t":17},{"o":{"x":0.167,"y":-0.036},"i":{"x":0.833,"y":1.215},"s":[49.85,30.37,100],"t":18},{"o":{"x":0.167,"y":0.06},"i":{"x":0.833,"y":0.928},"s":[55.19,27.07,100],"t":19},{"o":{"x":0.167,"y":-0.543},"i":{"x":0.833,"y":0.706},"s":[36.06,58.54,100],"t":20},{"o":{"x":0.167,"y":0.116},"i":{"x":0.833,"y":0.753},"s":[38.6,36.6,100],"t":21},{"o":{"x":0.167,"y":0.126},"i":{"x":0.833,"y":1.064},"s":[45.04,29.52,100],"t":22},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.883},"s":[57.69,34.52,100],"t":23},{"o":{"x":0.167,"y":0.287},"i":{"x":0.833,"y":1.141},"s":[35.34,59.65,100],"t":24},{"o":{"x":0.167,"y":0.052},"i":{"x":0.833,"y":0.893},"s":[26.21,69.32,100],"t":25},{"o":{"x":0.167,"y":0.378},"i":{"x":0.833,"y":0.925},"s":[50.76,61.13,100],"t":26},{"o":{"x":0.167,"y":-0.756},"i":{"x":0.833,"y":0.059},"s":[57.71,52.24,100],"t":27},{"o":{"x":0.167,"y":0.091},"i":{"x":0.833,"y":1.036},"s":[57.02,65.86,100],"t":28},{"o":{"x":0.167,"y":0.025},"i":{"x":0.833,"y":1.158},"s":[49.92,42.44,100],"t":29},{"o":{"x":0.167,"y":0.055},"i":{"x":0.833,"y":0.897},"s":[60.1,50.26,100],"t":30},{"o":{"x":0.167,"y":0.435},"i":{"x":0.833,"y":1.064},"s":[30.59,22.25,100],"t":31},{"o":{"x":0.167,"y":0.036},"i":{"x":0.833,"y":0.949},"s":[23.59,46.01,100],"t":32},{"o":{"x":0.167,"y":-0.131},"i":{"x":0.833,"y":0.545},"s":[36,59.87,100],"t":33},{"o":{"x":0.167,"y":0.102},"i":{"x":0.833,"y":0.979},"s":[31.17,36.9,100],"t":34},{"o":{"x":0.167,"y":-0.028},"i":{"x":0.833,"y":0.921},"s":[9.66,37.6,100],"t":35},{"o":{"x":0.167,"y":-1.621},"i":{"x":0.833,"y":0.758},"s":[25.81,51.58,100],"t":36},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":1.306},"s":[25.02,29.55,100],"t":37},{"o":{"x":0.167,"y":0.065},"i":{"x":0.833,"y":0.889},"s":[23.52,34.83,100],"t":38},{"o":{"x":0.167,"y":0.334},"i":{"x":0.833,"y":1.538},"s":[30.53,35.9,100],"t":39},{"o":{"x":0.167,"y":0.072},"i":{"x":0.833,"y":0.759},"s":[32.87,50.95,100],"t":40},{"o":{"x":0.167,"y":0.127},"i":{"x":0.833,"y":0.954},"s":[15.46,28.5,100],"t":41},{"o":{"x":0.167,"y":-0.1},"i":{"x":0.833,"y":0.875},"s":[-17.5,11.62,100],"t":42},{"o":{"x":0.167,"y":0.249},"i":{"x":0.833,"y":1.076},"s":[-2.55,37.03,100],"t":43},{"o":{"x":0.167,"y":0.04},"i":{"x":0.833,"y":1.027},"s":[4.97,13.48,100],"t":44},{"o":{"x":0.167,"y":0.02},"i":{"x":0.833,"y":0.934},"s":[-9.43,-12.77,100],"t":45},{"o":{"x":0.167,"y":-0.321},"i":{"x":0.833,"y":1.313},"s":[9.62,-5.69,100],"t":46},{"o":{"x":0.167,"y":0.066},"i":{"x":0.833,"y":0.894},"s":[5.69,21.03,100],"t":47},{"o":{"x":0.167,"y":0.392},"i":{"x":0.833,"y":1.021},"s":[24.38,17.41,100],"t":48},{"o":{"x":0.167,"y":0.016},"i":{"x":0.833,"y":0.685},"s":[29.43,-0.59,100],"t":49},{"o":{"x":0.167,"y":0.113},"i":{"x":0.833,"y":0.849},"s":[23.14,7.8,100],"t":50},{"o":{"x":0.167,"y":0.187},"i":{"x":0.833,"y":0.934},"s":[5.64,9.3,100],"t":51},{"o":{"x":0.167,"y":-0.311},"i":{"x":0.833,"y":0.35},"s":[-8.48,-8.9,100],"t":52},{"o":{"x":0.167,"y":0.096},"i":{"x":0.833,"y":0.953},"s":[-5.5,25.15,100],"t":53},{"o":{"x":0.167,"y":-0.107},"i":{"x":0.833,"y":1.05},"s":[14.81,30.05,100],"t":54},{"o":{"x":0.167,"y":0.031},"i":{"x":0.833,"y":0.897},"s":[5.93,15.33,100],"t":55},{"o":{"x":0.167,"y":0.44},"i":{"x":0.833,"y":1.244},"s":[20.18,5.97,100],"t":56},{"o":{"x":0.167,"y":0.062},"i":{"x":0.833,"y":0.878},"s":[23.51,23.25,100],"t":57},{"o":{"x":0.167,"y":0.262},"i":{"x":0.833,"y":0.833},"s":[10.42,20.64,100],"t":58},{"s":[4.33,20.15,100],"t":59}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.625},"s":[133.7,152.15,0],"t":3},{"o":{"x":0.167,"y":0.107},"i":{"x":0.833,"y":0.767},"s":[135.24,151.91,0],"t":4},{"o":{"x":0.167,"y":0.13},"i":{"x":0.833,"y":0.824},"s":[140.64,151.09,0],"t":5},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.844},"s":[150.19,148.53,0],"t":6},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.847},"s":[160.07,143.26,0],"t":7},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.847},"s":[167.21,135.88,0],"t":8},{"o":{"x":0.167,"y":0.183},"i":{"x":0.833,"y":0.846},"s":[171.45,127.95,0],"t":9},{"o":{"x":0.167,"y":0.181},"i":{"x":0.833,"y":0.844},"s":[173.85,120.57,0],"t":10},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.844},"s":[175.29,114.04,0],"t":11},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.843},"s":[176.28,108.3,0],"t":12},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[177.08,103.26,0],"t":13},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.842},"s":[177.83,98.8,0],"t":14},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[178.59,94.85,0],"t":15},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[179.41,91.35,0],"t":16},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[180.3,88.26,0],"t":17},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.841},"s":[181.27,85.55,0],"t":18},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.84},"s":[182.31,83.21,0],"t":19},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[183.42,81.19,0],"t":20},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[184.6,79.46,0],"t":21},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[185.8,78.01,0],"t":22},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[187.01,76.79,0],"t":23},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.84},"s":[188.19,75.78,0],"t":24},{"o":{"x":0.167,"y":0.174},"i":{"x":0.833,"y":0.841},"s":[189.33,74.95,0],"t":25},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[190.4,74.26,0],"t":26},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.841},"s":[191.41,73.69,0],"t":27},{"o":{"x":0.167,"y":0.175},"i":{"x":0.833,"y":0.842},"s":[192.35,73.22,0],"t":28},{"o":{"x":0.167,"y":0.176},"i":{"x":0.833,"y":0.842},"s":[193.21,72.83,0],"t":29},{"o":{"x":0.167,"y":0.177},"i":{"x":0.833,"y":0.843},"s":[193.99,72.52,0],"t":30},{"o":{"x":0.167,"y":0.178},"i":{"x":0.833,"y":0.844},"s":[194.7,72.25,0],"t":31},{"o":{"x":0.167,"y":0.179},"i":{"x":0.833,"y":0.845},"s":[195.33,72.04,0],"t":32},{"o":{"x":0.167,"y":0.18},"i":{"x":0.833,"y":0.846},"s":[195.88,71.87,0],"t":33},{"o":{"x":0.167,"y":0.182},"i":{"x":0.833,"y":0.848},"s":[196.36,71.73,0],"t":34},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.85},"s":[196.77,71.62,0],"t":35},{"o":{"x":0.167,"y":0.188},"i":{"x":0.833,"y":0.853},"s":[197.1,71.53,0],"t":36},{"o":{"x":0.167,"y":0.193},"i":{"x":0.833,"y":0.859},"s":[197.37,71.47,0],"t":37},{"o":{"x":0.167,"y":0.203},"i":{"x":0.833,"y":0.868},"s":[197.58,71.43,0],"t":38},{"o":{"x":0.167,"y":0.226},"i":{"x":0.833,"y":0.887},"s":[197.72,71.41,0],"t":39},{"o":{"x":0.167,"y":0.317},"i":{"x":0.833,"y":0.82},"s":[197.81,71.4,0],"t":40},{"o":{"x":0.167,"y":0.155},"i":{"x":0.833,"y":0.714},"s":[197.83,71.41,0],"t":41},{"o":{"x":0.167,"y":0.118},"i":{"x":0.833,"y":0.805},"s":[197.81,71.44,0],"t":42},{"o":{"x":0.167,"y":0.146},"i":{"x":0.833,"y":0.829},"s":[197.73,71.48,0],"t":43},{"o":{"x":0.167,"y":0.163},"i":{"x":0.833,"y":0.83},"s":[197.62,71.52,0],"t":44},{"o":{"x":0.167,"y":0.164},"i":{"x":0.833,"y":0.832},"s":[197.51,71.58,0],"t":45},{"o":{"x":0.167,"y":0.165},"i":{"x":0.833,"y":0.833},"s":[197.39,71.63,0],"t":46},{"o":{"x":0.167,"y":0.166},"i":{"x":0.833,"y":0.835},"s":[197.27,71.69,0],"t":47},{"o":{"x":0.167,"y":0.169},"i":{"x":0.833,"y":0.852},"s":[197.16,71.75,0],"t":48},{"o":{"x":0.167,"y":0.191},"i":{"x":0.833,"y":0.858},"s":[197.05,71.82,0],"t":49},{"o":{"x":0.167,"y":0.201},"i":{"x":0.833,"y":0.848},"s":[196.97,71.89,0],"t":50},{"o":{"x":0.167,"y":0.184},"i":{"x":0.833,"y":0.823},"s":[196.93,71.95,0],"t":51},{"o":{"x":0.167,"y":0.157},"i":{"x":0.833,"y":0.81},"s":[196.93,72.02,0],"t":52},{"o":{"x":0.167,"y":0.148},"i":{"x":0.833,"y":0.812},"s":[196.96,72.08,0],"t":53},{"o":{"x":0.167,"y":0.15},"i":{"x":0.833,"y":0.817},"s":[197.03,72.15,0],"t":54},{"o":{"x":0.167,"y":0.153},"i":{"x":0.833,"y":0.821},"s":[197.12,72.21,0],"t":55},{"o":{"x":0.167,"y":0.156},"i":{"x":0.833,"y":0.824},"s":[197.23,72.26,0],"t":56},{"o":{"x":0.167,"y":0.159},"i":{"x":0.833,"y":0.827},"s":[197.36,72.31,0],"t":57},{"o":{"x":0.167,"y":0.16},"i":{"x":0.833,"y":0.833},"s":[197.51,72.36,0],"t":58},{"s":[197.67,72.4,0],"t":59}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":3},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":30},{"s":[0],"t":46}],"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[10,10],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9373,0.0196,0.5137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":51}],"v":"5.7.12","fr":17,"op":60,"ip":0,"assets":[]} \ No newline at end of file +{ + "nm": "Confetti 1", + "ddd": 0, + "h": 300, + "w": 250, + "meta": { "g": "@lottiefiles/toolkit-js 0.26.1" }, + "layers": [ + { + "ty": 3, + "nm": "Null 3", + "sr": 1, + "st": 0, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [50, 50, 0], "ix": 1 }, + "s": { "a": 0, "k": [49.8, 59.77, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [125, 150, 0], "ix": 2 }, + "r": { "a": 0, "k": 260, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { "a": 0, "k": 0, "ix": 11 } + }, + "ef": [], + "ind": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 50", + "sr": 1, + "st": 14, + "op": 60, + "ip": 14, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [41, 41, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [50, 50, 0], "ix": 2 }, + "r": { "a": 0, "k": 487, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 14 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 19 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 41 + }, + { "s": [0], "t": 57 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-19.362, 34.498], + [7.899, -25.433], + [37.607, 53.867], + [11.905, 108.592] + ], + "o": [ + [0, 0], + [42.457, -75.648], + [-9.025, 29.061], + [-47.221, -67.637], + [-3.807, -34.72] + ], + "v": [ + [1, 2], + [-48.536, -23.607], + [-76.476, -100.021], + [27.098, -130.112], + [-120.809, -222.715] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [0.4745, 1, 0.1137], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 14 + }, + { "s": [100], "t": 49 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 17 + }, + { "s": [100], "t": 54 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 2, + "parent": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 49", + "sr": 1, + "st": 13, + "op": 60, + "ip": 13, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [70, 70, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [50, 50, 0], "ix": 2 }, + "r": { "a": 0, "k": 353, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 18 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 40 + }, + { "s": [0], "t": 56 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [8.506, -58.529], + [28.328, 67.272], + [11.905, 108.592] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [-12.365, 85.083], + [-32.013, -76.024], + [-3.807, -34.72] + ], + "v": [ + [1, 2], + [-48.536, -23.607], + [-76.476, -100.021], + [27.098, -130.112], + [-120.809, -222.715] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [0.7294, 0.1137, 1], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 13 + }, + { "s": [100], "t": 48 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 16 + }, + { "s": [100], "t": 53 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 3, + "parent": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 48", + "sr": 1, + "st": 12, + "op": 60, + "ip": 12, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [70, 70, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [50, 50, 0], "ix": 2 }, + "r": { "a": 0, "k": 187, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 17 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 39 + }, + { "s": [0], "t": 55 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [8.254, -31.239], + [20.685, 70.001], + [17.795, 30.055] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [-7.439, 28.154], + [-10.769, -36.442], + [-17.795, -30.055] + ], + "v": [ + [1, 2], + [2.692, -79.782], + [-49.416, -90.653], + [-14.589, -135.23], + [-105.31, -168.421] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [1, 0.898, 0.1137], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 12 + }, + { "s": [100], "t": 47 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 15 + }, + { "s": [100], "t": 52 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 4, + "parent": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 47", + "sr": 1, + "st": 11, + "op": 60, + "ip": 11, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [58, 58, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [50, 50, 0], "ix": 2 }, + "r": { "a": 0, "k": 203, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 16 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 38 + }, + { "s": [0], "t": 54 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [-1, 38], + [35.009, -27.828], + [-11, 31] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [1, -38], + [-39, 31], + [11, -31] + ], + "v": [ + [1, 2], + [48, -39], + [29, -112], + [136, -107], + [103, -176] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [1, 0.1059, 0.3843], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 11 + }, + { "s": [100], "t": 46 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 14 + }, + { "s": [100], "t": 51 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 5, + "parent": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 46", + "sr": 1, + "st": 10, + "op": 60, + "ip": 10, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [50, 50, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 15 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 37 + }, + { "s": [0], "t": 53 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [-1, 38], + [35.009, -27.828], + [-11, 31] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [1, -38], + [-39, 31], + [11, -31] + ], + "v": [ + [1, 2], + [48, -39], + [29, -112], + [136, -107], + [103, -176] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [0.0627, 0.2471, 0.7373], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 10 + }, + { "s": [100], "t": 45 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 13 + }, + { "s": [100], "t": 50 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 6, + "parent": 1 + }, + { + "ty": 4, + "nm": "Shape Layer 45", + "sr": 1, + "st": 9, + "op": 60, + "ip": 9, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [20.02, 24.02, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [125, 150, 0], "ix": 2 }, + "r": { "a": 0, "k": 487, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 14 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 36 + }, + { "s": [0], "t": 52 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-19.362, 34.498], + [7.899, -25.433], + [37.607, 53.867], + [11.905, 108.592] + ], + "o": [ + [0, 0], + [42.457, -75.648], + [-9.025, 29.061], + [-47.221, -67.637], + [-3.807, -34.72] + ], + "v": [ + [1, 2], + [-48.536, -23.607], + [-76.476, -100.021], + [27.098, -130.112], + [-120.809, -222.715] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [0.4745, 1, 0.1137], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 9 + }, + { "s": [100], "t": 44 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 12 + }, + { "s": [100], "t": 49 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 7 + }, + { + "ty": 4, + "nm": "Shape Layer 43", + "sr": 1, + "st": 8, + "op": 60, + "ip": 8, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [34.18, 41.02, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [125, 150, 0], "ix": 2 }, + "r": { "a": 0, "k": 353, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 35 + }, + { "s": [0], "t": 51 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [8.506, -58.529], + [28.328, 67.272], + [11.905, 108.592] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [-12.365, 85.083], + [-32.013, -76.024], + [-3.807, -34.72] + ], + "v": [ + [1, 2], + [-48.536, -23.607], + [-76.476, -100.021], + [27.098, -130.112], + [-120.809, -222.715] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [0.7294, 0.1137, 1], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 8 + }, + { "s": [100], "t": 43 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 11 + }, + { "s": [100], "t": 48 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 8 + }, + { + "ty": 4, + "nm": "Shape Layer 42", + "sr": 1, + "st": 7, + "op": 60, + "ip": 7, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [34.18, 41.02, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [125, 150, 0], "ix": 2 }, + "r": { "a": 0, "k": 187, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 34 + }, + { "s": [0], "t": 50 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [8.254, -31.239], + [20.685, 70.001], + [17.795, 30.055] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [-7.439, 28.154], + [-10.769, -36.442], + [-17.795, -30.055] + ], + "v": [ + [1, 2], + [2.692, -79.782], + [-49.416, -90.653], + [-14.589, -135.23], + [-105.31, -168.421] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [1, 0.898, 0.1137], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 7 + }, + { "s": [100], "t": 42 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 10 + }, + { "s": [100], "t": 47 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 9 + }, + { + "ty": 4, + "nm": "Shape Layer 44", + "sr": 1, + "st": 6, + "op": 60, + "ip": 6, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [28.32, 33.98, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [125, 150, 0], "ix": 2 }, + "r": { "a": 0, "k": 203, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 33 + }, + { "s": [0], "t": 49 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [-1, 38], + [35.009, -27.828], + [-11, 31] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [1, -38], + [-39, 31], + [11, -31] + ], + "v": [ + [1, 2], + [48, -39], + [29, -112], + [136, -107], + [103, -176] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [1, 0.1059, 0.3843], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 6 + }, + { "s": [100], "t": 41 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 9 + }, + { "s": [100], "t": 46 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 10 + }, + { + "ty": 4, + "nm": "Shape Layer 41", + "sr": 1, + "st": 5, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [48.83, 58.59, 100], "ix": 6 }, + "sk": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [125, 150, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 5 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 32 + }, + { "s": [0], "t": 48 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [-14, 37], + [-1, 38], + [35.009, -27.828], + [-11, 31] + ], + "o": [ + [0, 0], + [9.966, -26.338], + [1, -38], + [-39, 31], + [11, -31] + ], + "v": [ + [1, 2], + [48, -39], + [29, -112], + [136, -107], + [103, -176] + ] + }, + "ix": 2 + } + }, + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 1, + "lj": 1, + "ml": 4, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 5, "ix": 5 }, + "c": { "a": 0, "k": [0.0627, 0.2471, 0.7373], "ix": 3 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 5 + }, + { "s": [100], "t": 40 } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.139, "y": 0 }, + "i": { "x": 0, "y": 1 }, + "s": [0], + "t": 8 + }, + { "s": [100], "t": 45 } + ], + "ix": 1 + }, + "m": 1 + } + ], + "ind": 11 + }, + { + "ty": 4, + "nm": "Shape Layer 40", + "sr": 1, + "st": 6, + "op": 60, + "ip": 6, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.27 }, + "s": [68.37, 51.44, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.945 }, + "s": [73.11, 47.71, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -0.158 }, + "i": { "x": 0.833, "y": 1.242 }, + "s": [53.05, 47.07, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [59.99, 73.8, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.361 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [32.93, 66.8, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.46 }, + "s": [38, 81.89, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 0.921 }, + "s": [42.13, 69.28, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -1.604 }, + "i": { "x": 0.833, "y": -0.039 }, + "s": [64.71, 49.48, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 0.895 }, + "s": [63.59, 49.88, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.399 }, + "i": { "x": 0.833, "y": 1.337 }, + "s": [50.81, 61.28, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [47.44, 39.78, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.607 }, + "i": { "x": 0.833, "y": 1.652 }, + "s": [64.45, 72.77, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [67.15, 42.98, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.207 }, + "i": { "x": 0.833, "y": 1.036 }, + "s": [43.27, 62.38, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [27.16, 76.08, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.634 }, + "i": { "x": 0.833, "y": 0.262 }, + "s": [50.25, 54.94, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [47.57, 54.58, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.154 }, + "i": { "x": 0.833, "y": 0.703 }, + "s": [26.5, 72.01, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.116 }, + "i": { "x": 0.833, "y": 0.998 }, + "s": [33.88, 65.98, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.002 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [52.83, 35.71, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.135 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [34.38, 28.97, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 1.486 }, + "i": { "x": 0.833, "y": 0.585 }, + "s": [41.43, 56.93, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 1.234 }, + "s": [41.85, 65.54, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [43.52, 57.06, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 1.375 }, + "s": [37.15, 37.07, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [41.61, 37.58, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 0.877 }, + "s": [17.08, 42.25, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.257 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [47.78, 48.79, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.02 }, + "i": { "x": 0.833, "y": 0.901 }, + "s": [62.47, 39.51, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.536 }, + "i": { "x": 0.833, "y": 0.553 }, + "s": [50.63, 39.15, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.782 }, + "s": [48.45, 47.7, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.859 }, + "s": [38.93, 41.1, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.203 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [23.51, 23.99, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.106 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [12.81, 0.96, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 1.052 }, + "s": [17.52, 10.71, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.032 }, + "i": { "x": 0.833, "y": 0.639 }, + "s": [22.36, 35.43, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.99 }, + "s": [14.52, 21.92, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.011 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [-11.63, 8.12, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.06 }, + "i": { "x": 0.833, "y": 0.893 }, + "s": [11.37, 9.29, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.379 }, + "i": { "x": 0.833, "y": 1.57 }, + "s": [-1.99, 30.27, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [-5.76, 41.83, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.061 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [23.75, 25.28, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 1.129 }, + "s": [6.66, 1.33, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [-8.98, 19.31, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.028 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [30.85, 39.09, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.146 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [1.1, 14.24, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [11.9, -1.38, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.314 }, + "i": { "x": 0.833, "y": 0.521 }, + "s": [21.32, 31.82, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.101 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [19.34, 7.82, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.359 }, + "i": { "x": 0.833, "y": 0.265 }, + "s": [9.94, 31.4, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [11.71, 10.71, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 1.068 }, + "s": [25.58, 4.72, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [41.21, -0.28, 100], + "t": 58 + }, + { "s": [12.74, 8.21, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.647 }, + "s": [131.81, 179.95, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.109 }, + "i": { "x": 0.833, "y": 0.769 }, + "s": [130.86, 178.68, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [127.87, 174.53, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [123.66, 166.23, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [121.33, 155.85, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [121.79, 146.45, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [124.03, 139.02, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [127.05, 133.42, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [130.32, 129.23, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [133.55, 126.08, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [136.65, 123.68, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [139.57, 121.85, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [142.3, 120.46, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [144.84, 119.39, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [147.18, 118.57, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [149.33, 117.93, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [151.29, 117.44, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [153.08, 117.08, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [154.72, 116.81, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [156.21, 116.63, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [157.56, 116.51, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [158.79, 116.46, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.89, 116.45, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [160.87, 116.49, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [161.75, 116.56, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [162.53, 116.66, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [163.21, 116.78, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [163.8, 116.93, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [164.3, 117.08, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [164.73, 117.25, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [165.09, 117.42, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [165.38, 117.6, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [165.61, 117.77, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [165.79, 117.94, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [165.91, 118.1, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [166, 118.25, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [166.04, 118.38, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [166.05, 118.49, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [166.04, 118.57, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [166.01, 118.63, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.197 }, + "i": { "x": 0.833, "y": 0.799 }, + "s": [165.97, 118.65, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.143 }, + "i": { "x": 0.833, "y": 0.778 }, + "s": [165.94, 118.63, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.133 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [165.95, 118.58, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [165.97, 118.49, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [165.98, 118.38, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [165.97, 118.26, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [165.96, 118.12, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [165.92, 117.99, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [165.88, 117.85, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [165.83, 117.71, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [165.76, 117.58, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [165.69, 117.46, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [165.61, 117.34, 0], + "t": 58 + }, + { "s": [165.53, 117.24, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 33 + }, + { "s": [0], "t": 49 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 12 + }, + { + "ty": 4, + "nm": "Shape Layer 39", + "sr": 1, + "st": 11, + "op": 60, + "ip": 11, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.877 }, + "s": [28.98, 56.32, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.259 }, + "i": { "x": 0.833, "y": 0.969 }, + "s": [43.82, 25.22, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.05 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [50.88, 38.85, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.208 }, + "i": { "x": 0.833, "y": 1.424 }, + "s": [46.48, 52.63, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.819 }, + "s": [43.53, 24.5, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [61.5, 43.69, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [82.58, 46.68, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [63.35, 59.94, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.266 }, + "i": { "x": 0.833, "y": 0.747 }, + "s": [39.91, 58.47, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.124 }, + "i": { "x": 0.833, "y": 1.055 }, + "s": [45.51, 68.98, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [56.93, 49.53, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -1.179 }, + "i": { "x": 0.833, "y": 0.473 }, + "s": [37.98, 45.39, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [39.23, 65.66, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.364 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [45.89, 32.42, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 1.832 }, + "s": [44.65, 26.73, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.076 }, + "i": { "x": 0.833, "y": 1.069 }, + "s": [46.28, 39.82, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [28.37, 69.42, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.102 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [61.07, 57.04, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.104 }, + "i": { "x": 0.833, "y": 1.408 }, + "s": [46.39, 54.53, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.982 }, + "s": [52.91, 37.46, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.022 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [14.51, 54.06, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [44.82, 53, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.177 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [73.36, 32.6, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [64.22, 46.8, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [55.87, 60.94, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.141 }, + "i": { "x": 0.833, "y": 1.464 }, + "s": [48.41, 65.8, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [51.18, 57.87, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 1.54 }, + "i": { "x": 0.833, "y": 1.398 }, + "s": [32.95, 39.74, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [31.91, 6.16, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.911 }, + "i": { "x": 0.833, "y": -3.208 }, + "s": [37.93, 42.17, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [37.42, 59.4, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.443 }, + "i": { "x": 0.833, "y": 0.96 }, + "s": [12.47, 22.98, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.077 }, + "i": { "x": 0.833, "y": 1.134 }, + "s": [16.42, 17.9, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.683 }, + "s": [14.36, 37.53, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [19.71, 31.64, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 0.787 }, + "s": [34.73, 17.34, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.137 }, + "i": { "x": 0.833, "y": 1.078 }, + "s": [18.25, 22.75, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [-7.48, -6.03, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.139 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [42.34, 23.4, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 1.669 }, + "i": { "x": 0.833, "y": 1.314 }, + "s": [23.68, 16.14, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 0.73 }, + "s": [22.7, -3.19, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.12 }, + "i": { "x": 0.833, "y": 1.035 }, + "s": [27.37, 19.39, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [37.85, 36.43, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.324 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [22.9, 43.01, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.222 }, + "i": { "x": 0.833, "y": 0.037 }, + "s": [25.96, 15.14, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 1.024 }, + "s": [27.81, -6.96, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.019 }, + "i": { "x": 0.833, "y": 0.891 }, + "s": [47.26, -8.09, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.356 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [22.24, -1.21, 100], + "t": 58 + }, + { "s": [14.61, 19.56, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.587 }, + "s": [130.23, 175.56, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [130.19, 176.89, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [129.63, 182.08, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [127.37, 191.27, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [123.18, 200.66, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [118.16, 207.75, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [113.1, 212.6, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [108.34, 215.81, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [104, 217.9, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [100.07, 219.23, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [96.54, 220.04, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [93.37, 220.5, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [90.51, 220.71, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [87.94, 220.74, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [85.6, 220.65, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [83.48, 220.47, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [81.56, 220.22, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [79.81, 219.92, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [78.23, 219.59, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [76.79, 219.23, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [75.5, 218.84, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.33, 218.44, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [73.27, 218.03, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [72.32, 217.6, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [71.46, 217.18, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [70.68, 216.76, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [69.98, 216.36, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [69.35, 215.99, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [68.79, 215.65, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [68.3, 215.34, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [67.86, 215.08, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [67.49, 214.86, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [67.17, 214.69, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [66.9, 214.57, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.194 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [66.68, 214.49, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [66.51, 214.48, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [66.39, 214.51, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.81 }, + "s": [66.31, 214.6, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.81 }, + "s": [66.27, 214.73, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.819 }, + "s": [66.28, 214.92, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [66.32, 215.15, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [66.38, 215.41, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [66.45, 215.7, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [66.52, 216.02, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [66.58, 216.35, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [66.65, 216.7, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [66.73, 217.04, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [66.79, 217.39, 0], + "t": 58 + }, + { "s": [66.86, 217.73, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 16 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 38 + }, + { "s": [0], "t": 54 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 13 + }, + { + "ty": 4, + "nm": "Shape Layer 38", + "sr": 1, + "st": 7, + "op": 60, + "ip": 7, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.684 }, + "s": [49.14, 40.81, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 1.351 }, + "s": [51.03, 40.46, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.905 }, + "s": [56.32, 40.91, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.695 }, + "i": { "x": 0.833, "y": 1.398 }, + "s": [28.75, 51.66, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [24.99, 21.19, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.06 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [46.7, 32.71, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.042 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [34.05, 57.34, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.285 }, + "i": { "x": 0.833, "y": 0.246 }, + "s": [42.46, 48.18, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.96 }, + "s": [45.95, 33.18, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.077 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [73.98, 61.17, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [59.4, 72.45, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.987 }, + "s": [44.76, 43.03, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.015 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [32.25, 58.17, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.223 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [42.84, 38.84, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.113 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [49.15, 28.43, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.477 }, + "i": { "x": 0.833, "y": 1.102 }, + "s": [46.47, 63.8, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.046 }, + "i": { "x": 0.833, "y": 2.575 }, + "s": [46.87, 52.7, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 1.108 }, + "s": [45.98, 34.22, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [63.58, 38.58, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [23.19, 73.1, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.43 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [51.3, 48.65, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 1.17 }, + "s": [58.06, 63.16, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [65.73, 44.48, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.205 }, + "i": { "x": 0.833, "y": 1.094 }, + "s": [42.42, 58.43, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [26.5, 56.26, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.139 }, + "i": { "x": 0.833, "y": 0.9 }, + "s": [60.47, 37.72, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.496 }, + "i": { "x": 0.833, "y": 0.39 }, + "s": [47.72, 23.27, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.097 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [45.15, 44.02, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.019 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [28.88, 63.38, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.405 }, + "i": { "x": 0.833, "y": 0.407 }, + "s": [42.12, 74.01, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.097 }, + "i": { "x": 0.833, "y": 0.957 }, + "s": [39.86, 55.99, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.089 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [26.03, 18.19, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 1.098 }, + "s": [32.72, 24.83, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [39.65, 45.94, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [24.55, 8.13, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.933 }, + "i": { "x": 0.833, "y": 1.43 }, + "s": [15.62, 33.42, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.97 }, + "s": [14.74, 31.66, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.046 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [20.14, 26.55, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -2.661 }, + "i": { "x": 0.833, "y": 17.435 }, + "s": [16.67, -6.68, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 0.997 }, + "s": [16.78, 5.29, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.004 }, + "i": { "x": 0.833, "y": 0.893 }, + "s": [-4.08, -14.07, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.375 }, + "i": { "x": 0.833, "y": 0.892 }, + "s": [15.93, -9.18, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.364 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [21.65, -4.07, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.476 }, + "s": [23.34, -8.54, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 1.098 }, + "s": [24.76, 5.03, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [32.25, 38.4, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 1.665 }, + "i": { "x": 0.833, "y": 1.638 }, + "s": [15.98, 45.77, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.718 }, + "s": [15.13, 7.61, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [22.54, -23.66, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.313 }, + "i": { "x": 0.833, "y": 0.25 }, + "s": [40.25, -16.96, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [36.53, 1.15, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.112 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [6.75, 12.93, 100], + "t": 58 + }, + { "s": [19.42, 5.37, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.591 }, + "s": [128.14, 175.39, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [129.58, 174.73, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [135.02, 171.71, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [144.32, 164.7, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [153.11, 154.55, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [158.73, 143.7, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [161.3, 133.47, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [161.53, 124.48, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [160.18, 116.92, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [157.84, 110.79, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [155, 105.92, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [151.98, 102.07, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [148.96, 99.02, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [146.05, 96.61, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [143.3, 94.68, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [140.73, 93.13, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [138.35, 91.88, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [136.15, 90.87, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [134.14, 90.05, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [132.3, 89.41, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [130.62, 88.89, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [129.09, 88.5, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [127.71, 88.21, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [126.46, 88.01, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [125.34, 87.89, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [124.34, 87.85, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [123.45, 87.86, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [122.67, 87.93, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [121.98, 88.06, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [121.39, 88.22, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [120.88, 88.42, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [120.44, 88.66, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [120.09, 88.92, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [119.8, 89.2, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [119.58, 89.49, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [119.42, 89.79, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [119.31, 90.09, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [119.25, 90.37, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [119.24, 90.64, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [119.27, 90.88, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [119.33, 91.09, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [119.41, 91.27, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [119.48, 91.47, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [119.55, 91.69, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [119.61, 91.93, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [119.67, 92.17, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [119.73, 92.42, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [119.78, 92.67, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [119.83, 92.91, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [119.87, 93.13, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [119.92, 93.35, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [119.96, 93.54, 0], + "t": 58 + }, + { "s": [120, 93.71, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 34 + }, + { "s": [0], "t": 50 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 14 + }, + { + "ty": 4, + "nm": "Shape Layer 37", + "sr": 1, + "st": 9, + "op": 60, + "ip": 9, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 2.237 }, + "s": [29.51, 40.9, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [27.85, 37.45, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.136 }, + "i": { "x": 0.833, "y": 0.869 }, + "s": [54.13, 41.48, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.23 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [44.13, 68.69, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 0.615 }, + "s": [38.45, 69.53, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.957 }, + "s": [43.63, 53.32, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.09 }, + "i": { "x": 0.833, "y": 0.759 }, + "s": [62.38, 73.61, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [53.37, 83.01, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [36.36, 38.16, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.45 }, + "i": { "x": 0.833, "y": 0.468 }, + "s": [22.66, 55.36, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 0.94 }, + "s": [24.8, 36.09, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.209 }, + "i": { "x": 0.833, "y": 1.179 }, + "s": [36.32, 35.27, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.057 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [33.04, 52.54, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.577 }, + "i": { "x": 0.833, "y": -0.318 }, + "s": [43.37, 69.93, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 1.032 }, + "s": [45.11, 41.54, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.023 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [70.98, 57.16, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 1.509 }, + "i": { "x": 0.833, "y": 1.702 }, + "s": [35.13, 67.3, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.886 }, + "s": [33.04, 56.88, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.312 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [52.77, 54.2, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 1.302 }, + "s": [59.97, 63.36, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.065 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [66.84, 62.09, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.168 }, + "i": { "x": 0.833, "y": 0.917 }, + "s": [35.04, 67.26, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -10.728 }, + "i": { "x": 0.833, "y": 4.698 }, + "s": [45.57, 47.43, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 1.281 }, + "s": [45.49, 27.63, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [49.17, 25.82, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -7.898 }, + "i": { "x": 0.833, "y": -6.847 }, + "s": [33.05, 51.7, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.084 }, + "i": { "x": 0.833, "y": 0.94 }, + "s": [33.22, 89.12, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.209 }, + "i": { "x": 0.833, "y": 0.562 }, + "s": [48.9, 80.42, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [44.43, 55.86, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [25.4, 51, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -3.839 }, + "i": { "x": 0.833, "y": -2.601 }, + "s": [44.12, 50.14, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [43.72, 19, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.669 }, + "i": { "x": 0.833, "y": 1.446 }, + "s": [26.94, 49.21, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [28.8, 51.72, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.325 }, + "i": { "x": 0.833, "y": 1.109 }, + "s": [16.99, 47.46, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [19.4, 1.59, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -1.292 }, + "i": { "x": 0.833, "y": 4.228 }, + "s": [13.84, -0.58, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [14.18, 7.14, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.02 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [0.8, -11.83, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.991 }, + "i": { "x": 0.833, "y": 2.207 }, + "s": [11.62, 0.95, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 0.933 }, + "s": [10.78, 0.23, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.338 }, + "i": { "x": 0.833, "y": 0.444 }, + "s": [23.78, 24.48, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [21.21, 26.83, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 1.042 }, + "s": [6.63, 42.73, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [-6.27, 24.69, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [13.12, -13.38, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.832 }, + "i": { "x": 0.833, "y": 2.014 }, + "s": [29.64, -16.63, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [31.48, 5.02, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.093 }, + "i": { "x": 0.833, "y": 0.945 }, + "s": [7.27, 5.19, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.162 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [18.71, -4.88, 100], + "t": 58 + }, + { "s": [14.83, 5.82, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.583 }, + "s": [128.94, 175.87, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.763 }, + "s": [128.74, 177.51, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [127.9, 184.1, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [127.11, 196.33, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [127.89, 209.96, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [130.66, 221.44, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [134.91, 230.07, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [139.9, 236.09, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [145, 240.09, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [149.87, 242.68, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [154.37, 244.33, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [158.48, 245.38, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [162.2, 246.03, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [165.59, 246.4, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [168.67, 246.6, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [171.47, 246.67, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [174.02, 246.67, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [176.35, 246.6, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [178.47, 246.49, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [180.41, 246.36, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [182.17, 246.2, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [183.78, 246.02, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [185.24, 245.83, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [186.55, 245.61, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [187.74, 245.39, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [188.82, 245.19, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [189.79, 245.02, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [190.65, 244.85, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [191.43, 244.71, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [192.12, 244.57, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [192.73, 244.45, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [193.26, 244.34, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [193.72, 244.24, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [194.12, 244.14, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [194.45, 244.05, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [194.72, 243.97, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [194.94, 243.88, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.857 }, + "s": [195.11, 243.8, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.2 }, + "i": { "x": 0.833, "y": 0.857 }, + "s": [195.23, 243.72, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.2 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [195.3, 243.65, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [195.33, 243.57, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [195.33, 243.49, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [195.34, 243.4, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [195.36, 243.3, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [195.38, 243.18, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [195.4, 243.06, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [195.43, 242.94, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [195.46, 242.81, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [195.5, 242.68, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [195.54, 242.55, 0], + "t": 58 + }, + { "s": [195.6, 242.43, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 14 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 36 + }, + { "s": [0], "t": 52 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 15 + }, + { + "ty": 4, + "nm": "Shape Layer 36", + "sr": 1, + "st": 5, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [54.6, 64.09, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.414 }, + "i": { "x": 0.833, "y": 0.087 }, + "s": [48.85, 62.36, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [47.41, 23.99, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -0.117 }, + "i": { "x": 0.833, "y": 0.773 }, + "s": [33.01, 41.75, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.132 }, + "i": { "x": 0.833, "y": 0.893 }, + "s": [39, 64.07, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.381 }, + "i": { "x": 0.833, "y": 1.215 }, + "s": [49.34, 55.33, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [52.24, 80.56, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.477 }, + "i": { "x": 0.833, "y": 0.974 }, + "s": [41.89, 59.28, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.039 }, + "i": { "x": 0.833, "y": 1.674 }, + "s": [43.43, 66.45, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [42.38, 77.11, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.914 }, + "i": { "x": 0.833, "y": -0.583 }, + "s": [51.94, 64.81, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.088 }, + "i": { "x": 0.833, "y": 0.868 }, + "s": [51.14, 29.41, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.225 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [36.76, 54.86, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.244 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [28.31, 60.33, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 2.53 }, + "i": { "x": 0.833, "y": 6.07 }, + "s": [23.92, 61.29, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.082 }, + "i": { "x": 0.833, "y": 0.801 }, + "s": [23.77, 60.76, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.143 }, + "i": { "x": 0.833, "y": 0.786 }, + "s": [33.01, 63.02, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.136 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [45.88, 36.11, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.898 }, + "s": [66.1, 68.63, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.448 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [46.22, 48.49, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.276 }, + "i": { "x": 0.833, "y": 0.146 }, + "s": [41.68, 50.16, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.778 }, + "s": [42.73, 41.28, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.134 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [52.46, 61.11, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.04 }, + "i": { "x": 0.833, "y": 0.792 }, + "s": [68.59, 62.34, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [57.69, 75.26, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.054 }, + "i": { "x": 0.833, "y": 0.974 }, + "s": [41.39, 38.34, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.038 }, + "i": { "x": 0.833, "y": 0.673 }, + "s": [51.28, 45.29, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.112 }, + "i": { "x": 0.833, "y": 0.925 }, + "s": [44.47, 28.28, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.747 }, + "i": { "x": 0.833, "y": 0.647 }, + "s": [24.53, 22.05, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.109 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [26.53, 58.79, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 1.244 }, + "s": [33.01, 53.3, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [39.99, 54.79, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.101 }, + "i": { "x": 0.833, "y": 0.785 }, + "s": [12.55, 52.65, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.136 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [24.98, 44.38, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.034 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [44.6, 35.72, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.231 }, + "i": { "x": 0.833, "y": 1.534 }, + "s": [30.63, 33.64, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [34.34, 39.44, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.24 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [6.92, 34.48, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.419 }, + "i": { "x": 0.833, "y": 1.32 }, + "s": [13.98, 11.2, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 0.869 }, + "s": [15.74, 13.09, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.228 }, + "i": { "x": 0.833, "y": 1.092 }, + "s": [7.25, 18.25, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.899 }, + "s": [2.35, 6.03, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.472 }, + "i": { "x": 0.833, "y": 1.075 }, + "s": [12.66, 19.09, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.799 }, + "s": [14.87, 5.8, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.142 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [10.66, 50.17, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.674 }, + "s": [4.69, 14.43, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.112 }, + "i": { "x": 0.833, "y": 1.022 }, + "s": [-0.63, 38.73, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.018 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [-16.14, 35.01, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [3.53, 8.58, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.683 }, + "i": { "x": 0.833, "y": 0.273 }, + "s": [21.75, 7.35, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [19.77, 10.07, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 1.953 }, + "i": { "x": 0.833, "y": 2.637 }, + "s": [4.47, -4.51, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.935 }, + "s": [3.79, 9.64, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.3 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [17.87, -15.55, 100], + "t": 58 + }, + { "s": [14.81, 6.91, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.604 }, + "s": [131.1, 178.06, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.775 }, + "s": [132.2, 177.12, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.133 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [135.01, 172.43, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [126.48, 170.91, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [116.52, 171.85, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [107.83, 172.67, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [100.59, 173.14, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [94.51, 173.3, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [89.31, 173.19, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [84.8, 172.88, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [80.85, 172.41, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [77.37, 171.79, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [74.27, 171.06, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [71.5, 170.24, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [69.03, 169.36, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [66.81, 168.42, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [64.83, 167.44, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [63.05, 166.44, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [61.46, 165.43, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [60.04, 164.41, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [58.77, 163.4, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [57.65, 162.41, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [56.66, 161.44, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [55.79, 160.51, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [55.02, 159.6, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [54.35, 158.74, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [53.77, 157.92, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [53.27, 157.15, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [52.84, 156.43, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [52.48, 155.75, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [52.18, 155.12, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [51.93, 154.55, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [51.74, 154.02, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [51.59, 153.55, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [51.49, 153.13, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [51.42, 152.76, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [51.39, 152.45, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [51.4, 152.19, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [51.43, 151.98, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [51.5, 151.82, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [51.59, 151.72, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [51.69, 151.64, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [51.79, 151.59, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.197 }, + "i": { "x": 0.833, "y": 0.863 }, + "s": [51.87, 151.54, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.214 }, + "i": { "x": 0.833, "y": 0.876 }, + "s": [51.93, 151.5, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.252 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [51.96, 151.47, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.742 }, + "s": [51.97, 151.45, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.123 }, + "i": { "x": 0.833, "y": 0.781 }, + "s": [51.96, 151.44, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.134 }, + "i": { "x": 0.833, "y": 0.801 }, + "s": [51.93, 151.44, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.144 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [51.87, 151.45, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [51.79, 151.47, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [51.7, 151.5, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [51.58, 151.54, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [51.45, 151.59, 0], + "t": 58 + }, + { "s": [51.3, 151.65, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 5 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 32 + }, + { "s": [0], "t": 48 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 16 + }, + { + "ty": 4, + "nm": "Shape Layer 35", + "sr": 1, + "st": 4, + "op": 60, + "ip": 4, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.112 }, + "s": [50.09, 66.74, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.048 }, + "i": { "x": 0.833, "y": 0.982 }, + "s": [43.62, 63.13, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": -0.023 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [58.79, 25.9, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.974 }, + "s": [46.9, 47.12, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -0.038 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [34.02, 79.55, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 1.054 }, + "s": [42.83, 60.79, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [33.23, 69.02, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.085 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [49.1, 48.54, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [41.23, 51.94, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.581 }, + "i": { "x": 0.833, "y": 2.653 }, + "s": [34.69, 71.1, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [33.6, 57.43, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.52 }, + "i": { "x": 0.833, "y": 0.876 }, + "s": [56.39, 24.93, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.255 }, + "i": { "x": 0.833, "y": -0.015 }, + "s": [53.24, 28.19, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [51.71, 78.92, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.189 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [34.66, 71.86, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.021 }, + "i": { "x": 0.833, "y": 1.191 }, + "s": [39.88, 71.14, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.88 }, + "s": [35.69, 63.11, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.271 }, + "i": { "x": 0.833, "y": 1.105 }, + "s": [49.47, 33.91, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.046 }, + "i": { "x": 0.833, "y": 1.034 }, + "s": [55.6, 62.7, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.024 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [41.77, 31.49, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.094 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [61.24, 29.96, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [52.11, 30.72, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [40.58, 47.77, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.689 }, + "i": { "x": 0.833, "y": 0.571 }, + "s": [54.98, 68.86, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 1.176 }, + "s": [53.43, 72.69, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.057 }, + "i": { "x": 0.833, "y": 0.971 }, + "s": [46.99, 45.08, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.044 }, + "i": { "x": 0.833, "y": 0.758 }, + "s": [67, 49.93, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 0.901 }, + "s": [53.91, 50.31, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.527 }, + "i": { "x": 0.833, "y": 1.016 }, + "s": [29.02, 29.97, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.013 }, + "i": { "x": 0.833, "y": 0.802 }, + "s": [24.34, 42.14, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.144 }, + "i": { "x": 0.833, "y": 1.11 }, + "s": [29.91, 31.66, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [37.59, 48.44, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.103 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [19.81, 38.59, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 1.016 }, + "s": [27.78, 34.29, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.013 }, + "i": { "x": 0.833, "y": 1.025 }, + "s": [34.2, 46.29, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.019 }, + "i": { "x": 0.833, "y": 1.03 }, + "s": [26.54, 28.62, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [36.5, 28.83, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 1.102 }, + "s": [22.91, 24.56, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.046 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [12.04, 13.44, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.008 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [36.17, 34.27, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -1.08 }, + "i": { "x": 0.833, "y": 0.782 }, + "s": [9.64, 20.3, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.772 }, + "s": [11.54, 24.36, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.131 }, + "i": { "x": 0.833, "y": 1.128 }, + "s": [14.6, 28.89, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [19.91, 15.27, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [6.43, 46.74, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.153 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [-6.43, 5.42, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.32 }, + "i": { "x": 0.833, "y": 1.831 }, + "s": [-1.9, 34.25, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.076 }, + "i": { "x": 0.833, "y": 0.879 }, + "s": [-2.83, 30.19, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.266 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [7.45, 17.93, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.208 }, + "i": { "x": 0.833, "y": 1.125 }, + "s": [12.14, 12.97, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [15.28, 13.83, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.282 }, + "i": { "x": 0.833, "y": 1.155 }, + "s": [7.42, 1.25, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 1.018 }, + "s": [4.13, 9.04, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.015 }, + "i": { "x": 0.833, "y": 1.07 }, + "s": [13.53, -15.61, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [2.15, -18.75, 100], + "t": 58 + }, + { "s": [23.08, 30.58, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.58 }, + "s": [131.76, 176.93, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.763 }, + "s": [132.26, 176.41, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [134.27, 174.32, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [137.81, 170.29, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [141.55, 165.56, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [144.65, 161.27, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [147.15, 157.61, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [149.22, 154.53, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [151.03, 151.92, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [152.69, 149.76, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [154.39, 148.15, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [156.22, 148.15, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [157.18, 149.93, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [157.69, 151.77, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [158.04, 153.46, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [158.32, 155.01, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [158.57, 156.41, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [158.79, 157.68, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [159, 158.84, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [159.21, 159.89, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [159.41, 160.84, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.61, 161.7, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.8, 162.46, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.99, 163.15, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [160.18, 163.76, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [160.35, 164.3, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [160.52, 164.77, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [160.67, 165.18, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [160.8, 165.53, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [160.86, 165.84, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [160.87, 166.11, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [160.82, 166.35, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [160.72, 166.56, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [160.58, 166.73, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [160.39, 166.88, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [160.17, 167, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [159.91, 167.1, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [159.62, 167.18, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [159.31, 167.24, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [158.97, 167.27, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [158.62, 167.29, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [158.25, 167.3, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [157.88, 167.32, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [157.51, 167.34, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [157.13, 167.37, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [156.76, 167.4, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [156.41, 167.44, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [156.06, 167.48, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [155.73, 167.52, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [155.43, 167.56, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [155.16, 167.6, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [154.92, 167.64, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.857 }, + "s": [154.71, 167.67, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.2 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [154.55, 167.7, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.232 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [154.43, 167.72, 0], + "t": 58 + }, + { "s": [154.36, 167.73, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 4 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 31 + }, + { "s": [0], "t": 47 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 17 + }, + { + "ty": 4, + "nm": "Shape Layer 34", + "sr": 1, + "st": 10, + "op": 60, + "ip": 10, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.023 }, + "s": [45.09, 47.22, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.018 }, + "i": { "x": 0.833, "y": 1.063 }, + "s": [30.88, 48.72, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [49.09, 65.71, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.11 }, + "i": { "x": 0.833, "y": 0.799 }, + "s": [17.01, 69.74, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.142 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [30.85, 43.07, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.917 }, + "i": { "x": 0.833, "y": 1.12 }, + "s": [50.4, 15.31, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [52.36, 58.38, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.987 }, + "s": [47.59, 58.74, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.016 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [54.64, 72.52, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 1.079 }, + "s": [48.7, 63.68, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [55.14, 50.51, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.304 }, + "i": { "x": 0.833, "y": 1.27 }, + "s": [42.63, 47.05, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.89 }, + "s": [37.89, 27.18, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.348 }, + "i": { "x": 0.833, "y": 1.303 }, + "s": [57.98, 24.19, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.065 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [64.3, 32.94, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.244 }, + "i": { "x": 0.833, "y": 0.997 }, + "s": [34.97, 34.15, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.003 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [42.45, 79.93, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.032 }, + "i": { "x": 0.833, "y": 0.554 }, + "s": [35.25, 76.92, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [40.43, 64.03, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.64 }, + "i": { "x": 0.833, "y": 1.416 }, + "s": [63.02, 54.97, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [66.4, 61.43, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.974 }, + "s": [46.12, 55.12, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.038 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [28.7, 43.61, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.243 }, + "i": { "x": 0.833, "y": 0.889 }, + "s": [40.69, 41.74, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.338 }, + "i": { "x": 0.833, "y": 0.695 }, + "s": [46.93, 57.38, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 1.062 }, + "s": [48.98, 51.38, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.795 }, + "s": [54.42, 43.1, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [44.91, 56.84, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.007 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [31.06, 43.34, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.232 }, + "i": { "x": 0.833, "y": 1.09 }, + "s": [43.81, 40.24, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.043 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [50.95, 52.67, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.032 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [36.14, 31.29, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.02 }, + "i": { "x": 0.833, "y": 0.81 }, + "s": [46.8, 52.78, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [38.24, 22.51, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.899 }, + "s": [27.28, 31.96, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.487 }, + "i": { "x": 0.833, "y": 0.701 }, + "s": [14.07, 49.37, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [11.34, 33.35, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.611 }, + "i": { "x": 0.833, "y": 0.701 }, + "s": [4.28, 47.48, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.116 }, + "i": { "x": 0.833, "y": 1.089 }, + "s": [3.16, 7.17, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.043 }, + "i": { "x": 0.833, "y": 0.758 }, + "s": [0.27, 27.42, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [6.25, 22.93, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.02 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [17.66, 29.17, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.242 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [8.5, 2.47, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 0.67 }, + "s": [10.84, 13.98, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.112 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [12.23, 8.8, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 1.216 }, + "s": [16.32, 10.21, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.985 }, + "s": [20.81, 2.12, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.019 }, + "i": { "x": 0.833, "y": 1.012 }, + "s": [4.72, -21.1, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.01 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [17.88, 24.32, 100], + "t": 58 + }, + { "s": [2.87, 19.36, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.622 }, + "s": [132.45, 178.02, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.107 }, + "i": { "x": 0.833, "y": 0.767 }, + "s": [133.28, 177.34, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [135.81, 174.31, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [139.21, 167.74, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [141.41, 159.58, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [142.29, 152.14, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [142.46, 145.82, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [142.23, 140.51, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [141.76, 136, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [141.14, 132.14, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [140.4, 128.8, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [139.59, 125.91, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [138.71, 123.38, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [137.78, 121.18, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [136.77, 119.28, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [135.7, 117.64, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [134.51, 116.32, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [133.11, 115.49, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [131.67, 115.99, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [130.79, 117.29, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [130.16, 118.62, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [129.65, 119.88, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [129.19, 121.05, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [128.79, 122.13, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [128.41, 123.13, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [128.07, 124.05, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [127.75, 124.88, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [127.46, 125.63, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [127.21, 126.31, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [126.98, 126.9, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [126.8, 127.41, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [126.65, 127.84, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.194 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [126.54, 128.2, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.205 }, + "i": { "x": 0.833, "y": 0.862 }, + "s": [126.49, 128.47, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.21 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [126.48, 128.66, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.802 }, + "s": [126.53, 128.77, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.144 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [126.64, 128.8, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [126.79, 128.78, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [126.97, 128.76, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [127.18, 128.72, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [127.4, 128.67, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [127.63, 128.63, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [127.86, 128.61, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [128.1, 128.61, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [128.33, 128.63, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [128.56, 128.66, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [128.77, 128.71, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [128.98, 128.77, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [129.16, 128.84, 0], + "t": 58 + }, + { "s": [129.32, 128.91, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 15 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 37 + }, + { "s": [0], "t": 53 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 18 + }, + { + "ty": 4, + "nm": "Shape Layer 33", + "sr": 1, + "st": 1, + "op": 60, + "ip": 1, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.161 }, + "s": [43.31, 73.42, 100], + "t": 1 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.987 }, + "s": [49.34, 38.47, 100], + "t": 2 + }, + { + "o": { "x": 0.167, "y": -0.015 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [31.65, 70.09, 100], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 1.03 }, + "s": [46.57, 50.38, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [63.59, 37.37, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": -0.229 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [40.41, 80.72, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.219 }, + "i": { "x": 0.833, "y": 1.05 }, + "s": [46.6, 67.25, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.544 }, + "s": [50.39, 47.22, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 1.032 }, + "s": [44.34, 57.97, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.023 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [17.31, 64.33, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.056 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [54.6, 65.99, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 1.085 }, + "s": [32.28, 77.58, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.042 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [12.24, 51.41, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.328 }, + "i": { "x": 0.833, "y": 0.884 }, + "s": [52.73, 38.14, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.298 }, + "i": { "x": 0.833, "y": 1.34 }, + "s": [44.54, 39.35, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [41.36, 30.96, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -2.065 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [57.52, 67.73, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 2.695 }, + "s": [56.9, 54.42, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.902 }, + "s": [57.83, 56.16, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.556 }, + "i": { "x": 0.833, "y": 1.407 }, + "s": [37.97, 33.84, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.863 }, + "s": [34.47, 35.62, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.213 }, + "i": { "x": 0.833, "y": 1.073 }, + "s": [55.09, 38.46, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.039 }, + "i": { "x": 0.833, "y": 0.871 }, + "s": [68.34, 48.62, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.235 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [43.48, 23.41, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.202 }, + "i": { "x": 0.833, "y": 1.03 }, + "s": [29.84, 67.4, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [20.27, 82.82, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.674 }, + "i": { "x": 0.833, "y": 2.086 }, + "s": [33.33, 62.84, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [31.89, 49.58, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [52.08, 33.87, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -3.288 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [32.23, 38.24, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.143 }, + "i": { "x": 0.833, "y": -1.723 }, + "s": [32.72, 27.2, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [32.54, 30.04, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.778 }, + "s": [26.82, 41.73, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.133 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [31.95, 20.64, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.878 }, + "s": [40.48, 21.79, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.264 }, + "i": { "x": 0.833, "y": 0.906 }, + "s": [24.67, 24.22, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.747 }, + "i": { "x": 0.833, "y": 2.063 }, + "s": [17.36, 19.14, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.889 }, + "s": [16.45, 13.72, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.331 }, + "i": { "x": 0.833, "y": 1.055 }, + "s": [29.06, 41.5, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [33.31, 13, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.055 }, + "i": { "x": 0.833, "y": 1.215 }, + "s": [26.24, 15.41, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [30.52, -4.62, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.925 }, + "s": [15.2, 2.17, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.72 }, + "i": { "x": 0.833, "y": 1.261 }, + "s": [-0.29, 34.98, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.063 }, + "i": { "x": 0.833, "y": 1.131 }, + "s": [1.32, 14.84, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [-5.32, 29.02, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.242 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [11.77, 7.4, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 1.541 }, + "s": [7.4, 12.4, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [3.94, 9.66, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.04 }, + "i": { "x": 0.833, "y": 0.881 }, + "s": [29.87, 16.33, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.278 }, + "i": { "x": 0.833, "y": 1.037 }, + "s": [12.41, -8.38, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.026 }, + "i": { "x": 0.833, "y": 0.927 }, + "s": [4.93, 5.01, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.597 }, + "i": { "x": 0.833, "y": 0.809 }, + "s": [15.74, 2.96, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [14.42, 21.54, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.422 }, + "i": { "x": 0.833, "y": 0.876 }, + "s": [12.7, 17.71, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.252 }, + "i": { "x": 0.833, "y": 0.716 }, + "s": [12.28, 10.76, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 1.719 }, + "s": [12.07, 31.98, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.075 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [11.57, 20.74, 100], + "t": 58 + }, + { "s": [16.41, 6.68, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.635 }, + "s": [132.04, 178.1, 0], + "t": 1 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.798 }, + "s": [132.93, 177.16, 0], + "t": 2 + }, + { + "o": { "x": 0.167, "y": 0.142 }, + "i": { "x": 0.833, "y": 0.803 }, + "s": [136.11, 174.37, 0], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.144 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [141.47, 175.39, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [140.66, 184.57, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [139.1, 192.5, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [137.68, 199.13, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [136.45, 204.76, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [135.4, 209.63, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [134.5, 213.92, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [133.71, 217.76, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [133.02, 221.21, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [132.41, 224.35, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [131.87, 227.22, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [131.39, 229.84, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [130.96, 232.26, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [130.58, 234.48, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [130.25, 236.53, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [129.96, 238.41, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [129.71, 240.14, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [129.5, 241.72, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [129.32, 243.16, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [129.19, 244.46, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [129.09, 245.63, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [129.04, 246.66, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [129.02, 247.56, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [129.05, 248.33, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [129.12, 248.97, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [129.23, 249.48, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [129.39, 249.85, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [129.59, 250.11, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [129.81, 250.29, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [130.04, 250.43, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [130.28, 250.53, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [130.51, 250.6, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [130.73, 250.63, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [130.94, 250.63, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [131.14, 250.6, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [131.32, 250.55, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [131.47, 250.48, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [131.6, 250.39, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [131.71, 250.3, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.202 }, + "i": { "x": 0.833, "y": 0.868 }, + "s": [131.79, 250.23, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.227 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [131.85, 250.18, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.281 }, + "i": { "x": 0.833, "y": 0.799 }, + "s": [131.87, 250.14, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.142 }, + "i": { "x": 0.833, "y": 0.748 }, + "s": [131.88, 250.12, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.125 }, + "i": { "x": 0.833, "y": 0.791 }, + "s": [131.85, 250.12, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 0.808 }, + "s": [131.8, 250.13, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.147 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [131.73, 250.15, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [131.64, 250.18, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [131.53, 250.22, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [131.4, 250.26, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [131.26, 250.3, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [131.11, 250.34, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [130.95, 250.37, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [130.8, 250.39, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [130.65, 250.4, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [130.51, 250.38, 0], + "t": 58 + }, + { "s": [130.39, 250.35, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 1 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 28 + }, + { "s": [0], "t": 44 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 19 + }, + { + "ty": 4, + "nm": "Shape Layer 32", + "sr": 1, + "st": 4, + "op": 60, + "ip": 4, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [71.56, 33.39, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 7.109 }, + "i": { "x": 0.833, "y": 2.984 }, + "s": [50.12, 66.67, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 1.082 }, + "s": [49.87, 67.11, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 0.769 }, + "s": [56.18, 39.67, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [43.68, 61.04, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": -0.029 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [21.51, 70.5, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 1.068 }, + "s": [38, 69.63, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 1.009 }, + "s": [52.61, 70.16, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.009 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [26.11, 39.72, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -2.064 }, + "i": { "x": 0.833, "y": -1.061 }, + "s": [55.63, 58.24, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.087 }, + "i": { "x": 0.833, "y": 0.981 }, + "s": [54.48, 51.89, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.025 }, + "i": { "x": 0.833, "y": 0.95 }, + "s": [27.29, 21.31, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.128 }, + "i": { "x": 0.833, "y": 1.094 }, + "s": [48.23, 58.83, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.97 }, + "s": [39.98, 63.61, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.047 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [57.56, 50.32, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.192 }, + "i": { "x": 0.833, "y": 1.034 }, + "s": [46.31, 34.32, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.024 }, + "i": { "x": 0.833, "y": 0.781 }, + "s": [37.68, 47.54, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [49.87, 56.19, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.026 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [69.66, 64.58, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.797 }, + "s": [54.63, 28.92, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 1.009 }, + "s": [39.86, 54.35, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.008 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [18.57, 77.37, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.143 }, + "i": { "x": 0.833, "y": 1.012 }, + "s": [42.05, 51.68, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.011 }, + "i": { "x": 0.833, "y": 1.088 }, + "s": [33.41, 44.75, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.043 }, + "i": { "x": 0.833, "y": 1.042 }, + "s": [43.31, 36.7, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 0.935 }, + "s": [22.94, 35.16, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.298 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [53.65, 41.58, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.881 }, + "s": [46.93, 32.31, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.278 }, + "i": { "x": 0.833, "y": 1.231 }, + "s": [41.61, 53.05, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 1.189 }, + "s": [39.33, 20.59, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.94 }, + "s": [47.94, 38.1, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.209 }, + "i": { "x": 0.833, "y": 0.966 }, + "s": [19.79, 35.16, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.059 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [27.82, 30.9, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.244 }, + "i": { "x": 0.833, "y": 0.747 }, + "s": [23.11, 15.02, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.124 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [24.31, 34.81, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 1.061 }, + "s": [26.74, 11.11, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.035 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [29.61, 8, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.384 }, + "i": { "x": 0.833, "y": -0.945 }, + "s": [24.64, 4.14, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.087 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [23.27, 10.7, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.04 }, + "i": { "x": 0.833, "y": 0.927 }, + "s": [-7.53, 34.17, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.604 }, + "i": { "x": 0.833, "y": 1.52 }, + "s": [13.26, 15.85, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [10.74, 7.87, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.54 }, + "i": { "x": 0.833, "y": 0.588 }, + "s": [28.98, 5.49, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 1.055 }, + "s": [26.54, 5.06, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [16.92, 6.19, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.881 }, + "s": [32.94, -5.02, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.276 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [17.09, -16.8, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -1.801 }, + "i": { "x": 0.833, "y": 3.321 }, + "s": [10.21, -8.87, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 0.876 }, + "s": [10.51, -1.76, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.256 }, + "i": { "x": 0.833, "y": 1.331 }, + "s": [1.74, 21.91, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [-2.5, 28.33, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 1.482 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [18.53, 38.31, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.163 }, + "s": [19.79, 34.97, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 1.082 }, + "s": [20.98, 31.49, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [31.79, -0.76, 100], + "t": 58 + }, + { "s": [10.3, 3.35, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.569 }, + "s": [130.81, 180.6, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 0.761 }, + "s": [130.63, 179.25, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [132, 173.52, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [137.16, 164.21, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [143.88, 154.66, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [150.03, 146.57, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [155.22, 139.85, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [159.57, 134.13, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [163.28, 129.13, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.46, 124.67, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [169.2, 120.6, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [171.59, 116.83, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [173.65, 113.32, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [175.42, 110.05, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [176.89, 107, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [178.09, 104.14, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179, 101.45, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179.63, 98.94, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179.94, 96.61, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179.96, 94.49, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179.7, 92.63, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [179.22, 91.05, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [178.58, 89.75, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [177.86, 88.7, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [177.1, 87.86, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [176.34, 87.18, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [175.58, 86.65, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [174.86, 86.23, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [174.16, 85.89, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [173.49, 85.63, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [172.87, 85.43, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [172.28, 85.28, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [171.73, 85.16, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [171.22, 85.08, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [170.76, 85.02, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [170.35, 84.98, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [169.99, 84.96, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [169.69, 84.94, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.196 }, + "i": { "x": 0.833, "y": 0.865 }, + "s": [169.44, 84.92, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.218 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [169.26, 84.9, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [169.15, 84.87, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [169.09, 84.82, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [169.06, 84.75, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [169, 84.69, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [168.93, 84.62, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [168.83, 84.56, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [168.72, 84.5, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [168.59, 84.44, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [168.44, 84.38, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [168.29, 84.33, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [168.12, 84.28, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [167.94, 84.24, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [167.76, 84.2, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [167.57, 84.16, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [167.38, 84.13, 0], + "t": 58 + }, + { "s": [167.18, 84.1, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 4 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 31 + }, + { "s": [0], "t": 47 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 20 + }, + { + "ty": 4, + "nm": "Shape Layer 31", + "sr": 1, + "st": 5, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.272 }, + "s": [43.07, 57.45, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.933 }, + "s": [48.18, 29.25, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": -0.333 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [26.42, 41.99, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -0.111 }, + "i": { "x": 0.833, "y": 1.856 }, + "s": [30.77, 61.78, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.076 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [28.9, 69.88, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.071 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [49.98, 61.65, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [38.61, 42.08, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.579 }, + "i": { "x": 0.833, "y": 1.893 }, + "s": [49.8, 67.91, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.076 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [51.68, 66.67, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.042 }, + "i": { "x": 0.833, "y": 1.033 }, + "s": [29.63, 26.32, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.024 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [44.3, 36.27, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [23.75, 62.42, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.867 }, + "i": { "x": 0.833, "y": 1.029 }, + "s": [54.1, 61.39, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 1.309 }, + "s": [51.44, 53.36, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [55.04, 59.99, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [38.1, 69.52, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.493 }, + "i": { "x": 0.833, "y": 0.73 }, + "s": [60.3, 75.44, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.12 }, + "i": { "x": 0.833, "y": 0.684 }, + "s": [57.09, 48.39, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [49.89, 55.91, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.886 }, + "s": [29.83, 77.16, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.309 }, + "i": { "x": 0.833, "y": 0.995 }, + "s": [47.73, 46.45, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.561 }, + "s": [54.33, 29.98, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [48.14, 50.02, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.031 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [21.76, 39.85, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.425 }, + "i": { "x": 0.833, "y": 1.03 }, + "s": [40.91, 38.85, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 1.079 }, + "s": [45.59, 31.02, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [39.23, 45.69, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.24 }, + "i": { "x": 0.833, "y": 1.459 }, + "s": [51.63, 27.31, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [58.22, 39.02, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -4.839 }, + "i": { "x": 0.833, "y": -0.338 }, + "s": [15.3, 39.94, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [16.03, 37.22, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -1.049 }, + "i": { "x": 0.833, "y": 0.316 }, + "s": [26.97, 20.6, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.095 }, + "i": { "x": 0.833, "y": 1.082 }, + "s": [26.16, 25.63, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [20.35, 5.82, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.008 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [31.9, 14.83, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 1.135 }, + "s": [19.19, 20.64, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [35.11, 13.16, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.192 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [-6.7, 29.36, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.78 }, + "s": [5.94, 32.18, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.134 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [17.6, 4.11, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.369 }, + "i": { "x": 0.833, "y": 0.981 }, + "s": [36.75, -6.49, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.024 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [33.23, 10.4, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.033 }, + "i": { "x": 0.833, "y": 0.142 }, + "s": [35.96, 18.93, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.915 }, + "s": [34, -9.24, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 4.378 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [15.81, -14.25, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -3.24 }, + "i": { "x": 0.833, "y": 216.656 }, + "s": [15.46, -13.31, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [15.47, 0.25, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.235 }, + "i": { "x": 0.833, "y": 0.616 }, + "s": [-7.44, 15.71, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [-1.44, 23.34, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.581 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [20.21, 53.71, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.15 }, + "i": { "x": 0.833, "y": 1.754 }, + "s": [23.84, 28.32, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.075 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [22.55, 14.48, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.871 }, + "s": [35.56, 4.82, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.235 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [11.44, 6.15, 100], + "t": 58 + }, + { "s": [-1.84, 14.24, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.6 }, + "s": [134.09, 179.44, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [133.75, 177.37, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [131.68, 169.7, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [127.36, 155.94, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [122.11, 140.89, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [117.15, 127.94, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [112.74, 117.31, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [108.8, 108.51, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [105.23, 101.09, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [101.96, 94.77, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [98.94, 89.32, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [96.13, 84.58, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [93.49, 80.44, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [91, 76.81, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [88.64, 73.62, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [86.42, 70.81, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [84.3, 68.34, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [82.31, 66.17, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [80.41, 64.27, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [78.63, 62.61, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [76.95, 61.16, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [75.37, 59.9, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [73.91, 58.81, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [72.55, 57.87, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [71.31, 57.07, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [70.18, 56.38, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [69.14, 55.81, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [68.17, 55.32, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [67.27, 54.91, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [66.43, 54.57, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [65.66, 54.28, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [64.96, 54.05, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [64.32, 53.85, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [63.74, 53.68, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [63.21, 53.55, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [62.74, 53.44, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [62.33, 53.34, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [61.97, 53.26, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [61.66, 53.2, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [61.41, 53.14, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [61.2, 53.1, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [61.02, 53.05, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [60.83, 53, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [60.64, 52.95, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [60.46, 52.88, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [60.27, 52.82, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [60.09, 52.74, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [59.92, 52.67, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [59.75, 52.59, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [59.6, 52.51, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [59.45, 52.43, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [59.32, 52.35, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [59.2, 52.27, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [59.1, 52.19, 0], + "t": 58 + }, + { "s": [59.02, 52.12, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 5 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 32 + }, + { "s": [0], "t": 48 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 21 + }, + { + "ty": 4, + "nm": "Shape Layer 30", + "sr": 1, + "st": 8, + "op": 60, + "ip": 8, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [30.35, 56.57, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": -0.13 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [48.9, 65.8, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.78 }, + "i": { "x": 0.833, "y": -0.255 }, + "s": [41.67, 42.02, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [40.8, 65.51, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 2.881 }, + "i": { "x": 0.833, "y": 3.317 }, + "s": [28.63, 58.89, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 0.968 }, + "s": [28.26, 44.63, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.051 }, + "i": { "x": 0.833, "y": 1.128 }, + "s": [38.71, 40.83, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [32.25, 33.66, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.092 }, + "i": { "x": 0.833, "y": 1.189 }, + "s": [48.67, 56.02, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 1.016 }, + "s": [40.85, 66.54, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.013 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [66.41, 65.06, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.873 }, + "i": { "x": 0.833, "y": 0.746 }, + "s": [36.03, 68, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.124 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [38.67, 60.78, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.055 }, + "i": { "x": 0.833, "y": 1.027 }, + "s": [44.08, 58.72, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [40.83, 49.11, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.603 }, + "s": [45.14, 69.32, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.909 }, + "s": [48.47, 52.66, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 1.02 }, + "i": { "x": 0.833, "y": 3.481 }, + "s": [60.97, 15.23, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [62.08, 52.41, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -2.332 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [27.87, 46.51, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.572 }, + "s": [29.05, 26.07, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 0.638 }, + "s": [30.12, 31.26, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [34.57, 39.08, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 1.094 }, + "s": [49.45, 41.13, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.89 }, + "s": [66.36, 36.49, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.345 }, + "i": { "x": 0.833, "y": 1.08 }, + "s": [30.32, 37.02, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 0.94 }, + "s": [18.84, 52.37, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.213 }, + "i": { "x": 0.833, "y": 0.898 }, + "s": [41.37, 47.27, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.457 }, + "i": { "x": 0.833, "y": 1.645 }, + "s": [35.03, 47.18, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [33.61, 11.88, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.053 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [46, 37.03, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.065 }, + "i": { "x": 0.833, "y": 1.499 }, + "s": [38.45, 41.4, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [42.69, 36.79, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 1.658 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [13.05, 26.13, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.609 }, + "i": { "x": 0.833, "y": 8.954 }, + "s": [11.48, 38.34, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.082 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [11.24, 28.42, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.407 }, + "i": { "x": 0.833, "y": 1.153 }, + "s": [35.24, 8.28, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [31.15, 27.61, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.742 }, + "s": [42.72, 49.65, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.123 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [31.92, 7.88, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.497 }, + "i": { "x": 0.833, "y": 0.536 }, + "s": [9.29, 9.62, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 1.076 }, + "s": [12.54, 1.74, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [27.4, 17.13, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.906 }, + "i": { "x": 0.833, "y": 0.444 }, + "s": [-0.92, 9.72, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 0.986 }, + "s": [1.46, 5.54, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.017 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [15, 41.5, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.111 }, + "i": { "x": 0.833, "y": 0.484 }, + "s": [3.7, 22.39, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [8.54, -3.99, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.143 }, + "i": { "x": 0.833, "y": 0.773 }, + "s": [33.66, 11.98, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.132 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [24.43, 6.72, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.027 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [8.54, 16.99, 100], + "t": 58 + }, + { "s": [20.58, 40.66, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.613 }, + "s": [133.54, 176.14, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.766 }, + "s": [133.32, 175.2, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [132.38, 171.82, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [130.48, 165.78, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [127.93, 159.31, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [124.67, 154.54, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [120.92, 155.77, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [119.09, 159.6, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [117.91, 163.13, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [117.01, 166.28, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [116.27, 169.08, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [115.62, 171.59, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [115.03, 173.84, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [114.48, 175.87, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [113.95, 177.7, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [113.44, 179.35, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [112.94, 180.85, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [112.43, 182.19, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [111.92, 183.4, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [111.4, 184.47, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [110.86, 185.42, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [110.31, 186.24, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [109.75, 186.95, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [109.17, 187.53, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [108.57, 187.99, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [107.97, 188.35, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [107.36, 188.58, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [106.76, 188.72, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [106.18, 188.76, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [105.63, 188.73, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [105.12, 188.64, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [104.63, 188.52, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [104.19, 188.37, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [103.78, 188.21, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [103.41, 188.06, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [103.08, 187.9, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [102.79, 187.76, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [102.54, 187.64, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [102.28, 187.53, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [102.02, 187.43, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [101.75, 187.35, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [101.49, 187.28, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [101.21, 187.22, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [100.93, 187.17, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [100.65, 187.13, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [100.38, 187.11, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [100.11, 187.09, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [99.85, 187.09, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [99.61, 187.09, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [99.38, 187.12, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [99.17, 187.15, 0], + "t": 58 + }, + { "s": [98.98, 187.2, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 35 + }, + { "s": [0], "t": 51 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 22 + }, + { + "ty": 4, + "nm": "Shape Layer 29", + "sr": 1, + "st": 12, + "op": 60, + "ip": 12, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.332 }, + "s": [31.53, 50.06, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.095 }, + "i": { "x": 0.833, "y": 0.875 }, + "s": [34.15, 63.84, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.249 }, + "i": { "x": 0.833, "y": 1.206 }, + "s": [52.54, 19.24, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 0.969 }, + "s": [61.78, 35.59, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.048 }, + "i": { "x": 0.833, "y": 1 }, + "s": [29.67, 50.25, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [50, 64.36, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.877 }, + "i": { "x": 0.833, "y": 1.333 }, + "s": [29.73, 72.81, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [27.6, 48.86, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.133 }, + "i": { "x": 0.833, "y": 1.322 }, + "s": [38.22, 56.99, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [34.13, 43.62, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.033 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [54.06, 51.96, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.984 }, + "i": { "x": 0.833, "y": 0.066 }, + "s": [39.77, 65, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 1.003 }, + "s": [40.89, 23.58, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.002 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [52.28, 36.07, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.206 }, + "i": { "x": 0.833, "y": 0.865 }, + "s": [40.54, 33.09, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.217 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [32.53, 19.47, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 1.158 }, + "s": [27.56, 33.71, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.865 }, + "s": [23.63, 42.04, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.218 }, + "i": { "x": 0.833, "y": 0.754 }, + "s": [35.01, 47.84, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 1.096 }, + "s": [42.03, 23.43, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.99 }, + "s": [55.7, 30.54, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.012 }, + "i": { "x": 0.833, "y": 0.96 }, + "s": [26.25, 50.46, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.077 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [52.12, 77.28, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.532 }, + "i": { "x": 0.833, "y": 0.204 }, + "s": [38.68, 62.29, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 0.915 }, + "s": [40.5, 39.48, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 3.696 }, + "i": { "x": 0.833, "y": 0.454 }, + "s": [56.07, 57.26, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 1.872 }, + "s": [56.43, 63.1, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.076 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [58.42, 61.42, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.17 }, + "i": { "x": 0.833, "y": 1.157 }, + "s": [35.56, 44.73, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [43.08, 42.67, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.07 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [21.45, 34.3, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.193 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [33.17, 39.54, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.3 }, + "i": { "x": 0.833, "y": 1.471 }, + "s": [42.05, 41.34, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [45.47, 65.85, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.633 }, + "i": { "x": 0.833, "y": 0.526 }, + "s": [22.76, 27.45, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.101 }, + "i": { "x": 0.833, "y": 1.045 }, + "s": [19.32, 35.58, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 0.969 }, + "s": [3.19, 26.07, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.05 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [28.06, 47.68, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.48 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [12.46, 18.98, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 1.966 }, + "s": [14.77, 18.31, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.921 }, + "s": [16.5, 21.78, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -1.48 }, + "i": { "x": 0.833, "y": -0.996 }, + "s": [-5.26, 25.99, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.087 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [-4.1, 5.77, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 1.177 }, + "i": { "x": 0.833, "y": 1.194 }, + "s": [22.51, 20.73, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 1.01 }, + "s": [24.53, 7.68, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.009 }, + "i": { "x": 0.833, "y": 0.876 }, + "s": [17.79, 17.3, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.252 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [25.34, 37.33, 100], + "t": 58 + }, + { "s": [29.07, 21.98, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.577 }, + "s": [132.24, 179.27, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.762 }, + "s": [131.98, 178.1, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [130.84, 173.36, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [129.52, 164.43, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [134.84, 159.9, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [141.33, 163.96, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [146.41, 167.96, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [150.59, 171.37, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [154.15, 174.25, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [157.23, 176.65, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [159.94, 178.67, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [162.34, 180.35, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [164.5, 181.73, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [166.45, 182.86, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [168.21, 183.75, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [169.81, 184.43, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [171.27, 184.92, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [172.6, 185.23, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [173.81, 185.38, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [174.89, 185.35, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [175.84, 185.19, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [176.67, 184.89, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [177.38, 184.49, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [177.97, 184.02, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [178.47, 183.51, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [178.88, 182.97, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [179.21, 182.44, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [179.49, 181.92, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179.72, 181.43, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [179.91, 180.98, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [180.07, 180.58, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [180.22, 180.21, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [180.36, 179.9, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [180.49, 179.63, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [180.61, 179.41, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [180.74, 179.24, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [180.86, 179.11, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [180.98, 179.02, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [181.1, 178.97, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [181.21, 178.96, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [181.32, 178.98, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [181.42, 179.02, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [181.52, 179.06, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [181.62, 179.1, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.859 }, + "s": [181.71, 179.12, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.204 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [181.78, 179.15, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.285 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [181.84, 179.16, 0], + "t": 58 + }, + { "s": [181.86, 179.16, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 17 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 39 + }, + { "s": [0], "t": 55 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 23 + }, + { + "ty": 4, + "nm": "Shape Layer 28", + "sr": 1, + "st": 3, + "op": 60, + "ip": 3, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [46.24, 71.87, 100], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.6 }, + "i": { "x": 0.833, "y": 1.272 }, + "s": [62.15, 76.16, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.732 }, + "s": [64.72, 50.15, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.121 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [53.77, 29.31, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": -0.066 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [29.55, 79.31, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.209 }, + "i": { "x": 0.833, "y": 1.066 }, + "s": [43.05, 79.97, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 0.966 }, + "s": [52, 64.77, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.056 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [35.95, 33.53, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.27 }, + "i": { "x": 0.833, "y": 1.484 }, + "s": [45.52, 39.41, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [43.27, 73.99, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.221 }, + "i": { "x": 0.833, "y": 1.185 }, + "s": [58.63, 31, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.057 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [67.92, 40.53, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 6.732 }, + "i": { "x": 0.833, "y": -1.441 }, + "s": [38.04, 46.93, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.941 }, + "s": [37.67, 63.1, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.198 }, + "i": { "x": 0.833, "y": 0.598 }, + "s": [27.07, 81.97, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.889 }, + "s": [30.2, 60.14, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.337 }, + "i": { "x": 0.833, "y": 0.557 }, + "s": [42.18, 45.08, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 1.048 }, + "s": [46.11, 54.88, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [63.07, 46.51, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.385 }, + "i": { "x": 0.833, "y": 1.003 }, + "s": [36.44, 74.2, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.003 }, + "i": { "x": 0.833, "y": 0.783 }, + "s": [29.07, 56.78, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.987 }, + "s": [36.7, 42.06, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.016 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [48.94, 29.08, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.026 }, + "i": { "x": 0.833, "y": 1.196 }, + "s": [38.66, 31.05, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [46.51, 48.95, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.251 }, + "i": { "x": 0.833, "y": 0.998 }, + "s": [20.18, 53.91, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.002 }, + "i": { "x": 0.833, "y": 1.333 }, + "s": [26.74, 48.31, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.996 }, + "s": [20.31, 16.32, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.004 }, + "i": { "x": 0.833, "y": 0.941 }, + "s": [52.45, 30.31, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.201 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [21.69, 34.67, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.19 }, + "i": { "x": 0.833, "y": 0.637 }, + "s": [30.7, 70.69, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [27.95, 37.42, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 2.63 }, + "i": { "x": 0.833, "y": 3.767 }, + "s": [18.74, 29.71, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [18.43, 40.46, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [28.75, 50.24, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.007 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [40.53, 32.72, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.184 }, + "i": { "x": 0.833, "y": 1.235 }, + "s": [29.66, 17.49, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 0.881 }, + "s": [33.04, 34.28, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.279 }, + "i": { "x": 0.833, "y": 1.257 }, + "s": [20.13, 0.79, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.063 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [14.63, 19.95, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 2.356 }, + "i": { "x": 0.833, "y": 3.558 }, + "s": [37.11, 24.29, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [37.93, 20.45, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -1.086 }, + "i": { "x": 0.833, "y": 1.665 }, + "s": [11.82, 19.19, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [13.68, 16.79, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.981 }, + "s": [-3.04, 23.01, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.024 }, + "i": { "x": 0.833, "y": 1 }, + "s": [15.01, 43.86, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [0.99, 29.49, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.326 }, + "i": { "x": 0.833, "y": 0.727 }, + "s": [15.02, 40.67, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.12 }, + "i": { "x": 0.833, "y": 0.902 }, + "s": [12.17, 14.36, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.55 }, + "i": { "x": 0.833, "y": 2.108 }, + "s": [5.67, 3.84, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [4.51, 20.02, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.138 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [21.09, 21.55, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [14.86, 21.79, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.039 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [7.97, 25.65, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.6 }, + "i": { "x": 0.833, "y": -0.408 }, + "s": [12.66, 30.33, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [13.42, 23.76, 100], + "t": 58 + }, + { "s": [25.45, 11.82, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.613 }, + "s": [132.11, 178.94, 0], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.766 }, + "s": [131.6, 177.3, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [129.39, 171.49, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [123.2, 162.77, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [113.07, 159.78, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [104.3, 163.28, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [97.91, 168.51, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [93.17, 173.89, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [89.56, 179.01, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [86.79, 183.81, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [84.67, 188.29, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [83.07, 192.48, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [81.94, 196.37, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [81.2, 199.98, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [80.84, 203.31, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [80.82, 206.32, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [81.1, 209.03, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [81.64, 211.41, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [82.37, 213.44, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [83.24, 215.15, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [84.19, 216.56, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [85.18, 217.72, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [86.16, 218.66, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [87.13, 219.42, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [88.06, 220.03, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [88.94, 220.52, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [89.78, 220.91, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [90.57, 221.22, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [91.32, 221.46, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [92.01, 221.63, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [92.65, 221.76, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [93.25, 221.84, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [93.79, 221.88, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [94.28, 221.89, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [94.71, 221.87, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [95.09, 221.83, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [95.41, 221.77, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [95.67, 221.7, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [95.87, 221.61, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.206 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [96, 221.51, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [96.05, 221.4, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [96.05, 221.3, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [96.04, 221.17, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [96.05, 221.02, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [96.07, 220.84, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [96.1, 220.65, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [96.15, 220.45, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [96.22, 220.24, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [96.3, 220.02, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [96.39, 219.8, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [96.5, 219.58, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [96.62, 219.37, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [96.76, 219.16, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [96.91, 218.97, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [97.08, 218.78, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [97.25, 218.61, 0], + "t": 58 + }, + { "s": [97.44, 218.45, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 3 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 30 + }, + { "s": [0], "t": 46 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 24 + }, + { + "ty": 4, + "nm": "Shape Layer 27", + "sr": 1, + "st": 1, + "op": 60, + "ip": 1, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": -0.282 }, + "s": [35.24, 60.25, 100], + "t": 1 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [36.88, 66.21, 100], + "t": 2 + }, + { + "o": { "x": 0.167, "y": 0.304 }, + "i": { "x": 0.833, "y": 1.019 }, + "s": [60.42, 90.02, 100], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.693 }, + "s": [69.3, 55.03, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.114 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [58.39, 38.17, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": -0.276 }, + "i": { "x": 0.833, "y": 0.769 }, + "s": [29.13, 61.64, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 1.003 }, + "s": [35.92, 71.14, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.003 }, + "i": { "x": 0.833, "y": 1.032 }, + "s": [47.94, 73.72, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.023 }, + "i": { "x": 0.833, "y": 0.887 }, + "s": [35.47, 39.21, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.315 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [52.78, 34.31, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.612 }, + "i": { "x": 0.833, "y": 1.479 }, + "s": [59.01, 68.77, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [60, 47.3, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [53.35, 60.54, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 12.53 }, + "i": { "x": 0.833, "y": 3.633 }, + "s": [41.18, 66.37, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.72 }, + "s": [41.1, 59.69, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.119 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [43.75, 80.11, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.007 }, + "i": { "x": 0.833, "y": 0.905 }, + "s": [50.01, 71.51, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.667 }, + "i": { "x": 0.833, "y": 2.566 }, + "s": [44.26, 36.21, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 1.025 }, + "s": [43.44, 48.83, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.019 }, + "i": { "x": 0.833, "y": 0.879 }, + "s": [59.71, 45.89, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.27 }, + "i": { "x": 0.833, "y": 1.099 }, + "s": [38.47, 59.84, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.927 }, + "s": [28.98, 65.71, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.587 }, + "i": { "x": 0.833, "y": 1.136 }, + "s": [49.81, 66.27, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [47.22, 37.69, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.183 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [54.03, 57.66, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.252 }, + "s": [51.89, 56.71, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.859 }, + "s": [49.97, 70.9, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.205 }, + "i": { "x": 0.833, "y": 0.964 }, + "s": [34.59, 53.34, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.063 }, + "i": { "x": 0.833, "y": 1.045 }, + "s": [24.02, 30.32, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [30.06, 33.74, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 1.115 }, + "s": [20.76, 47.01, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.048 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [9.52, 36.53, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.45 }, + "i": { "x": 0.833, "y": 0.463 }, + "s": [36.33, 27.38, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [32.14, 18.27, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.12 }, + "i": { "x": 0.833, "y": 0.744 }, + "s": [9.39, 30.53, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.124 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [18.72, 40.03, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 1.166 }, + "i": { "x": 0.833, "y": 1.615 }, + "s": [38.02, 22.83, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [39.5, 1.09, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [27.06, 40.78, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 2.748 }, + "i": { "x": 0.833, "y": 4.375 }, + "s": [15.57, 3.65, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [15.21, 6.73, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.59 }, + "i": { "x": 0.833, "y": 1.257 }, + "s": [30.12, 32.92, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.063 }, + "i": { "x": 0.833, "y": 0.875 }, + "s": [32.57, -9.03, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.252 }, + "i": { "x": 0.833, "y": 0.777 }, + "s": [22.54, 18.9, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.133 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [17.58, -5.4, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 1.042 }, + "s": [9.27, 9.97, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [24.7, 25.45, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.054 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [1.56, 29.4, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.121 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [15.61, 42.53, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [9.88, 25.36, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.084 }, + "i": { "x": 0.833, "y": 0.531 }, + "s": [3.63, -21.93, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.101 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [6.74, 16.68, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.872 }, + "i": { "x": 0.833, "y": -0.207 }, + "s": [21.16, 24.88, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.09 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [19.9, 28.01, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.092 }, + "i": { "x": 0.833, "y": 1.074 }, + "s": [2.93, 35.31, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.039 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [10.99, 32.97, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.12 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [-4.23, 35.21, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [2.02, 5.62, 100], + "t": 58 + }, + { "s": [9.04, 32.11, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.551 }, + "s": [129.19, 177.77, 0], + "t": 1 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.762 }, + "s": [129.64, 176.68, 0], + "t": 2 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [131.34, 171.78, 0], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [133.63, 162.29, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [135.57, 151.53, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [137.23, 142.15, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [138.86, 134.41, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [140.59, 128.04, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [142.45, 122.76, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [144.47, 118.38, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [146.61, 114.78, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [148.84, 111.86, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [151.11, 109.52, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [153.36, 107.69, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [155.54, 106.26, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [157.63, 105.16, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [159.61, 104.3, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [161.46, 103.64, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [163.18, 103.12, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [164.77, 102.69, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.23, 102.35, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [167.58, 102.06, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [168.8, 101.8, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [169.91, 101.58, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [170.91, 101.39, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [171.8, 101.21, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [172.58, 101.05, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [173.26, 100.92, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [173.84, 100.79, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [174.37, 100.63, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [174.85, 100.43, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [175.3, 100.21, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [175.71, 99.96, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [176.08, 99.7, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [176.41, 99.43, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [176.71, 99.16, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [176.97, 98.88, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [177.21, 98.62, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [177.42, 98.36, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [177.59, 98.11, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [177.74, 97.89, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [177.87, 97.68, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [178.01, 97.5, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [178.15, 97.35, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [178.3, 97.24, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [178.44, 97.15, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [178.59, 97.09, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [178.73, 97.07, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [178.87, 97.07, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [179.01, 97.11, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [179.13, 97.16, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [179.25, 97.25, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [179.35, 97.35, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [179.43, 97.47, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [179.5, 97.6, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [179.56, 97.74, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [179.59, 97.88, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [179.59, 98.02, 0], + "t": 58 + }, + { "s": [179.58, 98.15, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 1 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 28 + }, + { "s": [0], "t": 44 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 25 + }, + { + "ty": 4, + "nm": "Shape Layer 26", + "sr": 1, + "st": 4, + "op": 60, + "ip": 4, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [47.56, 38.7, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": -0.148 }, + "i": { "x": 0.833, "y": 0.753 }, + "s": [21.76, 44.62, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 1.004 }, + "s": [31.06, 42.81, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.004 }, + "i": { "x": 0.833, "y": 0.971 }, + "s": [49.29, 57.21, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -0.045 }, + "i": { "x": 0.833, "y": 0.792 }, + "s": [30.18, 41.13, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [42.63, 37.86, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.12 }, + "i": { "x": 0.833, "y": 0.68 }, + "s": [61.27, 65.4, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.883 }, + "s": [53.62, 60.98, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.289 }, + "i": { "x": 0.833, "y": 1.123 }, + "s": [31.9, 61.34, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [23.07, 78.54, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.445 }, + "i": { "x": 0.833, "y": 0.754 }, + "s": [44.88, 63.73, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [49.9, 82.22, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.059 }, + "i": { "x": 0.833, "y": 0.598 }, + "s": [59.72, 64.67, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [53.98, 36.42, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.102 }, + "i": { "x": 0.833, "y": 0.992 }, + "s": [32.06, 45.39, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.009 }, + "i": { "x": 0.833, "y": 0.964 }, + "s": [41.93, 38.27, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.062 }, + "i": { "x": 0.833, "y": 0.389 }, + "s": [33.06, 29.25, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 0.983 }, + "s": [38.14, 57.14, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.021 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [70.3, 66.39, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.034 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [44.53, 47.39, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 1.004 }, + "s": [62.76, 69.12, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.004 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [39.96, 43.85, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.245 }, + "i": { "x": 0.833, "y": 0.701 }, + "s": [63.77, 60.91, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [57.73, 68.9, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [42.08, 53.64, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.857 }, + "i": { "x": 0.833, "y": 2.239 }, + "s": [29.2, 47.68, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 1.06 }, + "s": [30.34, 59.69, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.035 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [12.23, 36.3, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.64 }, + "i": { "x": 0.833, "y": 1.113 }, + "s": [43.38, 37.57, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.048 }, + "i": { "x": 0.833, "y": 0.878 }, + "s": [48.04, 35.18, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.265 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [37.07, 26.53, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.04 }, + "i": { "x": 0.833, "y": 0.487 }, + "s": [32.03, 28.34, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.1 }, + "i": { "x": 0.833, "y": 1.02 }, + "s": [35.44, 18.59, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [52.97, 15.72, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [31.28, 43.91, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.226 }, + "i": { "x": 0.833, "y": 0.807 }, + "s": [11.13, 15.05, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.147 }, + "i": { "x": 0.833, "y": 1.039 }, + "s": [16.56, 3.75, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [23.7, 31.58, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.114 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [13.19, -5.77, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 1.415 }, + "s": [17.64, 18.38, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 1.042 }, + "s": [21.57, -6.19, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [-1.97, -2.52, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.027 }, + "i": { "x": 0.833, "y": 0.945 }, + "s": [33.33, 15.62, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.164 }, + "i": { "x": 0.833, "y": 0.863 }, + "s": [6.72, 24.81, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.213 }, + "i": { "x": 0.833, "y": 1.171 }, + "s": [15.68, 28.38, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [21.46, 26.47, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.238 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [3.84, -24.49, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.767 }, + "i": { "x": 0.833, "y": -0.765 }, + "s": [8.41, -3.17, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.087 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [8.97, 21.63, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.066 }, + "i": { "x": 0.833, "y": 1.047 }, + "s": [20.22, 24.34, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 1.142 }, + "s": [13.93, 29.07, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.053 }, + "i": { "x": 0.833, "y": 0.933 }, + "s": [23.74, 28.53, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.344 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [-2.8, 30.75, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [2.37, 12.7, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.082 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [7.69, 27.62, 100], + "t": 58 + }, + { "s": [5.01, 10.67, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.589 }, + "s": [131.59, 179.3, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [132.66, 180.22, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [136.75, 184.07, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [144.54, 190.63, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [153.63, 197.12, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [161.85, 202.09, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [168.86, 205.77, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [174.85, 208.54, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [180, 210.68, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [184.49, 212.38, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [188.46, 213.73, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [192.01, 214.8, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [195.21, 215.64, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [198.12, 216.31, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [200.76, 216.84, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [203.18, 217.27, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [205.4, 217.61, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [207.44, 217.88, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [209.31, 218.1, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [211.04, 218.28, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [212.62, 218.43, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [214.09, 218.56, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [215.43, 218.68, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [216.66, 218.79, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [217.79, 218.9, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [218.83, 219.01, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [219.77, 219.13, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [220.62, 219.25, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [221.38, 219.39, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [222.07, 219.53, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [222.67, 219.67, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [223.2, 219.83, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [223.66, 219.99, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [224.04, 220.15, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [224.35, 220.32, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [224.59, 220.48, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.857 }, + "s": [224.77, 220.63, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.2 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [224.88, 220.78, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [224.92, 220.91, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [224.9, 221.01, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.151 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [224.83, 221.12, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [224.74, 221.25, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [224.65, 221.41, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [224.57, 221.6, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [224.51, 221.8, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [224.45, 222.02, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [224.41, 222.26, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [224.38, 222.51, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [224.36, 222.77, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [224.36, 223.04, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [224.38, 223.31, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [224.42, 223.59, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [224.47, 223.87, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [224.53, 224.15, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [224.61, 224.42, 0], + "t": 58 + }, + { "s": [224.7, 224.69, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 4 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 31 + }, + { "s": [0], "t": 47 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 26 + }, + { + "ty": 4, + "nm": "Shape Layer 25", + "sr": 1, + "st": 10, + "op": 60, + "ip": 10, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [54.04, 68.18, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.239 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [29.19, 57.72, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [15.9, 69.72, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.327 }, + "i": { "x": 0.833, "y": 1.283 }, + "s": [35.64, 63.53, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [31.63, 82.18, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.643 }, + "i": { "x": 0.833, "y": 1.471 }, + "s": [49.24, 67.42, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.917 }, + "s": [51.87, 37.81, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -10.254 }, + "i": { "x": 0.833, "y": 7.839 }, + "s": [34.4, 62.9, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.082 }, + "i": { "x": 0.833, "y": 1.07 }, + "s": [34.55, 52.57, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [22.85, 20.91, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 1.002 }, + "s": [44.38, 47.61, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.002 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [68.8, 61.01, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.196 }, + "i": { "x": 0.833, "y": 1.056 }, + "s": [43.73, 56.72, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.034 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [51.22, 69.74, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.041 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [38.66, 45.63, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 1.075 }, + "s": [47.05, 32.45, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.864 }, + "s": [54.9, 65.23, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.216 }, + "i": { "x": 0.833, "y": 0.964 }, + "s": [39.98, 46.64, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.063 }, + "i": { "x": 0.833, "y": 1.136 }, + "s": [30.6, 61.65, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [35.94, 53.79, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [21.92, 52.82, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.445 }, + "i": { "x": 0.833, "y": 0.864 }, + "s": [42.7, 45.97, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.216 }, + "i": { "x": 0.833, "y": 0.687 }, + "s": [47.49, 52.12, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.114 }, + "i": { "x": 0.833, "y": 1.172 }, + "s": [50.49, 45.44, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 1.025 }, + "s": [58.77, 37.41, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.019 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [33.44, 24.21, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.226 }, + "i": { "x": 0.833, "y": 0.781 }, + "s": [66.33, 36.61, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [57.48, 57.49, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [43.1, 36.18, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.097 }, + "i": { "x": 0.833, "y": 1.161 }, + "s": [29.19, 31.34, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [35.6, 20.62, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -1.932 }, + "i": { "x": 0.833, "y": 0.014 }, + "s": [16.77, 15.79, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 1.166 }, + "s": [17.55, 21.22, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 1.01 }, + "s": [25.99, 15.08, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.009 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [0.79, 6.4, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.054 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [28.9, 15.89, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 28.082 }, + "i": { "x": 0.833, "y": 32.334 }, + "s": [11.9, 28.77, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [11.85, 28.38, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.066 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [30.93, 33.27, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 1.325 }, + "i": { "x": 0.833, "y": -0.402 }, + "s": [20.29, -7.17, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.891 }, + "s": [19.58, -8.42, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.357 }, + "i": { "x": 0.833, "y": 1.348 }, + "s": [8.29, 6.59, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.893 }, + "s": [4.85, 15.51, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.372 }, + "i": { "x": 0.833, "y": 1.223 }, + "s": [22.63, 9.13, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [27.75, 20, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.133 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [8.89, 3.76, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.239 }, + "i": { "x": 0.833, "y": 1.098 }, + "s": [16.17, 15.47, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [20.06, 30.86, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [11.59, 30.84, 100], + "t": 58 + }, + { "s": [5.28, -10.95, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.59 }, + "s": [131.72, 174.91, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [132.8, 174.36, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [136.97, 171.96, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [144.26, 166.77, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [152.05, 160.43, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [158.83, 154.9, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [164.61, 150.59, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [169.63, 147.33, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [174.05, 144.88, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [177.98, 143.06, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [181.49, 141.73, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [184.65, 140.76, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [187.49, 140.06, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [190.05, 139.57, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [192.37, 139.24, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [194.46, 139.01, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [196.35, 138.86, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [198.06, 138.75, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [199.61, 138.68, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [201.02, 138.68, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [202.32, 138.75, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [203.52, 138.89, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [204.63, 139.07, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [205.66, 139.3, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [206.61, 139.56, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [207.51, 139.85, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [208.34, 140.16, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [209.12, 140.48, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [209.86, 140.81, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [210.55, 141.15, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [211.21, 141.49, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [211.82, 141.82, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [212.4, 142.15, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [212.95, 142.47, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [213.46, 142.77, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [213.93, 143.06, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [214.38, 143.33, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [214.78, 143.58, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [215.15, 143.81, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [215.48, 144.01, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [215.77, 144.18, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [216.03, 144.33, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [216.29, 144.45, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [216.52, 144.54, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [216.74, 144.61, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [216.92, 144.64, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.192 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [217.08, 144.65, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.809 }, + "s": [217.19, 144.62, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [217.27, 144.55, 0], + "t": 58 + }, + { "s": [217.35, 144.44, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 15 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 37 + }, + { "s": [0], "t": 53 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 27 + }, + { + "ty": 4, + "nm": "Shape Layer 24", + "sr": 1, + "st": 7, + "op": 60, + "ip": 7, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.856 }, + "s": [32.99, 59.33, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.076 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [30.31, 35.49, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": -0.062 }, + "i": { "x": 0.833, "y": 0.899 }, + "s": [60.45, 52.5, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.485 }, + "i": { "x": 0.833, "y": 0.652 }, + "s": [43.14, 64.93, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.11 }, + "i": { "x": 0.833, "y": 0.902 }, + "s": [39.54, 52.54, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.569 }, + "i": { "x": 0.833, "y": 1.494 }, + "s": [28.11, 51.6, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [26.15, 59.25, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 1.035 }, + "s": [39.73, 67.14, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [56.22, 48.16, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.235 }, + "i": { "x": 0.833, "y": 1.154 }, + "s": [32.76, 64.9, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 1.037 }, + "s": [38.9, 68.33, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.026 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [21.43, 46.61, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.301 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [46.73, 29.13, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.043 }, + "i": { "x": 0.833, "y": 0.783 }, + "s": [56.44, 59.55, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.957 }, + "s": [50.02, 62.51, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.087 }, + "i": { "x": 0.833, "y": 0.875 }, + "s": [39.75, 80.53, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.25 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [44.77, 63.62, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 1.4 }, + "s": [47.27, 38.61, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [49.46, 57.95, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.902 }, + "i": { "x": 0.833, "y": 1.186 }, + "s": [36.75, 36.4, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [37.83, 61.76, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.393 }, + "i": { "x": 0.833, "y": 1.167 }, + "s": [34.35, 65.06, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 0.394 }, + "s": [33.41, 66.25, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.097 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [36.23, 46.61, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [53.89, 44.99, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.029 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [36.42, 57.83, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 1.005 }, + "s": [49.43, 48.31, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.004 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [25.29, 29.04, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.43 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [50.77, 23.98, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 6.077 }, + "i": { "x": 0.833, "y": 22.316 }, + "s": [56.89, 34.88, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 0.868 }, + "s": [56.98, 26.36, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.226 }, + "i": { "x": 0.833, "y": 0.915 }, + "s": [35.13, 49.46, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 4.525 }, + "i": { "x": 0.833, "y": -0.19 }, + "s": [22.33, 12.33, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.09 }, + "i": { "x": 0.833, "y": 0.945 }, + "s": [22.09, 18.94, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.16 }, + "i": { "x": 0.833, "y": 2.147 }, + "s": [18.9, 8.74, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 1.02 }, + "s": [19.99, 5.87, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.96 }, + "s": [3.91, 2.66, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.078 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [23.9, -0.53, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [13.56, 13.91, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.033 }, + "i": { "x": 0.833, "y": 0.789 }, + "s": [0.46, 12.49, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.138 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [9.89, 32.46, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.317 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [24.36, 3.88, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.533 }, + "s": [21.35, -1.04, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.101 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [18.54, 8.08, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.234 }, + "i": { "x": 0.833, "y": 0.517 }, + "s": [5.61, 9.61, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.101 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [9.01, -5.24, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.068 }, + "i": { "x": 0.833, "y": 1.022 }, + "s": [25.3, 17.2, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 0.996 }, + "s": [16.3, 0.8, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.004 }, + "i": { "x": 0.833, "y": 0.888 }, + "s": [27.66, -1.77, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.324 }, + "i": { "x": 0.833, "y": 0.486 }, + "s": [16.83, 22.26, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 1.009 }, + "s": [13.07, 37.05, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.008 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [-6.35, 24.9, 100], + "t": 58 + }, + { "s": [15.21, 18.72, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.604 }, + "s": [129.41, 176.62, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [128.41, 176.12, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [124.94, 173.54, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [119.35, 167.67, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [114.29, 159.82, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [110.62, 152.31, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [107.8, 145.84, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [105.44, 140.42, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [103.35, 135.86, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [101.45, 132, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [99.7, 128.69, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [98.09, 125.85, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [96.61, 123.39, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [95.26, 121.25, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [94.03, 119.38, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [92.92, 117.75, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [91.92, 116.31, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [91.04, 115.04, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [90.27, 113.91, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [89.6, 112.92, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [89.02, 112.03, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [88.54, 111.23, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [88.14, 110.52, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [87.82, 109.88, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [87.58, 109.31, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [87.4, 108.79, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [87.28, 108.31, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [87.21, 107.88, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [87.18, 107.48, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [87.18, 107.1, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [87.21, 106.76, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [87.25, 106.43, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [87.3, 106.13, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [87.35, 105.83, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [87.38, 105.55, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [87.39, 105.28, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [87.39, 105.01, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [87.43, 104.73, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [87.49, 104.44, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [87.58, 104.16, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [87.68, 103.89, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [87.78, 103.64, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [87.86, 103.39, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [87.91, 103.16, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [87.94, 102.95, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [87.94, 102.76, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [87.9, 102.61, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [87.84, 102.49, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [87.74, 102.42, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [87.6, 102.38, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [87.44, 102.39, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [87.24, 102.44, 0], + "t": 58 + }, + { "s": [87.01, 102.54, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 34 + }, + { "s": [0], "t": 50 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 28 + }, + { + "ty": 4, + "nm": "Shape Layer 23", + "sr": 1, + "st": 5, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.657 }, + "s": [59.66, 55.34, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.11 }, + "i": { "x": 0.833, "y": 0.995 }, + "s": [49.89, 66.7, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": -0.005 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [19.43, 58.47, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -5.85 }, + "i": { "x": 0.833, "y": 3.373 }, + "s": [48.08, 34.4, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [47.67, 57.55, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [59.53, 50.29, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.208 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [46.7, 49.99, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.109 }, + "i": { "x": 0.833, "y": 0.37 }, + "s": [38.11, 45, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 1.019 }, + "s": [41.84, 60.14, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [66.31, 60.81, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.12 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [36.22, 57.51, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.019 }, + "i": { "x": 0.833, "y": 1.067 }, + "s": [48.58, 67.79, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [38.55, 70.36, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.978 }, + "s": [56.61, 27.91, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.029 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [44, 40.53, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 1.011 }, + "s": [53.32, 76.38, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.01 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [39.52, 86.22, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.043 }, + "i": { "x": 0.833, "y": 1.048 }, + "s": [55.11, 68.6, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 1.002 }, + "s": [44.8, 66.34, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.002 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [61.01, 62.93, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 1.871 }, + "i": { "x": 0.833, "y": -0.03 }, + "s": [44.38, 50.72, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 1.06 }, + "s": [43.61, 56.73, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.035 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [34.8, 74.54, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.007 }, + "i": { "x": 0.833, "y": 1.064 }, + "s": [49.93, 86.57, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 1.023 }, + "s": [35.91, 46.14, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.018 }, + "i": { "x": 0.833, "y": 0.89 }, + "s": [60.77, 42.51, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.347 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [29.06, 52.79, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.254 }, + "i": { "x": 0.833, "y": 0.122 }, + "s": [19.04, 52.78, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [21.51, 42.32, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.262 }, + "i": { "x": 0.833, "y": 1.05 }, + "s": [45.09, 22.5, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 1.058 }, + "s": [39.41, 23.85, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.034 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [48.5, 25.33, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.238 }, + "i": { "x": 0.833, "y": 0.945 }, + "s": [33.08, 56.35, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.16 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [24.77, 40.49, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.787 }, + "s": [27.61, 42.06, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.137 }, + "i": { "x": 0.833, "y": 1.453 }, + "s": [30.34, 29.68, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [34.56, 11.18, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.02 }, + "i": { "x": 0.833, "y": 0.921 }, + "s": [7.35, -6.83, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -1.554 }, + "i": { "x": 0.833, "y": -0.296 }, + "s": [29.23, -12.83, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [28.12, -5.24, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 1.049 }, + "s": [11.92, -11.91, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [-2.99, 14.66, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 1.626 }, + "i": { "x": 0.833, "y": 0.989 }, + "s": [20.7, 6.48, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.013 }, + "i": { "x": 0.833, "y": 1.274 }, + "s": [21.98, -0.98, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 1.577 }, + "s": [20.87, 14.42, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [25.63, 23.52, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [-12.12, 10.67, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 1.154 }, + "i": { "x": 0.833, "y": 0.149 }, + "s": [14.29, 13.28, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 1.047 }, + "s": [16.34, 14.88, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 0.891 }, + "s": [35.28, -0.79, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.355 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [5.62, 7.71, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.26 }, + "i": { "x": 0.833, "y": 0.127 }, + "s": [-3.49, 21.03, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [-1.28, 37.29, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.867 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [19.69, 37, 100], + "t": 58 + }, + { "s": [21.92, 27.45, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.598 }, + "s": [127.83, 176.96, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [127.3, 175.33, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [125.75, 168.9, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [124.36, 156.81, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [125.44, 143.33, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [128.79, 132.19, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [133, 123.65, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [137.26, 116.99, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [141.25, 111.58, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [144.89, 107, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [148.15, 102.99, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [151.03, 99.36, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [153.56, 96.02, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [155.72, 92.87, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [157.51, 89.87, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [158.94, 87, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.99, 84.26, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [160.69, 81.67, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [161.07, 79.28, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [161.19, 77.1, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [161.11, 75.14, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [160.88, 73.39, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [160.53, 71.83, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [160.16, 70.43, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.79, 69.17, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.45, 68.04, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [159.13, 67.02, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [158.83, 66.12, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [158.55, 65.32, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [158.29, 64.62, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [158.05, 64.02, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [157.81, 63.5, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [157.58, 63.08, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [157.36, 62.74, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [157.13, 62.49, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [156.9, 62.32, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [156.67, 62.22, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [156.43, 62.21, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [156.19, 62.26, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [155.94, 62.39, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [155.68, 62.59, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [155.41, 62.83, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [155.11, 63.09, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [154.78, 63.38, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [154.42, 63.68, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [154.06, 64, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [153.68, 64.33, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [153.3, 64.66, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [152.92, 64.99, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [152.56, 65.32, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [152.23, 65.63, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [151.92, 65.93, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [151.66, 66.19, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [151.44, 66.43, 0], + "t": 58 + }, + { "s": [151.25, 66.63, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 5 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 32 + }, + { "s": [0], "t": 48 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 29 + }, + { + "ty": 4, + "nm": "Shape Layer 22", + "sr": 1, + "st": 2, + "op": 60, + "ip": 2, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.986 }, + "s": [38.09, 58.16, 100], + "t": 2 + }, + { + "o": { "x": 0.167, "y": -0.017 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [62.61, 42.75, 100], + "t": 3 + }, + { + "o": { "x": 0.167, "y": -0.687 }, + "i": { "x": 0.833, "y": 1.337 }, + "s": [42.33, 46.32, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [44.53, 62.85, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 1.041 }, + "s": [33.47, 71.37, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [23.04, 50.35, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.24 }, + "i": { "x": 0.833, "y": 0.787 }, + "s": [38.6, 31.64, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.137 }, + "i": { "x": 0.833, "y": 1.016 }, + "s": [46.86, 40.43, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.013 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [59.69, 46.55, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.111 }, + "i": { "x": 0.833, "y": 0.768 }, + "s": [44.45, 56.24, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [51, 67.17, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [62.69, 59.25, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.071 }, + "i": { "x": 0.833, "y": 0.99 }, + "s": [47.32, 48.76, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.011 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [55.6, 66.47, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.96 }, + "s": [48.3, 68.52, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.077 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [57.88, 49.13, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.612 }, + "s": [52.9, 30.25, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 1.07 }, + "s": [48.6, 70.36, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.987 }, + "s": [32.9, 84.68, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.016 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [61.71, 50.33, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [37.42, 60.81, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 1.349 }, + "i": { "x": 0.833, "y": 1.779 }, + "s": [59.59, 69.03, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.075 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [61.05, 59.81, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 1.135 }, + "s": [45.94, 65.73, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 0.981 }, + "s": [32.56, 53.73, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.024 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [67.69, 88.97, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.153 }, + "i": { "x": 0.833, "y": 1.1 }, + "s": [40.43, 60.71, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [50.06, 50.05, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [28.89, 50.11, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.081 }, + "i": { "x": 0.833, "y": 0.781 }, + "s": [5.5, 33.46, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.134 }, + "i": { "x": 0.833, "y": 0.97 }, + "s": [17.37, 44.16, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.047 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [36.75, 25.79, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 1.081 }, + "i": { "x": 0.833, "y": -0.16 }, + "s": [24.34, 31.24, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.09 }, + "i": { "x": 0.833, "y": 1.019 }, + "s": [23.3, 27.49, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [9.91, 51.07, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.252 }, + "i": { "x": 0.833, "y": 0.992 }, + "s": [26.41, 42.35, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 0.683 }, + "s": [22.32, 45.74, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 1.156 }, + "s": [26.04, 41.94, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [36.49, 30.73, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.096 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [6.45, -3.25, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [20.44, -10.39, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.027 }, + "i": { "x": 0.833, "y": 0.774 }, + "s": [34.83, -4.36, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.132 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [23.99, -14.11, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.056 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [5.48, -2.49, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.282 }, + "i": { "x": 0.833, "y": 0.917 }, + "s": [16.56, 9.38, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -41.355 }, + "i": { "x": 0.833, "y": 26.628 }, + "s": [21.21, 6.31, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 2.023 }, + "s": [21.2, 1.89, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [24.08, 33.57, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.255 }, + "i": { "x": 0.833, "y": 0.757 }, + "s": [-14.17, 26.4, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 0.807 }, + "s": [-4.73, 12.89, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.147 }, + "i": { "x": 0.833, "y": 1.012 }, + "s": [13.31, 8.3, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.01 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [37.08, 19.27, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [9.94, 17.95, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.041 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [-11.8, 16.07, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [2.75, 13.33, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.092 }, + "i": { "x": 0.833, "y": 0.972 }, + "s": [29.19, 42.48, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.043 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [16.64, 37.39, 100], + "t": 58 + }, + { "s": [24.91, 22.58, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.555 }, + "s": [128.51, 175.47, 0], + "t": 2 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 0.762 }, + "s": [127.44, 175.56, 0], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [122.8, 176.1, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [114.26, 177.85, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [105, 181.11, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [97.33, 185.26, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [91.41, 189.76, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [86.89, 194.34, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [83.45, 198.84, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [80.84, 203.19, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [78.87, 207.32, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [77.43, 211.2, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [76.4, 214.81, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [75.69, 218.16, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [75.22, 221.27, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.93, 224.13, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.77, 226.77, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.7, 229.2, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.7, 231.43, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.74, 233.49, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.8, 235.38, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.86, 237.12, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.93, 238.72, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [74.98, 240.18, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [75.01, 241.52, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [75.02, 242.74, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [74.99, 243.86, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [74.94, 244.88, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [74.86, 245.8, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [74.75, 246.64, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.61, 247.39, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.44, 248.07, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.25, 248.67, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.04, 249.21, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [73.81, 249.68, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [73.58, 250.09, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [73.34, 250.44, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [73.11, 250.74, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [72.88, 250.99, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [72.68, 251.2, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [72.5, 251.36, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [72.35, 251.46, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.193 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [72.23, 251.54, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.202 }, + "i": { "x": 0.833, "y": 0.864 }, + "s": [72.13, 251.59, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.214 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [72.06, 251.61, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.201 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [72.01, 251.6, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.791 }, + "s": [71.99, 251.58, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 0.803 }, + "s": [71.99, 251.53, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.144 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [72.01, 251.45, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [72.05, 251.36, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [72.12, 251.26, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [72.2, 251.13, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [72.3, 251, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [72.41, 250.85, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [72.54, 250.7, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [72.67, 250.54, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [72.81, 250.37, 0], + "t": 58 + }, + { "s": [72.96, 250.2, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 2 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 29 + }, + { "s": [0], "t": 45 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 30 + }, + { + "ty": 4, + "nm": "Shape Layer 21", + "sr": 1, + "st": 8, + "op": 60, + "ip": 8, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": -5.266 }, + "s": [49.43, 28.25, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.084 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [49.25, 33.1, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [35.65, 58.73, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.233 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [48.32, 69.64, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.185 }, + "i": { "x": 0.833, "y": 0.692 }, + "s": [55.38, 58.22, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.114 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [53.18, 30.67, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.07 }, + "i": { "x": 0.833, "y": 1.185 }, + "s": [47.25, 55.82, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.057 }, + "i": { "x": 0.833, "y": 1.076 }, + "s": [50.47, 45.9, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [40.07, 45.68, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.254 }, + "i": { "x": 0.833, "y": 0.435 }, + "s": [60.01, 47.35, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 0.986 }, + "s": [55.09, 52.32, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.016 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [26.67, 78.49, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.871 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [50.4, 49.07, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.032 }, + "i": { "x": 0.833, "y": 1.079 }, + "s": [52.91, 39.92, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [51.1, 62.55, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 1.481 }, + "s": [54.62, 63.45, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [59.04, 77.64, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [29.11, 35.84, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.141 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [61.91, 61.65, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [49.75, 69.29, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": -0.059 }, + "i": { "x": 0.833, "y": 1.119 }, + "s": [37.1, 53.03, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 0.983 }, + "s": [44.48, 75.77, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.022 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [26.57, 28.21, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.244 }, + "i": { "x": 0.833, "y": 1.036 }, + "s": [40.72, 47.93, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [48.08, 57.09, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 3.172 }, + "i": { "x": 0.833, "y": -4.522 }, + "s": [37.59, 57.69, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [37.3, 44.13, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.032 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [18.82, 58.39, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.978 }, + "s": [32.17, 43.2, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.03 }, + "i": { "x": 0.833, "y": 1.051 }, + "s": [44.91, 43.46, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.032 }, + "i": { "x": 0.833, "y": 1.063 }, + "s": [35.51, 39.77, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.933 }, + "s": [50.68, 50.18, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.353 }, + "i": { "x": 0.833, "y": 0.65 }, + "s": [24.01, 22.8, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.109 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [29.1, 20.84, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.154 }, + "i": { "x": 0.833, "y": 0.678 }, + "s": [45.4, 32.6, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.112 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [39.67, 28.51, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.985 }, + "s": [23.25, 14.33, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.018 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [8.13, 25.6, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.225 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [20.6, 28.01, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.07 }, + "i": { "x": 0.833, "y": 1.962 }, + "s": [17.23, 7.5, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.877 }, + "s": [19.06, 23.51, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.257 }, + "i": { "x": 0.833, "y": 1.027 }, + "s": [-3.88, 14.6, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.741 }, + "s": [-14.87, 3.68, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.123 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [-0.38, -2.84, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.147 }, + "i": { "x": 0.833, "y": 0.692 }, + "s": [30.23, 30.35, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.114 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [19.16, 39.26, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.035 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [-10.69, 32.32, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.981 }, + "s": [10.35, -5.06, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.025 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [32.4, 17.82, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.08 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [15.5, 27.7, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.182 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [24.14, 15.19, 100], + "t": 58 + }, + { "s": [21.42, 9.98, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.611 }, + "s": [130.99, 179.4, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.766 }, + "s": [131, 181.13, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [131.35, 187.5, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [133, 198.88, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [136.89, 210.72, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [142.64, 219.35, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [148.94, 224.51, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [154.85, 227.43, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [160.09, 229.17, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [164.69, 230.35, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [168.74, 231.28, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [172.31, 232.14, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [175.46, 233.02, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [178.26, 233.98, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [180.74, 235.05, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [182.92, 236.24, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [184.81, 237.55, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [186.46, 238.96, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [187.88, 240.44, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [189.09, 241.95, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [190.1, 243.42, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [190.95, 244.83, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [191.65, 246.15, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [192.24, 247.39, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [192.74, 248.53, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [193.16, 249.58, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [193.51, 250.53, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [193.81, 251.39, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [194.07, 252.17, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [194.3, 252.87, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [194.49, 253.48, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [194.66, 254.03, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [194.81, 254.5, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [194.95, 254.92, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [195.06, 255.27, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [195.17, 255.57, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [195.26, 255.82, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [195.34, 256.03, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.194 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [195.4, 256.19, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.203 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [195.46, 256.3, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [195.5, 256.38, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [195.54, 256.44, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [195.58, 256.52, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [195.61, 256.61, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [195.63, 256.71, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [195.65, 256.83, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [195.67, 256.96, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [195.68, 257.09, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [195.68, 257.24, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [195.67, 257.41, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [195.65, 257.6, 0], + "t": 58 + }, + { "s": [195.62, 257.81, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 92, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 35 + }, + { "s": [0], "t": 51 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 31 + }, + { + "ty": 4, + "nm": "Shape Layer 20", + "sr": 1, + "st": 6, + "op": 60, + "ip": 6, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.05 }, + "s": [55.54, 55.25, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [69.49, 24.9, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.241 }, + "i": { "x": 0.833, "y": 0.888 }, + "s": [47.11, 28.13, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.325 }, + "i": { "x": 0.833, "y": 1.204 }, + "s": [35.3, 54.84, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 0.921 }, + "s": [31.23, 49.89, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -1.529 }, + "i": { "x": 0.833, "y": -0.459 }, + "s": [45.3, 43.32, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.088 }, + "i": { "x": 0.833, "y": 0.995 }, + "s": [44.57, 16.76, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.992 }, + "s": [32.56, 33.63, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 0.995 }, + "s": [43.79, 41.87, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.005 }, + "i": { "x": 0.833, "y": 0.731 }, + "s": [33.58, 30.43, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.121 }, + "i": { "x": 0.833, "y": 1.035 }, + "s": [43.17, 43.71, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.935 }, + "s": [64.57, 52.18, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.305 }, + "i": { "x": 0.833, "y": 0.575 }, + "s": [34.17, 74.01, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [40.69, 57.5, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.391 }, + "i": { "x": 0.833, "y": 0.313 }, + "s": [67.44, 43.23, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.095 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [62.74, 54.06, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [28.65, 71.46, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.109 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [59.82, 85.99, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [46.32, 46.1, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 1.02 }, + "s": [29.82, 45.91, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [44.47, 55.65, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.068 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [26.28, 25.25, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.888 }, + "s": [36.31, 61.89, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.324 }, + "i": { "x": 0.833, "y": 0.814 }, + "s": [44.48, 39.09, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.151 }, + "i": { "x": 0.833, "y": 1.498 }, + "s": [47.3, 32.49, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.992 }, + "s": [50.79, 50.67, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.009 }, + "i": { "x": 0.833, "y": 0.986 }, + "s": [26.43, 53.37, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.017 }, + "i": { "x": 0.833, "y": 0.906 }, + "s": [48.51, 24.01, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.764 }, + "i": { "x": 0.833, "y": 1.666 }, + "s": [30.17, 29.15, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.993 }, + "s": [27.93, 27.44, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.008 }, + "i": { "x": 0.833, "y": 1.011 }, + "s": [48.12, 22.05, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.009 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [29.63, 18.04, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [50.46, 30.99, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.282 }, + "i": { "x": 0.833, "y": 1.098 }, + "s": [27.81, 13.16, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [18.3, 17.16, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.106 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [39.03, 29.63, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 1.804 }, + "i": { "x": 0.833, "y": -5.816 }, + "s": [29.93, 42.54, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.084 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [29.48, 31.81, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.155 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [-6.16, 43.62, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.231 }, + "i": { "x": 0.833, "y": 0.795 }, + "s": [6.31, 25.84, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 1.094 }, + "s": [13.36, 22.52, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [23.63, 24.82, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.898 }, + "i": { "x": 0.833, "y": 1.231 }, + "s": [1.81, 1.91, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 1.188 }, + "s": [3.66, -7.85, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.899 }, + "s": [-3.33, -6.63, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.485 }, + "i": { "x": 0.833, "y": 1.382 }, + "s": [19.4, 18.17, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [24.11, 33.99, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.055 }, + "i": { "x": 0.833, "y": 0.795 }, + "s": [-2.21, 38.34, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [13.6, 4.09, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [36.63, 3.17, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.146 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [13.9, 11.75, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 1.164 }, + "s": [22.17, 12.79, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [27.07, 18.42, 100], + "t": 58 + }, + { "s": [12.53, -13.57, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.574 }, + "s": [133.78, 151.3, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.763 }, + "s": [133.12, 152.22, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [130.17, 155.73, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [123.83, 160.91, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [115.73, 163.95, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [108.36, 163.68, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [102.56, 161.24, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [98.23, 157.8, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [95.02, 154.04, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [92.63, 150.3, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [90.83, 146.73, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [89.45, 143.38, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [88.36, 140.28, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [87.5, 137.41, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [86.81, 134.77, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [86.23, 132.34, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [85.75, 130.1, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [85.34, 128.06, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [84.98, 126.18, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [84.66, 124.46, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [84.38, 122.9, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [84.12, 121.47, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [83.88, 120.18, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [83.66, 119.01, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [83.46, 117.96, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [83.28, 117.03, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [83.11, 116.19, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [82.96, 115.46, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [82.83, 114.83, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [82.71, 114.28, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [82.62, 113.82, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [82.55, 113.44, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.193 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [82.51, 113.13, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [82.5, 112.9, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [82.52, 112.74, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [82.58, 112.63, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.805 }, + "s": [82.66, 112.61, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [82.74, 112.65, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.819 }, + "s": [82.83, 112.76, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [82.93, 112.91, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [83.02, 113.1, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [83.12, 113.3, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [83.22, 113.47, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [83.31, 113.62, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [83.41, 113.75, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [83.5, 113.83, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [83.58, 113.88, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [83.66, 113.88, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [83.73, 113.84, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [83.8, 113.75, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [83.86, 113.62, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.819 }, + "s": [83.91, 113.45, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [83.96, 113.23, 0], + "t": 58 + }, + { "s": [83.99, 112.97, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 33 + }, + { "s": [0], "t": 49 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 32 + }, + { + "ty": 4, + "nm": "Shape Layer 19", + "sr": 1, + "st": 11, + "op": 60, + "ip": 11, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 2.45 }, + "s": [31.58, 17.33, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [31.06, 18.55, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 1.096 }, + "s": [40.57, 55.65, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 1.044 }, + "s": [48.06, 40.05, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [31.9, 27.36, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.117 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [56.63, 47.92, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 1.191 }, + "s": [46.32, 78.83, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [37.55, 48.32, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.576 }, + "i": { "x": 0.833, "y": 1.592 }, + "s": [66.45, 42.28, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.95 }, + "s": [71.33, 55.3, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.126 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [31.74, 77.61, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 1.163 }, + "s": [47.48, 89.12, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [61.92, 69.29, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.273 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [19.25, 59.86, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.231 }, + "i": { "x": 0.833, "y": 1.013 }, + "s": [29.22, 55.01, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.011 }, + "i": { "x": 0.833, "y": 1.068 }, + "s": [34.83, 27.85, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [28.37, 26.26, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.234 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [40.1, 52, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 1.37 }, + "s": [46.61, 41.42, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [51.95, 24.22, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [22.87, 55.7, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.417 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [48.95, 44.75, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 1.202 }, + "s": [44.6, 27.32, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [42.03, 42.35, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.069 }, + "i": { "x": 0.833, "y": 1.193 }, + "s": [50.84, 29.9, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.964 }, + "s": [46.04, 36.4, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.063 }, + "i": { "x": 0.833, "y": 0.717 }, + "s": [61.98, 54.54, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 0.99 }, + "s": [52.9, 38.64, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.012 }, + "i": { "x": 0.833, "y": 0.969 }, + "s": [31.11, 25.86, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.049 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [50.25, 28.52, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.147 }, + "i": { "x": 0.833, "y": 1.464 }, + "s": [38.22, 41.99, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.902 }, + "s": [42.57, 44.15, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.554 }, + "i": { "x": 0.833, "y": 1.234 }, + "s": [14.02, 64.95, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [8.96, 27.23, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 1.091 }, + "s": [28.2, 23.39, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [44.67, 47.59, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.137 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [10.19, 28.62, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.108 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [23.23, 2.24, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.035 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [17.56, 7, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 1.412 }, + "s": [21.57, 2.58, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [25.67, 9.24, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.254 }, + "i": { "x": 0.833, "y": 0.454 }, + "s": [1.25, 35.24, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [7.27, 16.17, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.082 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [40.74, 18.42, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 1.046 }, + "s": [23.83, 5.22, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [10.16, 28.82, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.065 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [31.4, 23.98, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.079 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [19.49, 11.05, 100], + "t": 58 + }, + { "s": [25.59, -2.08, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.51 }, + "s": [133.65, 148.59, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.1 }, + "i": { "x": 0.833, "y": 0.759 }, + "s": [134.47, 148.49, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [138.53, 148.88, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [145.96, 151.19, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [153.64, 155.82, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [159.44, 161.55, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [163.39, 167.41, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [165.98, 172.98, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [167.65, 178.12, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [168.71, 182.79, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [169.36, 187.02, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [169.74, 190.85, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [169.96, 194.33, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [170.08, 197.49, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [170.15, 200.37, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [170.2, 203.02, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [170.23, 205.48, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [170.25, 207.77, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [170.28, 209.89, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [170.3, 211.87, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [170.34, 213.7, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [170.39, 215.38, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [170.45, 216.94, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [170.51, 218.35, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [170.59, 219.64, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [170.68, 220.79, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [170.77, 221.82, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [170.87, 222.73, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [170.98, 223.51, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [171.09, 224.18, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [171.2, 224.74, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [171.31, 225.18, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.196 }, + "i": { "x": 0.833, "y": 0.859 }, + "s": [171.42, 225.52, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.204 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [171.52, 225.75, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.205 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [171.62, 225.89, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.806 }, + "s": [171.72, 225.94, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.146 }, + "i": { "x": 0.833, "y": 0.804 }, + "s": [171.81, 225.9, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [171.89, 225.78, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [171.97, 225.59, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [172.04, 225.33, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [172.09, 225.02, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [172.14, 224.68, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [172.17, 224.35, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [172.18, 224.02, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [172.17, 223.72, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [172.16, 223.44, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [172.16, 223.2, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [172.19, 222.98, 0], + "t": 58 + }, + { "s": [172.23, 222.78, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 16 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 38 + }, + { "s": [0], "t": 54 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 33 + }, + { + "ty": 4, + "nm": "Shape Layer 18", + "sr": 1, + "st": 12, + "op": 60, + "ip": 12, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.085 }, + "s": [46.84, 57.24, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.042 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [58.52, 59.07, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.082 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [34.97, 27.86, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 1.108 }, + "s": [46.83, 43.47, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 0.971 }, + "s": [56.9, 73.95, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.046 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [33.83, 48.22, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 1.014 }, + "s": [48.73, 36.88, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.012 }, + "i": { "x": 0.833, "y": 0.925 }, + "s": [75.91, 59.3, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.787 }, + "i": { "x": 0.833, "y": 0.797 }, + "s": [44.11, 83.73, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 1.16 }, + "s": [47.15, 83.73, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [51.52, 84.93, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [38.76, 73.04, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.007 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [26.17, 70.9, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 1.006 }, + "s": [37.81, 55.32, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [47.2, 27.88, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.869 }, + "s": [37.09, 45.84, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.23 }, + "i": { "x": 0.833, "y": 1.159 }, + "s": [46.11, 68.32, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [51.22, 24.1, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -4.52 }, + "i": { "x": 0.833, "y": -2.162 }, + "s": [36.38, 50.19, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [36.64, 80.48, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.097 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [46.58, 45.77, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -1.248 }, + "i": { "x": 0.833, "y": 3.564 }, + "s": [41.99, 62.31, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 1.138 }, + "s": [42.27, 34.61, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [33.15, 45.28, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -1.951 }, + "i": { "x": 0.833, "y": 0.048 }, + "s": [57.4, 66.01, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 0.968 }, + "s": [56.41, 68.85, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.052 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [46.06, 42.14, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [52.45, 34.14, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 1.225 }, + "i": { "x": 0.833, "y": -1.313 }, + "s": [43.91, 29.45, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [43.28, 33.15, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.303 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [26.6, 43.27, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 0.806 }, + "s": [20.28, 37.42, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.146 }, + "i": { "x": 0.833, "y": 1.052 }, + "s": [28.75, 7.22, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.032 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [39.97, 47.89, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.543 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [21.73, 57.01, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.202 }, + "i": { "x": 0.833, "y": 1.018 }, + "s": [24.16, 17.37, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.015 }, + "i": { "x": 0.833, "y": 1.415 }, + "s": [25.87, 11.61, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 1.126 }, + "s": [23.8, 11.6, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [36.18, 0.47, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.229 }, + "i": { "x": 0.833, "y": 0.788 }, + "s": [5.01, 36.82, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.137 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [13.34, 27.23, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 2.212 }, + "i": { "x": 0.833, "y": 3.588 }, + "s": [26.18, 40.42, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [26.68, 4.95, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.428 }, + "i": { "x": 0.833, "y": 0.974 }, + "s": [10.57, 24.39, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.037 }, + "i": { "x": 0.833, "y": 1.031 }, + "s": [13.2, 12.23, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.023 }, + "i": { "x": 0.833, "y": 1.011 }, + "s": [11.38, 15.26, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.01 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [13.87, 15.66, 100], + "t": 58 + }, + { "s": [11.04, 18.88, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.544 }, + "s": [130.79, 149.57, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.761 }, + "s": [130.32, 148.16, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [127.79, 142.06, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [121.83, 131.5, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [113.31, 121.67, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [104.36, 115.68, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [96.07, 113.32, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [88.9, 113.7, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [83.02, 115.92, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [78.39, 119.24, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [74.84, 123.09, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [72.16, 127.08, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [70.16, 131.01, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [68.68, 134.74, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [67.58, 138.24, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [66.78, 141.47, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [66.19, 144.42, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [65.76, 147.11, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [65.46, 149.55, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [65.24, 151.74, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [65.09, 153.7, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [64.98, 155.46, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [64.91, 157.01, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [64.85, 158.39, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [64.8, 159.6, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [64.76, 160.67, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [64.71, 161.6, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [64.66, 162.41, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [64.6, 163.12, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [64.53, 163.74, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [64.49, 164.27, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [64.46, 164.73, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [64.44, 165.12, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [64.43, 165.44, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [64.43, 165.7, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.859 }, + "s": [64.44, 165.9, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.204 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [64.45, 166.06, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.222 }, + "i": { "x": 0.833, "y": 0.869 }, + "s": [64.47, 166.16, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.23 }, + "i": { "x": 0.833, "y": 0.811 }, + "s": [64.49, 166.22, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [64.52, 166.23, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [64.55, 166.2, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [64.58, 166.16, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [64.61, 166.14, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [64.65, 166.13, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [64.69, 166.14, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [64.73, 166.16, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [64.77, 166.19, 0], + "t": 58 + }, + { "s": [64.81, 166.23, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 17 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 39 + }, + { "s": [0], "t": 55 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 34 + }, + { + "ty": 4, + "nm": "Shape Layer 17", + "sr": 1, + "st": 8, + "op": 60, + "ip": 8, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [24.03, 60.83, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": -0.166 }, + "i": { "x": 0.833, "y": 1.111 }, + "s": [47.32, 54.38, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.048 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [39.55, 36, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.607 }, + "i": { "x": 0.833, "y": 1.606 }, + "s": [57.71, 35.93, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.989 }, + "s": [60.6, 63.08, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.013 }, + "i": { "x": 0.833, "y": 0.917 }, + "s": [36.71, 34.68, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -62.917 }, + "i": { "x": 0.833, "y": -66.49 }, + "s": [57.46, 50.97, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [57.43, 55.09, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.154 }, + "i": { "x": 0.833, "y": 0.649 }, + "s": [35.23, 52.58, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.109 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [43.02, 39.99, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [68.09, 46.81, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.681 }, + "i": { "x": 0.833, "y": 1.246 }, + "s": [44.72, 71.44, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 1.031 }, + "s": [47.27, 63.9, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.023 }, + "i": { "x": 0.833, "y": 0.909 }, + "s": [37.19, 71.31, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 1.035 }, + "i": { "x": 0.833, "y": 2.265 }, + "s": [51.03, 55.46, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 1.009 }, + "s": [52.24, 67.2, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.008 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [32.64, 62.35, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -4.987 }, + "i": { "x": 0.833, "y": -2.408 }, + "s": [54.43, 62.57, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [54.07, 46.25, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.884 }, + "s": [39.78, 69.48, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.293 }, + "i": { "x": 0.833, "y": 1.215 }, + "s": [49.72, 33.37, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [53.66, 45.85, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.066 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [39.52, 80.42, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 12.816 }, + "i": { "x": 0.833, "y": -6.827 }, + "s": [47.42, 59.73, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.084 }, + "i": { "x": 0.833, "y": 1.453 }, + "s": [47.47, 75.23, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.989 }, + "s": [52.28, 45.52, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.013 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [21.37, 47.95, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.143 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [48.13, 56.64, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -2.31 }, + "i": { "x": 0.833, "y": 2.435 }, + "s": [38.26, 55.86, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [38.61, 36.24, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.407 }, + "i": { "x": 0.833, "y": 0.227 }, + "s": [32.35, 36.7, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 1.092 }, + "s": [33.41, 25.99, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.901 }, + "s": [42.23, 25.45, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.541 }, + "i": { "x": 0.833, "y": 0.779 }, + "s": [23.72, 5.62, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.134 }, + "i": { "x": 0.833, "y": 0.776 }, + "s": [20.34, 29.97, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.133 }, + "i": { "x": 0.833, "y": 1.092 }, + "s": [14.77, -4.8, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.935 }, + "s": [5.36, 33.65, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.287 }, + "i": { "x": 0.833, "y": 0.606 }, + "s": [25.16, 33.81, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.918 }, + "s": [20.71, 17.29, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -5.253 }, + "i": { "x": 0.833, "y": -8.496 }, + "s": [4.1, -14.2, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.084 }, + "i": { "x": 0.833, "y": 0.961 }, + "s": [4.36, 12.75, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.072 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [33.65, 17.25, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.094 }, + "i": { "x": 0.833, "y": 1.049 }, + "s": [17.93, 30.63, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.899 }, + "s": [25.32, 31.23, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.481 }, + "i": { "x": 0.833, "y": 1.136 }, + "s": [13.54, 34.66, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 1.062 }, + "s": [11.08, 5.31, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.035 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [17.56, 2.41, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.285 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [6.27, -18.23, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [1.6, -2.9, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [7.84, 16.27, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [13.1, 26.39, 100], + "t": 58 + }, + { "s": [19.5, 20.64, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.628 }, + "s": [134.5, 152.08, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.107 }, + "i": { "x": 0.833, "y": 0.767 }, + "s": [136.1, 152.64, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [141.8, 153.78, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [152.18, 154.65, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [163.64, 153.56, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [173.19, 150.14, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [180.29, 145.02, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [185.16, 139.08, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [188.3, 133.05, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [190.24, 127.32, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [191.39, 122.04, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [192.01, 117.24, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [192.28, 112.88, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [192.32, 108.91, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [192.19, 105.29, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [191.96, 101.99, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [191.65, 98.97, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [191.29, 96.21, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [190.91, 93.68, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [190.53, 91.37, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [190.15, 89.25, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [189.78, 87.3, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [189.42, 85.53, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [189.09, 83.91, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [188.79, 82.43, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [188.51, 81.08, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [188.26, 79.87, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [188.04, 78.77, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [187.86, 77.78, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [187.7, 76.9, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [187.57, 76.12, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [187.48, 75.43, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [187.41, 74.84, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [187.37, 74.33, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [187.36, 73.9, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [187.38, 73.55, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [187.41, 73.27, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [187.47, 73.06, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [187.55, 72.92, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [187.64, 72.83, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [187.74, 72.8, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [187.85, 72.8, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [187.96, 72.8, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [188.05, 72.79, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [188.14, 72.77, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [188.2, 72.75, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [188.25, 72.71, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [188.29, 72.67, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [188.33, 72.64, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [188.39, 72.65, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [188.46, 72.68, 0], + "t": 58 + }, + { "s": [188.53, 72.73, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 35 + }, + { "s": [0], "t": 51 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 35 + }, + { + "ty": 4, + "nm": "Shape Layer 16", + "sr": 1, + "st": 9, + "op": 60, + "ip": 9, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.563 }, + "s": [45.08, 55.03, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 1.109 }, + "s": [46.51, 24.66, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 1.054 }, + "s": [52.58, 62.36, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [38.59, 48.31, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.475 }, + "i": { "x": 0.833, "y": 0.393 }, + "s": [61.72, 43.79, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.097 }, + "i": { "x": 0.833, "y": 0.968 }, + "s": [58.27, 33.4, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.053 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [36.56, 47.96, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.042 }, + "s": [49.83, 54.82, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [63.05, 30.4, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.389 }, + "i": { "x": 0.833, "y": 0.863 }, + "s": [43.15, 47.6, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.212 }, + "i": { "x": 0.833, "y": 1.102 }, + "s": [37.72, 35.13, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.046 }, + "i": { "x": 0.833, "y": 0.698 }, + "s": [34.2, 51.54, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.995 }, + "s": [42.04, 41.33, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [62.6, 55.18, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.627 }, + "i": { "x": 0.833, "y": 1.376 }, + "s": [43.38, 33.2, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [40.43, 73.76, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.002 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [56.66, 49.08, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.033 }, + "i": { "x": 0.833, "y": 0.9 }, + "s": [40.72, 67.08, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.508 }, + "i": { "x": 0.833, "y": 1.069 }, + "s": [52.13, 28.07, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.758 }, + "s": [54.37, 45.88, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 1.163 }, + "s": [50.27, 49.47, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.9 }, + "s": [42.46, 47.9, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.493 }, + "i": { "x": 0.833, "y": 1.429 }, + "s": [65.56, 60.25, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [70.26, 60.83, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.171 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [41.34, 56.55, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -1.171 }, + "i": { "x": 0.833, "y": -0.547 }, + "s": [50.82, 68.82, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.088 }, + "i": { "x": 0.833, "y": 0.772 }, + "s": [50.19, 39.54, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.131 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [39.13, 32.68, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [19.92, 32.38, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.966 }, + "s": [33.37, 34.33, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.058 }, + "i": { "x": 0.833, "y": 0.795 }, + "s": [48.61, 30.46, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 0.792 }, + "s": [39.64, 13.71, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [26.6, 39.24, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.427 }, + "i": { "x": 0.833, "y": 1.334 }, + "s": [7.11, 2.07, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [2.39, 36.6, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.192 }, + "i": { "x": 0.833, "y": 1.066 }, + "s": [26.02, 6.02, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [44.19, 27.24, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.284 }, + "i": { "x": 0.833, "y": 1.078 }, + "s": [11.64, -3.39, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.862 }, + "s": [-1.84, 5.53, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.211 }, + "i": { "x": 0.833, "y": 0.96 }, + "s": [24.34, 24.66, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.077 }, + "i": { "x": 0.833, "y": 0.76 }, + "s": [41.44, 28.97, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [32.53, 17.64, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.222 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [15.77, 15.74, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.117 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [5.7, -0.32, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 10.387 }, + "i": { "x": 0.833, "y": 2.198 }, + "s": [9.89, 10.27, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 0.475 }, + "s": [9.92, -26.76, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 1.442 }, + "s": [9.4, -5.24, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [6.64, 19.02, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.071 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [24.01, 8.08, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [14.61, 20.58, 100], + "t": 58 + }, + { "s": [24.78, 43.2, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.587 }, + "s": [134.53, 152.99, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.774 }, + "s": [133.63, 151.89, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.132 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [129.56, 148.82, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [128.52, 159.21, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [129.6, 171.2, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [130.54, 181.63, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [131.16, 190.31, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [131.48, 197.6, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [131.58, 203.81, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [131.5, 209.17, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [131.28, 213.85, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [130.96, 217.96, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [130.54, 221.58, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [130.06, 224.8, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [129.52, 227.66, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [128.95, 230.2, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [128.36, 232.46, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [127.74, 234.47, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [127.12, 236.26, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [126.51, 237.85, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [125.91, 239.27, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [125.32, 240.52, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [124.75, 241.64, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [124.21, 242.63, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [123.69, 243.52, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [123.2, 244.31, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [122.74, 245.02, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [122.31, 245.66, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [121.91, 246.24, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [121.53, 246.77, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [121.17, 247.26, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [120.84, 247.7, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [120.56, 248.1, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [120.33, 248.46, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [120.14, 248.77, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [119.98, 249.04, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [119.86, 249.26, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [119.77, 249.45, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.197 }, + "i": { "x": 0.833, "y": 0.862 }, + "s": [119.7, 249.6, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.211 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [119.65, 249.71, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.193 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [119.62, 249.79, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [119.6, 249.84, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.814 }, + "s": [119.55, 249.88, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.151 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [119.48, 249.91, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [119.4, 249.94, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [119.29, 249.95, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [119.17, 249.95, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [119.02, 249.94, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [118.86, 249.93, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [118.68, 249.9, 0], + "t": 58 + }, + { "s": [118.48, 249.87, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 14 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 36 + }, + { "s": [0], "t": 52 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 36 + }, + { + "ty": 4, + "nm": "Shape Layer 15", + "sr": 1, + "st": 6, + "op": 60, + "ip": 6, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.755 }, + "s": [40.28, 48.85, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 1.13 }, + "s": [45.2, 71.43, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [54.71, 47.36, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": -0.103 }, + "i": { "x": 0.833, "y": 0.879 }, + "s": [30.34, 30.06, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.269 }, + "i": { "x": 0.833, "y": 0.612 }, + "s": [41.25, 56.36, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [46.16, 69.72, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.155 }, + "i": { "x": 0.833, "y": 0.7 }, + "s": [64.09, 36.17, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [57.82, 16.99, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.826 }, + "i": { "x": 0.833, "y": 1.355 }, + "s": [41.54, 37.68, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.982 }, + "s": [39.71, 72.8, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.023 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [49.32, 38.14, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 1.722 }, + "i": { "x": 0.833, "y": -1.675 }, + "s": [41.78, 30.58, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.895 }, + "s": [41.4, 26.67, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.406 }, + "i": { "x": 0.833, "y": 1.611 }, + "s": [29.48, 44.78, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [26.4, 50.92, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.399 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [52.06, 60.09, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.815 }, + "s": [47.63, 20.78, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.903 }, + "s": [44.05, 48.84, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.578 }, + "i": { "x": 0.833, "y": 3.319 }, + "s": [39.69, 47.33, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [38.96, 70.46, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.122 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [60.1, 33.89, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.07 }, + "i": { "x": 0.833, "y": 1.232 }, + "s": [51.51, 56.15, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 1.055 }, + "s": [56.16, 41.67, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [38.55, 34.16, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 1.606 }, + "i": { "x": 0.833, "y": 1.622 }, + "s": [67.72, 31.31, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [69.32, 56.57, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 1.001 }, + "s": [55.8, 61.45, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.001 }, + "i": { "x": 0.833, "y": 1.034 }, + "s": [43.42, 71.12, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.024 }, + "i": { "x": 0.833, "y": 0.803 }, + "s": [55.94, 27.71, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [38.31, 32.76, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.086 }, + "i": { "x": 0.833, "y": 0.8 }, + "s": [14.33, 17.3, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.143 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [26.11, 23.93, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.176 }, + "i": { "x": 0.833, "y": 0.752 }, + "s": [42.65, 12.15, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 0.766 }, + "s": [37.33, 22.05, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [26.85, 51.44, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.403 }, + "i": { "x": 0.833, "y": 1.044 }, + "s": [7.93, 14.91, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 1.502 }, + "s": [11.17, 33.3, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [6.21, -4.62, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.373 }, + "i": { "x": 0.833, "y": 0.475 }, + "s": [41.04, 22.49, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.099 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [34.68, 20.8, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.133 }, + "i": { "x": 0.833, "y": 0.795 }, + "s": [0.95, 9.26, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.14 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [13.95, 4.7, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.452 }, + "i": { "x": 0.833, "y": 0.248 }, + "s": [32.97, 29.22, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [30.01, 0.43, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.542 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [6.27, 2.3, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 1.066 }, + "s": [9.43, -16.38, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [13.39, 19.7, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 1.067 }, + "s": [6.31, -5.64, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 0.982 }, + "s": [15.78, 0.85, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.022 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [-1.33, 35.47, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [12.18, -3.5, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.035 }, + "i": { "x": 0.833, "y": 0.875 }, + "s": [23.18, -0.88, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.25 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [15.42, 35.64, 100], + "t": 58 + }, + { "s": [11.53, 12.02, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.63 }, + "s": [134.51, 150.92, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.767 }, + "s": [134.19, 150.04, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [132.5, 147.4, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [129.13, 142.97, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [125.16, 138.35, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [121.57, 134.49, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [118.53, 131.35, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [115.97, 128.72, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [113.82, 126.42, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [112.03, 124.3, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [110.71, 122.17, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [110.71, 119.85, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [112.23, 118.56, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [113.8, 117.87, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [115.26, 117.42, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [116.59, 117.11, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [117.8, 116.91, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [118.9, 116.8, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [119.9, 116.78, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [120.81, 116.79, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [121.66, 116.81, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [122.43, 116.83, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [123.13, 116.86, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [123.77, 116.88, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [124.34, 116.9, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [124.85, 116.91, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [125.29, 116.9, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [125.67, 116.89, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [125.99, 116.86, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [126.24, 116.82, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.194 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [126.44, 116.77, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [126.59, 116.7, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [126.67, 116.62, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.809 }, + "s": [126.71, 116.53, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.808 }, + "s": [126.69, 116.43, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.147 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [126.63, 116.31, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [126.52, 116.19, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [126.37, 116.06, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [126.18, 115.93, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [125.95, 115.8, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [125.69, 115.67, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [125.42, 115.54, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [125.14, 115.41, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [124.87, 115.3, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [124.6, 115.2, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [124.35, 115.11, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [124.11, 115.04, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [123.9, 115, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [123.71, 114.99, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [123.56, 115.03, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [123.45, 115.13, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [123.38, 115.28, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [123.34, 115.47, 0], + "t": 58 + }, + { "s": [123.34, 115.7, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 33 + }, + { "s": [0], "t": 49 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Polystar 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Star", + "nm": "Polystar Path 1", + "ix": 1, + "d": 1, + "pt": { "a": 0, "k": 3, "ix": 3 }, + "p": { "a": 0, "k": [6, 32], "ix": 4 }, + "or": { "a": 0, "k": 6.599, "ix": 7 }, + "os": { "a": 0, "k": 0, "ix": 9 }, + "r": { "a": 0, "k": 0, "ix": 5 }, + "sy": 2 + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 37 + }, + { + "ty": 4, + "nm": "Shape Layer 14", + "sr": 1, + "st": 7, + "op": 60, + "ip": 7, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [48.17, 41.46, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": -0.04 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [25.59, 42.53, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.779 }, + "s": [40.9, 47.33, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.134 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [53.6, 70.37, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.028 }, + "i": { "x": 0.833, "y": 0.877 }, + "s": [74.66, 48.14, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.257 }, + "i": { "x": 0.833, "y": 0.679 }, + "s": [58.92, 34.82, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [51.37, 40.27, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 1.14 }, + "i": { "x": 0.833, "y": 1.545 }, + "s": [29.87, 59.3, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [28.17, 49.75, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.256 }, + "i": { "x": 0.833, "y": 0.643 }, + "s": [40.96, 36.79, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.109 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [37.82, 50.26, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 1.087 }, + "s": [27.48, 59.55, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.042 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [15.68, 72.83, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.178 }, + "i": { "x": 0.833, "y": 1.091 }, + "s": [39.76, 75.81, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.043 }, + "i": { "x": 0.833, "y": 1.009 }, + "s": [32.07, 39.68, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.008 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [48.14, 22.55, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.096 }, + "i": { "x": 0.833, "y": 0.732 }, + "s": [30.43, 32.94, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.121 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [38.66, 47.62, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.276 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [56.91, 50.27, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.377 }, + "i": { "x": 0.833, "y": 1.592 }, + "s": [52.68, 70.78, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 1.083 }, + "s": [53.45, 65.43, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.042 }, + "i": { "x": 0.833, "y": 0.998 }, + "s": [47.24, 54.38, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.002 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [59.62, 34.41, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.084 }, + "i": { "x": 0.833, "y": 1.192 }, + "s": [47.51, 41.18, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.964 }, + "s": [53.53, 59.86, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.063 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [33.66, 71.29, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.428 }, + "i": { "x": 0.833, "y": 1.514 }, + "s": [45.01, 43.87, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [47.76, 58.68, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.175 }, + "i": { "x": 0.833, "y": 0.734 }, + "s": [28.08, 53.25, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.121 }, + "i": { "x": 0.833, "y": 1.006 }, + "s": [34.44, 36.13, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [48.35, 13.05, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.773 }, + "i": { "x": 0.833, "y": 1.045 }, + "s": [33.39, 20.16, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [31.59, 43.91, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.82 }, + "i": { "x": 0.833, "y": 8.194 }, + "s": [34.37, 55.84, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.082 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [34.68, 48.43, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.168 }, + "i": { "x": 0.833, "y": 0.654 }, + "s": [7.22, 13.39, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.11 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [16.33, 14.76, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [45.06, 27.15, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.884 }, + "i": { "x": 0.833, "y": 0.981 }, + "s": [7.35, 28.69, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.024 }, + "i": { "x": 0.833, "y": 0.761 }, + "s": [3.42, 18.31, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 1.054 }, + "s": [6.47, 22.6, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 0.957 }, + "s": [12.15, 1.91, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.09 }, + "i": { "x": 0.833, "y": 0.6 }, + "s": [2.8, 7.23, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [7.31, -0.96, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.091 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [24.42, 8.13, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.46 }, + "i": { "x": 0.833, "y": 2.185 }, + "s": [16.25, 6.02, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.078 }, + "i": { "x": 0.833, "y": 0.869 }, + "s": [17.5, -1.01, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.228 }, + "i": { "x": 0.833, "y": 1.164 }, + "s": [-1.6, 32.84, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [-12.63, 11.48, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.139 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [20.15, -7.6, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.118 }, + "i": { "x": 0.833, "y": 1.325 }, + "s": [7.84, 26.11, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [12.92, 17.61, 100], + "t": 58 + }, + { "s": [-11.99, -1.28, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.588 }, + "s": [135.19, 146.97, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.763 }, + "s": [134.64, 146.19, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [132.09, 143.5, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [126.62, 139.92, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [119.92, 137.82, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [113.89, 137.26, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [108.88, 137.5, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [104.7, 138.13, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [101.16, 138.95, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [98.13, 139.86, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [95.51, 140.81, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [93.2, 141.78, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [91.17, 142.76, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [89.37, 143.75, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [87.77, 144.75, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [86.37, 145.79, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [85.18, 146.92, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [84.38, 148.24, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [84.65, 149.55, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [85.54, 150.13, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [86.41, 150.39, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [87.19, 150.51, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [87.88, 150.54, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [88.48, 150.53, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [88.99, 150.49, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [89.43, 150.44, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [89.79, 150.37, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [90.1, 150.29, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [90.35, 150.22, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [90.56, 150.15, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [90.72, 150.09, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [90.85, 150.04, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.822 }, + "s": [90.96, 150.02, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [91.06, 150.04, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [91.16, 150.12, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [91.26, 150.25, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [91.35, 150.42, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [91.44, 150.62, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [91.53, 150.86, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [91.62, 151.12, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [91.7, 151.4, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [91.79, 151.69, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [91.9, 151.99, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [92.04, 152.29, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [92.19, 152.59, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [92.35, 152.88, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [92.53, 153.17, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [92.72, 153.44, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [92.91, 153.7, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [93.11, 153.94, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [93.31, 154.16, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [93.51, 154.35, 0], + "t": 58 + }, + { "s": [93.7, 154.52, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 34 + }, + { "s": [0], "t": 50 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 38 + }, + { + "ty": 4, + "nm": "Shape Layer 13", + "sr": 1, + "st": 10, + "op": 60, + "ip": 10, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.884 }, + "s": [73.25, 49.4, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.295 }, + "i": { "x": 0.833, "y": 0.718 }, + "s": [56.41, 55.53, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [49.78, 49.45, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.243 }, + "i": { "x": 0.833, "y": 1.035 }, + "s": [33.93, 39.31, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.989 }, + "s": [25.66, 37.09, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.012 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [37.44, 47.06, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.197 }, + "i": { "x": 0.833, "y": 0.805 }, + "s": [27.2, 59.42, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 1.152 }, + "s": [19.72, 70.83, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [9.68, 65.59, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.102 }, + "i": { "x": 0.833, "y": 1.016 }, + "s": [38.09, 73.68, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.013 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [25.29, 44.3, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.135 }, + "i": { "x": 0.833, "y": 1.062 }, + "s": [40.5, 28.04, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.035 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [34.69, 27.04, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.302 }, + "i": { "x": 0.833, "y": 0.784 }, + "s": [44.81, 27.5, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.136 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [48.66, 33.76, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -1.133 }, + "i": { "x": 0.833, "y": 0.883 }, + "s": [54.8, 71.53, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.289 }, + "i": { "x": 0.833, "y": 4.25 }, + "s": [54.38, 70.51, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 1.223 }, + "s": [54.21, 68.94, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [61.02, 56.31, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": -0.648 }, + "i": { "x": 0.833, "y": 1.488 }, + "s": [35.95, 43.8, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.933 }, + "s": [38.81, 56.79, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.337 }, + "i": { "x": 0.833, "y": 0.44 }, + "s": [19.22, 48.83, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [23.11, 52.75, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.099 }, + "i": { "x": 0.833, "y": 0.968 }, + "s": [45.34, 57.15, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.051 }, + "i": { "x": 0.833, "y": 0.719 }, + "s": [35.16, 86.83, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 1.036 }, + "s": [41.47, 67.33, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.917 }, + "s": [56.46, 33.26, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -14.6 }, + "i": { "x": 0.833, "y": -3.33 }, + "s": [35.03, 37.09, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [35.15, 31.35, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 1.296 }, + "s": [41.35, 65.04, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.065 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [46.89, 73.03, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.241 }, + "i": { "x": 0.833, "y": 1.082 }, + "s": [21.66, 39.91, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [8.3, 19.44, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.028 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [34.82, 18.53, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [14.92, 29.89, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.066 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [-1.39, 48.87, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.084 }, + "i": { "x": 0.833, "y": 1.188 }, + "s": [7.7, 21.46, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [3.19, 15.2, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.823 }, + "i": { "x": 0.833, "y": 1.308 }, + "s": [17.87, 16.75, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 0.857 }, + "s": [16.52, 34.35, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 1.022 }, + "s": [22.86, 11.51, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.018 }, + "i": { "x": 0.833, "y": 0.667 }, + "s": [27.42, -2.03, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.111 }, + "i": { "x": 0.833, "y": 0.868 }, + "s": [21.65, 4.95, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.227 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [4.34, 17.8, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 1.016 }, + "s": [-5.68, 29.81, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.013 }, + "i": { "x": 0.833, "y": 1.012 }, + "s": [12.88, 5.18, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.011 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [-9.26, 20.71, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.244 }, + "i": { "x": 0.833, "y": 1.128 }, + "s": [16.14, 38.12, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [9.66, -9.84, 100], + "t": 58 + }, + { "s": [26.11, -0.81, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.569 }, + "s": [135.91, 149.97, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.103 }, + "i": { "x": 0.833, "y": 0.794 }, + "s": [135.31, 149.15, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.14 }, + "i": { "x": 0.833, "y": 0.801 }, + "s": [133.01, 145.58, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.143 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [133.74, 139.23, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [141.43, 139.94, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [148.03, 141.54, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [153.49, 142.99, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [158.06, 144.2, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [161.96, 145.18, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [165.32, 145.99, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [168.27, 146.64, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [170.87, 147.16, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [173.18, 147.57, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [175.24, 147.89, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [177.11, 148.14, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [178.84, 148.37, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [180.43, 148.59, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [181.91, 148.78, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [183.3, 148.97, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [184.59, 149.14, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [185.79, 149.29, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [186.92, 149.44, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [187.97, 149.56, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [188.96, 149.67, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [189.88, 149.77, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [190.74, 149.85, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [191.54, 149.91, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [192.29, 149.95, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [192.97, 149.98, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [193.6, 149.98, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [194.18, 149.97, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [194.7, 149.93, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [195.17, 149.88, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [195.58, 149.81, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [195.94, 149.72, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [196.25, 149.61, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [196.5, 149.48, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [196.69, 149.34, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [196.83, 149.18, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [196.91, 149.01, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [196.93, 148.82, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [196.9, 148.63, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [196.85, 148.42, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [196.75, 148.21, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [196.64, 148.01, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [196.52, 147.85, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [196.39, 147.73, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [196.26, 147.64, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [196.13, 147.59, 0], + "t": 58 + }, + { "s": [196, 147.58, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 15 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 37 + }, + { "s": [0], "t": 53 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 39 + }, + { + "ty": 4, + "nm": "Shape Layer 12", + "sr": 1, + "st": 11, + "op": 60, + "ip": 11, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [34.36, 42.83, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.387 }, + "i": { "x": 0.833, "y": 1.011 }, + "s": [39.77, 29.16, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.009 }, + "i": { "x": 0.833, "y": 0.535 }, + "s": [41.25, 35.59, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.814 }, + "s": [39.58, 47.95, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.151 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [31.93, 42.67, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 1.16 }, + "s": [22.5, 57.9, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [11.35, 39.64, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.086 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [43.98, 49.8, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.806 }, + "i": { "x": 0.833, "y": -0.171 }, + "s": [27.93, 39.97, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.09 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [29.44, 39.29, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.06 }, + "i": { "x": 0.833, "y": 0.989 }, + "s": [49.06, 46.52, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.013 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [37.68, 36.76, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.233 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [47.55, 20.07, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 1.123 }, + "s": [53.03, 59.5, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [59.18, 65.36, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.031 }, + "i": { "x": 0.833, "y": 0.983 }, + "s": [43.96, 57.48, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.021 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [55.06, 49.66, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.751 }, + "s": [46.2, 60.4, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.125 }, + "i": { "x": 0.833, "y": 0.906 }, + "s": [37.49, 65.41, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.74 }, + "i": { "x": 0.833, "y": 1.547 }, + "s": [20.16, 45.98, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [17.95, 45.21, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 2.649 }, + "i": { "x": 0.833, "y": 0.441 }, + "s": [34.61, 34.31, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 0.52 }, + "s": [35.15, 69.84, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.101 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [38.24, 79.92, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.031 }, + "i": { "x": 0.833, "y": 0.766 }, + "s": [52.96, 44.45, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [42.24, 59.37, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.079 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [22.84, 43.72, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [32.81, 52.7, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.027 }, + "i": { "x": 0.833, "y": 0.699 }, + "s": [41.95, 62.61, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [35.02, 63.49, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 2.984 }, + "i": { "x": 0.833, "y": 2.929 }, + "s": [16.94, 35.8, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 1.084 }, + "s": [16.42, 28.55, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.042 }, + "i": { "x": 0.833, "y": 1.001 }, + "s": [28.97, 21.36, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.001 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [3.81, 54.35, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.168 }, + "i": { "x": 0.833, "y": 0.889 }, + "s": [29.27, 21.81, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.335 }, + "i": { "x": 0.833, "y": 1.33 }, + "s": [20.82, 26.17, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [18.01, 23.98, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.04 }, + "i": { "x": 0.833, "y": 0.915 }, + "s": [31.91, 34.94, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 3.347 }, + "i": { "x": 0.833, "y": 0.366 }, + "s": [22.5, 25.07, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 0.284 }, + "s": [22.25, -6.61, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [20.66, 18.22, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.033 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [8.58, 18.5, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 1.171 }, + "i": { "x": 0.833, "y": 4.784 }, + "s": [17.21, 41.13, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.082 }, + "i": { "x": 0.833, "y": 0.95 }, + "s": [17.87, 23.89, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.123 }, + "i": { "x": 0.833, "y": 0.762 }, + "s": [-12.8, 7.55, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.889 }, + "s": [-0.39, 42.58, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.335 }, + "i": { "x": 0.833, "y": 0.804 }, + "s": [22.69, -1.06, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [30.33, 11.29, 100], + "t": 58 + }, + { "s": [40.66, 12.24, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.583 }, + "s": [136.17, 154.16, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.762 }, + "s": [135.01, 154.49, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [130.18, 153.13, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [122.25, 147.36, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [114.09, 139.74, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [107.19, 132.77, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [101.48, 126.92, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [96.67, 122.04, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [92.51, 117.93, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [88.83, 114.43, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [85.53, 111.45, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [82.53, 108.9, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [79.76, 106.72, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [77.18, 104.89, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [74.77, 103.37, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [72.49, 102.15, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [70.34, 101.24, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [68.31, 100.64, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [66.41, 100.36, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [64.67, 100.39, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [63.12, 100.7, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [61.78, 101.24, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [60.65, 101.91, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [59.7, 102.63, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [58.9, 103.36, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [58.23, 104.06, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [57.66, 104.72, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [57.17, 105.33, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [56.75, 105.88, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [56.38, 106.37, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [56.05, 106.82, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [55.77, 107.21, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [55.52, 107.55, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [55.29, 107.84, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [55.1, 108.09, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [54.94, 108.3, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [54.79, 108.47, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [54.67, 108.6, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.197 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [54.58, 108.7, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.208 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [54.5, 108.77, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.196 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [54.44, 108.79, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [54.4, 108.81, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [54.36, 108.84, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [54.34, 108.89, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [54.32, 108.94, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [54.31, 109, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [54.3, 109.07, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [54.3, 109.14, 0], + "t": 58 + }, + { "s": [54.3, 109.21, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 16 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 38 + }, + { "s": [0], "t": 54 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 40 + }, + { + "ty": 4, + "nm": "Shape Layer 11", + "sr": 1, + "st": 5, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [24.15, 86.88, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": -0.246 }, + "i": { "x": 0.833, "y": 1.038 }, + "s": [46.99, 34.74, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.026 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [41.21, 22.81, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.391 }, + "i": { "x": 0.833, "y": 1.66 }, + "s": [49.59, 36.78, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [51.87, 33.89, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.472 }, + "i": { "x": 0.833, "y": 0.162 }, + "s": [31.59, 20.67, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [34.63, 33.78, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.098 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [62.17, 43.79, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [49.54, 58.36, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.314 }, + "i": { "x": 0.833, "y": 1.386 }, + "s": [35.98, 39.87, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 1.064 }, + "s": [38.83, 45.37, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [22.79, 25.2, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.543 }, + "i": { "x": 0.833, "y": 0.358 }, + "s": [51.19, 22.39, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 1.006 }, + "s": [47.41, 39.13, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [22.05, 34.21, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.142 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [49.31, 53.89, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.105 }, + "i": { "x": 0.833, "y": 0.782 }, + "s": [39.24, 58.77, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [43.7, 36.6, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 1.187 }, + "s": [50.9, 40.06, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [59.85, 51.5, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -1.303 }, + "i": { "x": 0.833, "y": -0.546 }, + "s": [30.79, 41.24, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.088 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [32.54, 20.43, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.233 }, + "i": { "x": 0.833, "y": 0.782 }, + "s": [63.19, 42.19, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.806 }, + "s": [55.11, 52.8, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.146 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [42.1, 67.03, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.514 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [24.85, 48.3, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 1.248 }, + "s": [27.26, 25.81, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.895 }, + "s": [24.23, 31.41, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.404 }, + "i": { "x": 0.833, "y": 0.992 }, + "s": [36.26, 66.95, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.009 }, + "i": { "x": 0.833, "y": 0.123 }, + "s": [39.38, 45.93, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [36.55, 44.42, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.176 }, + "i": { "x": 0.833, "y": 0.802 }, + "s": [9.62, 44.69, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.144 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [18.26, 47.03, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.243 }, + "i": { "x": 0.833, "y": 0.507 }, + "s": [30.13, 24.34, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.1 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [27.09, 58.7, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 1.039 }, + "s": [12.19, 45.48, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.026 }, + "i": { "x": 0.833, "y": 1.03 }, + "s": [0.18, 39.86, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 1.01 }, + "s": [17.76, 19.43, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.009 }, + "i": { "x": 0.833, "y": 0.865 }, + "s": [-6.11, 33.23, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.219 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [20.74, -2.52, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [37.29, 19.58, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.108 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [6.55, 21.73, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.028 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [19.94, 9.79, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.176 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [9.95, 20, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 1.367 }, + "i": { "x": 0.833, "y": 3.32 }, + "s": [13.16, 0.99, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 1.176 }, + "s": [13.37, 21.63, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.057 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [7.36, 24.19, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.019 }, + "i": { "x": 0.833, "y": 0.862 }, + "s": [26.05, 38.9, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.21 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [10.85, 47.51, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.242 }, + "i": { "x": 0.833, "y": 1.145 }, + "s": [0.84, -5.3, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.053 }, + "i": { "x": 0.833, "y": 0.874 }, + "s": [-4.41, 16.3, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.245 }, + "i": { "x": 0.833, "y": 0.791 }, + "s": [10.01, 2.19, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [17.45, 2.56, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [28.62, 21.82, 100], + "t": 58 + }, + { "s": [14.66, 18.78, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.595 }, + "s": [137.16, 154.28, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [135.49, 154.9, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [129.21, 157.77, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [117.89, 163.51, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [105.5, 170.39, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [94.83, 176.8, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [86.03, 182.46, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [78.71, 187.44, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [72.51, 191.89, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [67.18, 195.9, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [62.55, 199.56, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [58.49, 202.91, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [54.91, 206, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [51.74, 208.86, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [48.94, 211.52, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [46.46, 213.99, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [44.28, 216.3, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [42.36, 218.46, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [40.69, 220.48, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [39.22, 222.36, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [37.94, 224.1, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [36.83, 225.73, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [35.86, 227.23, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [35.04, 228.62, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [34.33, 229.89, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [33.74, 231.07, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [33.25, 232.13, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [32.85, 233.1, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [32.53, 233.98, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [32.28, 234.76, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [32.1, 235.45, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [31.98, 236.06, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [31.9, 236.59, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [31.87, 237.03, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [31.87, 237.4, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [31.91, 237.69, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [31.97, 237.91, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [32.06, 238.06, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [32.16, 238.14, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [32.27, 238.16, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [32.4, 238.11, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [32.52, 238.03, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [32.63, 237.94, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [32.72, 237.85, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [32.79, 237.75, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [32.84, 237.64, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [32.86, 237.53, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [32.84, 237.4, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [32.79, 237.26, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [32.71, 237.14, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [32.61, 237.05, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [32.49, 236.98, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [32.36, 236.94, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [32.22, 236.92, 0], + "t": 58 + }, + { "s": [32.07, 236.94, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 5 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 32 + }, + { "s": [0], "t": 48 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 41 + }, + { + "ty": 4, + "nm": "Shape Layer 10", + "sr": 1, + "st": 8, + "op": 60, + "ip": 8, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [62.23, 53.08, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.22 }, + "i": { "x": 0.833, "y": 1.119 }, + "s": [43.99, 16.42, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [32.87, 47.69, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.141 }, + "i": { "x": 0.833, "y": 0.746 }, + "s": [59.83, 40.88, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.124 }, + "i": { "x": 0.833, "y": 0.94 }, + "s": [49.81, 57.95, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.21 }, + "i": { "x": 0.833, "y": 0.968 }, + "s": [29.31, 52.76, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.051 }, + "i": { "x": 0.833, "y": 1.429 }, + "s": [35.14, 68.23, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 0.886 }, + "s": [31.54, 37.17, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.307 }, + "i": { "x": 0.833, "y": 1.12 }, + "s": [53.71, 26.15, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 0.887 }, + "s": [61.98, 35.05, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.316 }, + "i": { "x": 0.833, "y": 0.971 }, + "s": [41.8, 43.03, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.045 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [34.56, 41.49, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [39.25, 56.68, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 1.79 }, + "i": { "x": 0.833, "y": 0.179 }, + "s": [44.09, 51.52, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 1.589 }, + "s": [44.32, 34.32, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.073 }, + "i": { "x": 0.833, "y": 0.878 }, + "s": [46.41, 31.89, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.262 }, + "i": { "x": 0.833, "y": 1.33 }, + "s": [29.56, 40.13, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.901 }, + "s": [21.7, 21.22, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.525 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [60.68, 28.03, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.486 }, + "i": { "x": 0.833, "y": -1.352 }, + "s": [68.04, 27.21, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.883 }, + "s": [66.97, 59.27, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.29 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [37.65, 60.72, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.222 }, + "i": { "x": 0.833, "y": 1.16 }, + "s": [25.84, 39.61, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.876 }, + "s": [18.75, 38.87, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.255 }, + "i": { "x": 0.833, "y": 1.058 }, + "s": [39.48, 51.81, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.034 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [49.57, 63.88, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.446 }, + "i": { "x": 0.833, "y": 1.242 }, + "s": [32.42, 55.69, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.892 }, + "s": [28.47, 39.52, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.364 }, + "i": { "x": 0.833, "y": 1.044 }, + "s": [43.88, 66.87, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 0.587 }, + "s": [48.45, 31.25, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.104 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [41.47, 55.64, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 1.495 }, + "i": { "x": 0.833, "y": 1.439 }, + "s": [13.8, 64.27, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 1.035 }, + "s": [12.17, 44.86, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [22.4, 33.25, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.138 }, + "i": { "x": 0.833, "y": 0.603 }, + "s": [7.86, 38.17, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [13.34, -3.22, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [33.95, 30.52, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -1.056 }, + "i": { "x": 0.833, "y": 1.395 }, + "s": [6.52, 32.75, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [8.52, 15.54, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.906 }, + "s": [-2.99, 27.05, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.74 }, + "i": { "x": 0.833, "y": 1.079 }, + "s": [7.3, 21.07, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 1.225 }, + "s": [8.6, 26.22, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 1.151 }, + "s": [6.06, 13.02, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [15.46, 14.61, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.115 }, + "i": { "x": 0.833, "y": 0.879 }, + "s": [-10.93, 39.1, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.269 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [0.13, 18.04, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [5.09, 4.68, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [9.94, 15.32, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 1.012 }, + "s": [15.07, -4.05, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.011 }, + "i": { "x": 0.833, "y": 0.986 }, + "s": [21.22, 11.44, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.017 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [14.18, 14.55, 100], + "t": 58 + }, + { "s": [20.03, 9.34, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.609 }, + "s": [132.87, 149.46, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [132.09, 149.64, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [129.31, 150.8, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [124.34, 153.22, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [119.05, 156.44, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [115.18, 160.46, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [116.33, 164.88, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [119.55, 166.91, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [122.52, 168.19, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [125.15, 169.17, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [127.49, 169.99, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [129.59, 170.71, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [131.48, 171.37, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [133.19, 171.98, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [134.74, 172.57, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [136.16, 173.13, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [137.44, 173.67, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [138.61, 174.2, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [139.67, 174.72, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [140.63, 175.23, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [141.49, 175.73, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [142.25, 176.23, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [142.92, 176.71, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [143.48, 177.19, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [143.95, 177.65, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [144.31, 178.1, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [144.58, 178.51, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [144.74, 178.89, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [144.82, 179.21, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [144.81, 179.46, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [144.74, 179.67, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [144.61, 179.84, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [144.45, 179.99, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [144.27, 180.11, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [144.08, 180.22, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [143.88, 180.31, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [143.69, 180.4, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [143.5, 180.48, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [143.34, 180.55, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [143.19, 180.62, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [143.06, 180.69, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [142.95, 180.78, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [142.86, 180.89, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [142.79, 181.02, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [142.73, 181.17, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [142.7, 181.35, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [142.69, 181.54, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [142.7, 181.75, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [142.73, 181.97, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [142.78, 182.2, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [142.85, 182.43, 0], + "t": 58 + }, + { "s": [142.94, 182.67, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 35 + }, + { "s": [0], "t": 51 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 42 + }, + { + "ty": 4, + "nm": "Shape Layer 9", + "sr": 1, + "st": 10, + "op": 60, + "ip": 10, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [53.64, 41.07, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [42.35, 39.99, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [31.7, 52.37, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 0.797 }, + "s": [24.01, 86.13, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [34.25, 55.37, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -1.941 }, + "i": { "x": 0.833, "y": 2.944 }, + "s": [49, 49.35, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 1.003 }, + "s": [48.39, 37.69, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.002 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [63.15, 60.5, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.977 }, + "s": [47.94, 42.79, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.032 }, + "i": { "x": 0.833, "y": 0.969 }, + "s": [34.43, 42.86, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.048 }, + "i": { "x": 0.833, "y": 0.819 }, + "s": [44.18, 44.41, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.879 }, + "s": [38.01, 43.49, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.269 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [30.79, 37.75, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.698 }, + "s": [27.55, 42.77, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.807 }, + "s": [33.56, 46.36, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.147 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [49.36, 44.15, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 1.265 }, + "i": { "x": 0.833, "y": 1.698 }, + "s": [70.12, 31.92, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 0.73 }, + "s": [71.59, 37.48, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.121 }, + "i": { "x": 0.833, "y": 0.888 }, + "s": [57.85, 54.37, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.324 }, + "i": { "x": 0.833, "y": 1.05 }, + "s": [27.05, 34.68, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [16.37, 60.74, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.22 }, + "i": { "x": 0.833, "y": 1.028 }, + "s": [33.47, 44.6, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.021 }, + "i": { "x": 0.833, "y": 0.9 }, + "s": [43.93, 49.19, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.497 }, + "i": { "x": 0.833, "y": 2.007 }, + "s": [29.98, 64.89, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.077 }, + "i": { "x": 0.833, "y": 0.966 }, + "s": [27.17, 33.36, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.058 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [63.93, 66.64, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.086 }, + "i": { "x": 0.833, "y": 1.106 }, + "s": [42.21, 45.1, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 0.866 }, + "s": [52.88, 55.76, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.221 }, + "i": { "x": 0.833, "y": 1.04 }, + "s": [28.59, 52.23, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.947 }, + "s": [13.86, 38.75, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.148 }, + "i": { "x": 0.833, "y": 0.89 }, + "s": [35.64, 25.77, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.339 }, + "i": { "x": 0.833, "y": 1.128 }, + "s": [27.8, 32.44, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 1.199 }, + "s": [25.25, 7.56, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [31.71, 38.63, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.238 }, + "i": { "x": 0.833, "y": 1.252 }, + "s": [9.83, 42.38, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.063 }, + "i": { "x": 0.833, "y": 0.97 }, + "s": [15.5, 22.02, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.046 }, + "i": { "x": 0.833, "y": 0.893 }, + "s": [-7.31, 42.7, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.373 }, + "i": { "x": 0.833, "y": 1.07 }, + "s": [7.34, 34.59, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 1.075 }, + "s": [11.56, 44.55, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.039 }, + "i": { "x": 0.833, "y": 1.071 }, + "s": [3.8, 9.88, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.941 }, + "s": [18.52, 0.64, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.205 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [-8.66, 6.83, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.814 }, + "s": [-0.79, 33.02, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.151 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [8.99, 20.44, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.441 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [21.01, 34.29, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.877 }, + "s": [23.81, 10.17, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.259 }, + "i": { "x": 0.833, "y": 1.206 }, + "s": [27.15, 10.44, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 0.986 }, + "s": [28.74, 2.77, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.017 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [23.23, -10.21, 100], + "t": 58 + }, + { "s": [27.8, 12.25, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.607 }, + "s": [136.65, 149.57, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.106 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [135.65, 150.2, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [131.7, 151.96, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [124.26, 154.03, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [120.26, 147.91, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [123.37, 140.04, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [126.48, 133.79, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [129.14, 128.56, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [131.37, 124.04, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [133.23, 120.03, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [134.79, 116.41, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [136.09, 113.1, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [137.15, 110.02, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [137.97, 107.17, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [138.56, 104.54, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [138.95, 102.1, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [139.14, 99.84, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [139.17, 97.75, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [139.03, 95.83, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [138.76, 94.08, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [138.36, 92.5, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [137.87, 91.1, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [137.3, 89.87, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [136.68, 88.82, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [136.05, 87.93, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [135.41, 87.19, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [134.8, 86.58, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [134.23, 86.1, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [133.71, 85.72, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [133.25, 85.43, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [132.85, 85.22, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [132.52, 85.08, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.196 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [132.25, 85, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.208 }, + "i": { "x": 0.833, "y": 0.868 }, + "s": [132.05, 84.96, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.226 }, + "i": { "x": 0.833, "y": 0.86 }, + "s": [131.91, 84.96, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.205 }, + "i": { "x": 0.833, "y": 0.798 }, + "s": [131.84, 85, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.142 }, + "i": { "x": 0.833, "y": 0.789 }, + "s": [131.83, 85.06, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.138 }, + "i": { "x": 0.833, "y": 0.804 }, + "s": [131.87, 85.14, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.814 }, + "s": [131.96, 85.22, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.151 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [132.1, 85.31, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [132.29, 85.4, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [132.49, 85.46, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [132.7, 85.49, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [132.91, 85.47, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [133.12, 85.42, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [133.32, 85.33, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [133.52, 85.2, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [133.71, 85.05, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [133.87, 84.88, 0], + "t": 58 + }, + { "s": [134.02, 84.69, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 15 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 37 + }, + { "s": [0], "t": 53 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": true, + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.012, 10.621], + [-5.695, 5.34], + [-2.557, -7.377], + [3.15, -2.096] + ] + }, + "ix": 2 + } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 43 + }, + { + "ty": 4, + "nm": "Shape Layer 8", + "sr": 1, + "st": 9, + "op": 60, + "ip": 9, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [59.22, 40.56, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.239 }, + "i": { "x": 0.833, "y": 0.683 }, + "s": [49.99, 44.04, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [45.05, 36.32, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.026 }, + "i": { "x": 0.833, "y": 0.931 }, + "s": [31.18, 61.39, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.401 }, + "i": { "x": 0.833, "y": 0.274 }, + "s": [41.71, 49.81, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 1.092 }, + "s": [39.9, 63.33, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [25.93, 57.74, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.286 }, + "i": { "x": 0.833, "y": 1.078 }, + "s": [55.32, 77.15, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [67.4, 59.37, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 1.209 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [43.99, 48.96, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.061 }, + "i": { "x": 0.833, "y": 2.383 }, + "s": [42.25, 36.76, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [43.25, 50.38, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.181 }, + "i": { "x": 0.833, "y": 0.633 }, + "s": [25.68, 70.15, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [31.23, 44.38, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 1.9 }, + "i": { "x": 0.833, "y": -0.114 }, + "s": [50.12, 64.43, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.09 }, + "i": { "x": 0.833, "y": 0.968 }, + "s": [50.99, 65.46, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.051 }, + "i": { "x": 0.833, "y": 0.984 }, + "s": [61.7, 50.78, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.02 }, + "i": { "x": 0.833, "y": 1.465 }, + "s": [55.05, 50.31, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.895 }, + "s": [60.41, 51.89, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.407 }, + "i": { "x": 0.833, "y": 1.153 }, + "s": [25.19, 27.99, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [16.11, 60.14, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.892 }, + "i": { "x": 0.833, "y": 1.199 }, + "s": [41.85, 62.26, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 1.078 }, + "s": [39.65, 34.27, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [47.08, 66.64, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 1.02 }, + "s": [32.72, 47.6, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.963 }, + "s": [48.49, 64.62, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.067 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [28.98, 62.56, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 1.189 }, + "s": [39.77, 58.95, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.058 }, + "i": { "x": 0.833, "y": 0.974 }, + "s": [51.87, 32.32, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.038 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [12.28, 34.15, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": -0.061 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [39.46, 26.29, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.137 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [23.79, 7.68, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.058 }, + "s": [29.72, 17, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.034 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [35.65, 25.68, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.054 }, + "i": { "x": 0.833, "y": 1.288 }, + "s": [25.58, 30.38, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.065 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [31.68, 5.56, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.193 }, + "i": { "x": 0.833, "y": 0.756 }, + "s": [4.56, 34.1, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 1.038 }, + "s": [12.75, 37.77, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.026 }, + "i": { "x": 0.833, "y": 1.014 }, + "s": [28.52, 43.99, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.012 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [5.62, 20.66, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.026 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [32.35, 9.79, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.377 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [12.03, -9.37, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [15.71, 23.51, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.193 }, + "i": { "x": 0.833, "y": 1.214 }, + "s": [19.76, 43.45, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.906 }, + "s": [18.54, 39.54, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.711 }, + "i": { "x": 0.833, "y": -0.566 }, + "s": [22.89, 14.2, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.088 }, + "i": { "x": 0.833, "y": 1.073 }, + "s": [23.47, 26.81, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.039 }, + "i": { "x": 0.833, "y": 0.938 }, + "s": [33.76, 4.55, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": -0.247 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [14.41, -18.79, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [19.29, 9.99, 100], + "t": 58 + }, + { "s": [13.19, 20.28, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.626 }, + "s": [136.16, 149.89, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.107 }, + "i": { "x": 0.833, "y": 0.768 }, + "s": [134.67, 150.39, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [129.74, 153.03, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [122.49, 160.51, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [120.13, 172.51, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [123.11, 182.61, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [127.44, 189.78, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [131.81, 194.95, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [135.92, 198.76, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [139.72, 201.58, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [143.23, 203.63, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [146.46, 205.07, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [149.44, 205.98, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [152.18, 206.43, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [154.7, 206.46, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [156.97, 206.12, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [159, 205.45, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [160.79, 204.51, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [162.33, 203.37, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [163.63, 202.11, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [164.72, 200.8, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [165.64, 199.49, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.43, 198.22, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [167.1, 197.01, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [167.69, 195.88, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [168.22, 194.83, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [168.7, 193.85, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [169.15, 192.97, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [169.56, 192.14, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [169.96, 191.36, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [170.36, 190.62, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [170.74, 189.91, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [171.11, 189.26, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [171.45, 188.64, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [171.78, 188.08, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [172.07, 187.57, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [172.34, 187.1, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [172.58, 186.69, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [172.79, 186.33, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [172.95, 186.03, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [173.08, 185.78, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [173.17, 185.57, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [173.22, 185.37, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [173.24, 185.18, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [173.22, 185, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [173.17, 184.84, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [173.08, 184.71, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [172.96, 184.59, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [172.81, 184.5, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [172.64, 184.43, 0], + "t": 58 + }, + { "s": [172.45, 184.38, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 9 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 14 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 36 + }, + { "s": [0], "t": 52 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 44 + }, + { + "ty": 4, + "nm": "Shape Layer 7", + "sr": 1, + "st": 5, + "op": 60, + "ip": 5, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.747 }, + "s": [32.76, 76.03, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.075 }, + "i": { "x": 0.833, "y": 0.927 }, + "s": [30.43, 63.98, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": -0.593 }, + "i": { "x": 0.833, "y": 1.16 }, + "s": [53.57, 48.57, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.95 }, + "s": [50.72, 37.02, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": -0.126 }, + "i": { "x": 0.833, "y": 0.652 }, + "s": [59.04, 63.56, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.11 }, + "i": { "x": 0.833, "y": 0.996 }, + "s": [55.73, 33.61, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": -0.004 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [45.23, 45.15, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.717 }, + "s": [55.2, 37.95, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [46.3, 61.37, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": -0.095 }, + "i": { "x": 0.833, "y": 0.686 }, + "s": [24.92, 68.19, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.935 }, + "s": [34.92, 72.69, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.292 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [62.58, 56.21, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [56.44, 48.4, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.223 }, + "i": { "x": 0.833, "y": 0.512 }, + "s": [49.75, 43.97, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.1 }, + "i": { "x": 0.833, "y": 0.973 }, + "s": [45.78, 55.02, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.041 }, + "i": { "x": 0.833, "y": 0.898 }, + "s": [26.49, 76.97, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.465 }, + "i": { "x": 0.833, "y": 0.724 }, + "s": [39.43, 51.43, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.119 }, + "i": { "x": 0.833, "y": 0.924 }, + "s": [42.26, 53.38, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.912 }, + "i": { "x": 0.833, "y": 0.904 }, + "s": [48.79, 71.51, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.63 }, + "i": { "x": 0.833, "y": 11.64 }, + "s": [48.24, 50.33, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 1.179 }, + "s": [48.16, 70.15, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.057 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [58.9, 58.43, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.428 }, + "i": { "x": 0.833, "y": 1.129 }, + "s": [25.13, 36.88, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [16.97, 58.5, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.887 }, + "s": [37.7, 76.84, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.319 }, + "i": { "x": 0.833, "y": 1.072 }, + "s": [56.26, 46, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.039 }, + "i": { "x": 0.833, "y": 0.783 }, + "s": [62.81, 66.15, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.135 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [50.63, 45.96, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.662 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [31.09, 45.55, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 1.628 }, + "s": [33.27, 64.28, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.074 }, + "i": { "x": 0.833, "y": 1.039 }, + "s": [30.89, 48.49, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.925 }, + "s": [51.22, 30.15, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.727 }, + "i": { "x": 0.833, "y": 1.219 }, + "s": [21.31, 15.25, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.892 }, + "s": [24.38, 42.59, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.367 }, + "i": { "x": 0.833, "y": 1.243 }, + "s": [13.22, 5.7, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [9.94, 27.71, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [22.77, 8.96, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.284 }, + "i": { "x": 0.833, "y": 0.362 }, + "s": [35.85, 9.71, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 0.887 }, + "s": [32.88, -13.42, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.315 }, + "i": { "x": 0.833, "y": 1.174 }, + "s": [13.14, 3.71, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [6.06, 30.01, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.264 }, + "i": { "x": 0.833, "y": 1.142 }, + "s": [27.91, 10.79, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 0.933 }, + "s": [22.66, 7.86, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.344 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [36.83, 19.21, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 1.055 }, + "s": [34.07, -7.08, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.033 }, + "i": { "x": 0.833, "y": 1.398 }, + "s": [31.81, 7.89, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.884 }, + "s": [35.56, 34.44, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.296 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [13.86, 36.02, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 1.317 }, + "i": { "x": 0.833, "y": 3.369 }, + "s": [5.36, 6.65, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 1.072 }, + "s": [4.78, 16.1, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.039 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [21.68, 24.12, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [-9.85, -8.29, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 1.504 }, + "i": { "x": 0.833, "y": 0.193 }, + "s": [12.23, 11.68, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [13.53, 8.25, 100], + "t": 58 + }, + { "s": [24.76, 29.12, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.638 }, + "s": [131.81, 150.55, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.768 }, + "s": [130.5, 149.81, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.825 }, + "s": [125.98, 147.72, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [117.64, 145.08, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [108.28, 142.92, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [100.12, 141.07, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [93.37, 139.22, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [87.8, 137.22, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [83.17, 135.04, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [79.34, 132.68, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [76.21, 130.16, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [73.68, 127.54, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [71.69, 124.88, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [70.17, 122.27, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [69.04, 119.75, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [68.22, 117.37, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [67.66, 115.16, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [67.3, 113.1, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [67.12, 111.16, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [67.07, 109.36, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [67.11, 107.68, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [67.23, 106.13, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [67.39, 104.7, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [67.6, 103.38, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [67.82, 102.18, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [68.05, 101.09, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [68.29, 100.1, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [68.51, 99.21, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [68.73, 98.42, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [68.92, 97.73, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [69.09, 97.13, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [69.24, 96.61, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [69.36, 96.18, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.192 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [69.45, 95.83, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.201 }, + "i": { "x": 0.833, "y": 0.865 }, + "s": [69.51, 95.56, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.218 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [69.54, 95.36, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.243 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [69.55, 95.24, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [69.52, 95.19, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.791 }, + "s": [69.47, 95.2, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.139 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [69.4, 95.27, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [69.3, 95.41, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [69.19, 95.57, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [69.08, 95.75, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [68.95, 95.93, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [68.83, 96.11, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [68.71, 96.29, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [68.6, 96.47, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [68.47, 96.65, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [68.32, 96.84, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [68.14, 97.01, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [67.95, 97.18, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [67.75, 97.34, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [67.55, 97.47, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [67.34, 97.59, 0], + "t": 58 + }, + { "s": [67.15, 97.68, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 5 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 10 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 32 + }, + { "s": [0], "t": 48 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 45 + }, + { + "ty": 4, + "nm": "Shape Layer 6", + "sr": 1, + "st": 12, + "op": 60, + "ip": 12, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.887 }, + "s": [58.37, 60.8, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.32 }, + "i": { "x": 0.833, "y": 1.117 }, + "s": [36.86, 57.14, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [29.27, 54.56, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [47.55, 39, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -2.464 }, + "i": { "x": 0.833, "y": -2.744 }, + "s": [64.67, 27.91, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [64.11, 47.68, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.42 }, + "i": { "x": 0.833, "y": 1.123 }, + "s": [39.5, 69.09, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.05 }, + "i": { "x": 0.833, "y": 1.005 }, + "s": [33.4, 52.3, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.004 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [48.49, 56.97, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -3.282 }, + "i": { "x": 0.833, "y": -0.384 }, + "s": [32.56, 35.85, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.766 }, + "s": [32.96, 56.95, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [39.11, 42.14, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.201 }, + "i": { "x": 0.833, "y": 1.241 }, + "s": [50.27, 72.38, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [58.14, 48.42, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.378 }, + "i": { "x": 0.833, "y": 0.957 }, + "s": [27.45, 42.62, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.089 }, + "i": { "x": 0.833, "y": 1.764 }, + "s": [33, 65.95, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.075 }, + "i": { "x": 0.833, "y": 0.911 }, + "s": [30.32, 75.39, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 1.415 }, + "i": { "x": 0.833, "y": 1.018 }, + "s": [57.55, 67.95, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.015 }, + "i": { "x": 0.833, "y": 0.145 }, + "s": [59.26, 76.31, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [57.18, 48.5, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [37.9, 29.54, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.172 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [58.87, 57.62, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 1 }, + "s": [52.02, 55.73, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0 }, + "i": { "x": 0.833, "y": 1.217 }, + "s": [47.07, 51.01, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [51.99, 26.53, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.179 }, + "i": { "x": 0.833, "y": 1.104 }, + "s": [34.23, 69.38, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.046 }, + "i": { "x": 0.833, "y": 1.008 }, + "s": [39.86, 50.25, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [27.17, 68.49, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 1.675 }, + "i": { "x": 0.833, "y": -0.011 }, + "s": [41.01, 31.16, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 1.17 }, + "s": [41.73, 28.8, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 0.916 }, + "s": [49.81, 16.04, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 7.85 }, + "i": { "x": 0.833, "y": 1.131 }, + "s": [25.31, 13.26, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": -1.033 }, + "s": [25.05, 41.5, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.087 }, + "i": { "x": 0.833, "y": 0.9 }, + "s": [25.72, 5.88, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.491 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [41.52, 4.11, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 1.048 }, + "s": [44.75, 22.85, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [48.16, 7.3, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 0.425 }, + "s": [42.77, 2.28, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.097 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [38.74, 15, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.932 }, + "s": [14.98, 24.15, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.362 }, + "i": { "x": 0.833, "y": 0.381 }, + "s": [-6.84, 16.62, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 1.031 }, + "s": [-2.76, 2.13, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 0.941 }, + "s": [23.52, 23.09, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.197 }, + "i": { "x": 0.833, "y": 0.726 }, + "s": [-12.46, 18.61, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.12 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [-1.76, 14.75, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 2.415 }, + "i": { "x": 0.833, "y": 2.387 }, + "s": [22.71, -4.94, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.079 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [23.59, 27.01, 100], + "t": 58 + }, + { "s": [8.15, -2.66, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.603 }, + "s": [131.36, 148.34, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [132.34, 147.13, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [135.67, 142.21, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [141.16, 132.75, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [146.54, 121.74, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [150.71, 111.82, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [153.84, 103.4, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [156.25, 96.23, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [158.15, 90.07, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [159.69, 84.72, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [160.96, 80.03, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [162.02, 75.89, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [162.91, 72.21, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [163.67, 68.93, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [164.31, 65.99, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [164.87, 63.35, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [165.34, 60.98, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [165.75, 58.84, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.09, 56.92, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.38, 55.18, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.62, 53.6, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.82, 52.17, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.97, 50.86, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [167.09, 49.67, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [167.17, 48.58, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [167.2, 47.6, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [167.19, 46.72, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [167.13, 45.92, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [167.04, 45.19, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.92, 44.54, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.8, 43.94, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.66, 43.4, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.52, 42.9, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.38, 42.44, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [166.24, 42.02, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.12, 41.63, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.01, 41.28, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [165.92, 40.95, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [165.84, 40.64, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [165.79, 40.37, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [165.76, 40.11, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [165.76, 39.86, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [165.79, 39.59, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [165.84, 39.3, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [165.93, 39, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [166.03, 38.68, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [166.17, 38.36, 0], + "t": 58 + }, + { "s": [166.32, 38.05, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 17 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 39 + }, + { "s": [0], "t": 55 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 46 + }, + { + "ty": 4, + "nm": "Shape Layer 5", + "sr": 1, + "st": 8, + "op": 60, + "ip": 8, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.87 }, + "s": [58.33, 32.55, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.231 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [52.22, 40.84, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.135 }, + "i": { "x": 0.833, "y": 1.287 }, + "s": [48.76, 55.27, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.065 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [50.08, 53.48, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.301 }, + "i": { "x": 0.833, "y": 0.741 }, + "s": [44.22, 46.24, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.123 }, + "i": { "x": 0.833, "y": 1.394 }, + "s": [41.98, 41.29, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [37.26, 44.51, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.413 }, + "i": { "x": 0.833, "y": 1.334 }, + "s": [64.3, 23.19, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.067 }, + "i": { "x": 0.833, "y": 0.923 }, + "s": [71.14, 37.61, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.941 }, + "i": { "x": 0.833, "y": 0.286 }, + "s": [36.9, 67.97, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.094 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [39.69, 52.95, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.88 }, + "s": [60.78, 53.85, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.275 }, + "i": { "x": 0.833, "y": 1.062 }, + "s": [32.98, 24.9, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.861 }, + "s": [20.86, 40.45, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.208 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [41.99, 39.23, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -1.187 }, + "i": { "x": 0.833, "y": -1.537 }, + "s": [56.13, 47.16, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.086 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [55.2, 47.17, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": -0.054 }, + "i": { "x": 0.833, "y": 0.925 }, + "s": [27.91, 52.37, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.754 }, + "i": { "x": 0.833, "y": 1.098 }, + "s": [44.49, 74.25, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.045 }, + "i": { "x": 0.833, "y": 1.09 }, + "s": [42.84, 74.04, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.043 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [46.43, 86.32, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.913 }, + "i": { "x": 0.833, "y": -0.56 }, + "s": [38.97, 75.14, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.088 }, + "i": { "x": 0.833, "y": 1.128 }, + "s": [38.23, 68.55, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.051 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [24.95, 36.9, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.177 }, + "i": { "x": 0.833, "y": 0.755 }, + "s": [58.64, 41.73, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [47.84, 59.39, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.054 }, + "i": { "x": 0.833, "y": 0.958 }, + "s": [26.93, 49.78, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.086 }, + "i": { "x": 0.833, "y": 0.921 }, + "s": [39.58, 34.04, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -1.655 }, + "i": { "x": 0.833, "y": 1.51 }, + "s": [33.34, 36.59, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 1.243 }, + "s": [33.64, 34.06, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 1.116 }, + "s": [31.52, 53.69, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.048 }, + "i": { "x": 0.833, "y": 1.007 }, + "s": [39.85, 24.32, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.007 }, + "i": { "x": 0.833, "y": 1.027 }, + "s": [19.93, 28.58, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [41.61, 27.26, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.112 }, + "i": { "x": 0.833, "y": 0.945 }, + "s": [12.95, 0.16, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.158 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [25.16, 21.03, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.318 }, + "i": { "x": 0.833, "y": -0.358 }, + "s": [20.95, -5.76, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [21.82, -6.25, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.095 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [35.21, -2.16, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -1.25 }, + "i": { "x": 0.833, "y": 2.789 }, + "s": [28.95, 8.66, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.08 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [29.34, 4.89, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.698 }, + "s": [20.54, 0.31, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.115 }, + "i": { "x": 0.833, "y": 0.95 }, + "s": [11.04, 1.92, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.126 }, + "i": { "x": 0.833, "y": 0.627 }, + "s": [-13.94, 27.4, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.107 }, + "i": { "x": 0.833, "y": 0.957 }, + "s": [-4.01, 6.07, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.089 }, + "i": { "x": 0.833, "y": 0.796 }, + "s": [30.55, 8.43, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 0.988 }, + "s": [13.83, 29.22, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.015 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [-10.34, 24.33, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.202 }, + "i": { "x": 0.833, "y": 1.006 }, + "s": [10.24, 2.59, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.005 }, + "i": { "x": 0.833, "y": 0.939 }, + "s": [24.72, 24.2, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.223 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [9.25, 12.5, 100], + "t": 58 + }, + { "s": [13.45, 9.97, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.549 }, + "s": [132.93, 150.64, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.761 }, + "s": [132.57, 149.51, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [130.54, 144.76, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [126.07, 136.36, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [120.59, 127.4, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [115.81, 119.62, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [112.06, 113, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [109.18, 107.23, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [106.98, 102.14, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [105.3, 97.6, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [104.01, 93.51, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [103.01, 89.81, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [102.23, 86.45, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [101.61, 83.38, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [101.08, 80.61, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [100.64, 78.1, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [100.26, 75.83, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [99.93, 73.76, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [99.64, 71.88, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [99.38, 70.17, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [99.16, 68.6, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.96, 67.17, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.79, 65.86, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.64, 64.66, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.53, 63.56, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.43, 62.56, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.37, 61.63, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.33, 60.78, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.31, 60, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.33, 59.28, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.37, 58.62, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.44, 58.02, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [98.53, 57.47, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [98.65, 56.97, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [98.79, 56.53, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [98.96, 56.13, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [99.14, 55.78, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [99.34, 55.47, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [99.55, 55.22, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [99.78, 55.02, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [100.01, 54.86, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [100.25, 54.74, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [100.49, 54.63, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [100.74, 54.54, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [101, 54.48, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [101.26, 54.45, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [101.53, 54.45, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [101.79, 54.47, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [102.04, 54.51, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [102.28, 54.56, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [102.51, 54.64, 0], + "t": 58 + }, + { "s": [102.71, 54.73, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 13 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 35 + }, + { "s": [0], "t": 51 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 47 + }, + { + "ty": 4, + "nm": "Shape Layer 4", + "sr": 1, + "st": 2, + "op": 60, + "ip": 2, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.052 }, + "s": [44.63, 43.3, 100], + "t": 2 + }, + { + "o": { "x": 0.167, "y": 0.032 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [32.14, 53.86, 100], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 1.046 }, + "s": [52.46, 54.43, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [74.26, 58.07, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": -0.195 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [40.38, 29.51, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 1.029 }, + "s": [50.53, 31.77, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.022 }, + "i": { "x": 0.833, "y": 0.79 }, + "s": [59.03, 38.36, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.138 }, + "i": { "x": 0.833, "y": 0.94 }, + "s": [47.54, 53.24, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": -0.209 }, + "i": { "x": 0.833, "y": 0.855 }, + "s": [30.06, 47.55, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.196 }, + "i": { "x": 0.833, "y": 1.023 }, + "s": [35.05, 49.83, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.018 }, + "i": { "x": 0.833, "y": 1.369 }, + "s": [38.73, 27.36, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [34.01, 57.95, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.384 }, + "i": { "x": 0.833, "y": 1.223 }, + "s": [59.66, 52.22, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.061 }, + "i": { "x": 0.833, "y": 0.92 }, + "s": [66.78, 47.2, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -1.772 }, + "i": { "x": 0.833, "y": -0.268 }, + "s": [40.64, 56.76, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 1.041 }, + "s": [41.81, 61.05, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [58.52, 50.41, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.286 }, + "i": { "x": 0.833, "y": 1.101 }, + "s": [33.5, 24.7, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.046 }, + "i": { "x": 0.833, "y": 0.862 }, + "s": [23.2, 25.57, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.21 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [45.94, 49.11, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": -0.12 }, + "i": { "x": 0.833, "y": 0.63 }, + "s": [60.85, 26.63, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.959 }, + "s": [54.75, 43.41, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": -0.082 }, + "i": { "x": 0.833, "y": 0.798 }, + "s": [33.77, 61.6, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.142 }, + "i": { "x": 0.833, "y": 0.989 }, + "s": [44.34, 72.39, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": -0.013 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [59.37, 56.1, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.88 }, + "s": [46.41, 83.39, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.275 }, + "i": { "x": 0.833, "y": 0.702 }, + "s": [33.94, 66.74, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.116 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [28.52, 65.07, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.069 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [14.54, 57.81, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 0.682 }, + "s": [22.17, 32.89, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.99 }, + "s": [16.84, 48.99, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.012 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [1.85, 40.01, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [14.99, 47.09, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 1.11 }, + "s": [22.78, 18.97, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [15.79, 0.66, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -2.466 }, + "i": { "x": 0.833, "y": -0.962 }, + "s": [32.01, 21.69, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.087 }, + "i": { "x": 0.833, "y": 1.026 }, + "s": [31.48, 7.14, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 1.059 }, + "s": [19.53, 21.89, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.034 }, + "i": { "x": 0.833, "y": 0.936 }, + "s": [35.27, 19.68, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": -0.269 }, + "i": { "x": 0.833, "y": 0.744 }, + "s": [8.41, -5.06, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.124 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [14.77, -1.13, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.017 }, + "i": { "x": 0.833, "y": 0.994 }, + "s": [27.92, -2.64, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": -0.006 }, + "i": { "x": 0.833, "y": 0.998 }, + "s": [11.5, 1.56, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.002 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [26.81, -1.43, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.138 }, + "i": { "x": 0.833, "y": 1.044 }, + "s": [11.83, 17.73, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.029 }, + "i": { "x": 0.833, "y": 0.98 }, + "s": [17.46, 29.79, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": -0.027 }, + "i": { "x": 0.833, "y": 1.284 }, + "s": [8.88, 6.14, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [15.35, 9.58, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": -0.427 }, + "i": { "x": 0.833, "y": 0.369 }, + "s": [-13.2, 32.91, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [-8.53, 16.23, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.306 }, + "i": { "x": 0.833, "y": 1.145 }, + "s": [22.1, -4.03, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.053 }, + "i": { "x": 0.833, "y": 0.872 }, + "s": [33.58, 15.19, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.239 }, + "i": { "x": 0.833, "y": 1.048 }, + "s": [2.18, 26.32, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [-14.68, 4.34, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": -0.101 }, + "i": { "x": 0.833, "y": 1.082 }, + "s": [11.9, 36.5, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.041 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [-0.11, 20.14, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.394 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [23.74, 21.21, 100], + "t": 58 + }, + { "s": [30.13, 0.14, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.599 }, + "s": [133.76, 152.55, 0], + "t": 2 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.765 }, + "s": [133.23, 153.65, 0], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [131.08, 157.74, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [126.28, 164.43, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [119.83, 170.52, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [113.63, 174.93, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [108.29, 178.3, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [103.76, 181.12, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [99.92, 183.62, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [96.63, 185.92, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [93.79, 188.05, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [91.33, 190.05, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [89.18, 191.93, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [87.3, 193.69, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [85.65, 195.35, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [84.2, 196.9, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [82.93, 198.34, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [81.82, 199.7, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [80.85, 200.96, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [80, 202.13, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [79.27, 203.22, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [78.64, 204.22, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [78.11, 205.14, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [77.66, 205.99, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [77.29, 206.76, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [76.98, 207.46, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [76.74, 208.1, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [76.56, 208.66, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [76.42, 209.15, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [76.32, 209.58, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [76.26, 209.95, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [76.23, 210.26, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.194 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [76.21, 210.5, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [76.21, 210.68, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [76.23, 210.84, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [76.3, 211, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [76.41, 211.14, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [76.54, 211.27, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [76.69, 211.39, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [76.87, 211.49, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [77.06, 211.58, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.837 }, + "s": [77.25, 211.66, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.171 }, + "i": { "x": 0.833, "y": 0.838 }, + "s": [77.43, 211.76, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [77.59, 211.86, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [77.74, 211.97, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [77.88, 212.08, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [78, 212.19, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [78.1, 212.3, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [78.18, 212.41, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [78.24, 212.51, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.185 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [78.28, 212.6, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [78.31, 212.67, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [78.32, 212.74, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [78.31, 212.8, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [78.28, 212.83, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.816 }, + "s": [78.25, 212.85, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.152 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [78.2, 212.86, 0], + "t": 58 + }, + { "s": [78.14, 212.84, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 2 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 29 + }, + { "s": [0], "t": 45 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 48 + }, + { + "ty": 4, + "nm": "Shape Layer 3", + "sr": 1, + "st": 7, + "op": 60, + "ip": 7, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [59.32, 51.99, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.91 }, + "s": [44.47, 51.66, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 1.162 }, + "i": { "x": 0.833, "y": 0.429 }, + "s": [32.92, 63.32, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.098 }, + "i": { "x": 0.833, "y": 1.033 }, + "s": [32.02, 62.67, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.024 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [26.79, 28.4, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.733 }, + "s": [34.12, 43.47, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.121 }, + "i": { "x": 0.833, "y": 1.032 }, + "s": [40.74, 63.36, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.023 }, + "i": { "x": 0.833, "y": 0.978 }, + "s": [55.29, 73.54, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.03 }, + "i": { "x": 0.833, "y": 0.937 }, + "s": [35.2, 63.28, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.261 }, + "i": { "x": 0.833, "y": 0.63 }, + "s": [49.99, 57.33, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.108 }, + "i": { "x": 0.833, "y": 0.922 }, + "s": [46.41, 43.8, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -1.116 }, + "i": { "x": 0.833, "y": 0.758 }, + "s": [34.1, 32.57, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": -0.253 }, + "s": [34.95, 19.46, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [36.58, 48.87, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.069 }, + "i": { "x": 0.833, "y": 0.895 }, + "s": [59.46, 43.03, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.41 }, + "i": { "x": 0.833, "y": 0.929 }, + "s": [46.91, 37.99, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": -0.493 }, + "i": { "x": 0.833, "y": -2.344 }, + "s": [43.7, 53.83, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.085 }, + "i": { "x": 0.833, "y": 1 }, + "s": [44.17, 56.33, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0 }, + "i": { "x": 0.833, "y": 0.913 }, + "s": [62.27, 38.68, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 1.831 }, + "i": { "x": 0.833, "y": 1.203 }, + "s": [44.08, 56.82, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.059 }, + "i": { "x": 0.833, "y": 1.094 }, + "s": [43.21, 71.67, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.044 }, + "i": { "x": 0.833, "y": 0.722 }, + "s": [46.19, 53.48, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.119 }, + "i": { "x": 0.833, "y": 0.905 }, + "s": [39.84, 64.96, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.689 }, + "i": { "x": 0.833, "y": 0.81 }, + "s": [24.98, 44.28, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [22.94, 54.54, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 1.272 }, + "s": [20.32, 50.73, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.064 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [17.18, 72.85, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.532 }, + "i": { "x": 0.833, "y": 1.499 }, + "s": [30.56, 51.72, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.071 }, + "i": { "x": 0.833, "y": 0.951 }, + "s": [28.75, 15.42, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -0.121 }, + "i": { "x": 0.833, "y": 1.072 }, + "s": [41.42, 28.19, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.038 }, + "i": { "x": 0.833, "y": 0.946 }, + "s": [36.26, 27.52, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -0.15 }, + "i": { "x": 0.833, "y": 0.594 }, + "s": [45.84, 34.86, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [42.42, 34.9, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.224 }, + "i": { "x": 0.833, "y": 1.076 }, + "s": [29.18, 14.24, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 1.02 }, + "s": [21.31, 16.61, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [36.33, 25.79, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": -0.523 }, + "i": { "x": 0.833, "y": 1.401 }, + "s": [17.67, 20.01, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.069 }, + "i": { "x": 0.833, "y": 0.943 }, + "s": [20.24, 29.87, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": -0.183 }, + "i": { "x": 0.833, "y": 1.109 }, + "s": [5.33, 31.6, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.047 }, + "i": { "x": 0.833, "y": 1.042 }, + "s": [9.99, 45.8, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.028 }, + "i": { "x": 0.833, "y": 1.003 }, + "s": [-0.77, 7.9, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.003 }, + "i": { "x": 0.833, "y": 0.927 }, + "s": [15.36, 23.22, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": -0.568 }, + "i": { "x": 0.833, "y": 0.201 }, + "s": [-1.38, 44.41, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.093 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [0.76, 29.75, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.302 }, + "i": { "x": 0.833, "y": 0.966 }, + "s": [19.17, -14.98, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.057 }, + "i": { "x": 0.833, "y": 0.108 }, + "s": [26.17, 2.03, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.092 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [22, 19.7, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.07 }, + "i": { "x": 0.833, "y": 0.964 }, + "s": [-18.48, -4.86, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": -0.063 }, + "i": { "x": 0.833, "y": 1.116 }, + "s": [3.52, 33.26, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [-9.05, 22.3, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.416 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [21.08, 32.94, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.168 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [28.63, -8.51, 100], + "t": 58 + }, + { "s": [36.02, 0.58, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.551 }, + "s": [133, 151.22, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.762 }, + "s": [131.84, 151.7, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.128 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [126.73, 153.62, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [116.91, 155.58, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [105.84, 154.68, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [96.64, 151.03, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [89.57, 146.3, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [84.06, 141.5, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [79.57, 137.01, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [75.78, 132.97, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [72.45, 129.39, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [69.44, 126.28, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [66.63, 123.62, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [63.97, 121.41, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [61.45, 119.71, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [59.06, 118.5, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [56.79, 117.79, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [54.68, 117.53, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [52.75, 117.67, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [51.01, 118.12, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [49.46, 118.8, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [48.11, 119.63, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [46.92, 120.54, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.173 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [45.88, 121.5, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [44.98, 122.47, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [44.19, 123.42, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [43.51, 124.35, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [42.91, 125.23, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [42.4, 126.06, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [41.97, 126.84, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [41.59, 127.56, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [41.28, 128.2, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [41.02, 128.78, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [40.81, 129.29, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.186 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [40.64, 129.73, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.19 }, + "i": { "x": 0.833, "y": 0.857 }, + "s": [40.52, 130.09, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.199 }, + "i": { "x": 0.833, "y": 0.865 }, + "s": [40.43, 130.37, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.219 }, + "i": { "x": 0.833, "y": 0.882 }, + "s": [40.38, 130.58, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.284 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [40.36, 130.71, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.751 }, + "s": [40.36, 130.77, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.125 }, + "i": { "x": 0.833, "y": 0.805 }, + "s": [40.4, 130.74, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [40.44, 130.65, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.149 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [40.48, 130.52, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.161 }, + "i": { "x": 0.833, "y": 0.831 }, + "s": [40.51, 130.35, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.834 }, + "s": [40.55, 130.17, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.836 }, + "s": [40.6, 129.99, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.17 }, + "i": { "x": 0.833, "y": 0.839 }, + "s": [40.66, 129.82, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.172 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [40.72, 129.65, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [40.77, 129.49, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [40.82, 129.35, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [40.86, 129.23, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.192 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [40.89, 129.12, 0], + "t": 58 + }, + { "s": [40.91, 129.04, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 7 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 12 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 34 + }, + { "s": [0], "t": 50 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 49 + }, + { + "ty": 4, + "nm": "Shape Layer 2", + "sr": 1, + "st": 6, + "op": 60, + "ip": 6, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.867 }, + "s": [58.18, 62.01, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.222 }, + "i": { "x": 0.833, "y": 0.795 }, + "s": [53.18, 52.55, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.141 }, + "i": { "x": 0.833, "y": 0.672 }, + "s": [50.18, 72.01, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.112 }, + "i": { "x": 0.833, "y": 0.908 }, + "s": [45.8, 81.35, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.904 }, + "i": { "x": 0.833, "y": 0.347 }, + "s": [32.96, 51.92, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 1.047 }, + "s": [31.66, 26.38, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.03 }, + "i": { "x": 0.833, "y": 1.006 }, + "s": [22.76, 31.82, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 1.068 }, + "s": [36.74, 91.36, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.037 }, + "i": { "x": 0.833, "y": 0.917 }, + "s": [21.73, 82.04, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 270.204 }, + "i": { "x": 0.833, "y": 152.322 }, + "s": [48.91, 55.76, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.083 }, + "i": { "x": 0.833, "y": 1.025 }, + "s": [48.92, 37.91, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 1.006 }, + "s": [33.69, 48.62, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.006 }, + "i": { "x": 0.833, "y": 0.991 }, + "s": [53.58, 45.11, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": -0.01 }, + "i": { "x": 0.833, "y": 0.999 }, + "s": [32.22, 25.95, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.001 }, + "i": { "x": 0.833, "y": 0.952 }, + "s": [51.29, 51.01, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": -0.115 }, + "i": { "x": 0.833, "y": 0.907 }, + "s": [32.35, 51.99, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.774 }, + "i": { "x": 0.833, "y": -0.395 }, + "s": [40.29, 31.4, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.089 }, + "i": { "x": 0.833, "y": 1.013 }, + "s": [41.25, 29.16, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.011 }, + "i": { "x": 0.833, "y": 0.914 }, + "s": [56.32, 32.33, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 2.433 }, + "i": { "x": 0.833, "y": 3.517 }, + "s": [38.97, 40.36, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.081 }, + "i": { "x": 0.833, "y": 0.948 }, + "s": [38.35, 74.44, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.137 }, + "i": { "x": 0.833, "y": 0.885 }, + "s": [57.56, 52.33, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.305 }, + "i": { "x": 0.833, "y": 0.672 }, + "s": [50.31, 58.21, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.112 }, + "i": { "x": 0.833, "y": 0.965 }, + "s": [47.59, 43.12, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": -0.06 }, + "i": { "x": 0.833, "y": 1.366 }, + "s": [39.59, 39.22, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 0.944 }, + "s": [44.24, 48.12, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": -0.173 }, + "i": { "x": 0.833, "y": 0.794 }, + "s": [19.2, 47.45, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.14 }, + "i": { "x": 0.833, "y": 0.967 }, + "s": [27.34, 58.58, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": -0.055 }, + "i": { "x": 0.833, "y": 0.774 }, + "s": [39.34, 41.71, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.132 }, + "i": { "x": 0.833, "y": 1.053 }, + "s": [32.1, 29.56, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.032 }, + "i": { "x": 0.833, "y": 0.93 }, + "s": [19.71, 45.79, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": -0.444 }, + "i": { "x": 0.833, "y": 0.919 }, + "s": [39.99, 45.87, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": -2.408 }, + "i": { "x": 0.833, "y": 8.691 }, + "s": [36.79, 44.45, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.082 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [36.89, 27.92, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": -0.069 }, + "i": { "x": 0.833, "y": 1.151 }, + "s": [26.89, 30.74, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.054 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [32.38, 47.46, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.912 }, + "s": [16.97, 23.6, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 1.584 }, + "i": { "x": 0.833, "y": 1.421 }, + "s": [1.27, 34.76, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.07 }, + "i": { "x": 0.833, "y": 1.174 }, + "s": [0.39, 35.87, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.056 }, + "i": { "x": 0.833, "y": 1.039 }, + "s": [5.67, 32.43, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.027 }, + "i": { "x": 0.833, "y": 0.955 }, + "s": [-10.63, -11.46, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": -0.096 }, + "i": { "x": 0.833, "y": 1.083 }, + "s": [13.39, 4.94, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.042 }, + "i": { "x": 0.833, "y": 0.896 }, + "s": [2.24, 38.97, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.425 }, + "i": { "x": 0.833, "y": 1.087 }, + "s": [24.47, 32.56, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.043 }, + "i": { "x": 0.833, "y": 0.942 }, + "s": [29.89, -11.16, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": -0.186 }, + "i": { "x": 0.833, "y": 1.717 }, + "s": [18.78, -2.83, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.075 }, + "i": { "x": 0.833, "y": 0.956 }, + "s": [22.22, 10.44, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": -0.092 }, + "i": { "x": 0.833, "y": 0.926 }, + "s": [-10.75, -3.88, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.679 }, + "i": { "x": 0.833, "y": 1.362 }, + "s": [4.89, 22.76, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.068 }, + "i": { "x": 0.833, "y": 0.873 }, + "s": [3.18, 24.69, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.243 }, + "i": { "x": 0.833, "y": 0.708 }, + "s": [12.33, 24.63, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.117 }, + "i": { "x": 0.833, "y": 0.976 }, + "s": [17.1, 1.23, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": -0.034 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [29.04, 3.46, 100], + "t": 58 + }, + { "s": [20.59, 33.38, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.592 }, + "s": [133.18, 150.97, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.105 }, + "i": { "x": 0.833, "y": 0.764 }, + "s": [133.24, 152.47, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.129 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [133.79, 158.28, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [135.48, 168.76, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [138.45, 180.09, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [142.1, 189.51, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [145.97, 196.84, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [149.86, 202.48, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [153.65, 206.83, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [157.28, 210.17, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [160.7, 212.73, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [163.91, 214.69, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [166.9, 216.18, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [169.68, 217.31, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [172.25, 218.16, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [174.62, 218.8, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [176.82, 219.27, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [178.85, 219.61, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [180.72, 219.84, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [182.45, 220, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [184.05, 220.08, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [185.52, 220.12, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [186.87, 220.11, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [188.11, 220.06, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [189.24, 219.98, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [190.26, 219.87, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [191.19, 219.74, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [192.01, 219.58, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [192.74, 219.4, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [193.39, 219.21, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [193.99, 219.01, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [194.53, 218.82, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [195.01, 218.64, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [195.43, 218.47, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [195.8, 218.31, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.851 }, + "s": [196.12, 218.16, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.189 }, + "i": { "x": 0.833, "y": 0.856 }, + "s": [196.37, 218.04, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.198 }, + "i": { "x": 0.833, "y": 0.864 }, + "s": [196.58, 217.94, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.215 }, + "i": { "x": 0.833, "y": 0.881 }, + "s": [196.72, 217.86, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.276 }, + "i": { "x": 0.833, "y": 0.888 }, + "s": [196.81, 217.8, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.327 }, + "i": { "x": 0.833, "y": 0.805 }, + "s": [196.84, 217.77, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.754 }, + "s": [196.84, 217.75, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 0.789 }, + "s": [196.82, 217.75, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.138 }, + "i": { "x": 0.833, "y": 0.805 }, + "s": [196.78, 217.77, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.145 }, + "i": { "x": 0.833, "y": 0.813 }, + "s": [196.73, 217.8, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.818 }, + "s": [196.66, 217.85, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.154 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [196.57, 217.91, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [196.47, 217.98, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.158 }, + "i": { "x": 0.833, "y": 0.826 }, + "s": [196.35, 218.07, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.828 }, + "s": [196.23, 218.16, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.162 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [196.09, 218.27, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [195.94, 218.38, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [195.79, 218.5, 0], + "t": 58 + }, + { "s": [195.63, 218.61, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 6 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 11 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 33 + }, + { "s": [0], "t": 49 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 50 + }, + { + "ty": 4, + "nm": "Shape Layer 1", + "sr": 1, + "st": 3, + "op": 60, + "ip": 3, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 1.013 }, + "s": [45.98, 51.96, 100], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.011 }, + "i": { "x": 0.833, "y": 0.854 }, + "s": [30.59, 60.79, 100], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.195 }, + "i": { "x": 0.833, "y": 1 }, + "s": [48.3, 52.88, 100], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0 }, + "i": { "x": 0.833, "y": 0.962 }, + "s": [61.55, 48.58, 100], + "t": 6 + }, + { + "o": { "x": 0.167, "y": -0.071 }, + "i": { "x": 0.833, "y": 1.12 }, + "s": [48.35, 46.39, 100], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.049 }, + "i": { "x": 0.833, "y": 0.877 }, + "s": [55.48, 70.95, 100], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.258 }, + "i": { "x": 0.833, "y": 0.808 }, + "s": [38.04, 62.77, 100], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.147 }, + "i": { "x": 0.833, "y": 1.024 }, + "s": [29.73, 43.33, 100], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.019 }, + "i": { "x": 0.833, "y": 1.02 }, + "s": [18.92, 23.82, 100], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.997 }, + "s": [32.91, 64.08, 100], + "t": 12 + }, + { + "o": { "x": 0.167, "y": -0.003 }, + "i": { "x": 0.833, "y": 0.787 }, + "s": [15.49, 89.29, 100], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.137 }, + "i": { "x": 0.833, "y": 0.983 }, + "s": [32.35, 51.95, 100], + "t": 14 + }, + { + "o": { "x": 0.167, "y": -0.021 }, + "i": { "x": 0.833, "y": 0.996 }, + "s": [58.5, 35.29, 100], + "t": 15 + }, + { + "o": { "x": 0.167, "y": -0.004 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [37.56, 47.83, 100], + "t": 16 + }, + { + "o": { "x": 0.167, "y": -0.135 }, + "i": { "x": 0.833, "y": 0.975 }, + "s": [57.47, 72.71, 100], + "t": 17 + }, + { + "o": { "x": 0.167, "y": -0.036 }, + "i": { "x": 0.833, "y": 1.215 }, + "s": [49.85, 30.37, 100], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.06 }, + "i": { "x": 0.833, "y": 0.928 }, + "s": [55.19, 27.07, 100], + "t": 19 + }, + { + "o": { "x": 0.167, "y": -0.543 }, + "i": { "x": 0.833, "y": 0.706 }, + "s": [36.06, 58.54, 100], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.116 }, + "i": { "x": 0.833, "y": 0.753 }, + "s": [38.6, 36.6, 100], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.126 }, + "i": { "x": 0.833, "y": 1.064 }, + "s": [45.04, 29.52, 100], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.883 }, + "s": [57.69, 34.52, 100], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.287 }, + "i": { "x": 0.833, "y": 1.141 }, + "s": [35.34, 59.65, 100], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.052 }, + "i": { "x": 0.833, "y": 0.893 }, + "s": [26.21, 69.32, 100], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.378 }, + "i": { "x": 0.833, "y": 0.925 }, + "s": [50.76, 61.13, 100], + "t": 26 + }, + { + "o": { "x": 0.167, "y": -0.756 }, + "i": { "x": 0.833, "y": 0.059 }, + "s": [57.71, 52.24, 100], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.091 }, + "i": { "x": 0.833, "y": 1.036 }, + "s": [57.02, 65.86, 100], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.025 }, + "i": { "x": 0.833, "y": 1.158 }, + "s": [49.92, 42.44, 100], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.055 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [60.1, 50.26, 100], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.435 }, + "i": { "x": 0.833, "y": 1.064 }, + "s": [30.59, 22.25, 100], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.036 }, + "i": { "x": 0.833, "y": 0.949 }, + "s": [23.59, 46.01, 100], + "t": 32 + }, + { + "o": { "x": 0.167, "y": -0.131 }, + "i": { "x": 0.833, "y": 0.545 }, + "s": [36, 59.87, 100], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.102 }, + "i": { "x": 0.833, "y": 0.979 }, + "s": [31.17, 36.9, 100], + "t": 34 + }, + { + "o": { "x": 0.167, "y": -0.028 }, + "i": { "x": 0.833, "y": 0.921 }, + "s": [9.66, 37.6, 100], + "t": 35 + }, + { + "o": { "x": 0.167, "y": -1.621 }, + "i": { "x": 0.833, "y": 0.758 }, + "s": [25.81, 51.58, 100], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 1.306 }, + "s": [25.02, 29.55, 100], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.065 }, + "i": { "x": 0.833, "y": 0.889 }, + "s": [23.52, 34.83, 100], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.334 }, + "i": { "x": 0.833, "y": 1.538 }, + "s": [30.53, 35.9, 100], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.072 }, + "i": { "x": 0.833, "y": 0.759 }, + "s": [32.87, 50.95, 100], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.127 }, + "i": { "x": 0.833, "y": 0.954 }, + "s": [15.46, 28.5, 100], + "t": 41 + }, + { + "o": { "x": 0.167, "y": -0.1 }, + "i": { "x": 0.833, "y": 0.875 }, + "s": [-17.5, 11.62, 100], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.249 }, + "i": { "x": 0.833, "y": 1.076 }, + "s": [-2.55, 37.03, 100], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.04 }, + "i": { "x": 0.833, "y": 1.027 }, + "s": [4.97, 13.48, 100], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.02 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [-9.43, -12.77, 100], + "t": 45 + }, + { + "o": { "x": 0.167, "y": -0.321 }, + "i": { "x": 0.833, "y": 1.313 }, + "s": [9.62, -5.69, 100], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.066 }, + "i": { "x": 0.833, "y": 0.894 }, + "s": [5.69, 21.03, 100], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.392 }, + "i": { "x": 0.833, "y": 1.021 }, + "s": [24.38, 17.41, 100], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.016 }, + "i": { "x": 0.833, "y": 0.685 }, + "s": [29.43, -0.59, 100], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.113 }, + "i": { "x": 0.833, "y": 0.849 }, + "s": [23.14, 7.8, 100], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.187 }, + "i": { "x": 0.833, "y": 0.934 }, + "s": [5.64, 9.3, 100], + "t": 51 + }, + { + "o": { "x": 0.167, "y": -0.311 }, + "i": { "x": 0.833, "y": 0.35 }, + "s": [-8.48, -8.9, 100], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.096 }, + "i": { "x": 0.833, "y": 0.953 }, + "s": [-5.5, 25.15, 100], + "t": 53 + }, + { + "o": { "x": 0.167, "y": -0.107 }, + "i": { "x": 0.833, "y": 1.05 }, + "s": [14.81, 30.05, 100], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.031 }, + "i": { "x": 0.833, "y": 0.897 }, + "s": [5.93, 15.33, 100], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.44 }, + "i": { "x": 0.833, "y": 1.244 }, + "s": [20.18, 5.97, 100], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.062 }, + "i": { "x": 0.833, "y": 0.878 }, + "s": [23.51, 23.25, 100], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.262 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [10.42, 20.64, 100], + "t": 58 + }, + { "s": [4.33, 20.15, 100], "t": 59 } + ], + "ix": 6 + }, + "sk": { "a": 0, "k": 0 }, + "p": { + "a": 1, + "k": [ + { + "o": { "x": 0.167, "y": 0.167 }, + "i": { "x": 0.833, "y": 0.625 }, + "s": [133.7, 152.15, 0], + "t": 3 + }, + { + "o": { "x": 0.167, "y": 0.107 }, + "i": { "x": 0.833, "y": 0.767 }, + "s": [135.24, 151.91, 0], + "t": 4 + }, + { + "o": { "x": 0.167, "y": 0.13 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [140.64, 151.09, 0], + "t": 5 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [150.19, 148.53, 0], + "t": 6 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [160.07, 143.26, 0], + "t": 7 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.847 }, + "s": [167.21, 135.88, 0], + "t": 8 + }, + { + "o": { "x": 0.167, "y": 0.183 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [171.45, 127.95, 0], + "t": 9 + }, + { + "o": { "x": 0.167, "y": 0.181 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [173.85, 120.57, 0], + "t": 10 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [175.29, 114.04, 0], + "t": 11 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [176.28, 108.3, 0], + "t": 12 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [177.08, 103.26, 0], + "t": 13 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [177.83, 98.8, 0], + "t": 14 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [178.59, 94.85, 0], + "t": 15 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [179.41, 91.35, 0], + "t": 16 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [180.3, 88.26, 0], + "t": 17 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [181.27, 85.55, 0], + "t": 18 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [182.31, 83.21, 0], + "t": 19 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [183.42, 81.19, 0], + "t": 20 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [184.6, 79.46, 0], + "t": 21 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [185.8, 78.01, 0], + "t": 22 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [187.01, 76.79, 0], + "t": 23 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.84 }, + "s": [188.19, 75.78, 0], + "t": 24 + }, + { + "o": { "x": 0.167, "y": 0.174 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [189.33, 74.95, 0], + "t": 25 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [190.4, 74.26, 0], + "t": 26 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.841 }, + "s": [191.41, 73.69, 0], + "t": 27 + }, + { + "o": { "x": 0.167, "y": 0.175 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [192.35, 73.22, 0], + "t": 28 + }, + { + "o": { "x": 0.167, "y": 0.176 }, + "i": { "x": 0.833, "y": 0.842 }, + "s": [193.21, 72.83, 0], + "t": 29 + }, + { + "o": { "x": 0.167, "y": 0.177 }, + "i": { "x": 0.833, "y": 0.843 }, + "s": [193.99, 72.52, 0], + "t": 30 + }, + { + "o": { "x": 0.167, "y": 0.178 }, + "i": { "x": 0.833, "y": 0.844 }, + "s": [194.7, 72.25, 0], + "t": 31 + }, + { + "o": { "x": 0.167, "y": 0.179 }, + "i": { "x": 0.833, "y": 0.845 }, + "s": [195.33, 72.04, 0], + "t": 32 + }, + { + "o": { "x": 0.167, "y": 0.18 }, + "i": { "x": 0.833, "y": 0.846 }, + "s": [195.88, 71.87, 0], + "t": 33 + }, + { + "o": { "x": 0.167, "y": 0.182 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [196.36, 71.73, 0], + "t": 34 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.85 }, + "s": [196.77, 71.62, 0], + "t": 35 + }, + { + "o": { "x": 0.167, "y": 0.188 }, + "i": { "x": 0.833, "y": 0.853 }, + "s": [197.1, 71.53, 0], + "t": 36 + }, + { + "o": { "x": 0.167, "y": 0.193 }, + "i": { "x": 0.833, "y": 0.859 }, + "s": [197.37, 71.47, 0], + "t": 37 + }, + { + "o": { "x": 0.167, "y": 0.203 }, + "i": { "x": 0.833, "y": 0.868 }, + "s": [197.58, 71.43, 0], + "t": 38 + }, + { + "o": { "x": 0.167, "y": 0.226 }, + "i": { "x": 0.833, "y": 0.887 }, + "s": [197.72, 71.41, 0], + "t": 39 + }, + { + "o": { "x": 0.167, "y": 0.317 }, + "i": { "x": 0.833, "y": 0.82 }, + "s": [197.81, 71.4, 0], + "t": 40 + }, + { + "o": { "x": 0.167, "y": 0.155 }, + "i": { "x": 0.833, "y": 0.714 }, + "s": [197.83, 71.41, 0], + "t": 41 + }, + { + "o": { "x": 0.167, "y": 0.118 }, + "i": { "x": 0.833, "y": 0.805 }, + "s": [197.81, 71.44, 0], + "t": 42 + }, + { + "o": { "x": 0.167, "y": 0.146 }, + "i": { "x": 0.833, "y": 0.829 }, + "s": [197.73, 71.48, 0], + "t": 43 + }, + { + "o": { "x": 0.167, "y": 0.163 }, + "i": { "x": 0.833, "y": 0.83 }, + "s": [197.62, 71.52, 0], + "t": 44 + }, + { + "o": { "x": 0.167, "y": 0.164 }, + "i": { "x": 0.833, "y": 0.832 }, + "s": [197.51, 71.58, 0], + "t": 45 + }, + { + "o": { "x": 0.167, "y": 0.165 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [197.39, 71.63, 0], + "t": 46 + }, + { + "o": { "x": 0.167, "y": 0.166 }, + "i": { "x": 0.833, "y": 0.835 }, + "s": [197.27, 71.69, 0], + "t": 47 + }, + { + "o": { "x": 0.167, "y": 0.169 }, + "i": { "x": 0.833, "y": 0.852 }, + "s": [197.16, 71.75, 0], + "t": 48 + }, + { + "o": { "x": 0.167, "y": 0.191 }, + "i": { "x": 0.833, "y": 0.858 }, + "s": [197.05, 71.82, 0], + "t": 49 + }, + { + "o": { "x": 0.167, "y": 0.201 }, + "i": { "x": 0.833, "y": 0.848 }, + "s": [196.97, 71.89, 0], + "t": 50 + }, + { + "o": { "x": 0.167, "y": 0.184 }, + "i": { "x": 0.833, "y": 0.823 }, + "s": [196.93, 71.95, 0], + "t": 51 + }, + { + "o": { "x": 0.167, "y": 0.157 }, + "i": { "x": 0.833, "y": 0.81 }, + "s": [196.93, 72.02, 0], + "t": 52 + }, + { + "o": { "x": 0.167, "y": 0.148 }, + "i": { "x": 0.833, "y": 0.812 }, + "s": [196.96, 72.08, 0], + "t": 53 + }, + { + "o": { "x": 0.167, "y": 0.15 }, + "i": { "x": 0.833, "y": 0.817 }, + "s": [197.03, 72.15, 0], + "t": 54 + }, + { + "o": { "x": 0.167, "y": 0.153 }, + "i": { "x": 0.833, "y": 0.821 }, + "s": [197.12, 72.21, 0], + "t": 55 + }, + { + "o": { "x": 0.167, "y": 0.156 }, + "i": { "x": 0.833, "y": 0.824 }, + "s": [197.23, 72.26, 0], + "t": 56 + }, + { + "o": { "x": 0.167, "y": 0.159 }, + "i": { "x": 0.833, "y": 0.827 }, + "s": [197.36, 72.31, 0], + "t": 57 + }, + { + "o": { "x": 0.167, "y": 0.16 }, + "i": { "x": 0.833, "y": 0.833 }, + "s": [197.51, 72.36, 0], + "t": 58 + }, + { "s": [197.67, 72.4, 0], "t": 59 } + ], + "ix": 2 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "sa": { "a": 0, "k": 0 }, + "o": { + "a": 1, + "k": [ + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [0], + "t": 3 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 8 + }, + { + "o": { "x": 0.333, "y": 0 }, + "i": { "x": 0.667, "y": 1 }, + "s": [100], + "t": 30 + }, + { "s": [0], "t": 46 } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ + { + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Ellipse 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "el", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Ellipse", + "nm": "Ellipse Path 1", + "d": 1, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "s": { "a": 0, "k": [10, 10], "ix": 2 } + }, + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 }, + "r": 1, + "o": { "a": 0, "k": 100, "ix": 5 } + }, + { + "ty": "tr", + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "o": { "a": 0, "k": 100, "ix": 7 } + } + ] + } + ], + "ind": 51 + } + ], + "v": "5.7.12", + "fr": 17, + "op": 60, + "ip": 0, + "assets": [] +} diff --git a/public/common/lottie-files/uncheckbox.json b/public/common/lottie-files/uncheckbox.json index fb60cf01f..2fb0bff07 100644 --- a/public/common/lottie-files/uncheckbox.json +++ b/public/common/lottie-files/uncheckbox.json @@ -1,591 +1,430 @@ { - "v": "4.8.0", - "meta": { - "g": "LottieFiles AE 3.1.1", - "a": "", - "k": "", - "d": "", - "tc": "" - }, - "fr": 30, - "ip": 0, - "op": 7, - "w": 1080, - "h": 1080, - "nm": "Blue_Check", - "ddd": 0, - "assets": [], - "layers": [ + "v": "4.8.0", + "meta": { + "g": "LottieFiles AE 3.1.1", + "a": "", + "k": "", + "d": "", + "tc": "" + }, + "fr": 30, + "ip": 0, + "op": 7, + "w": 1080, + "h": 1080, + "nm": "Blue_Check", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Exit_White_Check_Tick", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.833], + "y": [1] + }, + "o": { + "x": [0.167], + "y": [0] + }, + "t": 4, + "s": [100] + }, + { + "t": 6, + "s": [0] + } + ], + "ix": 11 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "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": 0, + "s": [50, 50, 100] + }, + { + "t": 6, + "s": [25, 25, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 3, - "ty": 4, - "nm": "Exit_White_Check_Tick", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.833 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.167 - ], - "y": [ - 0 - ] - }, - "t": 4, - "s": [ - 100 - ] - }, - { - "t": 6, - "s": [ - 0 - ] - } - ], - "ix": 11 + "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": [ + [-394, 16], + [-160, 250], + [386, -296] + ], + "c": false }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "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": 0, - "s": [ - 50, - 50, - 100 - ] - }, - { - "t": 6, - "s": [ - 25, - 25, - 100 - ] - } - ], - "ix": 6 - } + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { + "a": 0, + "k": [1, 1, 1, 1], + "ix": 3 + }, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 194, + "ix": 5 + }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false }, - "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": [ - [ - -394, - 16 - ], - [ - -160, - 250 - ], - [ - 386, - -296 - ] - ], - "c": false - }, - "ix": 2 - }, - "nm": "Path 1", - "mn": "ADBE Vector Shape - Group", - "hd": false - }, - { - "ty": "st", - "c": { - "a": 0, - "k": [ - 1, - 1, - 1, - 1 - ], - "ix": 3 - }, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 194, - "ix": 5 - }, - "lc": 2, - "lj": 2, - "bm": 0, - "nm": "Stroke 1", - "mn": "ADBE Vector Graphic - Stroke", - "hd": false - }, - { - "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", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false + { + "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", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "e": { + "a": 0, + "k": 100, + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] }, - { - "ty": "tm", - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "e": { - "a": 0, - "k": 100, - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "m": 1, - "ix": 2, - "nm": "Trim Paths 1", - "mn": "ADBE Vector Filter - Trim", - "hd": false + "o": { + "x": [0.333], + "y": [0] }, - { - "ty": "tm", - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "e": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 100 - ] - }, - { - "t": 6, - "s": [ - 50 - ] - } - ], - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "m": 1, - "ix": 3, - "nm": "Trim Paths 2", - "mn": "ADBE Vector Filter - Trim", - "hd": false - } + "t": 0, + "s": [100] + }, + { + "t": 6, + "s": [50] + } ], - "ip": 0, - "op": 143, - "st": -7, - "bm": 0 + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "m": 1, + "ix": 3, + "nm": "Trim Paths 2", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 143, + "st": -7, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Exit_Bg_Checkbox", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { + "x": [0.667], + "y": [1] + }, + "o": { + "x": [0.333], + "y": [0] + }, + "t": 0, + "s": [100] + }, + { + "t": 6, + "s": [0] + } + ], + "ix": 11 }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "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": 0, + "s": [100, 100, 100] + }, + { + "t": 6, + "s": [96, 96, 100] + } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ { - "ddd": 0, - "ind": 4, - "ty": 4, - "nm": "Exit_Bg_Checkbox", - "sr": 1, - "ks": { - "o": { - "a": 1, - "k": [ - { - "i": { - "x": [ - 0.667 - ], - "y": [ - 1 - ] - }, - "o": { - "x": [ - 0.333 - ], - "y": [ - 0 - ] - }, - "t": 0, - "s": [ - 100 - ] - }, - { - "t": 6, - "s": [ - 0 - ] - } - ], - "ix": 11 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "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": 0, - "s": [ - 100, - 100, - 100 - ] - }, - { - "t": 6, - "s": [ - 96, - 96, - 100 - ] - } - ], - "ix": 6 - } + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 0, + "k": [1060, 1060], + "ix": 2 + }, + "p": { + "a": 0, + "k": [0, 0], + "ix": 3 + }, + "r": { + "a": 0, + "k": 280, + "ix": 4 + }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false }, - "ao": 0, - "shapes": [ - { - "ty": "gr", - "it": [ - { - "ty": "rc", - "d": 1, - "s": { - "a": 0, - "k": [ - 1060, - 1060 - ], - "ix": 2 - }, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 3 - }, - "r": { - "a": 0, - "k": 280, - "ix": 4 - }, - "nm": "Rectangle Path 1", - "mn": "ADBE Vector Shape - Rect", - "hd": false - }, - { - "ty": "fl", - "c": { - "a": 0, - "k": [ - 0.054901960784, - 0.690196078431, - 0.145098039216, - 1 - ], - "ix": 4 - }, - "o": { - "a": 0, - "k": 100, - "ix": 5 - }, - "r": 1, - "bm": 0, - "nm": "Fill 1", - "mn": "ADBE Vector Graphic - Fill", - "hd": false - }, - { - "ty": "tr", - "p": { - "a": 0, - "k": [ - 0, - -2 - ], - "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": "Rectangle 1", - "np": 3, - "cix": 2, - "bm": 0, - "ix": 1, - "mn": "ADBE Vector Group", - "hd": false - } - ], - "ip": 0, - "op": 150, - "st": 0, - "bm": 0 + { + "ty": "fl", + "c": { + "a": 0, + "k": [0.054901960784, 0.690196078431, 0.145098039216, 1], + "ix": 4 + }, + "o": { + "a": 0, + "k": 100, + "ix": 5 + }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { + "a": 0, + "k": [0, -2], + "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": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false } - ], - "markers": [] -} \ No newline at end of file + ], + "ip": 0, + "op": 150, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/common/lottie-files/uncheckboxPurple.json b/public/common/lottie-files/uncheckboxPurple.json index 8f5090c4d..800771180 100644 --- a/public/common/lottie-files/uncheckboxPurple.json +++ b/public/common/lottie-files/uncheckboxPurple.json @@ -1,553 +1,450 @@ { - "nm": "Blue_Check", - "ddd": 0, - "h": 1080, - "w": 1080, - "meta": { - "g": "LottieFiles AE 3.1.1" - }, - "layers": [ + "nm": "Blue_Check", + "ddd": 0, + "h": 1080, + "w": 1080, + "meta": { + "g": "LottieFiles AE 3.1.1" + }, + "layers": [ + { + "ty": 4, + "nm": "Exit_White_Check_Tick", + "sr": 1, + "st": -7, + "op": 143, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "o": { + "x": 0.167, + "y": 0 + }, + "i": { + "x": 0.833, + "y": 1 + }, + "s": [50, 50, 100], + "t": 0 + }, + { + "s": [25, 25, 100], + "t": 6 + } + ], + "ix": 6 + }, + "sk": { + "a": 0, + "k": 0 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "sa": { + "a": 0, + "k": 0 + }, + "o": { + "a": 1, + "k": [ + { + "o": { + "x": 0.167, + "y": 0 + }, + "i": { + "x": 0.833, + "y": 1 + }, + "s": [100], + "t": 4 + }, + { + "s": [0], + "t": 6 + } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ { - "ty": 4, - "nm": "Exit_White_Check_Tick", - "sr": 1, - "st": -7, - "op": 143, - "ip": 0, - "hd": false, - "ddd": 0, - "bm": 0, - "hasMask": false, - "ao": 0, - "ks": { - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "o": { - "x": 0.167, - "y": 0 - }, - "i": { - "x": 0.833, - "y": 1 - }, - "s": [ - 50, - 50, - 100 - ], - "t": 0 - }, - { - "s": [ - 25, - 25, - 100 - ], - "t": 6 - } - ], - "ix": 6 + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Shape 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "sh", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Group", + "nm": "Path 1", + "ix": 1, + "d": 1, + "ks": { + "a": 0, + "k": { + "c": false, + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-394, 16], + [-160, 250], + [386, -296] + ] }, - "sk": { - "a": 0, - "k": 0 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "sa": { - "a": 0, - "k": 0 - }, - "o": { - "a": 1, - "k": [ - { - "o": { - "x": 0.167, - "y": 0 - }, - "i": { - "x": 0.833, - "y": 1 - }, - "s": [ - 100 - ], - "t": 4 - }, - { - "s": [ - 0 - ], - "t": 6 - } - ], - "ix": 11 - } + "ix": 2 + } }, - "ef": [], - "shapes": [ - { - "ty": "gr", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Group", - "nm": "Shape 1", - "ix": 1, - "cix": 2, - "np": 3, - "it": [ - { - "ty": "sh", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Shape - Group", - "nm": "Path 1", - "ix": 1, - "d": 1, - "ks": { - "a": 0, - "k": { - "c": false, - "i": [ - [ - 0, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 0 - ] - ], - "o": [ - [ - 0, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 0 - ] - ], - "v": [ - [ - -394, - 16 - ], - [ - -160, - 250 - ], - [ - 386, - -296 - ] - ] - }, - "ix": 2 - } - }, - { - "ty": "st", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Graphic - Stroke", - "nm": "Stroke 1", - "lc": 2, - "lj": 2, - "ml": 1, - "o": { - "a": 0, - "k": 100, - "ix": 4 - }, - "w": { - "a": 0, - "k": 194, - "ix": 5 - }, - "c": { - "a": 0, - "k": [ - 1, - 1, - 1 - ], - "ix": 3 - } - }, - { - "ty": "tr", - "a": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - 100, - 100 - ], - "ix": 3 - }, - "sk": { - "a": 0, - "k": 0, - "ix": 4 - }, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 6 - }, - "sa": { - "a": 0, - "k": 0, - "ix": 5 - }, - "o": { - "a": 0, - "k": 100, - "ix": 7 - } - } - ] + { + "ty": "st", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Stroke", + "nm": "Stroke 1", + "lc": 2, + "lj": 2, + "ml": 1, + "o": { + "a": 0, + "k": 100, + "ix": 4 + }, + "w": { + "a": 0, + "k": 194, + "ix": 5 + }, + "c": { + "a": 0, + "k": [1, 1, 1], + "ix": 3 + } + }, + { + "ty": "tr", + "a": { + "a": 0, + "k": [0, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [100, 100], + "ix": 3 + }, + "sk": { + "a": 0, + "k": 0, + "ix": 4 + }, + "p": { + "a": 0, + "k": [0, 0], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 6 + }, + "sa": { + "a": 0, + "k": 0, + "ix": 5 + }, + "o": { + "a": 0, + "k": 100, + "ix": 7 + } + } + ] + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 1", + "ix": 2, + "e": { + "a": 0, + "k": 100, + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "m": 1 + }, + { + "ty": "tm", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Filter - Trim", + "nm": "Trim Paths 2", + "ix": 3, + "e": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 }, - { - "ty": "tm", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Filter - Trim", - "nm": "Trim Paths 1", - "ix": 2, - "e": { - "a": 0, - "k": 100, - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "m": 1 + "i": { + "x": 0.667, + "y": 1 }, - { - "ty": "tm", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Filter - Trim", - "nm": "Trim Paths 2", - "ix": 3, - "e": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 100 - ], - "t": 0 - }, - { - "s": [ - 50 - ], - "t": 6 - } - ], - "ix": 2 - }, - "o": { - "a": 0, - "k": 0, - "ix": 3 - }, - "s": { - "a": 0, - "k": 0, - "ix": 1 - }, - "m": 1 - } + "s": [100], + "t": 0 + }, + { + "s": [50], + "t": 6 + } ], - "ind": 1 + "ix": 2 + }, + "o": { + "a": 0, + "k": 0, + "ix": 3 + }, + "s": { + "a": 0, + "k": 0, + "ix": 1 + }, + "m": 1 + } + ], + "ind": 1 + }, + { + "ty": 4, + "nm": "Exit_Bg_Checkbox", + "sr": 1, + "st": 0, + "op": 150, + "ip": 0, + "hd": false, + "ddd": 0, + "bm": 0, + "hasMask": false, + "ao": 0, + "ks": { + "a": { + "a": 0, + "k": [0, 0, 0], + "ix": 1 + }, + "s": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 + }, + "i": { + "x": 0.667, + "y": 1 + }, + "s": [100, 100, 100], + "t": 0 + }, + { + "s": [96, 96, 100], + "t": 6 + } + ], + "ix": 6 }, + "sk": { + "a": 0, + "k": 0 + }, + "p": { + "a": 0, + "k": [540, 540, 0], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 10 + }, + "sa": { + "a": 0, + "k": 0 + }, + "o": { + "a": 1, + "k": [ + { + "o": { + "x": 0.333, + "y": 0 + }, + "i": { + "x": 0.667, + "y": 1 + }, + "s": [100], + "t": 0 + }, + { + "s": [0], + "t": 6 + } + ], + "ix": 11 + } + }, + "ef": [], + "shapes": [ { - "ty": 4, - "nm": "Exit_Bg_Checkbox", - "sr": 1, - "st": 0, - "op": 150, - "ip": 0, - "hd": false, - "ddd": 0, - "bm": 0, - "hasMask": false, - "ao": 0, - "ks": { - "a": { - "a": 0, - "k": [ - 0, - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 100, - 100, - 100 - ], - "t": 0 - }, - { - "s": [ - 96, - 96, - 100 - ], - "t": 6 - } - ], - "ix": 6 - }, - "sk": { - "a": 0, - "k": 0 - }, - "p": { - "a": 0, - "k": [ - 540, - 540, - 0 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 10 - }, - "sa": { - "a": 0, - "k": 0 - }, - "o": { - "a": 1, - "k": [ - { - "o": { - "x": 0.333, - "y": 0 - }, - "i": { - "x": 0.667, - "y": 1 - }, - "s": [ - 100 - ], - "t": 0 - }, - { - "s": [ - 0 - ], - "t": 6 - } - ], - "ix": 11 - } + "ty": "gr", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Group", + "nm": "Rectangle 1", + "ix": 1, + "cix": 2, + "np": 3, + "it": [ + { + "ty": "rc", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Shape - Rect", + "nm": "Rectangle Path 1", + "d": 1, + "p": { + "a": 0, + "k": [0, 0], + "ix": 3 + }, + "r": { + "a": 0, + "k": 280, + "ix": 4 + }, + "s": { + "a": 0, + "k": [1060, 1060], + "ix": 2 + } }, - "ef": [], - "shapes": [ - { - "ty": "gr", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Group", - "nm": "Rectangle 1", - "ix": 1, - "cix": 2, - "np": 3, - "it": [ - { - "ty": "rc", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Shape - Rect", - "nm": "Rectangle Path 1", - "d": 1, - "p": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 3 - }, - "r": { - "a": 0, - "k": 280, - "ix": 4 - }, - "s": { - "a": 0, - "k": [ - 1060, - 1060 - ], - "ix": 2 - } - }, - { - "ty": "fl", - "bm": 0, - "hd": false, - "mn": "ADBE Vector Graphic - Fill", - "nm": "Fill 1", - "c": { - "a": 0, - "k": [ - 0.3098, - 0.3294, - 0.9373 - ], - "ix": 4 - }, - "r": 1, - "o": { - "a": 0, - "k": 100, - "ix": 5 - } - }, - { - "ty": "tr", - "a": { - "a": 0, - "k": [ - 0, - 0 - ], - "ix": 1 - }, - "s": { - "a": 0, - "k": [ - 100, - 100 - ], - "ix": 3 - }, - "sk": { - "a": 0, - "k": 0, - "ix": 4 - }, - "p": { - "a": 0, - "k": [ - 0, - -2 - ], - "ix": 2 - }, - "r": { - "a": 0, - "k": 0, - "ix": 6 - }, - "sa": { - "a": 0, - "k": 0, - "ix": 5 - }, - "o": { - "a": 0, - "k": 100, - "ix": 7 - } - } - ] - } - ], - "ind": 2 + { + "ty": "fl", + "bm": 0, + "hd": false, + "mn": "ADBE Vector Graphic - Fill", + "nm": "Fill 1", + "c": { + "a": 0, + "k": [0.3098, 0.3294, 0.9373], + "ix": 4 + }, + "r": 1, + "o": { + "a": 0, + "k": 100, + "ix": 5 + } + }, + { + "ty": "tr", + "a": { + "a": 0, + "k": [0, 0], + "ix": 1 + }, + "s": { + "a": 0, + "k": [100, 100], + "ix": 3 + }, + "sk": { + "a": 0, + "k": 0, + "ix": 4 + }, + "p": { + "a": 0, + "k": [0, -2], + "ix": 2 + }, + "r": { + "a": 0, + "k": 0, + "ix": 6 + }, + "sa": { + "a": 0, + "k": 0, + "ix": 5 + }, + "o": { + "a": 0, + "k": 100, + "ix": 7 + } + } + ] } - ], - "v": "4.8.0", - "fr": 30, - "op": 7, - "ip": 0, - "assets": [] -} \ No newline at end of file + ], + "ind": 2 + } + ], + "v": "4.8.0", + "fr": 30, + "op": 7, + "ip": 0, + "assets": [] +} diff --git a/public/common/shadow.html b/public/common/shadow.html index b86ca190f..2423efc0f 100644 --- a/public/common/shadow.html +++ b/public/common/shadow.html @@ -1,4 +1,7 @@ - + @@ -16,7 +19,7 @@ "eff0d84afb34588ad67f2f05552421", "LightTheme", "juspay", - "false" + "false", ); var root2 = getShadowRoot(host); @@ -39,4 +42,4 @@ // link.href = "http://localhost:9012/app.css"; // root.appendChild(link); - \ No newline at end of file + diff --git a/public/hyperswitch/index.html b/public/hyperswitch/index.html index 131210007..d9705e830 100644 --- a/public/hyperswitch/index.html +++ b/public/hyperswitch/index.html @@ -1,4 +1,4 @@ - + Loading... @@ -101,7 +101,6 @@ }); } - diff --git a/public/hyperswitch/wasm/euclid.d.ts b/public/hyperswitch/wasm/euclid.d.ts index 94af4dabd..fa5ff3caa 100644 --- a/public/hyperswitch/wasm/euclid.d.ts +++ b/public/hyperswitch/wasm/euclid.d.ts @@ -1,128 +1,142 @@ /* tslint:disable */ /* eslint-disable */ /** -* This function can be used by the frontend to educate wasm about the forex rates data. -* The input argument is a struct fields base_currency and conversion where later is all the conversions associated with the base_currency -* to all different currencies present. -* @param {any} forex -* @returns {any} -*/ + * This function can be used by the frontend to educate wasm about the forex rates data. + * The input argument is a struct fields base_currency and conversion where later is all the conversions associated with the base_currency + * to all different currencies present. + * @param {any} forex + * @returns {any} + */ export function setForexData(forex: any): any; /** -* This function can be used to perform currency_conversion on the input amount, from_currency, -* to_currency which are all expected to be one of currencies we already have in our Currency -* enum. -* @param {bigint} amount -* @param {any} from_currency -* @param {any} to_currency -* @returns {any} -*/ -export function convertCurrency(amount: bigint, from_currency: any, to_currency: any): any; -/** -* This function can be used by the frontend to provide the WASM with information about -* all the merchant's connector accounts. The input argument is a vector of all the merchant's -* connector accounts from the API. -* @param {any} mcas -* @returns {any} -*/ + * This function can be used to perform currency_conversion on the input amount, from_currency, + * to_currency which are all expected to be one of currencies we already have in our Currency + * enum. + * @param {bigint} amount + * @param {any} from_currency + * @param {any} to_currency + * @returns {any} + */ +export function convertCurrency( + amount: bigint, + from_currency: any, + to_currency: any, +): any; +/** + * This function can be used by the frontend to provide the WASM with information about + * all the merchant's connector accounts. The input argument is a vector of all the merchant's + * connector accounts from the API. + * @param {any} mcas + * @returns {any} + */ export function seedKnowledgeGraph(mcas: any): any; /** -* This function allows the frontend to get all the merchant's configured -* connectors that are valid for a rule based on the conditions specified in -* the rule -* @param {any} rule -* @returns {any} -*/ + * This function allows the frontend to get all the merchant's configured + * connectors that are valid for a rule based on the conditions specified in + * the rule + * @param {any} rule + * @returns {any} + */ export function getValidConnectorsForRule(rule: any): any; /** -* @param {any} js_program -* @returns {any} -*/ + * @param {any} js_program + * @returns {any} + */ export function analyzeProgram(js_program: any): any; /** -* @param {any} program -* @param {any} input -* @returns {any} -*/ + * @param {any} program + * @param {any} input + * @returns {any} + */ export function runProgram(program: any, input: any): any; /** -* @returns {any} -*/ + * @returns {any} + */ export function getAllConnectors(): any; /** -* @returns {any} -*/ + * @returns {any} + */ export function getAllKeys(): any; /** -* @param {string} key -* @returns {string} -*/ + * @param {string} key + * @returns {string} + */ export function getKeyType(key: string): string; /** -* @returns {any} -*/ + * @returns {any} + */ export function getThreeDsKeys(): any; /** -* @returns {any} -*/ + * @returns {any} + */ export function getSurchargeKeys(): any; /** -* @param {string} val -* @returns {string} -*/ + * @param {string} val + * @returns {string} + */ export function parseToString(val: string): string; /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getVariantValues(key: string): any; /** -* @param {bigint} n1 -* @param {bigint} n2 -* @returns {bigint} -*/ + * @param {bigint} n1 + * @param {bigint} n2 + * @returns {bigint} + */ export function addTwo(n1: bigint, n2: bigint): bigint; /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getConnectorConfig(key: string): any; /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getPayoutConnectorConfig(key: string): any; /** -* @param {any} input -* @param {any} response -* @returns {any} -*/ + * @param {any} input + * @param {any} response + * @returns {any} + */ export function getRequestPayload(input: any, response: any): any; /** -* @param {any} input -* @returns {any} -*/ + * @param {any} input + * @returns {any} + */ export function getResponsePayload(input: any): any; /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getDescriptionCategory(key: string): any; /** -* -* Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and -* usage for web -* @param {string} val -* @returns {string} -*/ + * + * Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and + * usage for web + * @param {string} val + * @returns {string} + */ export function parse(val: string): string; -export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module; +export type InitInput = + | RequestInfo + | URL + | Response + | BufferSource + | WebAssembly.Module; export interface InitOutput { readonly memory: WebAssembly.Memory; readonly setForexData: (a: number, b: number) => void; - readonly convertCurrency: (a: number, b: number, c: number, d: number) => void; + readonly convertCurrency: ( + a: number, + b: number, + c: number, + d: number, + ) => void; readonly seedKnowledgeGraph: (a: number, b: number) => void; readonly getValidConnectorsForRule: (a: number, b: number) => void; readonly analyzeProgram: (a: number, b: number) => void; @@ -142,7 +156,12 @@ export interface InitOutput { readonly parse: (a: number, b: number, c: number) => void; readonly parseToString: (a: number, b: number, c: number) => void; readonly __wbindgen_export_0: (a: number, b: number) => number; - readonly __wbindgen_export_1: (a: number, b: number, c: number, d: number) => number; + readonly __wbindgen_export_1: ( + a: number, + b: number, + c: number, + d: number, + ) => number; readonly __wbindgen_add_to_stack_pointer: (a: number) => number; readonly __wbindgen_export_2: (a: number, b: number, c: number) => void; readonly __wbindgen_export_3: (a: number) => void; @@ -150,21 +169,23 @@ export interface InitOutput { export type SyncInitInput = BufferSource | WebAssembly.Module; /** -* Instantiates the given `module`, which can either be bytes or -* a precompiled `WebAssembly.Module`. -* -* @param {SyncInitInput} module -* -* @returns {InitOutput} -*/ + * Instantiates the given `module`, which can either be bytes or + * a precompiled `WebAssembly.Module`. + * + * @param {SyncInitInput} module + * + * @returns {InitOutput} + */ export function initSync(module: SyncInitInput): InitOutput; /** -* If `module_or_path` is {RequestInfo} or {URL}, makes a request and -* for everything else, calls `WebAssembly.instantiate` directly. -* -* @param {InitInput | Promise} module_or_path -* -* @returns {Promise} -*/ -export default function __wbg_init (module_or_path?: InitInput | Promise): Promise; + * If `module_or_path` is {RequestInfo} or {URL}, makes a request and + * for everything else, calls `WebAssembly.instantiate` directly. + * + * @param {InitInput | Promise} module_or_path + * + * @returns {Promise} + */ +export default function __wbg_init( + module_or_path?: InitInput | Promise, +): Promise; diff --git a/public/hyperswitch/wasm/euclid.js b/public/hyperswitch/wasm/euclid.js index dadd31f11..be86d0cf0 100644 --- a/public/hyperswitch/wasm/euclid.js +++ b/public/hyperswitch/wasm/euclid.js @@ -1,21 +1,30 @@ let wasm; -const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } ); - -if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); }; +const cachedTextDecoder = + typeof TextDecoder !== "undefined" + ? new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }) + : { + decode: () => { + throw Error("TextDecoder not available"); + }, + }; + +if (typeof TextDecoder !== "undefined") { + cachedTextDecoder.decode(); +} let cachedUint8Memory0 = null; function getUint8Memory0() { - if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { - cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); - } - return cachedUint8Memory0; + if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { + cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); + } + return cachedUint8Memory0; } function getStringFromWasm0(ptr, len) { - ptr = ptr >>> 0; - return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); + ptr = ptr >>> 0; + return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); } const heap = new Array(128).fill(undefined); @@ -25,938 +34,1017 @@ heap.push(undefined, null, true, false); let heap_next = heap.length; function addHeapObject(obj) { - if (heap_next === heap.length) heap.push(heap.length + 1); - const idx = heap_next; - heap_next = heap[idx]; + if (heap_next === heap.length) heap.push(heap.length + 1); + const idx = heap_next; + heap_next = heap[idx]; - heap[idx] = obj; - return idx; + heap[idx] = obj; + return idx; } -function getObject(idx) { return heap[idx]; } +function getObject(idx) { + return heap[idx]; +} function dropObject(idx) { - if (idx < 132) return; - heap[idx] = heap_next; - heap_next = idx; + if (idx < 132) return; + heap[idx] = heap_next; + heap_next = idx; } function takeObject(idx) { - const ret = getObject(idx); - dropObject(idx); - return ret; + const ret = getObject(idx); + dropObject(idx); + return ret; } let WASM_VECTOR_LEN = 0; -const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } ); - -const encodeString = (typeof cachedTextEncoder.encodeInto === 'function' +const cachedTextEncoder = + typeof TextEncoder !== "undefined" + ? new TextEncoder("utf-8") + : { + encode: () => { + throw Error("TextEncoder not available"); + }, + }; + +const encodeString = + typeof cachedTextEncoder.encodeInto === "function" ? function (arg, view) { - return cachedTextEncoder.encodeInto(arg, view); -} + return cachedTextEncoder.encodeInto(arg, view); + } : function (arg, view) { - const buf = cachedTextEncoder.encode(arg); - view.set(buf); - return { - read: arg.length, - written: buf.length - }; -}); + const buf = cachedTextEncoder.encode(arg); + view.set(buf); + return { + read: arg.length, + written: buf.length, + }; + }; function passStringToWasm0(arg, malloc, realloc) { + if (realloc === undefined) { + const buf = cachedTextEncoder.encode(arg); + const ptr = malloc(buf.length, 1) >>> 0; + getUint8Memory0() + .subarray(ptr, ptr + buf.length) + .set(buf); + WASM_VECTOR_LEN = buf.length; + return ptr; + } - if (realloc === undefined) { - const buf = cachedTextEncoder.encode(arg); - const ptr = malloc(buf.length, 1) >>> 0; - getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf); - WASM_VECTOR_LEN = buf.length; - return ptr; - } + let len = arg.length; + let ptr = malloc(len, 1) >>> 0; - let len = arg.length; - let ptr = malloc(len, 1) >>> 0; + const mem = getUint8Memory0(); - const mem = getUint8Memory0(); + let offset = 0; - let offset = 0; + for (; offset < len; offset++) { + const code = arg.charCodeAt(offset); + if (code > 0x7f) break; + mem[ptr + offset] = code; + } - for (; offset < len; offset++) { - const code = arg.charCodeAt(offset); - if (code > 0x7F) break; - mem[ptr + offset] = code; + if (offset !== len) { + if (offset !== 0) { + arg = arg.slice(offset); } + ptr = realloc(ptr, len, (len = offset + arg.length * 3), 1) >>> 0; + const view = getUint8Memory0().subarray(ptr + offset, ptr + len); + const ret = encodeString(arg, view); - if (offset !== len) { - if (offset !== 0) { - arg = arg.slice(offset); - } - ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0; - const view = getUint8Memory0().subarray(ptr + offset, ptr + len); - const ret = encodeString(arg, view); - - offset += ret.written; - } + offset += ret.written; + } - WASM_VECTOR_LEN = offset; - return ptr; + WASM_VECTOR_LEN = offset; + return ptr; } function isLikeNone(x) { - return x === undefined || x === null; + return x === undefined || x === null; } let cachedInt32Memory0 = null; function getInt32Memory0() { - if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { - cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); - } - return cachedInt32Memory0; + if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { + cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); + } + return cachedInt32Memory0; } let cachedBigInt64Memory0 = null; function getBigInt64Memory0() { - if (cachedBigInt64Memory0 === null || cachedBigInt64Memory0.byteLength === 0) { - cachedBigInt64Memory0 = new BigInt64Array(wasm.memory.buffer); - } - return cachedBigInt64Memory0; + if ( + cachedBigInt64Memory0 === null || + cachedBigInt64Memory0.byteLength === 0 + ) { + cachedBigInt64Memory0 = new BigInt64Array(wasm.memory.buffer); + } + return cachedBigInt64Memory0; } let cachedFloat64Memory0 = null; function getFloat64Memory0() { - if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) { - cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer); - } - return cachedFloat64Memory0; + if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) { + cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer); + } + return cachedFloat64Memory0; } function debugString(val) { - // primitive types - const type = typeof val; - if (type == 'number' || type == 'boolean' || val == null) { - return `${val}`; - } - if (type == 'string') { - return `"${val}"`; - } - if (type == 'symbol') { - const description = val.description; - if (description == null) { - return 'Symbol'; - } else { - return `Symbol(${description})`; - } - } - if (type == 'function') { - const name = val.name; - if (typeof name == 'string' && name.length > 0) { - return `Function(${name})`; - } else { - return 'Function'; - } - } - // objects - if (Array.isArray(val)) { - const length = val.length; - let debug = '['; - if (length > 0) { - debug += debugString(val[0]); - } - for(let i = 1; i < length; i++) { - debug += ', ' + debugString(val[i]); - } - debug += ']'; - return debug; + // primitive types + const type = typeof val; + if (type == "number" || type == "boolean" || val == null) { + return `${val}`; + } + if (type == "string") { + return `"${val}"`; + } + if (type == "symbol") { + const description = val.description; + if (description == null) { + return "Symbol"; + } else { + return `Symbol(${description})`; } - // Test for built-in - const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val)); - let className; - if (builtInMatches.length > 1) { - className = builtInMatches[1]; + } + if (type == "function") { + const name = val.name; + if (typeof name == "string" && name.length > 0) { + return `Function(${name})`; } else { - // Failed to match the standard '[object ClassName]' - return toString.call(val); + return "Function"; } - if (className == 'Object') { - // we're a user defined class or Object - // JSON.stringify avoids problems with cycles, and is generally much - // easier than looping through ownProperties of `val`. - try { - return 'Object(' + JSON.stringify(val) + ')'; - } catch (_) { - return 'Object'; - } + } + // objects + if (Array.isArray(val)) { + const length = val.length; + let debug = "["; + if (length > 0) { + debug += debugString(val[0]); } - // errors - if (val instanceof Error) { - return `${val.name}: ${val.message}\n${val.stack}`; + for (let i = 1; i < length; i++) { + debug += ", " + debugString(val[i]); } - // TODO we could test for more things here, like `Set`s and `Map`s. - return className; + debug += "]"; + return debug; + } + // Test for built-in + const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val)); + let className; + if (builtInMatches.length > 1) { + className = builtInMatches[1]; + } else { + // Failed to match the standard '[object ClassName]' + return toString.call(val); + } + if (className == "Object") { + // we're a user defined class or Object + // JSON.stringify avoids problems with cycles, and is generally much + // easier than looping through ownProperties of `val`. + try { + return "Object(" + JSON.stringify(val) + ")"; + } catch (_) { + return "Object"; + } + } + // errors + if (val instanceof Error) { + return `${val.name}: ${val.message}\n${val.stack}`; + } + // TODO we could test for more things here, like `Set`s and `Map`s. + return className; } /** -* This function can be used by the frontend to educate wasm about the forex rates data. -* The input argument is a struct fields base_currency and conversion where later is all the conversions associated with the base_currency -* to all different currencies present. -* @param {any} forex -* @returns {any} -*/ + * This function can be used by the frontend to educate wasm about the forex rates data. + * The input argument is a struct fields base_currency and conversion where later is all the conversions associated with the base_currency + * to all different currencies present. + * @param {any} forex + * @returns {any} + */ export function setForexData(forex) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.setForexData(retptr, addHeapObject(forex)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.setForexData(retptr, addHeapObject(forex)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* This function can be used to perform currency_conversion on the input amount, from_currency, -* to_currency which are all expected to be one of currencies we already have in our Currency -* enum. -* @param {bigint} amount -* @param {any} from_currency -* @param {any} to_currency -* @returns {any} -*/ + * This function can be used to perform currency_conversion on the input amount, from_currency, + * to_currency which are all expected to be one of currencies we already have in our Currency + * enum. + * @param {bigint} amount + * @param {any} from_currency + * @param {any} to_currency + * @returns {any} + */ export function convertCurrency(amount, from_currency, to_currency) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.convertCurrency(retptr, amount, addHeapObject(from_currency), addHeapObject(to_currency)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.convertCurrency( + retptr, + amount, + addHeapObject(from_currency), + addHeapObject(to_currency), + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* This function can be used by the frontend to provide the WASM with information about -* all the merchant's connector accounts. The input argument is a vector of all the merchant's -* connector accounts from the API. -* @param {any} mcas -* @returns {any} -*/ + * This function can be used by the frontend to provide the WASM with information about + * all the merchant's connector accounts. The input argument is a vector of all the merchant's + * connector accounts from the API. + * @param {any} mcas + * @returns {any} + */ export function seedKnowledgeGraph(mcas) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.seedKnowledgeGraph(retptr, addHeapObject(mcas)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.seedKnowledgeGraph(retptr, addHeapObject(mcas)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* This function allows the frontend to get all the merchant's configured -* connectors that are valid for a rule based on the conditions specified in -* the rule -* @param {any} rule -* @returns {any} -*/ + * This function allows the frontend to get all the merchant's configured + * connectors that are valid for a rule based on the conditions specified in + * the rule + * @param {any} rule + * @returns {any} + */ export function getValidConnectorsForRule(rule) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getValidConnectorsForRule(retptr, addHeapObject(rule)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getValidConnectorsForRule(retptr, addHeapObject(rule)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {any} js_program -* @returns {any} -*/ + * @param {any} js_program + * @returns {any} + */ export function analyzeProgram(js_program) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.analyzeProgram(retptr, addHeapObject(js_program)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.analyzeProgram(retptr, addHeapObject(js_program)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {any} program -* @param {any} input -* @returns {any} -*/ + * @param {any} program + * @param {any} input + * @returns {any} + */ export function runProgram(program, input) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.runProgram(retptr, addHeapObject(program), addHeapObject(input)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.runProgram(retptr, addHeapObject(program), addHeapObject(input)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @returns {any} -*/ + * @returns {any} + */ export function getAllConnectors() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getAllConnectors(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getAllConnectors(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @returns {any} -*/ + * @returns {any} + */ export function getAllKeys() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getAllKeys(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getAllKeys(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {string} key -* @returns {string} -*/ + * @param {string} key + * @returns {string} + */ export function getKeyType(key) { - let deferred3_0; - let deferred3_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.getKeyType(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - var r3 = getInt32Memory0()[retptr / 4 + 3]; - var ptr2 = r0; - var len2 = r1; - if (r3) { - ptr2 = 0; len2 = 0; - throw takeObject(r2); - } - deferred3_0 = ptr2; - deferred3_1 = len2; - return getStringFromWasm0(ptr2, len2); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_export_2(deferred3_0, deferred3_1, 1); + let deferred3_0; + let deferred3_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + key, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.getKeyType(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr2 = r0; + var len2 = r1; + if (r3) { + ptr2 = 0; + len2 = 0; + throw takeObject(r2); } + deferred3_0 = ptr2; + deferred3_1 = len2; + return getStringFromWasm0(ptr2, len2); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_export_2(deferred3_0, deferred3_1, 1); + } } /** -* @returns {any} -*/ + * @returns {any} + */ export function getThreeDsKeys() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getThreeDsKeys(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getThreeDsKeys(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @returns {any} -*/ + * @returns {any} + */ export function getSurchargeKeys() { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getSurchargeKeys(retptr); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getSurchargeKeys(retptr); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {string} val -* @returns {string} -*/ + * @param {string} val + * @returns {string} + */ export function parseToString(val) { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(val, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.parse(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred2_0 = r0; - deferred2_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_export_2(deferred2_0, deferred2_1, 1); - } + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + val, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.parse(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred2_0 = r0; + deferred2_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_export_2(deferred2_0, deferred2_1, 1); + } } /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getVariantValues(key) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.getVariantValues(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + key, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.getVariantValues(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {bigint} n1 -* @param {bigint} n2 -* @returns {bigint} -*/ + * @param {bigint} n1 + * @param {bigint} n2 + * @returns {bigint} + */ export function addTwo(n1, n2) { - const ret = wasm.addTwo(n1, n2); - return ret; + const ret = wasm.addTwo(n1, n2); + return ret; } /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getConnectorConfig(key) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.getConnectorConfig(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + key, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.getConnectorConfig(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getPayoutConnectorConfig(key) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.getPayoutConnectorConfig(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + key, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.getPayoutConnectorConfig(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {any} input -* @param {any} response -* @returns {any} -*/ + * @param {any} input + * @param {any} response + * @returns {any} + */ export function getRequestPayload(input, response) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getRequestPayload(retptr, addHeapObject(input), addHeapObject(response)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getRequestPayload( + retptr, + addHeapObject(input), + addHeapObject(response), + ); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {any} input -* @returns {any} -*/ + * @param {any} input + * @returns {any} + */ export function getResponsePayload(input) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm.getResponsePayload(retptr, addHeapObject(input)); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + wasm.getResponsePayload(retptr, addHeapObject(input)); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } /** -* @param {string} key -* @returns {any} -*/ + * @param {string} key + * @returns {any} + */ export function getDescriptionCategory(key) { - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.getDescriptionCategory(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - var r2 = getInt32Memory0()[retptr / 4 + 2]; - if (r2) { - throw takeObject(r1); - } - return takeObject(r0); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + key, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.getDescriptionCategory(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + if (r2) { + throw takeObject(r1); } + return takeObject(r0); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } } function handleError(f, args) { - try { - return f.apply(this, args); - } catch (e) { - wasm.__wbindgen_export_3(addHeapObject(e)); - } + try { + return f.apply(this, args); + } catch (e) { + wasm.__wbindgen_export_3(addHeapObject(e)); + } } /** -* -* Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and -* usage for web -* @param {string} val -* @returns {string} -*/ + * + * Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and + * usage for web + * @param {string} val + * @returns {string} + */ export function parse(val) { - let deferred2_0; - let deferred2_1; - try { - const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - const ptr0 = passStringToWasm0(val, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len0 = WASM_VECTOR_LEN; - wasm.parse(retptr, ptr0, len0); - var r0 = getInt32Memory0()[retptr / 4 + 0]; - var r1 = getInt32Memory0()[retptr / 4 + 1]; - deferred2_0 = r0; - deferred2_1 = r1; - return getStringFromWasm0(r0, r1); - } finally { - wasm.__wbindgen_add_to_stack_pointer(16); - wasm.__wbindgen_export_2(deferred2_0, deferred2_1, 1); - } + let deferred2_0; + let deferred2_1; + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0( + val, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len0 = WASM_VECTOR_LEN; + wasm.parse(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + deferred2_0 = r0; + deferred2_1 = r1; + return getStringFromWasm0(r0, r1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_export_2(deferred2_0, deferred2_1, 1); + } } async function __wbg_load(module, imports) { - if (typeof Response === 'function' && module instanceof Response) { - if (typeof WebAssembly.instantiateStreaming === 'function') { - try { - return await WebAssembly.instantiateStreaming(module, imports); - - } catch (e) { - if (module.headers.get('Content-Type') != 'application/wasm') { - console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e); - - } else { - throw e; - } - } + if (typeof Response === "function" && module instanceof Response) { + if (typeof WebAssembly.instantiateStreaming === "function") { + try { + return await WebAssembly.instantiateStreaming(module, imports); + } catch (e) { + if (module.headers.get("Content-Type") != "application/wasm") { + console.warn( + "`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", + e, + ); + } else { + throw e; } + } + } - const bytes = await module.arrayBuffer(); - return await WebAssembly.instantiate(bytes, imports); + const bytes = await module.arrayBuffer(); + return await WebAssembly.instantiate(bytes, imports); + } else { + const instance = await WebAssembly.instantiate(module, imports); + if (instance instanceof WebAssembly.Instance) { + return { instance, module }; } else { - const instance = await WebAssembly.instantiate(module, imports); - - if (instance instanceof WebAssembly.Instance) { - return { instance, module }; - - } else { - return instance; - } + return instance; } + } } function __wbg_get_imports() { - const imports = {}; - imports.wbg = {}; - imports.wbg.__wbindgen_string_new = function(arg0, arg1) { - const ret = getStringFromWasm0(arg0, arg1); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_object_drop_ref = function(arg0) { - takeObject(arg0); - }; - imports.wbg.__wbg_set_bedc3d02d0f05eb0 = function(arg0, arg1, arg2) { - const ret = getObject(arg0).set(getObject(arg1), getObject(arg2)); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_is_string = function(arg0) { - const ret = typeof(getObject(arg0)) === 'string'; - return ret; - }; - imports.wbg.__wbindgen_error_new = function(arg0, arg1) { - const ret = new Error(getStringFromWasm0(arg0, arg1)); - return addHeapObject(ret); - }; - imports.wbg.__wbg_set_841ac57cff3d672b = function(arg0, arg1, arg2) { - getObject(arg0)[takeObject(arg1)] = takeObject(arg2); - }; - imports.wbg.__wbg_new_b51585de1b234aff = function() { - const ret = new Object(); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_is_object = function(arg0) { - const val = getObject(arg0); - const ret = typeof(val) === 'object' && val !== null; - return ret; - }; - imports.wbg.__wbg_entries_e51f29c7bba0c054 = function(arg0) { - const ret = Object.entries(getObject(arg0)); - return addHeapObject(ret); - }; - imports.wbg.__wbg_length_fff51ee6522a1a18 = function(arg0) { - const ret = getObject(arg0).length; - return ret; - }; - imports.wbg.__wbg_get_44be0491f933a435 = function(arg0, arg1) { - const ret = getObject(arg0)[arg1 >>> 0]; - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_string_get = function(arg0, arg1) { - const obj = getObject(arg1); - const ret = typeof(obj) === 'string' ? obj : undefined; - var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - var len1 = WASM_VECTOR_LEN; - getInt32Memory0()[arg0 / 4 + 1] = len1; - getInt32Memory0()[arg0 / 4 + 0] = ptr1; - }; - imports.wbg.__wbg_new_56693dbed0c32988 = function() { - const ret = new Map(); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_number_new = function(arg0) { - const ret = arg0; - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) { - const ret = arg0; - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) { - const ret = getObject(arg0) == getObject(arg1); - return ret; - }; - imports.wbg.__wbindgen_boolean_get = function(arg0) { - const v = getObject(arg0); - const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2; - return ret; - }; - imports.wbg.__wbindgen_is_bigint = function(arg0) { - const ret = typeof(getObject(arg0)) === 'bigint'; - return ret; - }; - imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) { - const v = getObject(arg1); - const ret = typeof(v) === 'bigint' ? v : undefined; - getBigInt64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? BigInt(0) : ret; - getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); - }; - imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) { - const ret = getObject(arg0) === getObject(arg1); - return ret; - }; - imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) { - const ret = BigInt.asUintN(64, arg0); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_number_get = function(arg0, arg1) { - const obj = getObject(arg1); - const ret = typeof(obj) === 'number' ? obj : undefined; - getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret; - getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); - }; - imports.wbg.__wbg_isSafeInteger_bb8e18dd21c97288 = function(arg0) { - const ret = Number.isSafeInteger(getObject(arg0)); - return ret; - }; - imports.wbg.__wbg_isArray_4c24b343cb13cfb1 = function(arg0) { - const ret = Array.isArray(getObject(arg0)); - return ret; - }; - imports.wbg.__wbg_iterator_97f0c81209c6c35a = function() { - const ret = Symbol.iterator; - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_in = function(arg0, arg1) { - const ret = getObject(arg0) in getObject(arg1); - return ret; - }; - imports.wbg.__wbg_new_898a68150f225f2e = function() { - const ret = new Array(); - return addHeapObject(ret); - }; - imports.wbg.__wbg_set_502d29070ea18557 = function(arg0, arg1, arg2) { - getObject(arg0)[arg1 >>> 0] = takeObject(arg2); - }; - imports.wbg.__wbg_String_88810dfeb4021902 = function(arg0, arg1) { - const ret = String(getObject(arg1)); - const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len1 = WASM_VECTOR_LEN; - getInt32Memory0()[arg0 / 4 + 1] = len1; - getInt32Memory0()[arg0 / 4 + 0] = ptr1; - }; - imports.wbg.__wbg_getwithrefkey_5e6d9547403deab8 = function(arg0, arg1) { - const ret = getObject(arg0)[getObject(arg1)]; - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_is_undefined = function(arg0) { - const ret = getObject(arg0) === undefined; - return ret; - }; - imports.wbg.__wbg_next_ddb3312ca1c4e32a = function() { return handleError(function (arg0) { - const ret = getObject(arg0).next(); - return addHeapObject(ret); - }, arguments) }; - imports.wbg.__wbg_done_5c1f01fb660d73b5 = function(arg0) { - const ret = getObject(arg0).done; - return ret; - }; - imports.wbg.__wbg_value_1695675138684bd5 = function(arg0) { - const ret = getObject(arg0).value; - return addHeapObject(ret); - }; - imports.wbg.__wbg_fromCodePoint_5aced4409dbb8969 = function() { return handleError(function (arg0) { - const ret = String.fromCodePoint(arg0 >>> 0); - return addHeapObject(ret); - }, arguments) }; - imports.wbg.__wbindgen_bigint_from_i128 = function(arg0, arg1) { - const ret = arg0 << BigInt(64) | BigInt.asUintN(64, arg1); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_bigint_from_u128 = function(arg0, arg1) { - const ret = BigInt.asUintN(64, arg0) << BigInt(64) | BigInt.asUintN(64, arg1); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_memory = function() { - const ret = wasm.memory; - return addHeapObject(ret); - }; - imports.wbg.__wbg_buffer_085ec1f694018c4f = function(arg0) { - const ret = getObject(arg0).buffer; - return addHeapObject(ret); - }; - imports.wbg.__wbg_newwithbyteoffsetandlength_6da8e527659b86aa = function(arg0, arg1, arg2) { - const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); - return addHeapObject(ret); - }; - imports.wbg.__wbg_new_8125e318e6245eed = function(arg0) { - const ret = new Uint8Array(getObject(arg0)); - return addHeapObject(ret); - }; - imports.wbg.__wbg_from_d7c216d4616bb368 = function(arg0) { - const ret = Array.from(getObject(arg0)); - return addHeapObject(ret); - }; - imports.wbg.__wbg_get_97b561fb56f034b5 = function() { return handleError(function (arg0, arg1) { - const ret = Reflect.get(getObject(arg0), getObject(arg1)); - return addHeapObject(ret); - }, arguments) }; - imports.wbg.__wbindgen_is_function = function(arg0) { - const ret = typeof(getObject(arg0)) === 'function'; - return ret; - }; - imports.wbg.__wbg_call_cb65541d95d71282 = function() { return handleError(function (arg0, arg1) { - const ret = getObject(arg0).call(getObject(arg1)); - return addHeapObject(ret); - }, arguments) }; - imports.wbg.__wbg_next_526fc47e980da008 = function(arg0) { - const ret = getObject(arg0).next; - return addHeapObject(ret); - }; - imports.wbg.__wbg_length_72e2208bbc0efc61 = function(arg0) { - const ret = getObject(arg0).length; - return ret; - }; - imports.wbg.__wbg_set_5cf90238115182c3 = function(arg0, arg1, arg2) { - getObject(arg0).set(getObject(arg1), arg2 >>> 0); - }; - imports.wbg.__wbg_instanceof_Uint8Array_d8d9cb2b8e8ac1d4 = function(arg0) { - let result; - try { - result = getObject(arg0) instanceof Uint8Array; - } catch { - result = false; - } - const ret = result; - return ret; - }; - imports.wbg.__wbg_instanceof_ArrayBuffer_39ac22089b74fddb = function(arg0) { - let result; - try { - result = getObject(arg0) instanceof ArrayBuffer; - } catch { - result = false; - } - const ret = result; - return ret; - }; - imports.wbg.__wbindgen_object_clone_ref = function(arg0) { - const ret = getObject(arg0); - return addHeapObject(ret); - }; - imports.wbg.__wbindgen_debug_string = function(arg0, arg1) { - const ret = debugString(getObject(arg1)); - const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); - const len1 = WASM_VECTOR_LEN; - getInt32Memory0()[arg0 / 4 + 1] = len1; - getInt32Memory0()[arg0 / 4 + 0] = ptr1; - }; - imports.wbg.__wbindgen_throw = function(arg0, arg1) { - throw new Error(getStringFromWasm0(arg0, arg1)); - }; - - return imports; + const imports = {}; + imports.wbg = {}; + imports.wbg.__wbindgen_string_new = function (arg0, arg1) { + const ret = getStringFromWasm0(arg0, arg1); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_object_drop_ref = function (arg0) { + takeObject(arg0); + }; + imports.wbg.__wbg_set_bedc3d02d0f05eb0 = function (arg0, arg1, arg2) { + const ret = getObject(arg0).set(getObject(arg1), getObject(arg2)); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_is_string = function (arg0) { + const ret = typeof getObject(arg0) === "string"; + return ret; + }; + imports.wbg.__wbindgen_error_new = function (arg0, arg1) { + const ret = new Error(getStringFromWasm0(arg0, arg1)); + return addHeapObject(ret); + }; + imports.wbg.__wbg_set_841ac57cff3d672b = function (arg0, arg1, arg2) { + getObject(arg0)[takeObject(arg1)] = takeObject(arg2); + }; + imports.wbg.__wbg_new_b51585de1b234aff = function () { + const ret = new Object(); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_is_object = function (arg0) { + const val = getObject(arg0); + const ret = typeof val === "object" && val !== null; + return ret; + }; + imports.wbg.__wbg_entries_e51f29c7bba0c054 = function (arg0) { + const ret = Object.entries(getObject(arg0)); + return addHeapObject(ret); + }; + imports.wbg.__wbg_length_fff51ee6522a1a18 = function (arg0) { + const ret = getObject(arg0).length; + return ret; + }; + imports.wbg.__wbg_get_44be0491f933a435 = function (arg0, arg1) { + const ret = getObject(arg0)[arg1 >>> 0]; + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_string_get = function (arg0, arg1) { + const obj = getObject(arg1); + const ret = typeof obj === "string" ? obj : undefined; + var ptr1 = isLikeNone(ret) + ? 0 + : passStringToWasm0( + ret, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + var len1 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len1; + getInt32Memory0()[arg0 / 4 + 0] = ptr1; + }; + imports.wbg.__wbg_new_56693dbed0c32988 = function () { + const ret = new Map(); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_number_new = function (arg0) { + const ret = arg0; + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_bigint_from_i64 = function (arg0) { + const ret = arg0; + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_jsval_loose_eq = function (arg0, arg1) { + const ret = getObject(arg0) == getObject(arg1); + return ret; + }; + imports.wbg.__wbindgen_boolean_get = function (arg0) { + const v = getObject(arg0); + const ret = typeof v === "boolean" ? (v ? 1 : 0) : 2; + return ret; + }; + imports.wbg.__wbindgen_is_bigint = function (arg0) { + const ret = typeof getObject(arg0) === "bigint"; + return ret; + }; + imports.wbg.__wbindgen_bigint_get_as_i64 = function (arg0, arg1) { + const v = getObject(arg1); + const ret = typeof v === "bigint" ? v : undefined; + getBigInt64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? BigInt(0) : ret; + getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); + }; + imports.wbg.__wbindgen_jsval_eq = function (arg0, arg1) { + const ret = getObject(arg0) === getObject(arg1); + return ret; + }; + imports.wbg.__wbindgen_bigint_from_u64 = function (arg0) { + const ret = BigInt.asUintN(64, arg0); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_number_get = function (arg0, arg1) { + const obj = getObject(arg1); + const ret = typeof obj === "number" ? obj : undefined; + getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret; + getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret); + }; + imports.wbg.__wbg_isSafeInteger_bb8e18dd21c97288 = function (arg0) { + const ret = Number.isSafeInteger(getObject(arg0)); + return ret; + }; + imports.wbg.__wbg_isArray_4c24b343cb13cfb1 = function (arg0) { + const ret = Array.isArray(getObject(arg0)); + return ret; + }; + imports.wbg.__wbg_iterator_97f0c81209c6c35a = function () { + const ret = Symbol.iterator; + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_in = function (arg0, arg1) { + const ret = getObject(arg0) in getObject(arg1); + return ret; + }; + imports.wbg.__wbg_new_898a68150f225f2e = function () { + const ret = new Array(); + return addHeapObject(ret); + }; + imports.wbg.__wbg_set_502d29070ea18557 = function (arg0, arg1, arg2) { + getObject(arg0)[arg1 >>> 0] = takeObject(arg2); + }; + imports.wbg.__wbg_String_88810dfeb4021902 = function (arg0, arg1) { + const ret = String(getObject(arg1)); + const ptr1 = passStringToWasm0( + ret, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len1 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len1; + getInt32Memory0()[arg0 / 4 + 0] = ptr1; + }; + imports.wbg.__wbg_getwithrefkey_5e6d9547403deab8 = function (arg0, arg1) { + const ret = getObject(arg0)[getObject(arg1)]; + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_is_undefined = function (arg0) { + const ret = getObject(arg0) === undefined; + return ret; + }; + imports.wbg.__wbg_next_ddb3312ca1c4e32a = function () { + return handleError(function (arg0) { + const ret = getObject(arg0).next(); + return addHeapObject(ret); + }, arguments); + }; + imports.wbg.__wbg_done_5c1f01fb660d73b5 = function (arg0) { + const ret = getObject(arg0).done; + return ret; + }; + imports.wbg.__wbg_value_1695675138684bd5 = function (arg0) { + const ret = getObject(arg0).value; + return addHeapObject(ret); + }; + imports.wbg.__wbg_fromCodePoint_5aced4409dbb8969 = function () { + return handleError(function (arg0) { + const ret = String.fromCodePoint(arg0 >>> 0); + return addHeapObject(ret); + }, arguments); + }; + imports.wbg.__wbindgen_bigint_from_i128 = function (arg0, arg1) { + const ret = (arg0 << BigInt(64)) | BigInt.asUintN(64, arg1); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_bigint_from_u128 = function (arg0, arg1) { + const ret = + (BigInt.asUintN(64, arg0) << BigInt(64)) | BigInt.asUintN(64, arg1); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_memory = function () { + const ret = wasm.memory; + return addHeapObject(ret); + }; + imports.wbg.__wbg_buffer_085ec1f694018c4f = function (arg0) { + const ret = getObject(arg0).buffer; + return addHeapObject(ret); + }; + imports.wbg.__wbg_newwithbyteoffsetandlength_6da8e527659b86aa = function ( + arg0, + arg1, + arg2, + ) { + const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); + return addHeapObject(ret); + }; + imports.wbg.__wbg_new_8125e318e6245eed = function (arg0) { + const ret = new Uint8Array(getObject(arg0)); + return addHeapObject(ret); + }; + imports.wbg.__wbg_from_d7c216d4616bb368 = function (arg0) { + const ret = Array.from(getObject(arg0)); + return addHeapObject(ret); + }; + imports.wbg.__wbg_get_97b561fb56f034b5 = function () { + return handleError(function (arg0, arg1) { + const ret = Reflect.get(getObject(arg0), getObject(arg1)); + return addHeapObject(ret); + }, arguments); + }; + imports.wbg.__wbindgen_is_function = function (arg0) { + const ret = typeof getObject(arg0) === "function"; + return ret; + }; + imports.wbg.__wbg_call_cb65541d95d71282 = function () { + return handleError(function (arg0, arg1) { + const ret = getObject(arg0).call(getObject(arg1)); + return addHeapObject(ret); + }, arguments); + }; + imports.wbg.__wbg_next_526fc47e980da008 = function (arg0) { + const ret = getObject(arg0).next; + return addHeapObject(ret); + }; + imports.wbg.__wbg_length_72e2208bbc0efc61 = function (arg0) { + const ret = getObject(arg0).length; + return ret; + }; + imports.wbg.__wbg_set_5cf90238115182c3 = function (arg0, arg1, arg2) { + getObject(arg0).set(getObject(arg1), arg2 >>> 0); + }; + imports.wbg.__wbg_instanceof_Uint8Array_d8d9cb2b8e8ac1d4 = function (arg0) { + let result; + try { + result = getObject(arg0) instanceof Uint8Array; + } catch { + result = false; + } + const ret = result; + return ret; + }; + imports.wbg.__wbg_instanceof_ArrayBuffer_39ac22089b74fddb = function (arg0) { + let result; + try { + result = getObject(arg0) instanceof ArrayBuffer; + } catch { + result = false; + } + const ret = result; + return ret; + }; + imports.wbg.__wbindgen_object_clone_ref = function (arg0) { + const ret = getObject(arg0); + return addHeapObject(ret); + }; + imports.wbg.__wbindgen_debug_string = function (arg0, arg1) { + const ret = debugString(getObject(arg1)); + const ptr1 = passStringToWasm0( + ret, + wasm.__wbindgen_export_0, + wasm.__wbindgen_export_1, + ); + const len1 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len1; + getInt32Memory0()[arg0 / 4 + 0] = ptr1; + }; + imports.wbg.__wbindgen_throw = function (arg0, arg1) { + throw new Error(getStringFromWasm0(arg0, arg1)); + }; + + return imports; } -function __wbg_init_memory(imports, maybe_memory) { - -} +function __wbg_init_memory(imports, maybe_memory) {} function __wbg_finalize_init(instance, module) { - wasm = instance.exports; - __wbg_init.__wbindgen_wasm_module = module; - cachedBigInt64Memory0 = null; - cachedFloat64Memory0 = null; - cachedInt32Memory0 = null; - cachedUint8Memory0 = null; - - - return wasm; + wasm = instance.exports; + __wbg_init.__wbindgen_wasm_module = module; + cachedBigInt64Memory0 = null; + cachedFloat64Memory0 = null; + cachedInt32Memory0 = null; + cachedUint8Memory0 = null; + + return wasm; } function initSync(module) { - if (wasm !== undefined) return wasm; + if (wasm !== undefined) return wasm; - const imports = __wbg_get_imports(); + const imports = __wbg_get_imports(); - __wbg_init_memory(imports); + __wbg_init_memory(imports); - if (!(module instanceof WebAssembly.Module)) { - module = new WebAssembly.Module(module); - } + if (!(module instanceof WebAssembly.Module)) { + module = new WebAssembly.Module(module); + } - const instance = new WebAssembly.Instance(module, imports); + const instance = new WebAssembly.Instance(module, imports); - return __wbg_finalize_init(instance, module); + return __wbg_finalize_init(instance, module); } async function __wbg_init(input) { - if (wasm !== undefined) return wasm; + if (wasm !== undefined) return wasm; - if (typeof input === 'undefined') { - input = new URL('euclid_bg.wasm', import.meta.url); - } - const imports = __wbg_get_imports(); + if (typeof input === "undefined") { + input = new URL("euclid_bg.wasm", import.meta.url); + } + const imports = __wbg_get_imports(); - if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) { - input = fetch(input); - } + if ( + typeof input === "string" || + (typeof Request === "function" && input instanceof Request) || + (typeof URL === "function" && input instanceof URL) + ) { + input = fetch(input); + } - __wbg_init_memory(imports); + __wbg_init_memory(imports); - const { instance, module } = await __wbg_load(await input, imports); + const { instance, module } = await __wbg_load(await input, imports); - return __wbg_finalize_init(instance, module); + return __wbg_finalize_init(instance, module); } -export { initSync } +export { initSync }; export default __wbg_init; diff --git a/public/hyperswitch/wasm/euclid_bg.wasm.d.ts b/public/hyperswitch/wasm/euclid_bg.wasm.d.ts index 0c8b9d86f..e783b24d1 100644 --- a/public/hyperswitch/wasm/euclid_bg.wasm.d.ts +++ b/public/hyperswitch/wasm/euclid_bg.wasm.d.ts @@ -2,7 +2,12 @@ /* eslint-disable */ export const memory: WebAssembly.Memory; export function setForexData(a: number, b: number): void; -export function convertCurrency(a: number, b: number, c: number, d: number): void; +export function convertCurrency( + a: number, + b: number, + c: number, + d: number, +): void; export function seedKnowledgeGraph(a: number, b: number): void; export function getValidConnectorsForRule(a: number, b: number): void; export function analyzeProgram(a: number, b: number): void; @@ -22,7 +27,12 @@ export function getDescriptionCategory(a: number, b: number, c: number): void; export function parse(a: number, b: number, c: number): void; export function parseToString(a: number, b: number, c: number): void; export function __wbindgen_export_0(a: number, b: number): number; -export function __wbindgen_export_1(a: number, b: number, c: number, d: number): number; +export function __wbindgen_export_1( + a: number, + b: number, + c: number, + d: number, +): number; export function __wbindgen_add_to_stack_pointer(a: number): number; export function __wbindgen_export_2(a: number, b: number, c: number): void; export function __wbindgen_export_3(a: number): void; diff --git a/public/hyperswitch/wasm/package.json b/public/hyperswitch/wasm/package.json index 3959222ca..5c6109c14 100644 --- a/public/hyperswitch/wasm/package.json +++ b/public/hyperswitch/wasm/package.json @@ -12,4 +12,4 @@ "sideEffects": [ "./snippets/*" ] -} \ No newline at end of file +} diff --git a/src/components/CustomCharts/highcharts.css b/src/components/CustomCharts/highcharts.css index 479d46865..a56ea6a80 100644 --- a/src/components/CustomCharts/highcharts.css +++ b/src/components/CustomCharts/highcharts.css @@ -1,6 +1,6 @@ .highcharts-data-label-connector { - stroke-dasharray: 2, 2; - stroke: #151A1F; - opacity: 0.3; - stroke-width: 2px; -} \ No newline at end of file + stroke-dasharray: 2, 2; + stroke: #151a1f; + opacity: 0.3; + stroke-width: 2px; +} diff --git a/src/components/DonutProgress.css b/src/components/DonutProgress.css index c61165a1a..45fecf884 100644 --- a/src/components/DonutProgress.css +++ b/src/components/DonutProgress.css @@ -4,39 +4,39 @@ */ .CircularProgressbar { - /* + /* * This fixes an issue where the CircularProgressbar svg has * 0 width inside a "display: flex" container, and thus not visible. */ - width: 100%; - /* + width: 100%; + /* * This fixes a centering issue with CircularProgressbarWithChildren: * https://github.com/kevinsqi/react-circular-progressbar/issues/94 */ - vertical-align: middle; + vertical-align: middle; } .CircularProgressbar .CircularProgressbar-path { - stroke: #3e98c7; - stroke-linecap: round; - transition: stroke-dashoffset 0.5s ease 0s; + stroke: #3e98c7; + stroke-linecap: round; + transition: stroke-dashoffset 0.5s ease 0s; } .CircularProgressbar .CircularProgressbar-trail { - stroke: #e2e2e2; - /* Used when trail is not full diameter, i.e. when props.circleRatio is set */ - stroke-linecap: round; + stroke: #e2e2e2; + /* Used when trail is not full diameter, i.e. when props.circleRatio is set */ + stroke-linecap: round; } .CircularProgressbar .CircularProgressbar-text { - fill: #3e98c7; - font-size: 20px; - /* dominant-baseline: middle; */ - text-anchor: middle; + fill: #3e98c7; + font-size: 20px; + /* dominant-baseline: middle; */ + text-anchor: middle; } .CircularProgressbar .CircularProgressbar-background { - fill: #d6d6d6; + fill: #d6d6d6; } /* @@ -48,18 +48,19 @@ * percentage={50} * /> */ -.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-background { - fill: #3e98c7; +.CircularProgressbar.CircularProgressbar-inverted + .CircularProgressbar-background { + fill: #3e98c7; } .CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text { - fill: #fff; + fill: #fff; } .CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path { - stroke: #fff; + stroke: #fff; } .CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trail { - stroke: transparent; -} \ No newline at end of file + stroke: transparent; +} diff --git a/src/components/Pagination.res b/src/components/Pagination.res index 6ceacc5fb..d6976d316 100644 --- a/src/components/Pagination.res +++ b/src/components/Pagination.res @@ -74,37 +74,31 @@ let make = (~resultsPerPage, ~totalResults, ~currentPage, ~paginate, ~btnCount=4 customButtonStyle="!h-10" onClick={_evt => paginate(Js.Math.max_int(1, currentPage - 1))} /> - { - - pageNumbers - ->Js.Array2.filter(nonEmpty) - ->Js.Array2.mapi((number, idx) => { - let isSelected = number == currentPage + {pageNumbers + ->Js.Array2.filter(nonEmpty) + ->Js.Array2.mapi((number, idx) => { + let isSelected = number == currentPage -