├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── pages ├── _app.js ├── api │ ├── [...data].js │ └── index.js └── index.js ├── public ├── QuizLogo.png ├── a.css ├── bob.css ├── body.css ├── cards.css ├── colors.css ├── counter.css ├── favicon.ico ├── table.css └── vercel.svg ├── services └── database.js ├── styles ├── Home.module.css └── globals.css └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | /.github 7 | .pnp.js 8 | .env 9 | 10 | # testing 11 | /coverage 12 | 13 | # next.js 14 | /.next/ 15 | /out/ 16 | 17 | # production 18 | /build 19 | 20 | # misc 21 | .DS_Store 22 | *.pem 23 | 24 | # debug 25 | npm-debug.log* 26 | yarn-debug.log* 27 | yarn-error.log* 28 | .pnpm-debug.log* 29 | 30 | # local env files 31 | .env*.local 32 | 33 | # vercel 34 | .vercel 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2020 TheMaestro0 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | quizapi icon 5 |

QuizAPI - Web

6 |

💡 Uma API de Questões e Respostas para seu bot do Discord e WebSite, 100% em português e fácil de usar ⚡

7 | discord server 8 |

Site da WebAPI

9 |
10 |
11 | 12 | ## Suporte - Tem perguntas ou quer conversar e entrar em contato com os desenvolvedores? 13 | ### Entre no servidor de suporte agora para obter respostas às suas perguntas ou para receber ajuda com erros: 14 |
15 |

Servidor Oficial

16 |
17 | 18 | ## Índice de Conteúdos 19 | 20 | - [Sobre](#sobre) 21 | - [Exemplos de Uso](#exemplos-de-uso) 22 | - [Node Fetch](#node-fetch) 23 | - [Axios](#axios) 24 | - [QuizAPI](#quizapi) 25 | - [Open Source](#open-source) 26 | 27 | ## Sobre 28 | 💡 Uma API de Questões e Respostas para seu bot do Discord e WebSite, 100% em português e fácil de usar ⚡ 29 | 30 | ## Uso 31 | ### NODE-FETCH 32 | 33 | ### AXIOS 34 | 35 |
36 | 37 |
38 |

Mirai Development

39 |

QuizAPI

40 | 41 |

QuizAPI - 💡 Uma API de Questões e Respostas para seu bot do Discord e WebSite, 100% em português e fácil de usar⚡

42 | 43 | Dirigida por GR e a Equipe Mirai Development

44 | Mirai Development 45 |
46 | 47 | ## Open Source 48 | 49 | A QuizAPI é uma api aberta feita para desenvolvedores web e de automação. Também feito por você! Se você quiser contribuir, basta fazer um [pull-request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) 50 | 51 |

Copyright © 2022 @Mirai Development

52 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "quizapi-web", 3 | "description": "QuizAPI - 💡 Uma API de Questões e Respostas para seu bot do Discord e WebSite, 100% em português e fácil de usar ⚡", 4 | "version": "0.1.0", 5 | "private": true, 6 | "scripts": { 7 | "dev": "next dev", 8 | "build": "next build", 9 | "start": "next start", 10 | "lint": "next lint" 11 | }, 12 | "dependencies": { 13 | "firebase": "8.0.0", 14 | "next": "12.1.4", 15 | "react": "18.0.0", 16 | "react-dom": "18.0.0" 17 | }, 18 | "devDependencies": { 19 | "eslint": "8.12.0", 20 | "eslint-config-next": "12.1.4" 21 | }, 22 | "repository": { 23 | "type": "git", 24 | "url": "git+https://github.com/MiraiDevelopment/quiz-api.git" 25 | }, 26 | "keywords": [ 27 | "quiz", 28 | "api", 29 | "quizapi", 30 | "botdiscord", 31 | "djs", 32 | "discordjs", 33 | "aoijs", 34 | "questions" 35 | ], 36 | "author": "GR", 37 | "license": "Apache-2.0", 38 | "licenses": [ 39 | { 40 | "type": "Apache-2.0", 41 | "url": "https://www.apache.org/licenses/LICENSE-2.0" 42 | } 43 | ], 44 | "bugs": { 45 | "url": "https://github.com/MiraiDevelopment/quiz-api/issues" 46 | }, 47 | "homepage": "https://github.com/MiraiDevelopment/quiz-api#readme" 48 | } 49 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css' 2 | 3 | function MyApp({ Component, pageProps }) { 4 | return 5 | } 6 | 7 | export default MyApp 8 | -------------------------------------------------------------------------------- /pages/api/[...data].js: -------------------------------------------------------------------------------- 1 | import db from '../../services/database.js'; 2 | 3 | export default async function api(req, res) { 4 | 5 | const { data } = req.query 6 | 7 | let dados = await db.ref(`api/${data[0]}/${data[1]}`).once('value') 8 | dados = dados.val() 9 | 10 | if(!dados) dados = { err: true, message: `Desculpa, não encontrei esse quiz!` }; 11 | 12 | res.json(dados) 13 | 14 | } -------------------------------------------------------------------------------- /pages/api/index.js: -------------------------------------------------------------------------------- 1 | export default async function api(req, res) { 2 | 3 | let dados = { err: true, message: `Você não digitou a categoria, sse as saídas esportes, historia, entretenimento` }; 4 | 5 | res.json(dados) 6 | 7 | } -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- 1 | import Head from 'next/head' 2 | import Script from 'next/script' 3 | import Image from 'next/image' 4 | import Link from 'next/link' 5 | import styles from '../styles/Home.module.css'; 6 | 7 | export default function Home() { 8 | return ( 9 | <> 10 | 11 | 12 | Quiz API 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
53 | 54 | 55 | 56 | 57 | 58 | 66 | 67 |
68 | 69 |
70 |
71 |
72 |
73 |
74 | 75 |
76 |
77 |
78 | ... 79 |
80 |
81 |
82 |
83 |

Quiz API

84 |

Uma API de Questões e Respostas para seu bot do Discord e WebSite, 100% em português e fácil de usar

