├── debug.log ├── .gitignore ├── .npmignore ├── rollup.config.js ├── LICENSE ├── package.json ├── src └── index.js ├── README.md └── yarn.lock /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahgsql/remotion-lottie/HEAD/debug.log -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Folders 2 | node_modules 3 | dist 4 | 5 | # Output of 'npm pack' 6 | *.tgz -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Folders 2 | node_modules 3 | .storybook 4 | src 5 | 6 | # Output of 'npm pack' 7 | *.tgz 8 | 9 | # Files 10 | .gitignore 11 | rollup.config.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import babel from '@rollup/plugin-babel'; 2 | import resolve from '@rollup/plugin-node-resolve'; 3 | import commonjs from '@rollup/plugin-commonjs'; 4 | import { terser } from 'rollup-plugin-terser'; 5 | import pkg from './package.json'; 6 | 7 | export default { 8 | input:'src/index.js', 9 | output: [ 10 | { file: pkg.main, format: 'cjs' }, 11 | { file: pkg.module, format: 'esm' } 12 | ], 13 | plugins: [ 14 | babel({ 15 | babelHelpers: 'bundled', 16 | exclude: 'node_modules/**', 17 | presets: ['@babel/preset-env','@babel/preset-react'] 18 | }), 19 | resolve(), 20 | commonjs(), 21 | terser() 22 | ], 23 | external: Object.keys(pkg.peerDependencies) 24 | }; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Juan Pablo Mejia Duque 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "remotion-lottie", 3 | "version": "1.0.4", 4 | "description": "Lottie / Bodymovin Controller for Remotion.", 5 | "main": "dist/index.cjs.js", 6 | "module": "dist/index.esm.js", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1", 9 | "build": "rollup -c", 10 | "publish": "npm run build && npm publish --access public" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/ahgsql/remotion-lottie.git" 15 | }, 16 | "keywords": [ 17 | "react", 18 | "remotion", 19 | "lottie", 20 | "after effects", 21 | "bodymovin" 22 | ], 23 | "author": "ahgsql", 24 | "license": "MIT", 25 | "dependencies": { 26 | "lottie-react": "^2.1.0" 27 | }, 28 | "peerDependencies": { 29 | "react": ">=16.8.0", 30 | "remotion": "^2.1.10" 31 | }, 32 | "devDependencies": { 33 | "@babel/core": "^7.13.16", 34 | "@babel/preset-env": "^7.13.15", 35 | "@babel/preset-react": "^7.13.13", 36 | "@rollup/plugin-babel": "^5.3.0", 37 | "@rollup/plugin-commonjs": "^18.0.0", 38 | "@rollup/plugin-node-resolve": "^11.2.1", 39 | "react": "^17.0.2", 40 | "rollup": "^2.46.0", 41 | "rollup-plugin-terser": "^7.0.2" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { useCurrentFrame, useVideoConfig } from "remotion"; 2 | import React from "react"; 3 | import Lottie from "lottie-react"; 4 | const Lottier = ({ data, fitMode = null, stayAtLastFrame = false }) => { 5 | let frame = useCurrentFrame(); 6 | let { width, height } = useVideoConfig(); 7 | let { op } = data; 8 | stayAtLastFrame ? (frame > op ? (frame = op) : "") : ""; 9 | let arw = width / data.w, 10 | arh = height / data.h; 11 | data.w = width; 12 | data.h = height; 13 | switch (true) { 14 | case /fitToWidth/g.test(fitMode): 15 | data.layers.forEach((layer) => { 16 | layer.sw *= arw; 17 | layer.sh *= arw; 18 | }); 19 | break; 20 | case /fitToHeight/g.test(fitMode): 21 | data.layers.forEach((layer) => { 22 | layer.sw *= arh; 23 | layer.sh *= arh; 24 | }); 25 | break; 26 | case /fitToContent/g.test(fitMode): 27 | data.layers.forEach((layer) => { 28 | layer.sw *= arw; 29 | layer.sh *= arh; 30 | }); 31 | break; 32 | } 33 | return ( 34 |
44 | 49 |
50 | ); 51 | }; 52 | const useLottie = (data) => { 53 | let { w, h, op, fr } = data; 54 | return { w, h, op: Math.floor(op), fr }; 55 | }; 56 | export { Lottier, useLottie }; 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Remotion Lottie 2 | 3 | Lottie / Bodymovin Controller for Remotion. 4 | 5 | ![npm bundle size](https://img.shields.io/bundlephobia/min/remotion-lottie) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/remotion-lottie) [![npm downloads](https://img.shields.io/npm/dt/remotion-keyframes)](https://www.npmjs.com/package/remotion-lottie) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/facebook/react/blob/master/LICENSE) 6 | 7 | ## Installation 8 | 9 | ```bash 10 | 11 | npm install remotion-lottie 12 | 13 | ``` 14 | 15 | or 16 | 17 | ```bash 18 | 19 | yarn add remotion-lottie 20 | 21 | ``` 22 | 23 | ## Usage 24 | 25 | Load your animation into **Lottier** Component. 26 | 27 | ### Load Library and Lottie JSON file 28 | 29 | ```jsx 30 | import { Lottier, useLottie } from "remotion-lottie"; 31 | 32 | import data from "./animationData.json"; 33 | ``` 34 | 35 | #### Props 36 | 37 | - **data**: Pass loaded animation data **Required** 38 | 39 | - **fitMode** : "fitToWidth" , "fitToHeight" , "fitToContent" **Not Required** 40 | 41 | - **stayAtLastFrame** : true or false, if true animation will stay on its last frame. **false by default** 42 | 43 | ```jsx 44 | import { Sequence, useCurrentFrame } from "remotion"; 45 | import { Lottier, useLottie } from "remotion-lottie"; 46 | import data from "./11.json"; 47 | 48 | export const HiLottie = () => { 49 | return ( 50 | 51 | 52 | 53 | ); 54 | }; 55 | ``` 56 | 57 | ## useLottie 58 | 59 | useLottie(data) is small helper to get information about animation. 60 | You can use it to determine **Composition size** or **Sequence durationInframes** props. 61 | 62 | ```jsx 63 | let { w, h, op, fr } = useLottie(data); 64 | ``` 65 | 66 | ```jsx 67 | let { op } = useLottie(data); 68 | return ( 69 | 70 | 71 | 72 | ); 73 | ``` 74 | 75 | ## License 76 | 77 | MIT © [ahgsql](https://github.com/ahgsql) 78 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.14.5": 6 | version "7.14.5" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" 8 | integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== 9 | dependencies: 10 | "@babel/highlight" "^7.14.5" 11 | 12 | "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5": 13 | version "7.14.5" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.5.tgz#8ef4c18e58e801c5c95d3c1c0f2874a2680fadea" 15 | integrity sha512-kixrYn4JwfAVPa0f2yfzc2AWti6WRRyO3XjWW5PJAvtE11qhSayrrcrEnee05KAtNaPC+EwehE8Qt1UedEVB8w== 16 | 17 | "@babel/core@^7.13.16": 18 | version "7.14.5" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.5.tgz#d281f46a9905f07d1b3bf71ead54d9c7d89cb1e3" 20 | integrity sha512-RN/AwP2DJmQTZSfiDaD+JQQ/J99KsIpOCfBE5pL+5jJSt7nI3nYGoAXZu+ffYSQ029NLs2DstZb+eR81uuARgg== 21 | dependencies: 22 | "@babel/code-frame" "^7.14.5" 23 | "@babel/generator" "^7.14.5" 24 | "@babel/helper-compilation-targets" "^7.14.5" 25 | "@babel/helper-module-transforms" "^7.14.5" 26 | "@babel/helpers" "^7.14.5" 27 | "@babel/parser" "^7.14.5" 28 | "@babel/template" "^7.14.5" 29 | "@babel/traverse" "^7.14.5" 30 | "@babel/types" "^7.14.5" 31 | convert-source-map "^1.7.0" 32 | debug "^4.1.0" 33 | gensync "^1.0.0-beta.2" 34 | json5 "^2.1.2" 35 | semver "^6.3.0" 36 | source-map "^0.5.0" 37 | 38 | "@babel/generator@^7.14.5": 39 | version "7.14.5" 40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" 41 | integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA== 42 | dependencies: 43 | "@babel/types" "^7.14.5" 44 | jsesc "^2.5.1" 45 | source-map "^0.5.0" 46 | 47 | "@babel/helper-annotate-as-pure@^7.14.5": 48 | version "7.14.5" 49 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61" 50 | integrity sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA== 51 | dependencies: 52 | "@babel/types" "^7.14.5" 53 | 54 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": 55 | version "7.14.5" 56 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191" 57 | integrity sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w== 58 | dependencies: 59 | "@babel/helper-explode-assignable-expression" "^7.14.5" 60 | "@babel/types" "^7.14.5" 61 | 62 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5": 63 | version "7.14.5" 64 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" 65 | integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw== 66 | dependencies: 67 | "@babel/compat-data" "^7.14.5" 68 | "@babel/helper-validator-option" "^7.14.5" 69 | browserslist "^4.16.6" 70 | semver "^6.3.0" 71 | 72 | "@babel/helper-create-class-features-plugin@^7.14.5": 73 | version "7.14.5" 74 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.5.tgz#8842ec495516dd1ed8f6c572be92ba78b1e9beef" 75 | integrity sha512-Uq9z2e7ZtcnDMirRqAGLRaLwJn+Lrh388v5ETrR3pALJnElVh2zqQmdbz4W2RUJYohAPh2mtyPUgyMHMzXMncQ== 76 | dependencies: 77 | "@babel/helper-annotate-as-pure" "^7.14.5" 78 | "@babel/helper-function-name" "^7.14.5" 79 | "@babel/helper-member-expression-to-functions" "^7.14.5" 80 | "@babel/helper-optimise-call-expression" "^7.14.5" 81 | "@babel/helper-replace-supers" "^7.14.5" 82 | "@babel/helper-split-export-declaration" "^7.14.5" 83 | 84 | "@babel/helper-create-regexp-features-plugin@^7.14.5": 85 | version "7.14.5" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4" 87 | integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A== 88 | dependencies: 89 | "@babel/helper-annotate-as-pure" "^7.14.5" 90 | regexpu-core "^4.7.1" 91 | 92 | "@babel/helper-define-polyfill-provider@^0.2.2": 93 | version "0.2.3" 94 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6" 95 | integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew== 96 | dependencies: 97 | "@babel/helper-compilation-targets" "^7.13.0" 98 | "@babel/helper-module-imports" "^7.12.13" 99 | "@babel/helper-plugin-utils" "^7.13.0" 100 | "@babel/traverse" "^7.13.0" 101 | debug "^4.1.1" 102 | lodash.debounce "^4.0.8" 103 | resolve "^1.14.2" 104 | semver "^6.1.2" 105 | 106 | "@babel/helper-explode-assignable-expression@^7.14.5": 107 | version "7.14.5" 108 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz#8aa72e708205c7bb643e45c73b4386cdf2a1f645" 109 | integrity sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ== 110 | dependencies: 111 | "@babel/types" "^7.14.5" 112 | 113 | "@babel/helper-function-name@^7.14.5": 114 | version "7.14.5" 115 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4" 116 | integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ== 117 | dependencies: 118 | "@babel/helper-get-function-arity" "^7.14.5" 119 | "@babel/template" "^7.14.5" 120 | "@babel/types" "^7.14.5" 121 | 122 | "@babel/helper-get-function-arity@^7.14.5": 123 | version "7.14.5" 124 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815" 125 | integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg== 126 | dependencies: 127 | "@babel/types" "^7.14.5" 128 | 129 | "@babel/helper-hoist-variables@^7.14.5": 130 | version "7.14.5" 131 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d" 132 | integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ== 133 | dependencies: 134 | "@babel/types" "^7.14.5" 135 | 136 | "@babel/helper-member-expression-to-functions@^7.14.5": 137 | version "7.14.5" 138 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz#d5c70e4ad13b402c95156c7a53568f504e2fb7b8" 139 | integrity sha512-UxUeEYPrqH1Q/k0yRku1JE7dyfyehNwT6SVkMHvYvPDv4+uu627VXBckVj891BO8ruKBkiDoGnZf4qPDD8abDQ== 140 | dependencies: 141 | "@babel/types" "^7.14.5" 142 | 143 | "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": 144 | version "7.14.5" 145 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3" 146 | integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ== 147 | dependencies: 148 | "@babel/types" "^7.14.5" 149 | 150 | "@babel/helper-module-transforms@^7.14.5": 151 | version "7.14.5" 152 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e" 153 | integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA== 154 | dependencies: 155 | "@babel/helper-module-imports" "^7.14.5" 156 | "@babel/helper-replace-supers" "^7.14.5" 157 | "@babel/helper-simple-access" "^7.14.5" 158 | "@babel/helper-split-export-declaration" "^7.14.5" 159 | "@babel/helper-validator-identifier" "^7.14.5" 160 | "@babel/template" "^7.14.5" 161 | "@babel/traverse" "^7.14.5" 162 | "@babel/types" "^7.14.5" 163 | 164 | "@babel/helper-optimise-call-expression@^7.14.5": 165 | version "7.14.5" 166 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" 167 | integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA== 168 | dependencies: 169 | "@babel/types" "^7.14.5" 170 | 171 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 172 | version "7.14.5" 173 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" 174 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== 175 | 176 | "@babel/helper-remap-async-to-generator@^7.14.5": 177 | version "7.14.5" 178 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz#51439c913612958f54a987a4ffc9ee587a2045d6" 179 | integrity sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A== 180 | dependencies: 181 | "@babel/helper-annotate-as-pure" "^7.14.5" 182 | "@babel/helper-wrap-function" "^7.14.5" 183 | "@babel/types" "^7.14.5" 184 | 185 | "@babel/helper-replace-supers@^7.14.5": 186 | version "7.14.5" 187 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94" 188 | integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow== 189 | dependencies: 190 | "@babel/helper-member-expression-to-functions" "^7.14.5" 191 | "@babel/helper-optimise-call-expression" "^7.14.5" 192 | "@babel/traverse" "^7.14.5" 193 | "@babel/types" "^7.14.5" 194 | 195 | "@babel/helper-simple-access@^7.14.5": 196 | version "7.14.5" 197 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4" 198 | integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw== 199 | dependencies: 200 | "@babel/types" "^7.14.5" 201 | 202 | "@babel/helper-skip-transparent-expression-wrappers@^7.14.5": 203 | version "7.14.5" 204 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz#96f486ac050ca9f44b009fbe5b7d394cab3a0ee4" 205 | integrity sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ== 206 | dependencies: 207 | "@babel/types" "^7.14.5" 208 | 209 | "@babel/helper-split-export-declaration@^7.14.5": 210 | version "7.14.5" 211 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a" 212 | integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA== 213 | dependencies: 214 | "@babel/types" "^7.14.5" 215 | 216 | "@babel/helper-validator-identifier@^7.14.5": 217 | version "7.14.5" 218 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" 219 | integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== 220 | 221 | "@babel/helper-validator-option@^7.14.5": 222 | version "7.14.5" 223 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 224 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 225 | 226 | "@babel/helper-wrap-function@^7.14.5": 227 | version "7.14.5" 228 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz#5919d115bf0fe328b8a5d63bcb610f51601f2bff" 229 | integrity sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ== 230 | dependencies: 231 | "@babel/helper-function-name" "^7.14.5" 232 | "@babel/template" "^7.14.5" 233 | "@babel/traverse" "^7.14.5" 234 | "@babel/types" "^7.14.5" 235 | 236 | "@babel/helpers@^7.14.5": 237 | version "7.14.5" 238 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.5.tgz#4870f8d9a6fdbbd65e5674a3558b4ff7fef0d9b2" 239 | integrity sha512-xtcWOuN9VL6nApgVHtq3PPcQv5qFBJzoSZzJ/2c0QK/IP/gxVcoWSNQwFEGvmbQsuS9rhYqjILDGGXcTkA705Q== 240 | dependencies: 241 | "@babel/template" "^7.14.5" 242 | "@babel/traverse" "^7.14.5" 243 | "@babel/types" "^7.14.5" 244 | 245 | "@babel/highlight@^7.14.5": 246 | version "7.14.5" 247 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 248 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 249 | dependencies: 250 | "@babel/helper-validator-identifier" "^7.14.5" 251 | chalk "^2.0.0" 252 | js-tokens "^4.0.0" 253 | 254 | "@babel/parser@^7.14.5": 255 | version "7.14.5" 256 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.5.tgz#4cd2f346261061b2518873ffecdf1612cb032829" 257 | integrity sha512-TM8C+xtH/9n1qzX+JNHi7AN2zHMTiPUtspO0ZdHflW8KaskkALhMmuMHb4bCmNdv9VAPzJX3/bXqkVLnAvsPfg== 258 | 259 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": 260 | version "7.14.5" 261 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" 262 | integrity sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ== 263 | dependencies: 264 | "@babel/helper-plugin-utils" "^7.14.5" 265 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" 266 | "@babel/plugin-proposal-optional-chaining" "^7.14.5" 267 | 268 | "@babel/plugin-proposal-async-generator-functions@^7.14.5": 269 | version "7.14.5" 270 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.5.tgz#4024990e3dd74181f4f426ea657769ff49a2df39" 271 | integrity sha512-tbD/CG3l43FIXxmu4a7RBe4zH7MLJ+S/lFowPFO7HetS2hyOZ/0nnnznegDuzFzfkyQYTxqdTH/hKmuBngaDAA== 272 | dependencies: 273 | "@babel/helper-plugin-utils" "^7.14.5" 274 | "@babel/helper-remap-async-to-generator" "^7.14.5" 275 | "@babel/plugin-syntax-async-generators" "^7.8.4" 276 | 277 | "@babel/plugin-proposal-class-properties@^7.14.5": 278 | version "7.14.5" 279 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" 280 | integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg== 281 | dependencies: 282 | "@babel/helper-create-class-features-plugin" "^7.14.5" 283 | "@babel/helper-plugin-utils" "^7.14.5" 284 | 285 | "@babel/plugin-proposal-class-static-block@^7.14.5": 286 | version "7.14.5" 287 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz#158e9e10d449c3849ef3ecde94a03d9f1841b681" 288 | integrity sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg== 289 | dependencies: 290 | "@babel/helper-create-class-features-plugin" "^7.14.5" 291 | "@babel/helper-plugin-utils" "^7.14.5" 292 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 293 | 294 | "@babel/plugin-proposal-dynamic-import@^7.14.5": 295 | version "7.14.5" 296 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c" 297 | integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g== 298 | dependencies: 299 | "@babel/helper-plugin-utils" "^7.14.5" 300 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 301 | 302 | "@babel/plugin-proposal-export-namespace-from@^7.14.5": 303 | version "7.14.5" 304 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76" 305 | integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA== 306 | dependencies: 307 | "@babel/helper-plugin-utils" "^7.14.5" 308 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 309 | 310 | "@babel/plugin-proposal-json-strings@^7.14.5": 311 | version "7.14.5" 312 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb" 313 | integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ== 314 | dependencies: 315 | "@babel/helper-plugin-utils" "^7.14.5" 316 | "@babel/plugin-syntax-json-strings" "^7.8.3" 317 | 318 | "@babel/plugin-proposal-logical-assignment-operators@^7.14.5": 319 | version "7.14.5" 320 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738" 321 | integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw== 322 | dependencies: 323 | "@babel/helper-plugin-utils" "^7.14.5" 324 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 325 | 326 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": 327 | version "7.14.5" 328 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6" 329 | integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg== 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.14.5" 332 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 333 | 334 | "@babel/plugin-proposal-numeric-separator@^7.14.5": 335 | version "7.14.5" 336 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18" 337 | integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg== 338 | dependencies: 339 | "@babel/helper-plugin-utils" "^7.14.5" 340 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 341 | 342 | "@babel/plugin-proposal-object-rest-spread@^7.14.5": 343 | version "7.14.5" 344 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.5.tgz#e581d5ccdfa187ea6ed73f56c6a21c1580b90fbf" 345 | integrity sha512-VzMyY6PWNPPT3pxc5hi9LloKNr4SSrVCg7Yr6aZpW4Ym07r7KqSU/QXYwjXLVxqwSv0t/XSXkFoKBPUkZ8vb2A== 346 | dependencies: 347 | "@babel/compat-data" "^7.14.5" 348 | "@babel/helper-compilation-targets" "^7.14.5" 349 | "@babel/helper-plugin-utils" "^7.14.5" 350 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 351 | "@babel/plugin-transform-parameters" "^7.14.5" 352 | 353 | "@babel/plugin-proposal-optional-catch-binding@^7.14.5": 354 | version "7.14.5" 355 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c" 356 | integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ== 357 | dependencies: 358 | "@babel/helper-plugin-utils" "^7.14.5" 359 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 360 | 361 | "@babel/plugin-proposal-optional-chaining@^7.14.5": 362 | version "7.14.5" 363 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603" 364 | integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ== 365 | dependencies: 366 | "@babel/helper-plugin-utils" "^7.14.5" 367 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" 368 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 369 | 370 | "@babel/plugin-proposal-private-methods@^7.14.5": 371 | version "7.14.5" 372 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d" 373 | integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g== 374 | dependencies: 375 | "@babel/helper-create-class-features-plugin" "^7.14.5" 376 | "@babel/helper-plugin-utils" "^7.14.5" 377 | 378 | "@babel/plugin-proposal-private-property-in-object@^7.14.5": 379 | version "7.14.5" 380 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz#9f65a4d0493a940b4c01f8aa9d3f1894a587f636" 381 | integrity sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q== 382 | dependencies: 383 | "@babel/helper-annotate-as-pure" "^7.14.5" 384 | "@babel/helper-create-class-features-plugin" "^7.14.5" 385 | "@babel/helper-plugin-utils" "^7.14.5" 386 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 387 | 388 | "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 389 | version "7.14.5" 390 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8" 391 | integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q== 392 | dependencies: 393 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 394 | "@babel/helper-plugin-utils" "^7.14.5" 395 | 396 | "@babel/plugin-syntax-async-generators@^7.8.4": 397 | version "7.8.4" 398 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 399 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 400 | dependencies: 401 | "@babel/helper-plugin-utils" "^7.8.0" 402 | 403 | "@babel/plugin-syntax-class-properties@^7.12.13": 404 | version "7.12.13" 405 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 406 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 407 | dependencies: 408 | "@babel/helper-plugin-utils" "^7.12.13" 409 | 410 | "@babel/plugin-syntax-class-static-block@^7.14.5": 411 | version "7.14.5" 412 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" 413 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== 414 | dependencies: 415 | "@babel/helper-plugin-utils" "^7.14.5" 416 | 417 | "@babel/plugin-syntax-dynamic-import@^7.8.3": 418 | version "7.8.3" 419 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 420 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 421 | dependencies: 422 | "@babel/helper-plugin-utils" "^7.8.0" 423 | 424 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 425 | version "7.8.3" 426 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 427 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 428 | dependencies: 429 | "@babel/helper-plugin-utils" "^7.8.3" 430 | 431 | "@babel/plugin-syntax-json-strings@^7.8.3": 432 | version "7.8.3" 433 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 434 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 435 | dependencies: 436 | "@babel/helper-plugin-utils" "^7.8.0" 437 | 438 | "@babel/plugin-syntax-jsx@^7.14.5": 439 | version "7.14.5" 440 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201" 441 | integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw== 442 | dependencies: 443 | "@babel/helper-plugin-utils" "^7.14.5" 444 | 445 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 446 | version "7.10.4" 447 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 448 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 449 | dependencies: 450 | "@babel/helper-plugin-utils" "^7.10.4" 451 | 452 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 453 | version "7.8.3" 454 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 455 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 456 | dependencies: 457 | "@babel/helper-plugin-utils" "^7.8.0" 458 | 459 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 460 | version "7.10.4" 461 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 462 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 463 | dependencies: 464 | "@babel/helper-plugin-utils" "^7.10.4" 465 | 466 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 467 | version "7.8.3" 468 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 469 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 470 | dependencies: 471 | "@babel/helper-plugin-utils" "^7.8.0" 472 | 473 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 474 | version "7.8.3" 475 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 476 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 477 | dependencies: 478 | "@babel/helper-plugin-utils" "^7.8.0" 479 | 480 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 481 | version "7.8.3" 482 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 483 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 484 | dependencies: 485 | "@babel/helper-plugin-utils" "^7.8.0" 486 | 487 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": 488 | version "7.14.5" 489 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" 490 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== 491 | dependencies: 492 | "@babel/helper-plugin-utils" "^7.14.5" 493 | 494 | "@babel/plugin-syntax-top-level-await@^7.14.5": 495 | version "7.14.5" 496 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 497 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 498 | dependencies: 499 | "@babel/helper-plugin-utils" "^7.14.5" 500 | 501 | "@babel/plugin-transform-arrow-functions@^7.14.5": 502 | version "7.14.5" 503 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" 504 | integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A== 505 | dependencies: 506 | "@babel/helper-plugin-utils" "^7.14.5" 507 | 508 | "@babel/plugin-transform-async-to-generator@^7.14.5": 509 | version "7.14.5" 510 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67" 511 | integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA== 512 | dependencies: 513 | "@babel/helper-module-imports" "^7.14.5" 514 | "@babel/helper-plugin-utils" "^7.14.5" 515 | "@babel/helper-remap-async-to-generator" "^7.14.5" 516 | 517 | "@babel/plugin-transform-block-scoped-functions@^7.14.5": 518 | version "7.14.5" 519 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" 520 | integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ== 521 | dependencies: 522 | "@babel/helper-plugin-utils" "^7.14.5" 523 | 524 | "@babel/plugin-transform-block-scoping@^7.14.5": 525 | version "7.14.5" 526 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz#8cc63e61e50f42e078e6f09be775a75f23ef9939" 527 | integrity sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw== 528 | dependencies: 529 | "@babel/helper-plugin-utils" "^7.14.5" 530 | 531 | "@babel/plugin-transform-classes@^7.14.5": 532 | version "7.14.5" 533 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz#0e98e82097b38550b03b483f9b51a78de0acb2cf" 534 | integrity sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA== 535 | dependencies: 536 | "@babel/helper-annotate-as-pure" "^7.14.5" 537 | "@babel/helper-function-name" "^7.14.5" 538 | "@babel/helper-optimise-call-expression" "^7.14.5" 539 | "@babel/helper-plugin-utils" "^7.14.5" 540 | "@babel/helper-replace-supers" "^7.14.5" 541 | "@babel/helper-split-export-declaration" "^7.14.5" 542 | globals "^11.1.0" 543 | 544 | "@babel/plugin-transform-computed-properties@^7.14.5": 545 | version "7.14.5" 546 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" 547 | integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg== 548 | dependencies: 549 | "@babel/helper-plugin-utils" "^7.14.5" 550 | 551 | "@babel/plugin-transform-destructuring@^7.14.5": 552 | version "7.14.5" 553 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.5.tgz#d32ad19ff1a6da1e861dc62720d80d9776e3bf35" 554 | integrity sha512-wU9tYisEbRMxqDezKUqC9GleLycCRoUsai9ddlsq54r8QRLaeEhc+d+9DqCG+kV9W2GgQjTZESPTpn5bAFMDww== 555 | dependencies: 556 | "@babel/helper-plugin-utils" "^7.14.5" 557 | 558 | "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": 559 | version "7.14.5" 560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a" 561 | integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw== 562 | dependencies: 563 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 564 | "@babel/helper-plugin-utils" "^7.14.5" 565 | 566 | "@babel/plugin-transform-duplicate-keys@^7.14.5": 567 | version "7.14.5" 568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954" 569 | integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A== 570 | dependencies: 571 | "@babel/helper-plugin-utils" "^7.14.5" 572 | 573 | "@babel/plugin-transform-exponentiation-operator@^7.14.5": 574 | version "7.14.5" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493" 576 | integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA== 577 | dependencies: 578 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" 579 | "@babel/helper-plugin-utils" "^7.14.5" 580 | 581 | "@babel/plugin-transform-for-of@^7.14.5": 582 | version "7.14.5" 583 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz#dae384613de8f77c196a8869cbf602a44f7fc0eb" 584 | integrity sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA== 585 | dependencies: 586 | "@babel/helper-plugin-utils" "^7.14.5" 587 | 588 | "@babel/plugin-transform-function-name@^7.14.5": 589 | version "7.14.5" 590 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" 591 | integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ== 592 | dependencies: 593 | "@babel/helper-function-name" "^7.14.5" 594 | "@babel/helper-plugin-utils" "^7.14.5" 595 | 596 | "@babel/plugin-transform-literals@^7.14.5": 597 | version "7.14.5" 598 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" 599 | integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A== 600 | dependencies: 601 | "@babel/helper-plugin-utils" "^7.14.5" 602 | 603 | "@babel/plugin-transform-member-expression-literals@^7.14.5": 604 | version "7.14.5" 605 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" 606 | integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q== 607 | dependencies: 608 | "@babel/helper-plugin-utils" "^7.14.5" 609 | 610 | "@babel/plugin-transform-modules-amd@^7.14.5": 611 | version "7.14.5" 612 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7" 613 | integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g== 614 | dependencies: 615 | "@babel/helper-module-transforms" "^7.14.5" 616 | "@babel/helper-plugin-utils" "^7.14.5" 617 | babel-plugin-dynamic-import-node "^2.3.3" 618 | 619 | "@babel/plugin-transform-modules-commonjs@^7.14.5": 620 | version "7.14.5" 621 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz#7aaee0ea98283de94da98b28f8c35701429dad97" 622 | integrity sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A== 623 | dependencies: 624 | "@babel/helper-module-transforms" "^7.14.5" 625 | "@babel/helper-plugin-utils" "^7.14.5" 626 | "@babel/helper-simple-access" "^7.14.5" 627 | babel-plugin-dynamic-import-node "^2.3.3" 628 | 629 | "@babel/plugin-transform-modules-systemjs@^7.14.5": 630 | version "7.14.5" 631 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz#c75342ef8b30dcde4295d3401aae24e65638ed29" 632 | integrity sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA== 633 | dependencies: 634 | "@babel/helper-hoist-variables" "^7.14.5" 635 | "@babel/helper-module-transforms" "^7.14.5" 636 | "@babel/helper-plugin-utils" "^7.14.5" 637 | "@babel/helper-validator-identifier" "^7.14.5" 638 | babel-plugin-dynamic-import-node "^2.3.3" 639 | 640 | "@babel/plugin-transform-modules-umd@^7.14.5": 641 | version "7.14.5" 642 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0" 643 | integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA== 644 | dependencies: 645 | "@babel/helper-module-transforms" "^7.14.5" 646 | "@babel/helper-plugin-utils" "^7.14.5" 647 | 648 | "@babel/plugin-transform-named-capturing-groups-regex@^7.14.5": 649 | version "7.14.5" 650 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.5.tgz#d537e8ee083ee6f6aa4f4eef9d2081d555746e4c" 651 | integrity sha512-+Xe5+6MWFo311U8SchgeX5c1+lJM+eZDBZgD+tvXu9VVQPXwwVzeManMMjYX6xw2HczngfOSZjoFYKwdeB/Jvw== 652 | dependencies: 653 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 654 | 655 | "@babel/plugin-transform-new-target@^7.14.5": 656 | version "7.14.5" 657 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8" 658 | integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ== 659 | dependencies: 660 | "@babel/helper-plugin-utils" "^7.14.5" 661 | 662 | "@babel/plugin-transform-object-super@^7.14.5": 663 | version "7.14.5" 664 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" 665 | integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg== 666 | dependencies: 667 | "@babel/helper-plugin-utils" "^7.14.5" 668 | "@babel/helper-replace-supers" "^7.14.5" 669 | 670 | "@babel/plugin-transform-parameters@^7.14.5": 671 | version "7.14.5" 672 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3" 673 | integrity sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA== 674 | dependencies: 675 | "@babel/helper-plugin-utils" "^7.14.5" 676 | 677 | "@babel/plugin-transform-property-literals@^7.14.5": 678 | version "7.14.5" 679 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" 680 | integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw== 681 | dependencies: 682 | "@babel/helper-plugin-utils" "^7.14.5" 683 | 684 | "@babel/plugin-transform-react-display-name@^7.14.5": 685 | version "7.14.5" 686 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz#baa92d15c4570411301a85a74c13534873885b65" 687 | integrity sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ== 688 | dependencies: 689 | "@babel/helper-plugin-utils" "^7.14.5" 690 | 691 | "@babel/plugin-transform-react-jsx-development@^7.14.5": 692 | version "7.14.5" 693 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz#1a6c73e2f7ed2c42eebc3d2ad60b0c7494fcb9af" 694 | integrity sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ== 695 | dependencies: 696 | "@babel/plugin-transform-react-jsx" "^7.14.5" 697 | 698 | "@babel/plugin-transform-react-jsx@^7.14.5": 699 | version "7.14.5" 700 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz#39749f0ee1efd8a1bd729152cf5f78f1d247a44a" 701 | integrity sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q== 702 | dependencies: 703 | "@babel/helper-annotate-as-pure" "^7.14.5" 704 | "@babel/helper-module-imports" "^7.14.5" 705 | "@babel/helper-plugin-utils" "^7.14.5" 706 | "@babel/plugin-syntax-jsx" "^7.14.5" 707 | "@babel/types" "^7.14.5" 708 | 709 | "@babel/plugin-transform-react-pure-annotations@^7.14.5": 710 | version "7.14.5" 711 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz#18de612b84021e3a9802cbc212c9d9f46d0d11fc" 712 | integrity sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g== 713 | dependencies: 714 | "@babel/helper-annotate-as-pure" "^7.14.5" 715 | "@babel/helper-plugin-utils" "^7.14.5" 716 | 717 | "@babel/plugin-transform-regenerator@^7.14.5": 718 | version "7.14.5" 719 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f" 720 | integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg== 721 | dependencies: 722 | regenerator-transform "^0.14.2" 723 | 724 | "@babel/plugin-transform-reserved-words@^7.14.5": 725 | version "7.14.5" 726 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304" 727 | integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg== 728 | dependencies: 729 | "@babel/helper-plugin-utils" "^7.14.5" 730 | 731 | "@babel/plugin-transform-shorthand-properties@^7.14.5": 732 | version "7.14.5" 733 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" 734 | integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g== 735 | dependencies: 736 | "@babel/helper-plugin-utils" "^7.14.5" 737 | 738 | "@babel/plugin-transform-spread@^7.14.5": 739 | version "7.14.5" 740 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.5.tgz#bd269fb4119754d2ce7f4cc39a96b4f71baae356" 741 | integrity sha512-/3iqoQdiWergnShZYl0xACb4ADeYCJ7X/RgmwtXshn6cIvautRPAFzhd58frQlokLO6Jb4/3JXvmm6WNTPtiTw== 742 | dependencies: 743 | "@babel/helper-plugin-utils" "^7.14.5" 744 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" 745 | 746 | "@babel/plugin-transform-sticky-regex@^7.14.5": 747 | version "7.14.5" 748 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9" 749 | integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A== 750 | dependencies: 751 | "@babel/helper-plugin-utils" "^7.14.5" 752 | 753 | "@babel/plugin-transform-template-literals@^7.14.5": 754 | version "7.14.5" 755 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" 756 | integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg== 757 | dependencies: 758 | "@babel/helper-plugin-utils" "^7.14.5" 759 | 760 | "@babel/plugin-transform-typeof-symbol@^7.14.5": 761 | version "7.14.5" 762 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4" 763 | integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw== 764 | dependencies: 765 | "@babel/helper-plugin-utils" "^7.14.5" 766 | 767 | "@babel/plugin-transform-unicode-escapes@^7.14.5": 768 | version "7.14.5" 769 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b" 770 | integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA== 771 | dependencies: 772 | "@babel/helper-plugin-utils" "^7.14.5" 773 | 774 | "@babel/plugin-transform-unicode-regex@^7.14.5": 775 | version "7.14.5" 776 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e" 777 | integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw== 778 | dependencies: 779 | "@babel/helper-create-regexp-features-plugin" "^7.14.5" 780 | "@babel/helper-plugin-utils" "^7.14.5" 781 | 782 | "@babel/preset-env@^7.13.15": 783 | version "7.14.5" 784 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.5.tgz#c0c84e763661fd0e74292c3d511cb33b0c668997" 785 | integrity sha512-ci6TsS0bjrdPpWGnQ+m4f+JSSzDKlckqKIJJt9UZ/+g7Zz9k0N8lYU8IeLg/01o2h8LyNZDMLGgRLDTxpudLsA== 786 | dependencies: 787 | "@babel/compat-data" "^7.14.5" 788 | "@babel/helper-compilation-targets" "^7.14.5" 789 | "@babel/helper-plugin-utils" "^7.14.5" 790 | "@babel/helper-validator-option" "^7.14.5" 791 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.14.5" 792 | "@babel/plugin-proposal-async-generator-functions" "^7.14.5" 793 | "@babel/plugin-proposal-class-properties" "^7.14.5" 794 | "@babel/plugin-proposal-class-static-block" "^7.14.5" 795 | "@babel/plugin-proposal-dynamic-import" "^7.14.5" 796 | "@babel/plugin-proposal-export-namespace-from" "^7.14.5" 797 | "@babel/plugin-proposal-json-strings" "^7.14.5" 798 | "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5" 799 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" 800 | "@babel/plugin-proposal-numeric-separator" "^7.14.5" 801 | "@babel/plugin-proposal-object-rest-spread" "^7.14.5" 802 | "@babel/plugin-proposal-optional-catch-binding" "^7.14.5" 803 | "@babel/plugin-proposal-optional-chaining" "^7.14.5" 804 | "@babel/plugin-proposal-private-methods" "^7.14.5" 805 | "@babel/plugin-proposal-private-property-in-object" "^7.14.5" 806 | "@babel/plugin-proposal-unicode-property-regex" "^7.14.5" 807 | "@babel/plugin-syntax-async-generators" "^7.8.4" 808 | "@babel/plugin-syntax-class-properties" "^7.12.13" 809 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 810 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 811 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 812 | "@babel/plugin-syntax-json-strings" "^7.8.3" 813 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 814 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 815 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 816 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 817 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 818 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 819 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 820 | "@babel/plugin-syntax-top-level-await" "^7.14.5" 821 | "@babel/plugin-transform-arrow-functions" "^7.14.5" 822 | "@babel/plugin-transform-async-to-generator" "^7.14.5" 823 | "@babel/plugin-transform-block-scoped-functions" "^7.14.5" 824 | "@babel/plugin-transform-block-scoping" "^7.14.5" 825 | "@babel/plugin-transform-classes" "^7.14.5" 826 | "@babel/plugin-transform-computed-properties" "^7.14.5" 827 | "@babel/plugin-transform-destructuring" "^7.14.5" 828 | "@babel/plugin-transform-dotall-regex" "^7.14.5" 829 | "@babel/plugin-transform-duplicate-keys" "^7.14.5" 830 | "@babel/plugin-transform-exponentiation-operator" "^7.14.5" 831 | "@babel/plugin-transform-for-of" "^7.14.5" 832 | "@babel/plugin-transform-function-name" "^7.14.5" 833 | "@babel/plugin-transform-literals" "^7.14.5" 834 | "@babel/plugin-transform-member-expression-literals" "^7.14.5" 835 | "@babel/plugin-transform-modules-amd" "^7.14.5" 836 | "@babel/plugin-transform-modules-commonjs" "^7.14.5" 837 | "@babel/plugin-transform-modules-systemjs" "^7.14.5" 838 | "@babel/plugin-transform-modules-umd" "^7.14.5" 839 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.5" 840 | "@babel/plugin-transform-new-target" "^7.14.5" 841 | "@babel/plugin-transform-object-super" "^7.14.5" 842 | "@babel/plugin-transform-parameters" "^7.14.5" 843 | "@babel/plugin-transform-property-literals" "^7.14.5" 844 | "@babel/plugin-transform-regenerator" "^7.14.5" 845 | "@babel/plugin-transform-reserved-words" "^7.14.5" 846 | "@babel/plugin-transform-shorthand-properties" "^7.14.5" 847 | "@babel/plugin-transform-spread" "^7.14.5" 848 | "@babel/plugin-transform-sticky-regex" "^7.14.5" 849 | "@babel/plugin-transform-template-literals" "^7.14.5" 850 | "@babel/plugin-transform-typeof-symbol" "^7.14.5" 851 | "@babel/plugin-transform-unicode-escapes" "^7.14.5" 852 | "@babel/plugin-transform-unicode-regex" "^7.14.5" 853 | "@babel/preset-modules" "^0.1.4" 854 | "@babel/types" "^7.14.5" 855 | babel-plugin-polyfill-corejs2 "^0.2.2" 856 | babel-plugin-polyfill-corejs3 "^0.2.2" 857 | babel-plugin-polyfill-regenerator "^0.2.2" 858 | core-js-compat "^3.14.0" 859 | semver "^6.3.0" 860 | 861 | "@babel/preset-modules@^0.1.4": 862 | version "0.1.4" 863 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 864 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 865 | dependencies: 866 | "@babel/helper-plugin-utils" "^7.0.0" 867 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 868 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 869 | "@babel/types" "^7.4.4" 870 | esutils "^2.0.2" 871 | 872 | "@babel/preset-react@^7.13.13": 873 | version "7.14.5" 874 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.14.5.tgz#0fbb769513f899c2c56f3a882fa79673c2d4ab3c" 875 | integrity sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ== 876 | dependencies: 877 | "@babel/helper-plugin-utils" "^7.14.5" 878 | "@babel/helper-validator-option" "^7.14.5" 879 | "@babel/plugin-transform-react-display-name" "^7.14.5" 880 | "@babel/plugin-transform-react-jsx" "^7.14.5" 881 | "@babel/plugin-transform-react-jsx-development" "^7.14.5" 882 | "@babel/plugin-transform-react-pure-annotations" "^7.14.5" 883 | 884 | "@babel/runtime@^7.8.4": 885 | version "7.14.5" 886 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.5.tgz#665450911c6031af38f81db530f387ec04cd9a98" 887 | integrity sha512-121rumjddw9c3NCQ55KGkyE1h/nzWhU/owjhw0l4mQrkzz4x9SGS1X8gFLraHwX7td3Yo4QTL+qj0NcIzN87BA== 888 | dependencies: 889 | regenerator-runtime "^0.13.4" 890 | 891 | "@babel/template@^7.14.5": 892 | version "7.14.5" 893 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" 894 | integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== 895 | dependencies: 896 | "@babel/code-frame" "^7.14.5" 897 | "@babel/parser" "^7.14.5" 898 | "@babel/types" "^7.14.5" 899 | 900 | "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5": 901 | version "7.14.5" 902 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.5.tgz#c111b0f58afab4fea3d3385a406f692748c59870" 903 | integrity sha512-G3BiS15vevepdmFqmUc9X+64y0viZYygubAMO8SvBmKARuF6CPSZtH4Ng9vi/lrWlZFGe3FWdXNy835akH8Glg== 904 | dependencies: 905 | "@babel/code-frame" "^7.14.5" 906 | "@babel/generator" "^7.14.5" 907 | "@babel/helper-function-name" "^7.14.5" 908 | "@babel/helper-hoist-variables" "^7.14.5" 909 | "@babel/helper-split-export-declaration" "^7.14.5" 910 | "@babel/parser" "^7.14.5" 911 | "@babel/types" "^7.14.5" 912 | debug "^4.1.0" 913 | globals "^11.1.0" 914 | 915 | "@babel/types@^7.14.5", "@babel/types@^7.4.4": 916 | version "7.14.5" 917 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" 918 | integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg== 919 | dependencies: 920 | "@babel/helper-validator-identifier" "^7.14.5" 921 | to-fast-properties "^2.0.0" 922 | 923 | "@rollup/plugin-babel@^5.3.0": 924 | version "5.3.0" 925 | resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz#9cb1c5146ddd6a4968ad96f209c50c62f92f9879" 926 | integrity sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw== 927 | dependencies: 928 | "@babel/helper-module-imports" "^7.10.4" 929 | "@rollup/pluginutils" "^3.1.0" 930 | 931 | "@rollup/plugin-commonjs@^18.0.0": 932 | version "18.1.0" 933 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-18.1.0.tgz#5a760d757af168a50727c0ae080251fbfcc5eb02" 934 | integrity sha512-h3e6T9rUxVMAQswpDIobfUHn/doMzM9sgkMrsMWCFLmB84PSoC8mV8tOloAJjSRwdqhXBqstlX2BwBpHJvbhxg== 935 | dependencies: 936 | "@rollup/pluginutils" "^3.1.0" 937 | commondir "^1.0.1" 938 | estree-walker "^2.0.1" 939 | glob "^7.1.6" 940 | is-reference "^1.2.1" 941 | magic-string "^0.25.7" 942 | resolve "^1.17.0" 943 | 944 | "@rollup/plugin-node-resolve@^11.2.1": 945 | version "11.2.1" 946 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60" 947 | integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== 948 | dependencies: 949 | "@rollup/pluginutils" "^3.1.0" 950 | "@types/resolve" "1.17.1" 951 | builtin-modules "^3.1.0" 952 | deepmerge "^4.2.2" 953 | is-module "^1.0.0" 954 | resolve "^1.19.0" 955 | 956 | "@rollup/pluginutils@^3.1.0": 957 | version "3.1.0" 958 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 959 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 960 | dependencies: 961 | "@types/estree" "0.0.39" 962 | estree-walker "^1.0.1" 963 | picomatch "^2.2.2" 964 | 965 | "@types/estree@*": 966 | version "0.0.48" 967 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74" 968 | integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew== 969 | 970 | "@types/estree@0.0.39": 971 | version "0.0.39" 972 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 973 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 974 | 975 | "@types/node@*": 976 | version "15.12.2" 977 | resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" 978 | integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== 979 | 980 | "@types/resolve@1.17.1": 981 | version "1.17.1" 982 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" 983 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== 984 | dependencies: 985 | "@types/node" "*" 986 | 987 | ansi-styles@^3.2.1: 988 | version "3.2.1" 989 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 990 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 991 | dependencies: 992 | color-convert "^1.9.0" 993 | 994 | babel-plugin-dynamic-import-node@^2.3.3: 995 | version "2.3.3" 996 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 997 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 998 | dependencies: 999 | object.assign "^4.1.0" 1000 | 1001 | babel-plugin-polyfill-corejs2@^0.2.2: 1002 | version "0.2.2" 1003 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327" 1004 | integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ== 1005 | dependencies: 1006 | "@babel/compat-data" "^7.13.11" 1007 | "@babel/helper-define-polyfill-provider" "^0.2.2" 1008 | semver "^6.1.1" 1009 | 1010 | babel-plugin-polyfill-corejs3@^0.2.2: 1011 | version "0.2.2" 1012 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz#7424a1682ee44baec817327710b1b094e5f8f7f5" 1013 | integrity sha512-l1Cf8PKk12eEk5QP/NQ6TH8A1pee6wWDJ96WjxrMXFLHLOBFzYM4moG80HFgduVhTqAFez4alnZKEhP/bYHg0A== 1014 | dependencies: 1015 | "@babel/helper-define-polyfill-provider" "^0.2.2" 1016 | core-js-compat "^3.9.1" 1017 | 1018 | babel-plugin-polyfill-regenerator@^0.2.2: 1019 | version "0.2.2" 1020 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077" 1021 | integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg== 1022 | dependencies: 1023 | "@babel/helper-define-polyfill-provider" "^0.2.2" 1024 | 1025 | balanced-match@^1.0.0: 1026 | version "1.0.2" 1027 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1028 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1029 | 1030 | brace-expansion@^1.1.7: 1031 | version "1.1.11" 1032 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1033 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1034 | dependencies: 1035 | balanced-match "^1.0.0" 1036 | concat-map "0.0.1" 1037 | 1038 | browserslist@^4.16.6: 1039 | version "4.16.6" 1040 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" 1041 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== 1042 | dependencies: 1043 | caniuse-lite "^1.0.30001219" 1044 | colorette "^1.2.2" 1045 | electron-to-chromium "^1.3.723" 1046 | escalade "^3.1.1" 1047 | node-releases "^1.1.71" 1048 | 1049 | buffer-from@^1.0.0: 1050 | version "1.1.1" 1051 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1052 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 1053 | 1054 | builtin-modules@^3.1.0: 1055 | version "3.2.0" 1056 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" 1057 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== 1058 | 1059 | call-bind@^1.0.0: 1060 | version "1.0.2" 1061 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 1062 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1063 | dependencies: 1064 | function-bind "^1.1.1" 1065 | get-intrinsic "^1.0.2" 1066 | 1067 | caniuse-lite@^1.0.30001219: 1068 | version "1.0.30001237" 1069 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz#4b7783661515b8e7151fc6376cfd97f0e427b9e5" 1070 | integrity sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw== 1071 | 1072 | chalk@^2.0.0: 1073 | version "2.4.2" 1074 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1075 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1076 | dependencies: 1077 | ansi-styles "^3.2.1" 1078 | escape-string-regexp "^1.0.5" 1079 | supports-color "^5.3.0" 1080 | 1081 | color-convert@^1.9.0: 1082 | version "1.9.3" 1083 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1084 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1085 | dependencies: 1086 | color-name "1.1.3" 1087 | 1088 | color-name@1.1.3: 1089 | version "1.1.3" 1090 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1091 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1092 | 1093 | colorette@^1.2.2: 1094 | version "1.2.2" 1095 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 1096 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 1097 | 1098 | commander@^2.20.0: 1099 | version "2.20.3" 1100 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 1101 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 1102 | 1103 | commondir@^1.0.1: 1104 | version "1.0.1" 1105 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1106 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1107 | 1108 | concat-map@0.0.1: 1109 | version "0.0.1" 1110 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1111 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1112 | 1113 | convert-source-map@^1.7.0: 1114 | version "1.7.0" 1115 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1116 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1117 | dependencies: 1118 | safe-buffer "~5.1.1" 1119 | 1120 | core-js-compat@^3.14.0, core-js-compat@^3.9.1: 1121 | version "3.14.0" 1122 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.14.0.tgz#b574dabf29184681d5b16357bd33d104df3d29a5" 1123 | integrity sha512-R4NS2eupxtiJU+VwgkF9WTpnSfZW4pogwKHd8bclWU2sp93Pr5S1uYJI84cMOubJRou7bcfL0vmwtLslWN5p3A== 1124 | dependencies: 1125 | browserslist "^4.16.6" 1126 | semver "7.0.0" 1127 | 1128 | debug@^4.1.0, debug@^4.1.1: 1129 | version "4.3.1" 1130 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 1131 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 1132 | dependencies: 1133 | ms "2.1.2" 1134 | 1135 | deepmerge@^4.2.2: 1136 | version "4.2.2" 1137 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1138 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1139 | 1140 | define-properties@^1.1.3: 1141 | version "1.1.3" 1142 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1143 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1144 | dependencies: 1145 | object-keys "^1.0.12" 1146 | 1147 | electron-to-chromium@^1.3.723: 1148 | version "1.3.752" 1149 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz#0728587f1b9b970ec9ffad932496429aef750d09" 1150 | integrity sha512-2Tg+7jSl3oPxgsBsWKh5H83QazTkmWG/cnNwJplmyZc7KcN61+I10oUgaXSVk/NwfvN3BdkKDR4FYuRBQQ2v0A== 1151 | 1152 | escalade@^3.1.1: 1153 | version "3.1.1" 1154 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1155 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1156 | 1157 | escape-string-regexp@^1.0.5: 1158 | version "1.0.5" 1159 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1160 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1161 | 1162 | estree-walker@^1.0.1: 1163 | version "1.0.1" 1164 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 1165 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 1166 | 1167 | estree-walker@^2.0.1: 1168 | version "2.0.2" 1169 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 1170 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 1171 | 1172 | esutils@^2.0.2: 1173 | version "2.0.3" 1174 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1175 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1176 | 1177 | fs.realpath@^1.0.0: 1178 | version "1.0.0" 1179 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1180 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1181 | 1182 | fsevents@~2.3.1: 1183 | version "2.3.2" 1184 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1185 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1186 | 1187 | function-bind@^1.1.1: 1188 | version "1.1.1" 1189 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1190 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1191 | 1192 | gensync@^1.0.0-beta.2: 1193 | version "1.0.0-beta.2" 1194 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1195 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1196 | 1197 | get-intrinsic@^1.0.2: 1198 | version "1.1.1" 1199 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1200 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1201 | dependencies: 1202 | function-bind "^1.1.1" 1203 | has "^1.0.3" 1204 | has-symbols "^1.0.1" 1205 | 1206 | glob@^7.1.6: 1207 | version "7.1.7" 1208 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1209 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1210 | dependencies: 1211 | fs.realpath "^1.0.0" 1212 | inflight "^1.0.4" 1213 | inherits "2" 1214 | minimatch "^3.0.4" 1215 | once "^1.3.0" 1216 | path-is-absolute "^1.0.0" 1217 | 1218 | globals@^11.1.0: 1219 | version "11.12.0" 1220 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1221 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1222 | 1223 | has-flag@^3.0.0: 1224 | version "3.0.0" 1225 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1226 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1227 | 1228 | has-flag@^4.0.0: 1229 | version "4.0.0" 1230 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1231 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1232 | 1233 | has-symbols@^1.0.1: 1234 | version "1.0.2" 1235 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1236 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1237 | 1238 | has@^1.0.3: 1239 | version "1.0.3" 1240 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1241 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1242 | dependencies: 1243 | function-bind "^1.1.1" 1244 | 1245 | inflight@^1.0.4: 1246 | version "1.0.6" 1247 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1248 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1249 | dependencies: 1250 | once "^1.3.0" 1251 | wrappy "1" 1252 | 1253 | inherits@2: 1254 | version "2.0.4" 1255 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1256 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1257 | 1258 | is-core-module@^2.2.0: 1259 | version "2.4.0" 1260 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1" 1261 | integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A== 1262 | dependencies: 1263 | has "^1.0.3" 1264 | 1265 | is-module@^1.0.0: 1266 | version "1.0.0" 1267 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1268 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1269 | 1270 | is-reference@^1.2.1: 1271 | version "1.2.1" 1272 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" 1273 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 1274 | dependencies: 1275 | "@types/estree" "*" 1276 | 1277 | jest-worker@^26.2.1: 1278 | version "26.6.2" 1279 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 1280 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 1281 | dependencies: 1282 | "@types/node" "*" 1283 | merge-stream "^2.0.0" 1284 | supports-color "^7.0.0" 1285 | 1286 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1287 | version "4.0.0" 1288 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1289 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1290 | 1291 | jsesc@^2.5.1: 1292 | version "2.5.2" 1293 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1294 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1295 | 1296 | jsesc@~0.5.0: 1297 | version "0.5.0" 1298 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1299 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1300 | 1301 | json5@^2.1.2: 1302 | version "2.2.0" 1303 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1304 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1305 | dependencies: 1306 | minimist "^1.2.5" 1307 | 1308 | lodash.debounce@^4.0.8: 1309 | version "4.0.8" 1310 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1311 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 1312 | 1313 | loose-envify@^1.1.0: 1314 | version "1.4.0" 1315 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1316 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1317 | dependencies: 1318 | js-tokens "^3.0.0 || ^4.0.0" 1319 | 1320 | magic-string@^0.25.7: 1321 | version "0.25.7" 1322 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 1323 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 1324 | dependencies: 1325 | sourcemap-codec "^1.4.4" 1326 | 1327 | merge-stream@^2.0.0: 1328 | version "2.0.0" 1329 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1330 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1331 | 1332 | minimatch@^3.0.4: 1333 | version "3.0.4" 1334 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1335 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1336 | dependencies: 1337 | brace-expansion "^1.1.7" 1338 | 1339 | minimist@^1.2.5: 1340 | version "1.2.5" 1341 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1342 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1343 | 1344 | ms@2.1.2: 1345 | version "2.1.2" 1346 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1347 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1348 | 1349 | node-releases@^1.1.71: 1350 | version "1.1.73" 1351 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" 1352 | integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== 1353 | 1354 | object-assign@^4.1.1: 1355 | version "4.1.1" 1356 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1357 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1358 | 1359 | object-keys@^1.0.12, object-keys@^1.1.1: 1360 | version "1.1.1" 1361 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1362 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1363 | 1364 | object.assign@^4.1.0: 1365 | version "4.1.2" 1366 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1367 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1368 | dependencies: 1369 | call-bind "^1.0.0" 1370 | define-properties "^1.1.3" 1371 | has-symbols "^1.0.1" 1372 | object-keys "^1.1.1" 1373 | 1374 | once@^1.3.0: 1375 | version "1.4.0" 1376 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1377 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1378 | dependencies: 1379 | wrappy "1" 1380 | 1381 | path-is-absolute@^1.0.0: 1382 | version "1.0.1" 1383 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1384 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1385 | 1386 | path-parse@^1.0.6: 1387 | version "1.0.7" 1388 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1389 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1390 | 1391 | picomatch@^2.2.2: 1392 | version "2.3.0" 1393 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 1394 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 1395 | 1396 | randombytes@^2.1.0: 1397 | version "2.1.0" 1398 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1399 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 1400 | dependencies: 1401 | safe-buffer "^5.1.0" 1402 | 1403 | react@^17.0.2: 1404 | version "17.0.2" 1405 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 1406 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1407 | dependencies: 1408 | loose-envify "^1.1.0" 1409 | object-assign "^4.1.1" 1410 | 1411 | regenerate-unicode-properties@^8.2.0: 1412 | version "8.2.0" 1413 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 1414 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 1415 | dependencies: 1416 | regenerate "^1.4.0" 1417 | 1418 | regenerate@^1.4.0: 1419 | version "1.4.2" 1420 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 1421 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 1422 | 1423 | regenerator-runtime@^0.13.4: 1424 | version "0.13.7" 1425 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 1426 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 1427 | 1428 | regenerator-transform@^0.14.2: 1429 | version "0.14.5" 1430 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 1431 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 1432 | dependencies: 1433 | "@babel/runtime" "^7.8.4" 1434 | 1435 | regexpu-core@^4.7.1: 1436 | version "4.7.1" 1437 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 1438 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 1439 | dependencies: 1440 | regenerate "^1.4.0" 1441 | regenerate-unicode-properties "^8.2.0" 1442 | regjsgen "^0.5.1" 1443 | regjsparser "^0.6.4" 1444 | unicode-match-property-ecmascript "^1.0.4" 1445 | unicode-match-property-value-ecmascript "^1.2.0" 1446 | 1447 | regjsgen@^0.5.1: 1448 | version "0.5.2" 1449 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 1450 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 1451 | 1452 | regjsparser@^0.6.4: 1453 | version "0.6.9" 1454 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6" 1455 | integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ== 1456 | dependencies: 1457 | jsesc "~0.5.0" 1458 | 1459 | resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0: 1460 | version "1.20.0" 1461 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 1462 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 1463 | dependencies: 1464 | is-core-module "^2.2.0" 1465 | path-parse "^1.0.6" 1466 | 1467 | rollup-plugin-terser@^7.0.2: 1468 | version "7.0.2" 1469 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" 1470 | integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== 1471 | dependencies: 1472 | "@babel/code-frame" "^7.10.4" 1473 | jest-worker "^26.2.1" 1474 | serialize-javascript "^4.0.0" 1475 | terser "^5.0.0" 1476 | 1477 | rollup@^2.46.0: 1478 | version "2.51.2" 1479 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.51.2.tgz#6de71e28c833089a0bd745a09671a3e2b92af6b7" 1480 | integrity sha512-ReV2eGEadA7hmXSzjxdDKs10neqH2QURf2RxJ6ayAlq93ugy6qIvXMmbc5cWMGCDh1h5T4thuWO1e2VNbMq8FA== 1481 | optionalDependencies: 1482 | fsevents "~2.3.1" 1483 | 1484 | safe-buffer@^5.1.0: 1485 | version "5.2.1" 1486 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1487 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1488 | 1489 | safe-buffer@~5.1.1: 1490 | version "5.1.2" 1491 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1492 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1493 | 1494 | semver@7.0.0: 1495 | version "7.0.0" 1496 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 1497 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 1498 | 1499 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 1500 | version "6.3.0" 1501 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1502 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1503 | 1504 | serialize-javascript@^4.0.0: 1505 | version "4.0.0" 1506 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 1507 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 1508 | dependencies: 1509 | randombytes "^2.1.0" 1510 | 1511 | source-map-support@~0.5.19: 1512 | version "0.5.19" 1513 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 1514 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 1515 | dependencies: 1516 | buffer-from "^1.0.0" 1517 | source-map "^0.6.0" 1518 | 1519 | source-map@^0.5.0: 1520 | version "0.5.7" 1521 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1522 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1523 | 1524 | source-map@^0.6.0: 1525 | version "0.6.1" 1526 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1527 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1528 | 1529 | source-map@~0.7.2: 1530 | version "0.7.3" 1531 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 1532 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 1533 | 1534 | sourcemap-codec@^1.4.4: 1535 | version "1.4.8" 1536 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 1537 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 1538 | 1539 | supports-color@^5.3.0: 1540 | version "5.5.0" 1541 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1542 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1543 | dependencies: 1544 | has-flag "^3.0.0" 1545 | 1546 | supports-color@^7.0.0: 1547 | version "7.2.0" 1548 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1549 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1550 | dependencies: 1551 | has-flag "^4.0.0" 1552 | 1553 | terser@^5.0.0: 1554 | version "5.7.0" 1555 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" 1556 | integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g== 1557 | dependencies: 1558 | commander "^2.20.0" 1559 | source-map "~0.7.2" 1560 | source-map-support "~0.5.19" 1561 | 1562 | to-fast-properties@^2.0.0: 1563 | version "2.0.0" 1564 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1565 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1566 | 1567 | unicode-canonical-property-names-ecmascript@^1.0.4: 1568 | version "1.0.4" 1569 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 1570 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 1571 | 1572 | unicode-match-property-ecmascript@^1.0.4: 1573 | version "1.0.4" 1574 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 1575 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 1576 | dependencies: 1577 | unicode-canonical-property-names-ecmascript "^1.0.4" 1578 | unicode-property-aliases-ecmascript "^1.0.4" 1579 | 1580 | unicode-match-property-value-ecmascript@^1.2.0: 1581 | version "1.2.0" 1582 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 1583 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 1584 | 1585 | unicode-property-aliases-ecmascript@^1.0.4: 1586 | version "1.1.0" 1587 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 1588 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 1589 | 1590 | wrappy@1: 1591 | version "1.0.2" 1592 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1593 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1594 | --------------------------------------------------------------------------------