85 |
86 |
87 | 88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 | 109 |
110 | 111 | ) 112 | } -------------------------------------------------------------------------------- /public/QuizLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miraidevelopment/quizapi-web/815bb0de12a13cc24a1500bcf0246d0debbdcb01/public/QuizLogo.png -------------------------------------------------------------------------------- /public/a.css: -------------------------------------------------------------------------------- 1 | .container { 2 | padding: 0 2rem; 3 | } 4 | 5 | .abcdef { 6 | height: 300px; 7 | pointer-events: none; 8 | -webkit-box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 9 | box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 10 | } 11 | 12 | .div1 { 13 | background-color: var(--dc); 14 | } 15 | 16 | .nav1 { 17 | background-color: var(--dc); 18 | } 19 | 20 | .divAoifb1 { 21 | margin-top: -1.5em; 22 | margin-left: 2em; 23 | color: white; 24 | } 25 | 26 | .initialBar { 27 | width: 100%; 28 | height: 8px; 29 | background-color: var(--aoifb); 30 | } 31 | 32 | .bobShaddow123 { 33 | height: 300px; 34 | pointer-events: none; 35 | -webkit-box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 36 | box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 37 | } 38 | 39 | .cardTitle1 { 40 | color: white; 41 | font-size: 275% 42 | } 43 | 44 | .cardTitle2 { 45 | color: white; 46 | padding: 8px; 47 | font-size: 235% 48 | } 49 | 50 | .tableRedirect { 51 | padding: 20px; 52 | color: #3B32EF; 53 | } -------------------------------------------------------------------------------- /public/bob.css: -------------------------------------------------------------------------------- 1 | @-webkit-keyframes bob { 2 | 0%, 3 | 100% { 4 | -webkit-transform: translateY(-8px); 5 | transform: translateY(-8px); 6 | } 7 | 50% { 8 | -webkit-transform: translateY(-4px); 9 | transform: translateY(-4px); 10 | } 11 | } 12 | @keyframes bob { 13 | 0%, 14 | 100% { 15 | -webkit-transform: translateY(-8px); 16 | transform: translateY(-8px); 17 | } 18 | 50% { 19 | -webkit-transform: translateY(-4px); 20 | transform: translateY(-4px); 21 | } 22 | } 23 | @-webkit-keyframes bob-float { 24 | 100% { 25 | -webkit-transform: translateY(-8px); 26 | transform: translateY(-8px); 27 | } 28 | } 29 | @keyframes bob-float { 30 | 100% { 31 | -webkit-transform: translateY(-8px); 32 | transform: translateY(-8px); 33 | } 34 | } 35 | .bob { 36 | display: inline-block; 37 | vertical-align: middle; 38 | -webkit-transform: perspective(1px) translateZ(0); 39 | transform: perspective(1px) translateZ(0); 40 | box-shadow: 0 0 1px transparent; 41 | } 42 | .bob:active, 43 | .bob:focus, 44 | .bob { 45 | -webkit-animation-name: bob-float, bob; 46 | animation-name: bob-float, bob; 47 | -webkit-animation-duration: 0.3s, 1.5s; 48 | animation-duration: 0.3s, 1.5s; 49 | -webkit-animation-delay: 0s, 0.3s; 50 | animation-delay: 0s, 0.3s; 51 | -webkit-animation-timing-function: ease-out, ease-in-out; 52 | animation-timing-function: ease-out, ease-in-out; 53 | -webkit-animation-iteration-count: 1, infinite; 54 | animation-iteration-count: 1, infinite; 55 | -webkit-animation-fill-mode: forwards; 56 | animation-fill-mode: forwards; 57 | -webkit-animation-direction: normal, alternate; 58 | animation-direction: normal, alternate; 59 | } -------------------------------------------------------------------------------- /public/body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miraidevelopment/quizapi-web/815bb0de12a13cc24a1500bcf0246d0debbdcb01/public/body.css -------------------------------------------------------------------------------- /public/cards.css: -------------------------------------------------------------------------------- 1 | .cards { 2 | display: grid; 3 | grid-template-columns: repeat(3, minmax(250px, 1fr)); 4 | grid-gap: 30px; 5 | } 6 | 7 | .cards { 8 | max-width: 960px; 9 | margin: 0 auto 30px; 10 | } 11 | 12 | @media(max-width: 768px) { 13 | .cards { 14 | display: flex; 15 | flex-direction: column; 16 | align-items: center; 17 | justify-content: space-evenly; 18 | } 19 | } -------------------------------------------------------------------------------- /public/colors.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --white: #ffffff; 3 | --white123: #f1f2f3; 4 | --white4: #f4f4f4; 5 | --white36: rgb(248, 248, 248); 6 | --black: #000; 7 | --black2: #222; 8 | --black1e: #1e1e1e; 9 | --gray38: rgb(238, 238, 238); 10 | --grayC: #CCC; 11 | --gray78: rgb(178, 178, 178); 12 | --gray36: #363636; 13 | --red: rgb(255, 000, 000); 14 | --red2: #b51a20; 15 | --orange: rgb(221, 118, 0); 16 | --brown: rgb(179, 120, 54); 17 | --blue1: rgb(7, 7, 31); 18 | --blue2: #97c1e2; 19 | --blue3: rgb(0, 0, 255); 20 | --green: rgb(0, 128, 0); 21 | --yellow: rgb(255, 255, 0); 22 | --pink: rgb(245, 4, 72); 23 | --dc: #2f3136; 24 | --on: #43b581; 25 | --rae: #3B32EF; 26 | --aoifb: #FFC927; 27 | } -------------------------------------------------------------------------------- /public/counter.css: -------------------------------------------------------------------------------- 1 | .counter { 2 | font: 800 40px system-ui; 3 | } -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miraidevelopment/quizapi-web/815bb0de12a13cc24a1500bcf0246d0debbdcb01/public/favicon.ico -------------------------------------------------------------------------------- /public/table.css: -------------------------------------------------------------------------------- 1 | .tableModel { 2 | display: grid; 3 | grid-gap: 30px; 4 | } 5 | 6 | .tableModel { 7 | max-width: 960px; 8 | margin: 0 auto 30px; 9 | } -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /services/database.js: -------------------------------------------------------------------------------- 1 | const firebase = require("firebase") 2 | 3 | if(!firebase.apps.length) { 4 | firebase.initializeApp({ 5 | apiKey: process.env.apiKey, 6 | authDomain: process.env.authDomain, 7 | databaseURL: process.env.databaseURL, 8 | projectId: process.env.projectId, 9 | storageBucket: process.env.storageBucket, 10 | messagingSenderId: process.env.messagingSenderId, 11 | appId: process.env.appId, 12 | measurementId: process.env.measurementId 13 | }) 14 | } 15 | 16 | const db = firebase.database() 17 | 18 | module.exports = db -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | background-color: var(--dc); 3 | width: 100%; 4 | height: 100%; 5 | } 6 | 7 | .abcdef { 8 | height: 300px; 9 | pointer-events: none; 10 | -webkit-box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 11 | box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 12 | } 13 | 14 | .div1 { 15 | background-color: var(--dc); 16 | } 17 | 18 | .nav1 { 19 | background-color: var(--dc); 20 | } 21 | 22 | .divAoifb1 { 23 | margin-top: -1.5em; 24 | margin-left: 2em; 25 | color: white; 26 | } 27 | 28 | .initialBar { 29 | width: 100%; 30 | height: 8px; 31 | background-color: var(--aoifb); 32 | } 33 | 34 | .bobShaddow123 { 35 | height: 300px; 36 | pointer-events: none; 37 | -webkit-box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 38 | box-shadow: 9px 7px 46px 0px rgba(0,0,0,0.80); 39 | } 40 | 41 | .cardTitle1 { 42 | color: white; 43 | font-size: 275% 44 | } 45 | 46 | .cardTitle2 { 47 | color: white; 48 | padding: 8px; 49 | font-size: 235% 50 | } 51 | 52 | .tableRedirect { 53 | padding: 20px; 54 | color: #3B32EF; 55 | } -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | padding: 0; 4 | margin: 0; 5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 7 | } 8 | 9 | a { 10 | color: inherit; 11 | text-decoration: none; 12 | } 13 | 14 | * { 15 | box-sizing: border-box; 16 | } 17 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime-corejs3@^7.10.2": 6 | version "7.17.9" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz#3d02d0161f0fbf3ada8e88159375af97690f4055" 8 | integrity sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw== 9 | dependencies: 10 | core-js-pure "^3.20.2" 11 | regenerator-runtime "^0.13.4" 12 | 13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3": 14 | version "7.17.9" 15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72" 16 | integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg== 17 | dependencies: 18 | regenerator-runtime "^0.13.4" 19 | 20 | "@eslint/eslintrc@^1.2.1": 21 | version "1.2.1" 22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6" 23 | integrity sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ== 24 | dependencies: 25 | ajv "^6.12.4" 26 | debug "^4.3.2" 27 | espree "^9.3.1" 28 | globals "^13.9.0" 29 | ignore "^5.2.0" 30 | import-fresh "^3.2.1" 31 | js-yaml "^4.1.0" 32 | minimatch "^3.0.4" 33 | strip-json-comments "^3.1.1" 34 | 35 | "@firebase/analytics-types@0.4.0": 36 | version "0.4.0" 37 | resolved "https://registry.yarnpkg.com/@firebase/analytics-types/-/analytics-types-0.4.0.tgz#d6716f9fa36a6e340bc0ecfe68af325aa6f60508" 38 | integrity sha512-Jj2xW+8+8XPfWGkv9HPv/uR+Qrmq37NPYT352wf7MvE9LrstpLVmFg3LqG6MCRr5miLAom5sen2gZ+iOhVDeRA== 39 | 40 | "@firebase/analytics@0.6.1": 41 | version "0.6.1" 42 | resolved "https://registry.yarnpkg.com/@firebase/analytics/-/analytics-0.6.1.tgz#dea1504e75563b516f637d4e62c2fb887be54796" 43 | integrity sha512-Pn7KPkH/M2JXoyoDHfdSjTBHTlnqe6rHo/vjsSvveA46dUP/GfDpcKWGfy/OBXKrIvKUVP7ZhyZo0Gb6jKB0cw== 44 | dependencies: 45 | "@firebase/analytics-types" "0.4.0" 46 | "@firebase/component" "0.1.20" 47 | "@firebase/installations" "0.4.18" 48 | "@firebase/logger" "0.2.6" 49 | "@firebase/util" "0.3.3" 50 | tslib "^1.11.1" 51 | 52 | "@firebase/app-types@0.6.1": 53 | version "0.6.1" 54 | resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.6.1.tgz#dcbd23030a71c0c74fc95d4a3f75ba81653850e9" 55 | integrity sha512-L/ZnJRAq7F++utfuoTKX4CLBG5YR7tFO3PLzG1/oXXKEezJ0kRL3CMRoueBEmTCzVb/6SIs2Qlaw++uDgi5Xyg== 56 | 57 | "@firebase/app@0.6.12": 58 | version "0.6.12" 59 | resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.6.12.tgz#003fbee35ea31e9ce21b86d92070cd7d61047dd9" 60 | integrity sha512-gko1NxRLJn+BMqDK6GBhcCDApD5rX5zhNfS7frl/uic8us9GnAuo6NtHuO0Q+AAjYB1Sv3YtPLXI7ckQEO9Wew== 61 | dependencies: 62 | "@firebase/app-types" "0.6.1" 63 | "@firebase/component" "0.1.20" 64 | "@firebase/logger" "0.2.6" 65 | "@firebase/util" "0.3.3" 66 | dom-storage "2.1.0" 67 | tslib "^1.11.1" 68 | xmlhttprequest "1.8.0" 69 | 70 | "@firebase/auth-interop-types@0.1.5": 71 | version "0.1.5" 72 | resolved "https://registry.yarnpkg.com/@firebase/auth-interop-types/-/auth-interop-types-0.1.5.tgz#9fc9bd7c879f16b8d1bb08373a0f48c3a8b74557" 73 | integrity sha512-88h74TMQ6wXChPA6h9Q3E1Jg6TkTHep2+k63OWg3s0ozyGVMeY+TTOti7PFPzq5RhszQPQOoCi59es4MaRvgCw== 74 | 75 | "@firebase/auth-types@0.10.1": 76 | version "0.10.1" 77 | resolved "https://registry.yarnpkg.com/@firebase/auth-types/-/auth-types-0.10.1.tgz#7815e71c9c6f072034415524b29ca8f1d1770660" 78 | integrity sha512-/+gBHb1O9x/YlG7inXfxff/6X3BPZt4zgBv4kql6HEmdzNQCodIRlEYnI+/da+lN+dha7PjaFH7C7ewMmfV7rw== 79 | 80 | "@firebase/auth@0.15.1": 81 | version "0.15.1" 82 | resolved "https://registry.yarnpkg.com/@firebase/auth/-/auth-0.15.1.tgz#2e0e7397d6f754d81916babd9bce21a51f4b25a3" 83 | integrity sha512-qVJTmq/6l3/o6V93nAD+n1ExTywbKEFYbuuI1TZIUryy5KSXOFnxilmZI4yJeQSZ3ee06YiJsIRYRaYUeg6JQQ== 84 | dependencies: 85 | "@firebase/auth-types" "0.10.1" 86 | 87 | "@firebase/component@0.1.20": 88 | version "0.1.20" 89 | resolved "https://registry.yarnpkg.com/@firebase/component/-/component-0.1.20.tgz#bc8ab0e40d181783c477f68de57e585be96405eb" 90 | integrity sha512-UF9kBCco3U5AMJVNrup8kzOjksvmjmwL88vr/cL3BQ7DeTZWMf15iBOmBf+9HnhtPboN8Cw+84VT21aXGHBgNQ== 91 | dependencies: 92 | "@firebase/util" "0.3.3" 93 | tslib "^1.11.1" 94 | 95 | "@firebase/database-types@0.6.0": 96 | version "0.6.0" 97 | resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.6.0.tgz#7795bc6b1db93f4cbda9a241c8dfe1bb86033dc6" 98 | integrity sha512-ljpU7/uboCGqFSe9CNgwd3+Xu5N8YCunzfPpeueuj2vjnmmypUi4QWxgC3UKtGbuv1q+crjeudZGLxnUoO0h7w== 99 | dependencies: 100 | "@firebase/app-types" "0.6.1" 101 | 102 | "@firebase/database@0.7.0": 103 | version "0.7.0" 104 | resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.7.0.tgz#969b69e5ac6a9ef6c388a2a50fcdf7ea44fbc580" 105 | integrity sha512-pVio41uGhy6HNSk1uBHq9wTzO83bg2Jb527XFILIk4p/KFBbuQwKnQn+65SfnsDlElC1HjHBerTaonHLYevJqA== 106 | dependencies: 107 | "@firebase/auth-interop-types" "0.1.5" 108 | "@firebase/component" "0.1.20" 109 | "@firebase/database-types" "0.6.0" 110 | "@firebase/logger" "0.2.6" 111 | "@firebase/util" "0.3.3" 112 | faye-websocket "0.11.3" 113 | tslib "^1.11.1" 114 | 115 | "@firebase/firestore-types@2.0.0": 116 | version "2.0.0" 117 | resolved "https://registry.yarnpkg.com/@firebase/firestore-types/-/firestore-types-2.0.0.tgz#1f6212553b240f1a8905bb8dcf1f87769138c5c0" 118 | integrity sha512-ZGb7p1SSQJP0Z+kc9GAUi+Fx5rJatFddBrS1ikkayW+QHfSIz0omU23OgSHcBGTxe8dJCeKiKA2Yf+tkDKO/LA== 119 | 120 | "@firebase/firestore@2.0.0": 121 | version "2.0.0" 122 | resolved "https://registry.yarnpkg.com/@firebase/firestore/-/firestore-2.0.0.tgz#d12841165788da148299d73babec62bf8e16154e" 123 | integrity sha512-KHp5/yRmdQkpfGg8zotTJlUweXVsTe6Ip68iruc51VhYjWgmIb5QorelE1N5+O3kFqiDTOfBfeCXaO14bXk4wA== 124 | dependencies: 125 | "@firebase/component" "0.1.20" 126 | "@firebase/firestore-types" "2.0.0" 127 | "@firebase/logger" "0.2.6" 128 | "@firebase/util" "0.3.3" 129 | "@firebase/webchannel-wrapper" "0.4.0" 130 | "@grpc/grpc-js" "^1.0.0" 131 | "@grpc/proto-loader" "^0.5.0" 132 | node-fetch "2.6.1" 133 | tslib "^1.11.1" 134 | 135 | "@firebase/functions-types@0.4.0": 136 | version "0.4.0" 137 | resolved "https://registry.yarnpkg.com/@firebase/functions-types/-/functions-types-0.4.0.tgz#0b789f4fe9a9c0b987606c4da10139345b40f6b9" 138 | integrity sha512-3KElyO3887HNxtxNF1ytGFrNmqD+hheqjwmT3sI09FaDCuaxGbOnsXAXH2eQ049XRXw9YQpHMgYws/aUNgXVyQ== 139 | 140 | "@firebase/functions@0.6.0": 141 | version "0.6.0" 142 | resolved "https://registry.yarnpkg.com/@firebase/functions/-/functions-0.6.0.tgz#38e4ba62885c25c631ff53469a8aa5fbbd3ff9d9" 143 | integrity sha512-XDVyDLBJwGCqI/agGxRrPYfit7HTcOSXTrjlC8NJr5+h3zzUuAB/+VEfaa8mSEZR+0AjY67B1cPed0WuXsU48g== 144 | dependencies: 145 | "@firebase/component" "0.1.20" 146 | "@firebase/functions-types" "0.4.0" 147 | "@firebase/messaging-types" "0.5.0" 148 | node-fetch "2.6.1" 149 | tslib "^1.11.1" 150 | 151 | "@firebase/installations-types@0.3.4": 152 | version "0.3.4" 153 | resolved "https://registry.yarnpkg.com/@firebase/installations-types/-/installations-types-0.3.4.tgz#589a941d713f4f64bf9f4feb7f463505bab1afa2" 154 | integrity sha512-RfePJFovmdIXb6rYwtngyxuEcWnOrzdZd9m7xAW0gRxDIjBT20n3BOhjpmgRWXo/DAxRmS7bRjWAyTHY9cqN7Q== 155 | 156 | "@firebase/installations@0.4.18": 157 | version "0.4.18" 158 | resolved "https://registry.yarnpkg.com/@firebase/installations/-/installations-0.4.18.tgz#2a1842ae25521e170c7915e8a97bf8180e0d578b" 159 | integrity sha512-el1PvpVbsNb6uXIoSKzI0A52K+h8yeLvI1tjMqdjnp+0xZQr2pwRJcBMvzt6aLrgBT06jMVB3R+fxfxxqgoO2g== 160 | dependencies: 161 | "@firebase/component" "0.1.20" 162 | "@firebase/installations-types" "0.3.4" 163 | "@firebase/util" "0.3.3" 164 | idb "3.0.2" 165 | tslib "^1.11.1" 166 | 167 | "@firebase/logger@0.2.6": 168 | version "0.2.6" 169 | resolved "https://registry.yarnpkg.com/@firebase/logger/-/logger-0.2.6.tgz#3aa2ca4fe10327cabf7808bd3994e88db26d7989" 170 | integrity sha512-KIxcUvW/cRGWlzK9Vd2KB864HlUnCfdTH0taHE0sXW5Xl7+W68suaeau1oKNEqmc3l45azkd4NzXTCWZRZdXrw== 171 | 172 | "@firebase/messaging-types@0.5.0": 173 | version "0.5.0" 174 | resolved "https://registry.yarnpkg.com/@firebase/messaging-types/-/messaging-types-0.5.0.tgz#c5d0ef309ced1758fda93ef3ac70a786de2e73c4" 175 | integrity sha512-QaaBswrU6umJYb/ZYvjR5JDSslCGOH6D9P136PhabFAHLTR4TWjsaACvbBXuvwrfCXu10DtcjMxqfhdNIB1Xfg== 176 | 177 | "@firebase/messaging@0.7.2": 178 | version "0.7.2" 179 | resolved "https://registry.yarnpkg.com/@firebase/messaging/-/messaging-0.7.2.tgz#f9000d2837c37c163ad9eadc93220a72cced0daf" 180 | integrity sha512-5FzxklNgZS5S03p0eKvhsj6mLGG06qgnaLEbLluKeuDJ5STR/+gWySuCdP9BhcJCsTGN77Qwa06MLK/d46R0rQ== 181 | dependencies: 182 | "@firebase/component" "0.1.20" 183 | "@firebase/installations" "0.4.18" 184 | "@firebase/messaging-types" "0.5.0" 185 | "@firebase/util" "0.3.3" 186 | idb "3.0.2" 187 | tslib "^1.11.1" 188 | 189 | "@firebase/performance-types@0.0.13": 190 | version "0.0.13" 191 | resolved "https://registry.yarnpkg.com/@firebase/performance-types/-/performance-types-0.0.13.tgz#58ce5453f57e34b18186f74ef11550dfc558ede6" 192 | integrity sha512-6fZfIGjQpwo9S5OzMpPyqgYAUZcFzZxHFqOyNtorDIgNXq33nlldTL/vtaUZA8iT9TT5cJlCrF/jthKU7X21EA== 193 | 194 | "@firebase/performance@0.4.3": 195 | version "0.4.3" 196 | resolved "https://registry.yarnpkg.com/@firebase/performance/-/performance-0.4.3.tgz#f64b914a7cc3bf8dc533755de89d8b827e34eec3" 197 | integrity sha512-oP7EvI8qvlAJgVGY25ZabXl/Xb82ykxKyYP+xNDs0Imdg+8GBOfzqQiGpM+BqovhTTdGPcpJmry7JYwpWMZ8bg== 198 | dependencies: 199 | "@firebase/component" "0.1.20" 200 | "@firebase/installations" "0.4.18" 201 | "@firebase/logger" "0.2.6" 202 | "@firebase/performance-types" "0.0.13" 203 | "@firebase/util" "0.3.3" 204 | tslib "^1.11.1" 205 | 206 | "@firebase/polyfill@0.3.36": 207 | version "0.3.36" 208 | resolved "https://registry.yarnpkg.com/@firebase/polyfill/-/polyfill-0.3.36.tgz#c057cce6748170f36966b555749472b25efdb145" 209 | integrity sha512-zMM9oSJgY6cT2jx3Ce9LYqb0eIpDE52meIzd/oe/y70F+v9u1LDqk5kUF5mf16zovGBWMNFmgzlsh6Wj0OsFtg== 210 | dependencies: 211 | core-js "3.6.5" 212 | promise-polyfill "8.1.3" 213 | whatwg-fetch "2.0.4" 214 | 215 | "@firebase/remote-config-types@0.1.9": 216 | version "0.1.9" 217 | resolved "https://registry.yarnpkg.com/@firebase/remote-config-types/-/remote-config-types-0.1.9.tgz#fe6bbe4d08f3b6e92fce30e4b7a9f4d6a96d6965" 218 | integrity sha512-G96qnF3RYGbZsTRut7NBX0sxyczxt1uyCgXQuH/eAfUCngxjEGcZQnBdy6mvSdqdJh5mC31rWPO4v9/s7HwtzA== 219 | 220 | "@firebase/remote-config@0.1.29": 221 | version "0.1.29" 222 | resolved "https://registry.yarnpkg.com/@firebase/remote-config/-/remote-config-0.1.29.tgz#a7e76e3f16a7c4fa07e203cc721dfbc975959dcc" 223 | integrity sha512-VuKoubiE/kEfp5FXx7Nxw5c1TRYApBey7zdwTu/+U7qZFofHnUGDZs1vu82xTRnwbPtxh228FOwpZZ0iTrpVtA== 224 | dependencies: 225 | "@firebase/component" "0.1.20" 226 | "@firebase/installations" "0.4.18" 227 | "@firebase/logger" "0.2.6" 228 | "@firebase/remote-config-types" "0.1.9" 229 | "@firebase/util" "0.3.3" 230 | tslib "^1.11.1" 231 | 232 | "@firebase/storage-types@0.3.13": 233 | version "0.3.13" 234 | resolved "https://registry.yarnpkg.com/@firebase/storage-types/-/storage-types-0.3.13.tgz#cd43e939a2ab5742e109eb639a313673a48b5458" 235 | integrity sha512-pL7b8d5kMNCCL0w9hF7pr16POyKkb3imOW7w0qYrhBnbyJTdVxMWZhb0HxCFyQWC0w3EiIFFmxoz8NTFZDEFog== 236 | 237 | "@firebase/storage@0.4.0": 238 | version "0.4.0" 239 | resolved "https://registry.yarnpkg.com/@firebase/storage/-/storage-0.4.0.tgz#713d6a5a78880a4ee66afacb9ff47f5e293d3201" 240 | integrity sha512-6AG1g2WbbVxscf40rHar+IAk6ocvg8IOM5NmlXHxcXt9KENSQYGNiHsGEROm+W7FOx2izuHTEfqPUr8Qh5EwNA== 241 | dependencies: 242 | "@firebase/component" "0.1.20" 243 | "@firebase/storage-types" "0.3.13" 244 | "@firebase/util" "0.3.3" 245 | tslib "^1.11.1" 246 | 247 | "@firebase/util@0.3.3": 248 | version "0.3.3" 249 | resolved "https://registry.yarnpkg.com/@firebase/util/-/util-0.3.3.tgz#f85db70ca6ededd3d67c05c5f63c6da78a8aec00" 250 | integrity sha512-VBuyR+6QAvrumzEtp3hMTRYkDnvsWuDMzqObca2Phn30RJTEV24P1RSMG5fw8LbSE+KkD9WiiiMJN++YoeyFaA== 251 | dependencies: 252 | tslib "^1.11.1" 253 | 254 | "@firebase/webchannel-wrapper@0.4.0": 255 | version "0.4.0" 256 | resolved "https://registry.yarnpkg.com/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.4.0.tgz#becce788818d3f47f0ac1a74c3c061ac1dcf4f6d" 257 | integrity sha512-8cUA/mg0S+BxIZ72TdZRsXKBP5n5uRcE3k29TZhZw6oIiHBt9JA7CTb/4pE1uKtE/q5NeTY2tBDcagoZ+1zjXQ== 258 | 259 | "@grpc/grpc-js@^1.0.0": 260 | version "1.6.2" 261 | resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.6.2.tgz#fbaceefd163f4886e39501aea32a19c0fe802232" 262 | integrity sha512-9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA== 263 | dependencies: 264 | "@grpc/proto-loader" "^0.6.4" 265 | "@types/node" ">=12.12.47" 266 | 267 | "@grpc/proto-loader@^0.5.0": 268 | version "0.5.6" 269 | resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.5.6.tgz#1dea4b8a6412b05e2d58514d507137b63a52a98d" 270 | integrity sha512-DT14xgw3PSzPxwS13auTEwxhMMOoz33DPUKNtmYK/QYbBSpLXJy78FGGs5yVoxVobEqPm4iW9MOIoz0A3bLTRQ== 271 | dependencies: 272 | lodash.camelcase "^4.3.0" 273 | protobufjs "^6.8.6" 274 | 275 | "@grpc/proto-loader@^0.6.4": 276 | version "0.6.9" 277 | resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.6.9.tgz#4014eef366da733f8e04a9ddd7376fe8a58547b7" 278 | integrity sha512-UlcCS8VbsU9d3XTXGiEVFonN7hXk+oMXZtoHHG2oSA1/GcDP1q6OUgs20PzHDGizzyi8ufGSUDlk3O2NyY7leg== 279 | dependencies: 280 | "@types/long" "^4.0.1" 281 | lodash.camelcase "^4.3.0" 282 | long "^4.0.0" 283 | protobufjs "^6.10.0" 284 | yargs "^16.2.0" 285 | 286 | "@humanwhocodes/config-array@^0.9.2": 287 | version "0.9.5" 288 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" 289 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== 290 | dependencies: 291 | "@humanwhocodes/object-schema" "^1.2.1" 292 | debug "^4.1.1" 293 | minimatch "^3.0.4" 294 | 295 | "@humanwhocodes/object-schema@^1.2.1": 296 | version "1.2.1" 297 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 298 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 299 | 300 | "@next/env@12.1.4": 301 | version "12.1.4" 302 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.4.tgz#5af629b43075281ecd7f87938802b7cf5b67e94b" 303 | integrity sha512-7gQwotJDKnfMxxXd8xJ2vsX5AzyDxO3zou0+QOXX8/unypA6icw5+wf6A62yKZ6qQ4UZHHxS68pb6UV+wNneXg== 304 | 305 | "@next/eslint-plugin-next@12.1.4": 306 | version "12.1.4" 307 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.4.tgz#9c52637af8eecab24dac3f2e5098376f6fc2dff4" 308 | integrity sha512-BRy565KVK6Cdy8LHaHTiwctLqBu/RT84RLpESug70BDJzBlV8QBvODyx/j7wGhvYqp9kvstM05lyb6JaTkSCcQ== 309 | dependencies: 310 | glob "7.1.7" 311 | 312 | "@next/swc-android-arm-eabi@12.1.4": 313 | version "12.1.4" 314 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.4.tgz#c3dae178b7c15ad627d2e9b8dfb38caecb5c4ac7" 315 | integrity sha512-FJg/6a3s2YrUaqZ+/DJZzeZqfxbbWrynQMT1C5wlIEq9aDLXCFpPM/PiOyJh0ahxc0XPmi6uo38Poq+GJTuKWw== 316 | 317 | "@next/swc-android-arm64@12.1.4": 318 | version "12.1.4" 319 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.4.tgz#f320d60639e19ecffa1f9034829f2d95502a9a51" 320 | integrity sha512-LXraazvQQFBgxIg3Htny6G5V5he9EK7oS4jWtMdTGIikmD/OGByOv8ZjLuVLZLtVm3UIvaAiGtlQSLecxJoJDw== 321 | 322 | "@next/swc-darwin-arm64@12.1.4": 323 | version "12.1.4" 324 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.4.tgz#fd578278312613eddcf3aee26910100509941b63" 325 | integrity sha512-SSST/dBymecllZxcqTCcSTCu5o1NKk9I+xcvhn/O9nH6GWjgvGgGkNqLbCarCa0jJ1ukvlBA138FagyrmZ/4rQ== 326 | 327 | "@next/swc-darwin-x64@12.1.4": 328 | version "12.1.4" 329 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.4.tgz#ace5f80d8c8348efe194f6d7074c6213c52b3944" 330 | integrity sha512-p1lwdX0TVjaoDXQVuAkjtxVBbCL/urgxiMCBwuPDO7TikpXtSRivi+mIzBj5q7ypgICFmIAOW3TyupXeoPRAnA== 331 | 332 | "@next/swc-linux-arm-gnueabihf@12.1.4": 333 | version "12.1.4" 334 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.4.tgz#2bf2c83863635f19c71c226a2df936e001cce29c" 335 | integrity sha512-67PZlgkCn3TDxacdVft0xqDCL7Io1/C4xbAs0+oSQ0xzp6OzN2RNpuKjHJrJgKd0DsE1XZ9sCP27Qv0591yfyg== 336 | 337 | "@next/swc-linux-arm64-gnu@12.1.4": 338 | version "12.1.4" 339 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.4.tgz#d577190f641c9b4b463719dd6b8953b6ba9be8d9" 340 | integrity sha512-OnOWixhhw7aU22TQdQLYrgpgFq0oA1wGgnjAiHJ+St7MLj82KTDyM9UcymAMbGYy6nG/TFOOHdTmRMtCRNOw0g== 341 | 342 | "@next/swc-linux-arm64-musl@12.1.4": 343 | version "12.1.4" 344 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.4.tgz#e70ffe70393d8f9242deecdb282ce5a8fd588b14" 345 | integrity sha512-UoRMzPZnsAavdWtVylYxH8DNC7Uy0i6RrvNwT4PyQVdfANBn2omsUkcH5lgS2O7oaz0nAYLk1vqyZDO7+tJotA== 346 | 347 | "@next/swc-linux-x64-gnu@12.1.4": 348 | version "12.1.4" 349 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.4.tgz#91498a130387fb1961902f2bee55863f8e910cff" 350 | integrity sha512-nM+MA/frxlTLUKLJKorctdI20/ugfHRjVEEkcLp/58LGG7slNaP1E5d5dRA1yX6ISjPcQAkywas5VlGCg+uTvA== 351 | 352 | "@next/swc-linux-x64-musl@12.1.4": 353 | version "12.1.4" 354 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.4.tgz#78057b03c148c121553d41521ad38f6c732762ff" 355 | integrity sha512-GoRHxkuW4u4yKw734B9SzxJwVdyEJosaZ62P7ifOwcujTxhgBt3y76V2nNUrsSuopcKI2ZTDjaa+2wd5zyeXbA== 356 | 357 | "@next/swc-win32-arm64-msvc@12.1.4": 358 | version "12.1.4" 359 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.4.tgz#05bbaabacac23b8edf6caa99eb86b17550a09051" 360 | integrity sha512-6TQkQze0ievXwHJcVUrIULwCYVe3ccX6T0JgZ1SiMeXpHxISN7VJF/O8uSCw1JvXZYZ6ud0CJ7nfC5HXivgfPg== 361 | 362 | "@next/swc-win32-ia32-msvc@12.1.4": 363 | version "12.1.4" 364 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.4.tgz#8fd2fb48f04a2802e51fc320878bf6b411c1c866" 365 | integrity sha512-CsbX/IXuZ5VSmWCpSetG2HD6VO5FTsO39WNp2IR2Ut/uom9XtLDJAZqjQEnbUTLGHuwDKFjrIO3LkhtROXLE/g== 366 | 367 | "@next/swc-win32-x64-msvc@12.1.4": 368 | version "12.1.4" 369 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.4.tgz#a72ed44c9b1f850986a30fe36c59e01f8a79b5f3" 370 | integrity sha512-JtYuWzKXKLDMgE/xTcFtCm1MiCIRaAc5XYZfYX3n/ZWSI1SJS/GMm+Su0SAHJgRFavJh6U/p998YwO/iGTIgqQ== 371 | 372 | "@nodelib/fs.scandir@2.1.5": 373 | version "2.1.5" 374 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 375 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 376 | dependencies: 377 | "@nodelib/fs.stat" "2.0.5" 378 | run-parallel "^1.1.9" 379 | 380 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 381 | version "2.0.5" 382 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 383 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 384 | 385 | "@nodelib/fs.walk@^1.2.3": 386 | version "1.2.8" 387 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 388 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 389 | dependencies: 390 | "@nodelib/fs.scandir" "2.1.5" 391 | fastq "^1.6.0" 392 | 393 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": 394 | version "1.1.2" 395 | resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" 396 | integrity sha1-m4sMxmPWaafY9vXQiToU00jzD78= 397 | 398 | "@protobufjs/base64@^1.1.2": 399 | version "1.1.2" 400 | resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" 401 | integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== 402 | 403 | "@protobufjs/codegen@^2.0.4": 404 | version "2.0.4" 405 | resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" 406 | integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== 407 | 408 | "@protobufjs/eventemitter@^1.1.0": 409 | version "1.1.0" 410 | resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" 411 | integrity sha1-NVy8mLr61ZePntCV85diHx0Ga3A= 412 | 413 | "@protobufjs/fetch@^1.1.0": 414 | version "1.1.0" 415 | resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" 416 | integrity sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU= 417 | dependencies: 418 | "@protobufjs/aspromise" "^1.1.1" 419 | "@protobufjs/inquire" "^1.1.0" 420 | 421 | "@protobufjs/float@^1.0.2": 422 | version "1.0.2" 423 | resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" 424 | integrity sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E= 425 | 426 | "@protobufjs/inquire@^1.1.0": 427 | version "1.1.0" 428 | resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" 429 | integrity sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik= 430 | 431 | "@protobufjs/path@^1.1.2": 432 | version "1.1.2" 433 | resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" 434 | integrity sha1-bMKyDFya1q0NzP0hynZz2Nf79o0= 435 | 436 | "@protobufjs/pool@^1.1.0": 437 | version "1.1.0" 438 | resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" 439 | integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q= 440 | 441 | "@protobufjs/utf8@^1.1.0": 442 | version "1.1.0" 443 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 444 | integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= 445 | 446 | "@rushstack/eslint-patch@1.0.8": 447 | version "1.0.8" 448 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.0.8.tgz#be3e914e84eacf16dbebd311c0d0b44aa1174c64" 449 | integrity sha512-ZK5v4bJwgXldAUA8r3q9YKfCwOqoHTK/ZqRjSeRXQrBXWouoPnS4MQtgC4AXGiiBuUu5wxrRgTlv0ktmM4P1Aw== 450 | 451 | "@types/json5@^0.0.29": 452 | version "0.0.29" 453 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 454 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 455 | 456 | "@types/long@^4.0.1": 457 | version "4.0.1" 458 | resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz#459c65fa1867dafe6a8f322c4c51695663cc55e9" 459 | integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w== 460 | 461 | "@types/node@>=12.12.47", "@types/node@>=13.7.0": 462 | version "17.0.23" 463 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz#3b41a6e643589ac6442bdbd7a4a3ded62f33f7da" 464 | integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw== 465 | 466 | "@typescript-eslint/parser@5.10.1": 467 | version "5.10.1" 468 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.10.1.tgz#4ce9633cc33fc70bc13786cb793c1a76fe5ad6bd" 469 | integrity sha512-GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA== 470 | dependencies: 471 | "@typescript-eslint/scope-manager" "5.10.1" 472 | "@typescript-eslint/types" "5.10.1" 473 | "@typescript-eslint/typescript-estree" "5.10.1" 474 | debug "^4.3.2" 475 | 476 | "@typescript-eslint/scope-manager@5.10.1": 477 | version "5.10.1" 478 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz#f0539c73804d2423506db2475352a4dec36cd809" 479 | integrity sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg== 480 | dependencies: 481 | "@typescript-eslint/types" "5.10.1" 482 | "@typescript-eslint/visitor-keys" "5.10.1" 483 | 484 | "@typescript-eslint/types@5.10.1": 485 | version "5.10.1" 486 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.10.1.tgz#dca9bd4cb8c067fc85304a31f38ec4766ba2d1ea" 487 | integrity sha512-ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q== 488 | 489 | "@typescript-eslint/typescript-estree@5.10.1": 490 | version "5.10.1" 491 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.1.tgz#b268e67be0553f8790ba3fe87113282977adda15" 492 | integrity sha512-PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ== 493 | dependencies: 494 | "@typescript-eslint/types" "5.10.1" 495 | "@typescript-eslint/visitor-keys" "5.10.1" 496 | debug "^4.3.2" 497 | globby "^11.0.4" 498 | is-glob "^4.0.3" 499 | semver "^7.3.5" 500 | tsutils "^3.21.0" 501 | 502 | "@typescript-eslint/visitor-keys@5.10.1": 503 | version "5.10.1" 504 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.1.tgz#29102de692f59d7d34ecc457ed59ab5fc558010b" 505 | integrity sha512-NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ== 506 | dependencies: 507 | "@typescript-eslint/types" "5.10.1" 508 | eslint-visitor-keys "^3.0.0" 509 | 510 | acorn-jsx@^5.3.1: 511 | version "5.3.2" 512 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 513 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 514 | 515 | acorn@^8.7.0: 516 | version "8.7.0" 517 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" 518 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== 519 | 520 | ajv@^6.10.0, ajv@^6.12.4: 521 | version "6.12.6" 522 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 523 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 524 | dependencies: 525 | fast-deep-equal "^3.1.1" 526 | fast-json-stable-stringify "^2.0.0" 527 | json-schema-traverse "^0.4.1" 528 | uri-js "^4.2.2" 529 | 530 | ansi-regex@^5.0.1: 531 | version "5.0.1" 532 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 533 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 534 | 535 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 536 | version "4.3.0" 537 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 538 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 539 | dependencies: 540 | color-convert "^2.0.1" 541 | 542 | argparse@^2.0.1: 543 | version "2.0.1" 544 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 545 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 546 | 547 | aria-query@^4.2.2: 548 | version "4.2.2" 549 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 550 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 551 | dependencies: 552 | "@babel/runtime" "^7.10.2" 553 | "@babel/runtime-corejs3" "^7.10.2" 554 | 555 | array-includes@^3.1.4: 556 | version "3.1.4" 557 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" 558 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== 559 | dependencies: 560 | call-bind "^1.0.2" 561 | define-properties "^1.1.3" 562 | es-abstract "^1.19.1" 563 | get-intrinsic "^1.1.1" 564 | is-string "^1.0.7" 565 | 566 | array-union@^2.1.0: 567 | version "2.1.0" 568 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 569 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 570 | 571 | array.prototype.flat@^1.2.5: 572 | version "1.2.5" 573 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13" 574 | integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg== 575 | dependencies: 576 | call-bind "^1.0.2" 577 | define-properties "^1.1.3" 578 | es-abstract "^1.19.0" 579 | 580 | array.prototype.flatmap@^1.2.5: 581 | version "1.2.5" 582 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446" 583 | integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA== 584 | dependencies: 585 | call-bind "^1.0.0" 586 | define-properties "^1.1.3" 587 | es-abstract "^1.19.0" 588 | 589 | ast-types-flow@^0.0.7: 590 | version "0.0.7" 591 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 592 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= 593 | 594 | axe-core@^4.3.5: 595 | version "4.4.1" 596 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413" 597 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw== 598 | 599 | axobject-query@^2.2.0: 600 | version "2.2.0" 601 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 602 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 603 | 604 | balanced-match@^1.0.0: 605 | version "1.0.2" 606 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 607 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 608 | 609 | brace-expansion@^1.1.7: 610 | version "1.1.11" 611 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 612 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 613 | dependencies: 614 | balanced-match "^1.0.0" 615 | concat-map "0.0.1" 616 | 617 | braces@^3.0.2: 618 | version "3.0.2" 619 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 620 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 621 | dependencies: 622 | fill-range "^7.0.1" 623 | 624 | call-bind@^1.0.0, call-bind@^1.0.2: 625 | version "1.0.2" 626 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 627 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 628 | dependencies: 629 | function-bind "^1.1.1" 630 | get-intrinsic "^1.0.2" 631 | 632 | callsites@^3.0.0: 633 | version "3.1.0" 634 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 635 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 636 | 637 | caniuse-lite@^1.0.30001283: 638 | version "1.0.30001325" 639 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001325.tgz#2b4ad19b77aa36f61f2eaf72e636d7481d55e606" 640 | integrity sha512-sB1bZHjseSjDtijV1Hb7PB2Zd58Kyx+n/9EotvZ4Qcz2K3d0lWB8dB4nb8wN/TsOGFq3UuAm0zQZNQ4SoR7TrQ== 641 | 642 | chalk@^4.0.0: 643 | version "4.1.2" 644 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 645 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 646 | dependencies: 647 | ansi-styles "^4.1.0" 648 | supports-color "^7.1.0" 649 | 650 | cliui@^7.0.2: 651 | version "7.0.4" 652 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 653 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 654 | dependencies: 655 | string-width "^4.2.0" 656 | strip-ansi "^6.0.0" 657 | wrap-ansi "^7.0.0" 658 | 659 | color-convert@^2.0.1: 660 | version "2.0.1" 661 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 662 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 663 | dependencies: 664 | color-name "~1.1.4" 665 | 666 | color-name@~1.1.4: 667 | version "1.1.4" 668 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 669 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 670 | 671 | concat-map@0.0.1: 672 | version "0.0.1" 673 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 674 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 675 | 676 | core-js-pure@^3.20.2: 677 | version "3.21.1" 678 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51" 679 | integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ== 680 | 681 | core-js@3.6.5: 682 | version "3.6.5" 683 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" 684 | integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== 685 | 686 | cross-spawn@^7.0.2: 687 | version "7.0.3" 688 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 689 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 690 | dependencies: 691 | path-key "^3.1.0" 692 | shebang-command "^2.0.0" 693 | which "^2.0.1" 694 | 695 | damerau-levenshtein@^1.0.7: 696 | version "1.0.8" 697 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 698 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 699 | 700 | debug@^2.6.9: 701 | version "2.6.9" 702 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 703 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 704 | dependencies: 705 | ms "2.0.0" 706 | 707 | debug@^3.2.7: 708 | version "3.2.7" 709 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 710 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 711 | dependencies: 712 | ms "^2.1.1" 713 | 714 | debug@^4.1.1, debug@^4.3.2: 715 | version "4.3.4" 716 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 717 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 718 | dependencies: 719 | ms "2.1.2" 720 | 721 | deep-is@^0.1.3: 722 | version "0.1.4" 723 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 724 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 725 | 726 | define-properties@^1.1.3: 727 | version "1.1.3" 728 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 729 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 730 | dependencies: 731 | object-keys "^1.0.12" 732 | 733 | dir-glob@^3.0.1: 734 | version "3.0.1" 735 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 736 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 737 | dependencies: 738 | path-type "^4.0.0" 739 | 740 | doctrine@^2.1.0: 741 | version "2.1.0" 742 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 743 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 744 | dependencies: 745 | esutils "^2.0.2" 746 | 747 | doctrine@^3.0.0: 748 | version "3.0.0" 749 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 750 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 751 | dependencies: 752 | esutils "^2.0.2" 753 | 754 | dom-storage@2.1.0: 755 | version "2.1.0" 756 | resolved "https://registry.yarnpkg.com/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39" 757 | integrity sha512-g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q== 758 | 759 | emoji-regex@^8.0.0: 760 | version "8.0.0" 761 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 762 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 763 | 764 | emoji-regex@^9.2.2: 765 | version "9.2.2" 766 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 767 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 768 | 769 | es-abstract@^1.19.0, es-abstract@^1.19.1: 770 | version "1.19.2" 771 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.2.tgz#8f7b696d8f15b167ae3640b4060670f3d054143f" 772 | integrity sha512-gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w== 773 | dependencies: 774 | call-bind "^1.0.2" 775 | es-to-primitive "^1.2.1" 776 | function-bind "^1.1.1" 777 | get-intrinsic "^1.1.1" 778 | get-symbol-description "^1.0.0" 779 | has "^1.0.3" 780 | has-symbols "^1.0.3" 781 | internal-slot "^1.0.3" 782 | is-callable "^1.2.4" 783 | is-negative-zero "^2.0.2" 784 | is-regex "^1.1.4" 785 | is-shared-array-buffer "^1.0.1" 786 | is-string "^1.0.7" 787 | is-weakref "^1.0.2" 788 | object-inspect "^1.12.0" 789 | object-keys "^1.1.1" 790 | object.assign "^4.1.2" 791 | string.prototype.trimend "^1.0.4" 792 | string.prototype.trimstart "^1.0.4" 793 | unbox-primitive "^1.0.1" 794 | 795 | es-to-primitive@^1.2.1: 796 | version "1.2.1" 797 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 798 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 799 | dependencies: 800 | is-callable "^1.1.4" 801 | is-date-object "^1.0.1" 802 | is-symbol "^1.0.2" 803 | 804 | escalade@^3.1.1: 805 | version "3.1.1" 806 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 807 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 808 | 809 | escape-string-regexp@^4.0.0: 810 | version "4.0.0" 811 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 812 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 813 | 814 | eslint-config-next@12.1.4: 815 | version "12.1.4" 816 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.4.tgz#939ea2ff33034763300bf1e62482cea91212d274" 817 | integrity sha512-Uj0jrVjoQbg9qerxRjSHoOOv3PEzoZxpb8G9LYct25fsflP8xIiUq0l4WEu2KSB5owuLv5hie7wSMqPEsHj+bQ== 818 | dependencies: 819 | "@next/eslint-plugin-next" "12.1.4" 820 | "@rushstack/eslint-patch" "1.0.8" 821 | "@typescript-eslint/parser" "5.10.1" 822 | eslint-import-resolver-node "0.3.4" 823 | eslint-import-resolver-typescript "2.4.0" 824 | eslint-plugin-import "2.25.2" 825 | eslint-plugin-jsx-a11y "6.5.1" 826 | eslint-plugin-react "7.29.1" 827 | eslint-plugin-react-hooks "4.3.0" 828 | 829 | eslint-import-resolver-node@0.3.4: 830 | version "0.3.4" 831 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 832 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 833 | dependencies: 834 | debug "^2.6.9" 835 | resolve "^1.13.1" 836 | 837 | eslint-import-resolver-node@^0.3.6: 838 | version "0.3.6" 839 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 840 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 841 | dependencies: 842 | debug "^3.2.7" 843 | resolve "^1.20.0" 844 | 845 | eslint-import-resolver-typescript@2.4.0: 846 | version "2.4.0" 847 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1" 848 | integrity sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA== 849 | dependencies: 850 | debug "^4.1.1" 851 | glob "^7.1.6" 852 | is-glob "^4.0.1" 853 | resolve "^1.17.0" 854 | tsconfig-paths "^3.9.0" 855 | 856 | eslint-module-utils@^2.7.0: 857 | version "2.7.3" 858 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" 859 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== 860 | dependencies: 861 | debug "^3.2.7" 862 | find-up "^2.1.0" 863 | 864 | eslint-plugin-import@2.25.2: 865 | version "2.25.2" 866 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.2.tgz#b3b9160efddb702fc1636659e71ba1d10adbe9e9" 867 | integrity sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g== 868 | dependencies: 869 | array-includes "^3.1.4" 870 | array.prototype.flat "^1.2.5" 871 | debug "^2.6.9" 872 | doctrine "^2.1.0" 873 | eslint-import-resolver-node "^0.3.6" 874 | eslint-module-utils "^2.7.0" 875 | has "^1.0.3" 876 | is-core-module "^2.7.0" 877 | is-glob "^4.0.3" 878 | minimatch "^3.0.4" 879 | object.values "^1.1.5" 880 | resolve "^1.20.0" 881 | tsconfig-paths "^3.11.0" 882 | 883 | eslint-plugin-jsx-a11y@6.5.1: 884 | version "6.5.1" 885 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8" 886 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g== 887 | dependencies: 888 | "@babel/runtime" "^7.16.3" 889 | aria-query "^4.2.2" 890 | array-includes "^3.1.4" 891 | ast-types-flow "^0.0.7" 892 | axe-core "^4.3.5" 893 | axobject-query "^2.2.0" 894 | damerau-levenshtein "^1.0.7" 895 | emoji-regex "^9.2.2" 896 | has "^1.0.3" 897 | jsx-ast-utils "^3.2.1" 898 | language-tags "^1.0.5" 899 | minimatch "^3.0.4" 900 | 901 | eslint-plugin-react-hooks@4.3.0: 902 | version "4.3.0" 903 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172" 904 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== 905 | 906 | eslint-plugin-react@7.29.1: 907 | version "7.29.1" 908 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.29.1.tgz#6c40bc83142bb63d132a1b3565e2ea655411f800" 909 | integrity sha512-WtzRpHMhsOX05ZrkyaaqmLl2uXGqmYooCfBxftJKlkYdsltiufGgfU7uuoHwR2lBam2Kh/EIVID4aU9e3kbCMA== 910 | dependencies: 911 | array-includes "^3.1.4" 912 | array.prototype.flatmap "^1.2.5" 913 | doctrine "^2.1.0" 914 | estraverse "^5.3.0" 915 | jsx-ast-utils "^2.4.1 || ^3.0.0" 916 | minimatch "^3.1.2" 917 | object.entries "^1.1.5" 918 | object.fromentries "^2.0.5" 919 | object.hasown "^1.1.0" 920 | object.values "^1.1.5" 921 | prop-types "^15.8.1" 922 | resolve "^2.0.0-next.3" 923 | semver "^6.3.0" 924 | string.prototype.matchall "^4.0.6" 925 | 926 | eslint-scope@^7.1.1: 927 | version "7.1.1" 928 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 929 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 930 | dependencies: 931 | esrecurse "^4.3.0" 932 | estraverse "^5.2.0" 933 | 934 | eslint-utils@^3.0.0: 935 | version "3.0.0" 936 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 937 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 938 | dependencies: 939 | eslint-visitor-keys "^2.0.0" 940 | 941 | eslint-visitor-keys@^2.0.0: 942 | version "2.1.0" 943 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 944 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 945 | 946 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0: 947 | version "3.3.0" 948 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 949 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 950 | 951 | eslint@8.12.0: 952 | version "8.12.0" 953 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.12.0.tgz#c7a5bd1cfa09079aae64c9076c07eada66a46e8e" 954 | integrity sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q== 955 | dependencies: 956 | "@eslint/eslintrc" "^1.2.1" 957 | "@humanwhocodes/config-array" "^0.9.2" 958 | ajv "^6.10.0" 959 | chalk "^4.0.0" 960 | cross-spawn "^7.0.2" 961 | debug "^4.3.2" 962 | doctrine "^3.0.0" 963 | escape-string-regexp "^4.0.0" 964 | eslint-scope "^7.1.1" 965 | eslint-utils "^3.0.0" 966 | eslint-visitor-keys "^3.3.0" 967 | espree "^9.3.1" 968 | esquery "^1.4.0" 969 | esutils "^2.0.2" 970 | fast-deep-equal "^3.1.3" 971 | file-entry-cache "^6.0.1" 972 | functional-red-black-tree "^1.0.1" 973 | glob-parent "^6.0.1" 974 | globals "^13.6.0" 975 | ignore "^5.2.0" 976 | import-fresh "^3.0.0" 977 | imurmurhash "^0.1.4" 978 | is-glob "^4.0.0" 979 | js-yaml "^4.1.0" 980 | json-stable-stringify-without-jsonify "^1.0.1" 981 | levn "^0.4.1" 982 | lodash.merge "^4.6.2" 983 | minimatch "^3.0.4" 984 | natural-compare "^1.4.0" 985 | optionator "^0.9.1" 986 | regexpp "^3.2.0" 987 | strip-ansi "^6.0.1" 988 | strip-json-comments "^3.1.0" 989 | text-table "^0.2.0" 990 | v8-compile-cache "^2.0.3" 991 | 992 | espree@^9.3.1: 993 | version "9.3.1" 994 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd" 995 | integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ== 996 | dependencies: 997 | acorn "^8.7.0" 998 | acorn-jsx "^5.3.1" 999 | eslint-visitor-keys "^3.3.0" 1000 | 1001 | esquery@^1.4.0: 1002 | version "1.4.0" 1003 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 1004 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1005 | dependencies: 1006 | estraverse "^5.1.0" 1007 | 1008 | esrecurse@^4.3.0: 1009 | version "4.3.0" 1010 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1011 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1012 | dependencies: 1013 | estraverse "^5.2.0" 1014 | 1015 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1016 | version "5.3.0" 1017 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1018 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1019 | 1020 | esutils@^2.0.2: 1021 | version "2.0.3" 1022 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1023 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1024 | 1025 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1026 | version "3.1.3" 1027 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1028 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1029 | 1030 | fast-glob@^3.2.9: 1031 | version "3.2.11" 1032 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 1033 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 1034 | dependencies: 1035 | "@nodelib/fs.stat" "^2.0.2" 1036 | "@nodelib/fs.walk" "^1.2.3" 1037 | glob-parent "^5.1.2" 1038 | merge2 "^1.3.0" 1039 | micromatch "^4.0.4" 1040 | 1041 | fast-json-stable-stringify@^2.0.0: 1042 | version "2.1.0" 1043 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1044 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1045 | 1046 | fast-levenshtein@^2.0.6: 1047 | version "2.0.6" 1048 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1049 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1050 | 1051 | fastq@^1.6.0: 1052 | version "1.13.0" 1053 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 1054 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 1055 | dependencies: 1056 | reusify "^1.0.4" 1057 | 1058 | faye-websocket@0.11.3: 1059 | version "0.11.3" 1060 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" 1061 | integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA== 1062 | dependencies: 1063 | websocket-driver ">=0.5.1" 1064 | 1065 | file-entry-cache@^6.0.1: 1066 | version "6.0.1" 1067 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1068 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1069 | dependencies: 1070 | flat-cache "^3.0.4" 1071 | 1072 | fill-range@^7.0.1: 1073 | version "7.0.1" 1074 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1075 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1076 | dependencies: 1077 | to-regex-range "^5.0.1" 1078 | 1079 | find-up@^2.1.0: 1080 | version "2.1.0" 1081 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1082 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 1083 | dependencies: 1084 | locate-path "^2.0.0" 1085 | 1086 | firebase@8.0.0: 1087 | version "8.0.0" 1088 | resolved "https://registry.yarnpkg.com/firebase/-/firebase-8.0.0.tgz#786b3126d97b44073b1d48d01f78770963e03179" 1089 | integrity sha512-0JMwNGg5CeoYBJ27QuDYJe1pYdJ+lspKbK1Pr+aNtYBfJfZTNy265rRroQsSOTGbXiT6cUqObVPeGwnbi8wZHw== 1090 | dependencies: 1091 | "@firebase/analytics" "0.6.1" 1092 | "@firebase/app" "0.6.12" 1093 | "@firebase/app-types" "0.6.1" 1094 | "@firebase/auth" "0.15.1" 1095 | "@firebase/database" "0.7.0" 1096 | "@firebase/firestore" "2.0.0" 1097 | "@firebase/functions" "0.6.0" 1098 | "@firebase/installations" "0.4.18" 1099 | "@firebase/messaging" "0.7.2" 1100 | "@firebase/performance" "0.4.3" 1101 | "@firebase/polyfill" "0.3.36" 1102 | "@firebase/remote-config" "0.1.29" 1103 | "@firebase/storage" "0.4.0" 1104 | "@firebase/util" "0.3.3" 1105 | 1106 | flat-cache@^3.0.4: 1107 | version "3.0.4" 1108 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 1109 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1110 | dependencies: 1111 | flatted "^3.1.0" 1112 | rimraf "^3.0.2" 1113 | 1114 | flatted@^3.1.0: 1115 | version "3.2.5" 1116 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 1117 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 1118 | 1119 | fs.realpath@^1.0.0: 1120 | version "1.0.0" 1121 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1122 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1123 | 1124 | function-bind@^1.1.1: 1125 | version "1.1.1" 1126 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1127 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1128 | 1129 | functional-red-black-tree@^1.0.1: 1130 | version "1.0.1" 1131 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1132 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1133 | 1134 | get-caller-file@^2.0.5: 1135 | version "2.0.5" 1136 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1137 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1138 | 1139 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 1140 | version "1.1.1" 1141 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1142 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1143 | dependencies: 1144 | function-bind "^1.1.1" 1145 | has "^1.0.3" 1146 | has-symbols "^1.0.1" 1147 | 1148 | get-symbol-description@^1.0.0: 1149 | version "1.0.0" 1150 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1151 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1152 | dependencies: 1153 | call-bind "^1.0.2" 1154 | get-intrinsic "^1.1.1" 1155 | 1156 | glob-parent@^5.1.2: 1157 | version "5.1.2" 1158 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1159 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1160 | dependencies: 1161 | is-glob "^4.0.1" 1162 | 1163 | glob-parent@^6.0.1: 1164 | version "6.0.2" 1165 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1166 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1167 | dependencies: 1168 | is-glob "^4.0.3" 1169 | 1170 | glob@7.1.7: 1171 | version "7.1.7" 1172 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1173 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1174 | dependencies: 1175 | fs.realpath "^1.0.0" 1176 | inflight "^1.0.4" 1177 | inherits "2" 1178 | minimatch "^3.0.4" 1179 | once "^1.3.0" 1180 | path-is-absolute "^1.0.0" 1181 | 1182 | glob@^7.1.3, glob@^7.1.6: 1183 | version "7.2.0" 1184 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1185 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1186 | dependencies: 1187 | fs.realpath "^1.0.0" 1188 | inflight "^1.0.4" 1189 | inherits "2" 1190 | minimatch "^3.0.4" 1191 | once "^1.3.0" 1192 | path-is-absolute "^1.0.0" 1193 | 1194 | globals@^13.6.0, globals@^13.9.0: 1195 | version "13.13.0" 1196 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.13.0.tgz#ac32261060d8070e2719dd6998406e27d2b5727b" 1197 | integrity sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A== 1198 | dependencies: 1199 | type-fest "^0.20.2" 1200 | 1201 | globby@^11.0.4: 1202 | version "11.1.0" 1203 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1204 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1205 | dependencies: 1206 | array-union "^2.1.0" 1207 | dir-glob "^3.0.1" 1208 | fast-glob "^3.2.9" 1209 | ignore "^5.2.0" 1210 | merge2 "^1.4.1" 1211 | slash "^3.0.0" 1212 | 1213 | has-bigints@^1.0.1: 1214 | version "1.0.1" 1215 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 1216 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 1217 | 1218 | has-flag@^4.0.0: 1219 | version "4.0.0" 1220 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1221 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1222 | 1223 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 1224 | version "1.0.3" 1225 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1226 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1227 | 1228 | has-tostringtag@^1.0.0: 1229 | version "1.0.0" 1230 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1231 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1232 | dependencies: 1233 | has-symbols "^1.0.2" 1234 | 1235 | has@^1.0.3: 1236 | version "1.0.3" 1237 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1238 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1239 | dependencies: 1240 | function-bind "^1.1.1" 1241 | 1242 | http-parser-js@>=0.5.1: 1243 | version "0.5.6" 1244 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.6.tgz#2e02406ab2df8af8a7abfba62e0da01c62b95afd" 1245 | integrity sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA== 1246 | 1247 | idb@3.0.2: 1248 | version "3.0.2" 1249 | resolved "https://registry.yarnpkg.com/idb/-/idb-3.0.2.tgz#c8e9122d5ddd40f13b60ae665e4862f8b13fa384" 1250 | integrity sha512-+FLa/0sTXqyux0o6C+i2lOR0VoS60LU/jzUo5xjfY6+7sEEgy4Gz1O7yFBXvjd7N0NyIGWIRg8DcQSLEG+VSPw== 1251 | 1252 | ignore@^5.2.0: 1253 | version "5.2.0" 1254 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1255 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1256 | 1257 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1258 | version "3.3.0" 1259 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1260 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1261 | dependencies: 1262 | parent-module "^1.0.0" 1263 | resolve-from "^4.0.0" 1264 | 1265 | imurmurhash@^0.1.4: 1266 | version "0.1.4" 1267 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1268 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1269 | 1270 | inflight@^1.0.4: 1271 | version "1.0.6" 1272 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1273 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1274 | dependencies: 1275 | once "^1.3.0" 1276 | wrappy "1" 1277 | 1278 | inherits@2: 1279 | version "2.0.4" 1280 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1281 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1282 | 1283 | internal-slot@^1.0.3: 1284 | version "1.0.3" 1285 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1286 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1287 | dependencies: 1288 | get-intrinsic "^1.1.0" 1289 | has "^1.0.3" 1290 | side-channel "^1.0.4" 1291 | 1292 | is-bigint@^1.0.1: 1293 | version "1.0.4" 1294 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1295 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1296 | dependencies: 1297 | has-bigints "^1.0.1" 1298 | 1299 | is-boolean-object@^1.1.0: 1300 | version "1.1.2" 1301 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1302 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1303 | dependencies: 1304 | call-bind "^1.0.2" 1305 | has-tostringtag "^1.0.0" 1306 | 1307 | is-callable@^1.1.4, is-callable@^1.2.4: 1308 | version "1.2.4" 1309 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 1310 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1311 | 1312 | is-core-module@^2.2.0, is-core-module@^2.7.0, is-core-module@^2.8.1: 1313 | version "2.8.1" 1314 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 1315 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 1316 | dependencies: 1317 | has "^1.0.3" 1318 | 1319 | is-date-object@^1.0.1: 1320 | version "1.0.5" 1321 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1322 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1323 | dependencies: 1324 | has-tostringtag "^1.0.0" 1325 | 1326 | is-extglob@^2.1.1: 1327 | version "2.1.1" 1328 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1329 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1330 | 1331 | is-fullwidth-code-point@^3.0.0: 1332 | version "3.0.0" 1333 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1334 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1335 | 1336 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1337 | version "4.0.3" 1338 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1339 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1340 | dependencies: 1341 | is-extglob "^2.1.1" 1342 | 1343 | is-negative-zero@^2.0.2: 1344 | version "2.0.2" 1345 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1346 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1347 | 1348 | is-number-object@^1.0.4: 1349 | version "1.0.7" 1350 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1351 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1352 | dependencies: 1353 | has-tostringtag "^1.0.0" 1354 | 1355 | is-number@^7.0.0: 1356 | version "7.0.0" 1357 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1358 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1359 | 1360 | is-regex@^1.1.4: 1361 | version "1.1.4" 1362 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1363 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1364 | dependencies: 1365 | call-bind "^1.0.2" 1366 | has-tostringtag "^1.0.0" 1367 | 1368 | is-shared-array-buffer@^1.0.1: 1369 | version "1.0.2" 1370 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1371 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1372 | dependencies: 1373 | call-bind "^1.0.2" 1374 | 1375 | is-string@^1.0.5, is-string@^1.0.7: 1376 | version "1.0.7" 1377 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1378 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1379 | dependencies: 1380 | has-tostringtag "^1.0.0" 1381 | 1382 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1383 | version "1.0.4" 1384 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1385 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1386 | dependencies: 1387 | has-symbols "^1.0.2" 1388 | 1389 | is-weakref@^1.0.2: 1390 | version "1.0.2" 1391 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1392 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1393 | dependencies: 1394 | call-bind "^1.0.2" 1395 | 1396 | isexe@^2.0.0: 1397 | version "2.0.0" 1398 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1399 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1400 | 1401 | "js-tokens@^3.0.0 || ^4.0.0": 1402 | version "4.0.0" 1403 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1404 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1405 | 1406 | js-yaml@^4.1.0: 1407 | version "4.1.0" 1408 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1409 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1410 | dependencies: 1411 | argparse "^2.0.1" 1412 | 1413 | json-schema-traverse@^0.4.1: 1414 | version "0.4.1" 1415 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1416 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1417 | 1418 | json-stable-stringify-without-jsonify@^1.0.1: 1419 | version "1.0.1" 1420 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1421 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1422 | 1423 | json5@^1.0.1: 1424 | version "1.0.1" 1425 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1426 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1427 | dependencies: 1428 | minimist "^1.2.0" 1429 | 1430 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: 1431 | version "3.2.2" 1432 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.2.tgz#6ab1e52c71dfc0c0707008a91729a9491fe9f76c" 1433 | integrity sha512-HDAyJ4MNQBboGpUnHAVUNJs6X0lh058s6FuixsFGP7MgJYpD6Vasd6nzSG5iIfXu1zAYlHJ/zsOKNlrenTUBnw== 1434 | dependencies: 1435 | array-includes "^3.1.4" 1436 | object.assign "^4.1.2" 1437 | 1438 | language-subtag-registry@~0.3.2: 1439 | version "0.3.21" 1440 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 1441 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 1442 | 1443 | language-tags@^1.0.5: 1444 | version "1.0.5" 1445 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1446 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= 1447 | dependencies: 1448 | language-subtag-registry "~0.3.2" 1449 | 1450 | levn@^0.4.1: 1451 | version "0.4.1" 1452 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1453 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1454 | dependencies: 1455 | prelude-ls "^1.2.1" 1456 | type-check "~0.4.0" 1457 | 1458 | locate-path@^2.0.0: 1459 | version "2.0.0" 1460 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1461 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1462 | dependencies: 1463 | p-locate "^2.0.0" 1464 | path-exists "^3.0.0" 1465 | 1466 | lodash.camelcase@^4.3.0: 1467 | version "4.3.0" 1468 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1469 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 1470 | 1471 | lodash.merge@^4.6.2: 1472 | version "4.6.2" 1473 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1474 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1475 | 1476 | long@^4.0.0: 1477 | version "4.0.0" 1478 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 1479 | integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 1480 | 1481 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1482 | version "1.4.0" 1483 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1484 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1485 | dependencies: 1486 | js-tokens "^3.0.0 || ^4.0.0" 1487 | 1488 | lru-cache@^7.4.0: 1489 | version "7.8.0" 1490 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.8.0.tgz#649aaeb294a56297b5cbc5d70f198dcc5ebe5747" 1491 | integrity sha512-AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg== 1492 | 1493 | merge2@^1.3.0, merge2@^1.4.1: 1494 | version "1.4.1" 1495 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1496 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1497 | 1498 | micromatch@^4.0.4: 1499 | version "4.0.5" 1500 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1501 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1502 | dependencies: 1503 | braces "^3.0.2" 1504 | picomatch "^2.3.1" 1505 | 1506 | minimatch@^3.0.4, minimatch@^3.1.2: 1507 | version "3.1.2" 1508 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1509 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1510 | dependencies: 1511 | brace-expansion "^1.1.7" 1512 | 1513 | minimist@^1.2.0, minimist@^1.2.6: 1514 | version "1.2.6" 1515 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1516 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1517 | 1518 | ms@2.0.0: 1519 | version "2.0.0" 1520 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1521 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1522 | 1523 | ms@2.1.2: 1524 | version "2.1.2" 1525 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1526 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1527 | 1528 | ms@^2.1.1: 1529 | version "2.1.3" 1530 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1531 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1532 | 1533 | nanoid@^3.1.30: 1534 | version "3.3.2" 1535 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.2.tgz#c89622fafb4381cd221421c69ec58547a1eec557" 1536 | integrity sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA== 1537 | 1538 | natural-compare@^1.4.0: 1539 | version "1.4.0" 1540 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1541 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1542 | 1543 | next@12.1.4: 1544 | version "12.1.4" 1545 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.4.tgz#597a9bdec7aec778b442c4f6d41afd2c64a54b23" 1546 | integrity sha512-DA4g97BM4Z0nKtDvCTm58RxdvoQyYzeg0AeVbh0N4Y/D8ELrNu47lQeEgRGF8hV4eQ+Sal90zxrJQQG/mPQ8CQ== 1547 | dependencies: 1548 | "@next/env" "12.1.4" 1549 | caniuse-lite "^1.0.30001283" 1550 | postcss "8.4.5" 1551 | styled-jsx "5.0.1" 1552 | optionalDependencies: 1553 | "@next/swc-android-arm-eabi" "12.1.4" 1554 | "@next/swc-android-arm64" "12.1.4" 1555 | "@next/swc-darwin-arm64" "12.1.4" 1556 | "@next/swc-darwin-x64" "12.1.4" 1557 | "@next/swc-linux-arm-gnueabihf" "12.1.4" 1558 | "@next/swc-linux-arm64-gnu" "12.1.4" 1559 | "@next/swc-linux-arm64-musl" "12.1.4" 1560 | "@next/swc-linux-x64-gnu" "12.1.4" 1561 | "@next/swc-linux-x64-musl" "12.1.4" 1562 | "@next/swc-win32-arm64-msvc" "12.1.4" 1563 | "@next/swc-win32-ia32-msvc" "12.1.4" 1564 | "@next/swc-win32-x64-msvc" "12.1.4" 1565 | 1566 | node-fetch@2.6.1: 1567 | version "2.6.1" 1568 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 1569 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 1570 | 1571 | object-assign@^4.1.1: 1572 | version "4.1.1" 1573 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1574 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1575 | 1576 | object-inspect@^1.12.0, object-inspect@^1.9.0: 1577 | version "1.12.0" 1578 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" 1579 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== 1580 | 1581 | object-keys@^1.0.12, object-keys@^1.1.1: 1582 | version "1.1.1" 1583 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1584 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1585 | 1586 | object.assign@^4.1.2: 1587 | version "4.1.2" 1588 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1589 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1590 | dependencies: 1591 | call-bind "^1.0.0" 1592 | define-properties "^1.1.3" 1593 | has-symbols "^1.0.1" 1594 | object-keys "^1.1.1" 1595 | 1596 | object.entries@^1.1.5: 1597 | version "1.1.5" 1598 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1599 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1600 | dependencies: 1601 | call-bind "^1.0.2" 1602 | define-properties "^1.1.3" 1603 | es-abstract "^1.19.1" 1604 | 1605 | object.fromentries@^2.0.5: 1606 | version "2.0.5" 1607 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1608 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1609 | dependencies: 1610 | call-bind "^1.0.2" 1611 | define-properties "^1.1.3" 1612 | es-abstract "^1.19.1" 1613 | 1614 | object.hasown@^1.1.0: 1615 | version "1.1.0" 1616 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" 1617 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg== 1618 | dependencies: 1619 | define-properties "^1.1.3" 1620 | es-abstract "^1.19.1" 1621 | 1622 | object.values@^1.1.5: 1623 | version "1.1.5" 1624 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1625 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1626 | dependencies: 1627 | call-bind "^1.0.2" 1628 | define-properties "^1.1.3" 1629 | es-abstract "^1.19.1" 1630 | 1631 | once@^1.3.0: 1632 | version "1.4.0" 1633 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1634 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1635 | dependencies: 1636 | wrappy "1" 1637 | 1638 | optionator@^0.9.1: 1639 | version "0.9.1" 1640 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1641 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1642 | dependencies: 1643 | deep-is "^0.1.3" 1644 | fast-levenshtein "^2.0.6" 1645 | levn "^0.4.1" 1646 | prelude-ls "^1.2.1" 1647 | type-check "^0.4.0" 1648 | word-wrap "^1.2.3" 1649 | 1650 | p-limit@^1.1.0: 1651 | version "1.3.0" 1652 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1653 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1654 | dependencies: 1655 | p-try "^1.0.0" 1656 | 1657 | p-locate@^2.0.0: 1658 | version "2.0.0" 1659 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1660 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1661 | dependencies: 1662 | p-limit "^1.1.0" 1663 | 1664 | p-try@^1.0.0: 1665 | version "1.0.0" 1666 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1667 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1668 | 1669 | parent-module@^1.0.0: 1670 | version "1.0.1" 1671 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1672 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1673 | dependencies: 1674 | callsites "^3.0.0" 1675 | 1676 | path-exists@^3.0.0: 1677 | version "3.0.0" 1678 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1679 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1680 | 1681 | path-is-absolute@^1.0.0: 1682 | version "1.0.1" 1683 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1684 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1685 | 1686 | path-key@^3.1.0: 1687 | version "3.1.1" 1688 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1689 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1690 | 1691 | path-parse@^1.0.6, path-parse@^1.0.7: 1692 | version "1.0.7" 1693 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1694 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1695 | 1696 | path-type@^4.0.0: 1697 | version "4.0.0" 1698 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1699 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1700 | 1701 | picocolors@^1.0.0: 1702 | version "1.0.0" 1703 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1704 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1705 | 1706 | picomatch@^2.3.1: 1707 | version "2.3.1" 1708 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1709 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1710 | 1711 | postcss@8.4.5: 1712 | version "8.4.5" 1713 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" 1714 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 1715 | dependencies: 1716 | nanoid "^3.1.30" 1717 | picocolors "^1.0.0" 1718 | source-map-js "^1.0.1" 1719 | 1720 | prelude-ls@^1.2.1: 1721 | version "1.2.1" 1722 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1723 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1724 | 1725 | promise-polyfill@8.1.3: 1726 | version "8.1.3" 1727 | resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-8.1.3.tgz#8c99b3cf53f3a91c68226ffde7bde81d7f904116" 1728 | integrity sha512-MG5r82wBzh7pSKDRa9y+vllNHz3e3d4CNj1PQE4BQYxLme0gKYYBm9YENq+UkEikyZ0XbiGWxYlVw3Rl9O/U8g== 1729 | 1730 | prop-types@^15.8.1: 1731 | version "15.8.1" 1732 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1733 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1734 | dependencies: 1735 | loose-envify "^1.4.0" 1736 | object-assign "^4.1.1" 1737 | react-is "^16.13.1" 1738 | 1739 | protobufjs@^6.10.0, protobufjs@^6.8.6: 1740 | version "6.11.2" 1741 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.2.tgz#de39fabd4ed32beaa08e9bb1e30d08544c1edf8b" 1742 | integrity sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw== 1743 | dependencies: 1744 | "@protobufjs/aspromise" "^1.1.2" 1745 | "@protobufjs/base64" "^1.1.2" 1746 | "@protobufjs/codegen" "^2.0.4" 1747 | "@protobufjs/eventemitter" "^1.1.0" 1748 | "@protobufjs/fetch" "^1.1.0" 1749 | "@protobufjs/float" "^1.0.2" 1750 | "@protobufjs/inquire" "^1.1.0" 1751 | "@protobufjs/path" "^1.1.2" 1752 | "@protobufjs/pool" "^1.1.0" 1753 | "@protobufjs/utf8" "^1.1.0" 1754 | "@types/long" "^4.0.1" 1755 | "@types/node" ">=13.7.0" 1756 | long "^4.0.0" 1757 | 1758 | punycode@^2.1.0: 1759 | version "2.1.1" 1760 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1761 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1762 | 1763 | queue-microtask@^1.2.2: 1764 | version "1.2.3" 1765 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1766 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1767 | 1768 | react-dom@18.0.0: 1769 | version "18.0.0" 1770 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023" 1771 | integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw== 1772 | dependencies: 1773 | loose-envify "^1.1.0" 1774 | scheduler "^0.21.0" 1775 | 1776 | react-is@^16.13.1: 1777 | version "16.13.1" 1778 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1779 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1780 | 1781 | react@18.0.0: 1782 | version "18.0.0" 1783 | resolved "https://registry.yarnpkg.com/react/-/react-18.0.0.tgz#b468736d1f4a5891f38585ba8e8fb29f91c3cb96" 1784 | integrity sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A== 1785 | dependencies: 1786 | loose-envify "^1.1.0" 1787 | 1788 | regenerator-runtime@^0.13.4: 1789 | version "0.13.9" 1790 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1791 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1792 | 1793 | regexp.prototype.flags@^1.4.1: 1794 | version "1.4.1" 1795 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz#b3f4c0059af9e47eca9f3f660e51d81307e72307" 1796 | integrity sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ== 1797 | dependencies: 1798 | call-bind "^1.0.2" 1799 | define-properties "^1.1.3" 1800 | 1801 | regexpp@^3.2.0: 1802 | version "3.2.0" 1803 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1804 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1805 | 1806 | require-directory@^2.1.1: 1807 | version "2.1.1" 1808 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1809 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1810 | 1811 | resolve-from@^4.0.0: 1812 | version "4.0.0" 1813 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1814 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1815 | 1816 | resolve@^1.13.1, resolve@^1.17.0, resolve@^1.20.0: 1817 | version "1.22.0" 1818 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 1819 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 1820 | dependencies: 1821 | is-core-module "^2.8.1" 1822 | path-parse "^1.0.7" 1823 | supports-preserve-symlinks-flag "^1.0.0" 1824 | 1825 | resolve@^2.0.0-next.3: 1826 | version "2.0.0-next.3" 1827 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" 1828 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== 1829 | dependencies: 1830 | is-core-module "^2.2.0" 1831 | path-parse "^1.0.6" 1832 | 1833 | reusify@^1.0.4: 1834 | version "1.0.4" 1835 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1836 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1837 | 1838 | rimraf@^3.0.2: 1839 | version "3.0.2" 1840 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1841 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1842 | dependencies: 1843 | glob "^7.1.3" 1844 | 1845 | run-parallel@^1.1.9: 1846 | version "1.2.0" 1847 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1848 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1849 | dependencies: 1850 | queue-microtask "^1.2.2" 1851 | 1852 | safe-buffer@>=5.1.0: 1853 | version "5.2.1" 1854 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1855 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1856 | 1857 | scheduler@^0.21.0: 1858 | version "0.21.0" 1859 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820" 1860 | integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ== 1861 | dependencies: 1862 | loose-envify "^1.1.0" 1863 | 1864 | semver@^6.3.0: 1865 | version "6.3.0" 1866 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1867 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1868 | 1869 | semver@^7.3.5: 1870 | version "7.3.6" 1871 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.6.tgz#5d73886fb9c0c6602e79440b97165c29581cbb2b" 1872 | integrity sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w== 1873 | dependencies: 1874 | lru-cache "^7.4.0" 1875 | 1876 | shebang-command@^2.0.0: 1877 | version "2.0.0" 1878 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1879 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1880 | dependencies: 1881 | shebang-regex "^3.0.0" 1882 | 1883 | shebang-regex@^3.0.0: 1884 | version "3.0.0" 1885 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1886 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1887 | 1888 | side-channel@^1.0.4: 1889 | version "1.0.4" 1890 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1891 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1892 | dependencies: 1893 | call-bind "^1.0.0" 1894 | get-intrinsic "^1.0.2" 1895 | object-inspect "^1.9.0" 1896 | 1897 | slash@^3.0.0: 1898 | version "3.0.0" 1899 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1900 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1901 | 1902 | source-map-js@^1.0.1: 1903 | version "1.0.2" 1904 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1905 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1906 | 1907 | string-width@^4.1.0, string-width@^4.2.0: 1908 | version "4.2.3" 1909 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1910 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 1911 | dependencies: 1912 | emoji-regex "^8.0.0" 1913 | is-fullwidth-code-point "^3.0.0" 1914 | strip-ansi "^6.0.1" 1915 | 1916 | string.prototype.matchall@^4.0.6: 1917 | version "4.0.7" 1918 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 1919 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 1920 | dependencies: 1921 | call-bind "^1.0.2" 1922 | define-properties "^1.1.3" 1923 | es-abstract "^1.19.1" 1924 | get-intrinsic "^1.1.1" 1925 | has-symbols "^1.0.3" 1926 | internal-slot "^1.0.3" 1927 | regexp.prototype.flags "^1.4.1" 1928 | side-channel "^1.0.4" 1929 | 1930 | string.prototype.trimend@^1.0.4: 1931 | version "1.0.4" 1932 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 1933 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 1934 | dependencies: 1935 | call-bind "^1.0.2" 1936 | define-properties "^1.1.3" 1937 | 1938 | string.prototype.trimstart@^1.0.4: 1939 | version "1.0.4" 1940 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 1941 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 1942 | dependencies: 1943 | call-bind "^1.0.2" 1944 | define-properties "^1.1.3" 1945 | 1946 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1947 | version "6.0.1" 1948 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1949 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1950 | dependencies: 1951 | ansi-regex "^5.0.1" 1952 | 1953 | strip-bom@^3.0.0: 1954 | version "3.0.0" 1955 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1956 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1957 | 1958 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1959 | version "3.1.1" 1960 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1961 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1962 | 1963 | styled-jsx@5.0.1: 1964 | version "5.0.1" 1965 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80" 1966 | integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw== 1967 | 1968 | supports-color@^7.1.0: 1969 | version "7.2.0" 1970 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1971 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1972 | dependencies: 1973 | has-flag "^4.0.0" 1974 | 1975 | supports-preserve-symlinks-flag@^1.0.0: 1976 | version "1.0.0" 1977 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1978 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1979 | 1980 | text-table@^0.2.0: 1981 | version "0.2.0" 1982 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1983 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1984 | 1985 | to-regex-range@^5.0.1: 1986 | version "5.0.1" 1987 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1988 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1989 | dependencies: 1990 | is-number "^7.0.0" 1991 | 1992 | tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0: 1993 | version "3.14.1" 1994 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 1995 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 1996 | dependencies: 1997 | "@types/json5" "^0.0.29" 1998 | json5 "^1.0.1" 1999 | minimist "^1.2.6" 2000 | strip-bom "^3.0.0" 2001 | 2002 | tslib@^1.11.1, tslib@^1.8.1: 2003 | version "1.14.1" 2004 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2005 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2006 | 2007 | tsutils@^3.21.0: 2008 | version "3.21.0" 2009 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 2010 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2011 | dependencies: 2012 | tslib "^1.8.1" 2013 | 2014 | type-check@^0.4.0, type-check@~0.4.0: 2015 | version "0.4.0" 2016 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2017 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2018 | dependencies: 2019 | prelude-ls "^1.2.1" 2020 | 2021 | type-fest@^0.20.2: 2022 | version "0.20.2" 2023 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2024 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2025 | 2026 | unbox-primitive@^1.0.1: 2027 | version "1.0.1" 2028 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 2029 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 2030 | dependencies: 2031 | function-bind "^1.1.1" 2032 | has-bigints "^1.0.1" 2033 | has-symbols "^1.0.2" 2034 | which-boxed-primitive "^1.0.2" 2035 | 2036 | uri-js@^4.2.2: 2037 | version "4.4.1" 2038 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2039 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2040 | dependencies: 2041 | punycode "^2.1.0" 2042 | 2043 | v8-compile-cache@^2.0.3: 2044 | version "2.3.0" 2045 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 2046 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 2047 | 2048 | websocket-driver@>=0.5.1: 2049 | version "0.7.4" 2050 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" 2051 | integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== 2052 | dependencies: 2053 | http-parser-js ">=0.5.1" 2054 | safe-buffer ">=5.1.0" 2055 | websocket-extensions ">=0.1.1" 2056 | 2057 | websocket-extensions@>=0.1.1: 2058 | version "0.1.4" 2059 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" 2060 | integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== 2061 | 2062 | whatwg-fetch@2.0.4: 2063 | version "2.0.4" 2064 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" 2065 | integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== 2066 | 2067 | which-boxed-primitive@^1.0.2: 2068 | version "1.0.2" 2069 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2070 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2071 | dependencies: 2072 | is-bigint "^1.0.1" 2073 | is-boolean-object "^1.1.0" 2074 | is-number-object "^1.0.4" 2075 | is-string "^1.0.5" 2076 | is-symbol "^1.0.3" 2077 | 2078 | which@^2.0.1: 2079 | version "2.0.2" 2080 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2081 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2082 | dependencies: 2083 | isexe "^2.0.0" 2084 | 2085 | word-wrap@^1.2.3: 2086 | version "1.2.3" 2087 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2088 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2089 | 2090 | wrap-ansi@^7.0.0: 2091 | version "7.0.0" 2092 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2093 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2094 | dependencies: 2095 | ansi-styles "^4.0.0" 2096 | string-width "^4.1.0" 2097 | strip-ansi "^6.0.0" 2098 | 2099 | wrappy@1: 2100 | version "1.0.2" 2101 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2102 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2103 | 2104 | xmlhttprequest@1.8.0: 2105 | version "1.8.0" 2106 | resolved "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc" 2107 | integrity sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw= 2108 | 2109 | y18n@^5.0.5: 2110 | version "5.0.8" 2111 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2112 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2113 | 2114 | yargs-parser@^20.2.2: 2115 | version "20.2.9" 2116 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2117 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2118 | 2119 | yargs@^16.2.0: 2120 | version "16.2.0" 2121 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2122 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2123 | dependencies: 2124 | cliui "^7.0.2" 2125 | escalade "^3.1.1" 2126 | get-caller-file "^2.0.5" 2127 | require-directory "^2.1.1" 2128 | string-width "^4.2.0" 2129 | y18n "^5.0.5" 2130 | yargs-parser "^20.2.2" 2131 | --------------------------------------------------------------------------------