├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── article.ts └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json ├── types └── api.ts ├── utils ├── api.ts └── yup.ts └── 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 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Snehil 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Create API Routes using apiHandler higher order function for consistency and clean code 🔥 2 | 3 | ## Features ⚡ 4 | 5 | - `res.json()` is called only when we need to send a success response. 6 | - Error responses are handled by apiHandler when we throw an error. 7 | - Controllers are divided into functions and plugged into the API Route by their respective `req.method` which is kind of reminiscent of how Express.js routes are defined. 8 | 9 | ## Technologies 🧪 10 | 11 | - Next.js 12 | - TypeScript 13 | - [Yup](https://www.npmjs.com/package/yup) 14 | - [http-errors](https://www.npmjs.com/package/http-errors) 15 | 16 | ## Installation 📦 17 | 18 | ````bash 19 | First, run the development server: 20 | 21 | ```bash 22 | npm run dev 23 | # or 24 | yarn dev 25 | ```` 26 | 27 | ## Try it out! 🚀 28 | 29 | [![Run in Postman](https://run.pstmn.io/button.svg)](https://god.gw.postman.com/run-collection/16832202-de3b3f8e-f82b-403f-9530-836f4c5adc22?action=collection%2Ffork&collection-url=entityId%3D16832202-de3b3f8e-f82b-403f-9530-836f4c5adc22%26entityType%3Dcollection%26workspaceId%3D73ada041-1978-4536-b11c-a3bd606bd1b0) 30 | 31 | ## Checkout the related Post on Dev.to 📖 32 | 33 | [https://dev.to/sneakysensei/nextjs-api-routes-global-error-handling-and-clean-code-practices-3g9p](https://dev.to/sneakysensei/nextjs-api-routes-global-error-handling-and-clean-code-practices-3g9p) 34 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | swcMinify: true, 5 | } 6 | 7 | module.exports = nextConfig 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-api-handler-example", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "http-errors": "^2.0.0", 13 | "next": "12.3.1", 14 | "react": "18.2.0", 15 | "react-dom": "18.2.0", 16 | "yup": "^0.32.11" 17 | }, 18 | "devDependencies": { 19 | "@types/http-errors": "^1.8.2", 20 | "@types/node": "18.11.0", 21 | "@types/react": "18.0.21", 22 | "@types/react-dom": "18.0.6", 23 | "eslint": "8.25.0", 24 | "eslint-config-next": "12.3.1", 25 | "typescript": "4.8.4" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css' 2 | import type { AppProps } from 'next/app' 3 | 4 | function MyApp({ Component, pageProps }: AppProps) { 5 | return 6 | } 7 | 8 | export default MyApp 9 | -------------------------------------------------------------------------------- /pages/api/article.ts: -------------------------------------------------------------------------------- 1 | import createHttpError from "http-errors"; 2 | import * as Yup from "yup"; 3 | 4 | import { NextApiHandler } from "next"; 5 | 6 | import { apiHandler } from "utils/api"; 7 | import { validateRequest } from "utils/yup"; 8 | 9 | // Fake DB to demonstrate the API 10 | const BLOG_DB = [ 11 | { 12 | id: 1, 13 | title: "Top 10 anime betrayals", 14 | content: "Lorem ipsum dolor sit amet ....", 15 | publishedTimestamp: 1665821111000, 16 | }, 17 | ]; 18 | 19 | type GetResponse = { 20 | data: typeof BLOG_DB | typeof BLOG_DB[number]; 21 | }; 22 | 23 | /** 24 | * returns all articles or the article with the given id if query string is provided 25 | */ 26 | const getArticle: NextApiHandler = async (req, res) => { 27 | const { id } = req.query; 28 | if (id) { 29 | // find and return article with given id 30 | const article = BLOG_DB.find((article) => article.id === Number(id)); 31 | 32 | if (!article) 33 | throw new createHttpError.NotFound(`Article with id ${id} not found!`); 34 | // OR 35 | // if (!article) throw new createHttpError[404](`Article with id ${id} not found!`) 36 | res.status(200).json({ data: article }); 37 | } else { 38 | res.status(200).json({ data: BLOG_DB }); 39 | } 40 | }; 41 | 42 | type PostResponse = { 43 | data: typeof BLOG_DB[number]; 44 | message: string; 45 | }; 46 | 47 | const postArticleSchema = Yup.object().shape({ 48 | title: Yup.string().required("Title is required!"), 49 | content: Yup.string() 50 | .required("Content is required!") 51 | .max( 52 | 5000, 53 | ({ max }) => `Character limit exceeded! Max ${max} characters allowed!` 54 | ), 55 | publishedTimestamp: Yup.number() 56 | .required("Published timestamp is required!") 57 | .lessThan(Date.now(), "Published timestamp cannot be in the future!"), 58 | }); 59 | 60 | const createArticle: NextApiHandler = async (req, res) => { 61 | const data = validateRequest(req.body, postArticleSchema); 62 | const newArticle = { ...data, id: BLOG_DB.length + 1 }; 63 | BLOG_DB.push(newArticle); 64 | 65 | res 66 | .status(201) 67 | .json({ data: newArticle, message: "Article created successfully!" }); 68 | }; 69 | 70 | type DeleteResponse = { 71 | data: typeof BLOG_DB[number]; 72 | message: string; 73 | }; 74 | 75 | const deleteArticleById: NextApiHandler = async (req, res) => { 76 | const { id } = req.query; 77 | 78 | if (!id) throw new createHttpError.BadRequest("Article id is required!"); 79 | 80 | const articleIndex = BLOG_DB.findIndex( 81 | (article) => article.id === Number(id) 82 | ); 83 | 84 | if (articleIndex < 0) 85 | throw new createHttpError.NotFound(`Article with id ${id} not found!`); 86 | 87 | BLOG_DB.splice(articleIndex, 1); 88 | 89 | res.status(200).json({ 90 | data: BLOG_DB[articleIndex], 91 | message: "Article deleted successfully!", 92 | }); 93 | }; 94 | 95 | export default apiHandler({ 96 | GET: getArticle, 97 | POST: createArticle, 98 | DELETE: deleteArticleById, 99 | }); 100 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import type { NextPage } from 'next' 2 | import Head from 'next/head' 3 | import Image from 'next/image' 4 | import styles from '../styles/Home.module.css' 5 | 6 | const Home: NextPage = () => { 7 | return ( 8 |
9 | 10 | Create Next App 11 | 12 | 13 | 14 | 15 |
16 |

17 | Welcome to Next.js! 18 |

19 | 20 |

21 | Get started by editing{' '} 22 | pages/index.tsx 23 |

24 | 25 | 54 |
55 | 56 | 68 |
69 | ) 70 | } 71 | 72 | export default Home 73 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SneakySensei/Next-API-Handler-Example/f89a92d25a7b2215e73895c4548709a13d246fff/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | padding: 0 2rem; 3 | } 4 | 5 | .main { 6 | min-height: 100vh; 7 | padding: 4rem 0; 8 | flex: 1; 9 | display: flex; 10 | flex-direction: column; 11 | justify-content: center; 12 | align-items: center; 13 | } 14 | 15 | .footer { 16 | display: flex; 17 | flex: 1; 18 | padding: 2rem 0; 19 | border-top: 1px solid #eaeaea; 20 | justify-content: center; 21 | align-items: center; 22 | } 23 | 24 | .footer a { 25 | display: flex; 26 | justify-content: center; 27 | align-items: center; 28 | flex-grow: 1; 29 | } 30 | 31 | .title a { 32 | color: #0070f3; 33 | text-decoration: none; 34 | } 35 | 36 | .title a:hover, 37 | .title a:focus, 38 | .title a:active { 39 | text-decoration: underline; 40 | } 41 | 42 | .title { 43 | margin: 0; 44 | line-height: 1.15; 45 | font-size: 4rem; 46 | } 47 | 48 | .title, 49 | .description { 50 | text-align: center; 51 | } 52 | 53 | .description { 54 | margin: 4rem 0; 55 | line-height: 1.5; 56 | font-size: 1.5rem; 57 | } 58 | 59 | .code { 60 | background: #fafafa; 61 | border-radius: 5px; 62 | padding: 0.75rem; 63 | font-size: 1.1rem; 64 | font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, 65 | Bitstream Vera Sans Mono, Courier New, monospace; 66 | } 67 | 68 | .grid { 69 | display: flex; 70 | align-items: center; 71 | justify-content: center; 72 | flex-wrap: wrap; 73 | max-width: 800px; 74 | } 75 | 76 | .card { 77 | margin: 1rem; 78 | padding: 1.5rem; 79 | text-align: left; 80 | color: inherit; 81 | text-decoration: none; 82 | border: 1px solid #eaeaea; 83 | border-radius: 10px; 84 | transition: color 0.15s ease, border-color 0.15s ease; 85 | max-width: 300px; 86 | } 87 | 88 | .card:hover, 89 | .card:focus, 90 | .card:active { 91 | color: #0070f3; 92 | border-color: #0070f3; 93 | } 94 | 95 | .card h2 { 96 | margin: 0 0 1rem 0; 97 | font-size: 1.5rem; 98 | } 99 | 100 | .card p { 101 | margin: 0; 102 | font-size: 1.25rem; 103 | line-height: 1.5; 104 | } 105 | 106 | .logo { 107 | height: 1em; 108 | margin-left: 0.5rem; 109 | } 110 | 111 | @media (max-width: 600px) { 112 | .grid { 113 | width: 100%; 114 | flex-direction: column; 115 | } 116 | } 117 | 118 | @media (prefers-color-scheme: dark) { 119 | .card, 120 | .footer { 121 | border-color: #222; 122 | } 123 | .code { 124 | background: #111; 125 | } 126 | .logo img { 127 | filter: invert(1); 128 | } 129 | } 130 | -------------------------------------------------------------------------------- /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 | 18 | @media (prefers-color-scheme: dark) { 19 | html { 20 | color-scheme: dark; 21 | } 22 | body { 23 | color: white; 24 | background: black; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "baseUrl": "." 18 | }, 19 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 20 | "exclude": ["node_modules"] 21 | } 22 | -------------------------------------------------------------------------------- /types/api.ts: -------------------------------------------------------------------------------- 1 | export type Method = 2 | | "GET" 3 | | "DELETE" 4 | | "HEAD" 5 | | "OPTIONS" 6 | | "POST" 7 | | "PUT" 8 | | "PATCH" 9 | | "PURGE" 10 | | "LINK" 11 | | "UNLINK"; 12 | 13 | // Shape of the response when an error is thrown 14 | export interface ErrorResponse { 15 | error: { 16 | message: string; 17 | err?: any; // Sent for unhandled errors reulting in 500 18 | }; 19 | status?: number; // Sent for unhandled errors reulting in 500 20 | } 21 | -------------------------------------------------------------------------------- /utils/api.ts: -------------------------------------------------------------------------------- 1 | import createHttpError from "http-errors"; 2 | 3 | import { NextApiHandler, NextApiRequest, NextApiResponse } from "next"; 4 | import { ErrorResponse, Method } from "types/api"; 5 | import { ValidationError } from "yup"; 6 | 7 | type ApiMethodHandlers = { 8 | [key in Uppercase]?: NextApiHandler; 9 | }; 10 | 11 | function errorHandler(err: unknown, res: NextApiResponse) { 12 | // Errors with statusCode >= 500 are should not be exposed 13 | if (createHttpError.isHttpError(err) && err.expose) { 14 | // Handle all errors thrown by http-errors module 15 | return res.status(err.statusCode).json({ error: { message: err.message } }); 16 | } else if (err instanceof ValidationError) { 17 | // Handle yup validation errors 18 | return res.status(400).json({ error: { message: err.errors.join(", ") } }); 19 | } else { 20 | // default to 500 server error 21 | console.error(err); 22 | return res.status(500).json({ 23 | error: { message: "Internal Server Error", err: err }, 24 | status: createHttpError.isHttpError(err) ? err.statusCode : 500, 25 | }); 26 | } 27 | } 28 | 29 | export function apiHandler(handler: ApiMethodHandlers) { 30 | return async (req: NextApiRequest, res: NextApiResponse) => { 31 | try { 32 | const method = req.method 33 | ? (req.method.toUpperCase() as keyof ApiMethodHandlers) 34 | : undefined; 35 | 36 | // check if handler supports current HTTP method 37 | if (!method) 38 | throw new createHttpError.MethodNotAllowed( 39 | `No method specified on path ${req.url}!` 40 | ); 41 | 42 | const methodHandler = handler[method]; 43 | if (!methodHandler) 44 | throw new createHttpError.MethodNotAllowed( 45 | `Method ${req.method} Not Allowed on path ${req.url}!` 46 | ); 47 | 48 | // call method handler 49 | await methodHandler(req, res); 50 | } catch (err) { 51 | // global error handler 52 | errorHandler(err, res); 53 | } 54 | }; 55 | } 56 | -------------------------------------------------------------------------------- /utils/yup.ts: -------------------------------------------------------------------------------- 1 | import { ObjectSchema } from "yup"; 2 | import { ObjectShape } from "yup/lib/object"; 3 | 4 | export function validateRequest( 5 | data: unknown, 6 | schema: ObjectSchema 7 | ) { 8 | const _data = schema.validateSync(data, { 9 | abortEarly: false, 10 | strict: true, 11 | }); 12 | return _data; 13 | } 14 | -------------------------------------------------------------------------------- /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.19.4" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.19.4.tgz#870dbfd9685b3dad5aeb2d00841bb8b6192e3095" 8 | integrity sha512-HzjQ8+dzdx7dmZy4DQ8KV8aHi/74AjEbBGTFutBmg/pd3dY5/q1sfuOGPTFGEytlQhWoeVXqcK5BwMgIkRkNDQ== 9 | dependencies: 10 | core-js-pure "^3.25.1" 11 | regenerator-runtime "^0.13.4" 12 | 13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.9": 14 | version "7.19.4" 15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78" 16 | integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== 17 | dependencies: 18 | regenerator-runtime "^0.13.4" 19 | 20 | "@eslint/eslintrc@^1.3.3": 21 | version "1.3.3" 22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" 23 | integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== 24 | dependencies: 25 | ajv "^6.12.4" 26 | debug "^4.3.2" 27 | espree "^9.4.0" 28 | globals "^13.15.0" 29 | ignore "^5.2.0" 30 | import-fresh "^3.2.1" 31 | js-yaml "^4.1.0" 32 | minimatch "^3.1.2" 33 | strip-json-comments "^3.1.1" 34 | 35 | "@humanwhocodes/config-array@^0.10.5": 36 | version "0.10.7" 37 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc" 38 | integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w== 39 | dependencies: 40 | "@humanwhocodes/object-schema" "^1.2.1" 41 | debug "^4.1.1" 42 | minimatch "^3.0.4" 43 | 44 | "@humanwhocodes/module-importer@^1.0.1": 45 | version "1.0.1" 46 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 47 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 48 | 49 | "@humanwhocodes/object-schema@^1.2.1": 50 | version "1.2.1" 51 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 52 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 53 | 54 | "@next/env@12.3.1": 55 | version "12.3.1" 56 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.3.1.tgz#18266bd92de3b4aa4037b1927aa59e6f11879260" 57 | integrity sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg== 58 | 59 | "@next/eslint-plugin-next@12.3.1": 60 | version "12.3.1" 61 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.1.tgz#b821f27b0f175954d8d18e5d323fce040ecc79a6" 62 | integrity sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw== 63 | dependencies: 64 | glob "7.1.7" 65 | 66 | "@next/swc-android-arm-eabi@12.3.1": 67 | version "12.3.1" 68 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.1.tgz#b15ce8ad376102a3b8c0f3c017dde050a22bb1a3" 69 | integrity sha512-i+BvKA8tB//srVPPQxIQN5lvfROcfv4OB23/L1nXznP+N/TyKL8lql3l7oo2LNhnH66zWhfoemg3Q4VJZSruzQ== 70 | 71 | "@next/swc-android-arm64@12.3.1": 72 | version "12.3.1" 73 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.3.1.tgz#85d205f568a790a137cb3c3f720d961a2436ac9c" 74 | integrity sha512-CmgU2ZNyBP0rkugOOqLnjl3+eRpXBzB/I2sjwcGZ7/Z6RcUJXK5Evz+N0ucOxqE4cZ3gkTeXtSzRrMK2mGYV8Q== 75 | 76 | "@next/swc-darwin-arm64@12.3.1": 77 | version "12.3.1" 78 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.1.tgz#b105457d6760a7916b27e46c97cb1a40547114ae" 79 | integrity sha512-hT/EBGNcu0ITiuWDYU9ur57Oa4LybD5DOQp4f22T6zLfpoBMfBibPtR8XktXmOyFHrL/6FC2p9ojdLZhWhvBHg== 80 | 81 | "@next/swc-darwin-x64@12.3.1": 82 | version "12.3.1" 83 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.1.tgz#6947b39082271378896b095b6696a7791c6e32b1" 84 | integrity sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA== 85 | 86 | "@next/swc-freebsd-x64@12.3.1": 87 | version "12.3.1" 88 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.1.tgz#2b6c36a4d84aae8b0ea0e0da9bafc696ae27085a" 89 | integrity sha512-qcuUQkaBZWqzM0F1N4AkAh88lLzzpfE6ImOcI1P6YeyJSsBmpBIV8o70zV+Wxpc26yV9vpzb+e5gCyxNjKJg5Q== 90 | 91 | "@next/swc-linux-arm-gnueabihf@12.3.1": 92 | version "12.3.1" 93 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.1.tgz#6e421c44285cfedac1f4631d5de330dd60b86298" 94 | integrity sha512-diL9MSYrEI5nY2wc/h/DBewEDUzr/DqBjIgHJ3RUNtETAOB3spMNHvJk2XKUDjnQuluLmFMloet9tpEqU2TT9w== 95 | 96 | "@next/swc-linux-arm64-gnu@12.3.1": 97 | version "12.3.1" 98 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.1.tgz#8863f08a81f422f910af126159d2cbb9552ef717" 99 | integrity sha512-o/xB2nztoaC7jnXU3Q36vGgOolJpsGG8ETNjxM1VAPxRwM7FyGCPHOMk1XavG88QZSQf+1r+POBW0tLxQOJ9DQ== 100 | 101 | "@next/swc-linux-arm64-musl@12.3.1": 102 | version "12.3.1" 103 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.1.tgz#0038f07cf0b259d70ae0c80890d826dfc775d9f3" 104 | integrity sha512-2WEasRxJzgAmP43glFNhADpe8zB7kJofhEAVNbDJZANp+H4+wq+/cW1CdDi8DqjkShPEA6/ejJw+xnEyDID2jg== 105 | 106 | "@next/swc-linux-x64-gnu@12.3.1": 107 | version "12.3.1" 108 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.1.tgz#c66468f5e8181ffb096c537f0dbfb589baa6a9c1" 109 | integrity sha512-JWEaMyvNrXuM3dyy9Pp5cFPuSSvG82+yABqsWugjWlvfmnlnx9HOQZY23bFq3cNghy5V/t0iPb6cffzRWylgsA== 110 | 111 | "@next/swc-linux-x64-musl@12.3.1": 112 | version "12.3.1" 113 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.1.tgz#c6269f3e96ac0395bc722ad97ce410ea5101d305" 114 | integrity sha512-xoEWQQ71waWc4BZcOjmatuvPUXKTv6MbIFzpm4LFeCHsg2iwai0ILmNXf81rJR+L1Wb9ifEke2sQpZSPNz1Iyg== 115 | 116 | "@next/swc-win32-arm64-msvc@12.3.1": 117 | version "12.3.1" 118 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.1.tgz#83c639ee969cee36ce247c3abd1d9df97b5ecade" 119 | integrity sha512-hswVFYQYIeGHE2JYaBVtvqmBQ1CppplQbZJS/JgrVI3x2CurNhEkmds/yqvDONfwfbttTtH4+q9Dzf/WVl3Opw== 120 | 121 | "@next/swc-win32-ia32-msvc@12.3.1": 122 | version "12.3.1" 123 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.1.tgz#52995748b92aa8ad053440301bc2c0d9fbcf27c2" 124 | integrity sha512-Kny5JBehkTbKPmqulr5i+iKntO5YMP+bVM8Hf8UAmjSMVo3wehyLVc9IZkNmcbxi+vwETnQvJaT5ynYBkJ9dWA== 125 | 126 | "@next/swc-win32-x64-msvc@12.3.1": 127 | version "12.3.1" 128 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.1.tgz#27d71a95247a9eaee03d47adee7e3bd594514136" 129 | integrity sha512-W1ijvzzg+kPEX6LAc+50EYYSEo0FVu7dmTE+t+DM4iOLqgGHoW9uYSz9wCVdkXOEEMP9xhXfGpcSxsfDucyPkA== 130 | 131 | "@nodelib/fs.scandir@2.1.5": 132 | version "2.1.5" 133 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 134 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 135 | dependencies: 136 | "@nodelib/fs.stat" "2.0.5" 137 | run-parallel "^1.1.9" 138 | 139 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 140 | version "2.0.5" 141 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 142 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 143 | 144 | "@nodelib/fs.walk@^1.2.3": 145 | version "1.2.8" 146 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 147 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 148 | dependencies: 149 | "@nodelib/fs.scandir" "2.1.5" 150 | fastq "^1.6.0" 151 | 152 | "@rushstack/eslint-patch@^1.1.3": 153 | version "1.2.0" 154 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" 155 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 156 | 157 | "@swc/helpers@0.4.11": 158 | version "0.4.11" 159 | resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.11.tgz#db23a376761b3d31c26502122f349a21b592c8de" 160 | integrity sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw== 161 | dependencies: 162 | tslib "^2.4.0" 163 | 164 | "@types/http-errors@^1.8.2": 165 | version "1.8.2" 166 | resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.8.2.tgz#7315b4c4c54f82d13fa61c228ec5c2ea5cc9e0e1" 167 | integrity sha512-EqX+YQxINb+MeXaIqYDASb6U6FCHbWjkj4a1CKDBks3d/QiB2+PqBLyO72vLDgAO1wUI4O+9gweRcQK11bTL/w== 168 | 169 | "@types/json5@^0.0.29": 170 | version "0.0.29" 171 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 172 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 173 | 174 | "@types/lodash@^4.14.175": 175 | version "4.14.186" 176 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.186.tgz#862e5514dd7bd66ada6c70ee5fce844b06c8ee97" 177 | integrity sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw== 178 | 179 | "@types/node@18.11.0": 180 | version "18.11.0" 181 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.0.tgz#f38c7139247a1d619f6cc6f27b072606af7c289d" 182 | integrity sha512-IOXCvVRToe7e0ny7HpT/X9Rb2RYtElG1a+VshjwT00HxrM2dWBApHQoqsI6WiY7Q03vdf2bCrIGzVrkF/5t10w== 183 | 184 | "@types/prop-types@*": 185 | version "15.7.5" 186 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 187 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 188 | 189 | "@types/react-dom@18.0.6": 190 | version "18.0.6" 191 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.6.tgz#36652900024842b74607a17786b6662dd1e103a1" 192 | integrity sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA== 193 | dependencies: 194 | "@types/react" "*" 195 | 196 | "@types/react@*", "@types/react@18.0.21": 197 | version "18.0.21" 198 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.21.tgz#b8209e9626bb00a34c76f55482697edd2b43cc67" 199 | integrity sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA== 200 | dependencies: 201 | "@types/prop-types" "*" 202 | "@types/scheduler" "*" 203 | csstype "^3.0.2" 204 | 205 | "@types/scheduler@*": 206 | version "0.16.2" 207 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 208 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 209 | 210 | "@typescript-eslint/parser@^5.21.0": 211 | version "5.40.0" 212 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.40.0.tgz#432bddc1fe9154945660f67c1ba6d44de5014840" 213 | integrity sha512-Ah5gqyX2ySkiuYeOIDg7ap51/b63QgWZA7w6AHtFrag7aH0lRQPbLzUjk0c9o5/KZ6JRkTTDKShL4AUrQa6/hw== 214 | dependencies: 215 | "@typescript-eslint/scope-manager" "5.40.0" 216 | "@typescript-eslint/types" "5.40.0" 217 | "@typescript-eslint/typescript-estree" "5.40.0" 218 | debug "^4.3.4" 219 | 220 | "@typescript-eslint/scope-manager@5.40.0": 221 | version "5.40.0" 222 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.40.0.tgz#d6ea782c8e3a2371ba3ea31458dcbdc934668fc4" 223 | integrity sha512-d3nPmjUeZtEWRvyReMI4I1MwPGC63E8pDoHy0BnrYjnJgilBD3hv7XOiETKLY/zTwI7kCnBDf2vWTRUVpYw0Uw== 224 | dependencies: 225 | "@typescript-eslint/types" "5.40.0" 226 | "@typescript-eslint/visitor-keys" "5.40.0" 227 | 228 | "@typescript-eslint/types@5.40.0": 229 | version "5.40.0" 230 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.40.0.tgz#8de07e118a10b8f63c99e174a3860f75608c822e" 231 | integrity sha512-V1KdQRTXsYpf1Y1fXCeZ+uhjW48Niiw0VGt4V8yzuaDTU8Z1Xl7yQDyQNqyAFcVhpYXIVCEuxSIWTsLDpHgTbw== 232 | 233 | "@typescript-eslint/typescript-estree@5.40.0": 234 | version "5.40.0" 235 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.0.tgz#e305e6a5d65226efa5471ee0f12e0ffaab6d3075" 236 | integrity sha512-b0GYlDj8TLTOqwX7EGbw2gL5EXS2CPEWhF9nGJiGmEcmlpNBjyHsTwbqpyIEPVpl6br4UcBOYlcI2FJVtJkYhg== 237 | dependencies: 238 | "@typescript-eslint/types" "5.40.0" 239 | "@typescript-eslint/visitor-keys" "5.40.0" 240 | debug "^4.3.4" 241 | globby "^11.1.0" 242 | is-glob "^4.0.3" 243 | semver "^7.3.7" 244 | tsutils "^3.21.0" 245 | 246 | "@typescript-eslint/visitor-keys@5.40.0": 247 | version "5.40.0" 248 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.0.tgz#dd2d38097f68e0d2e1e06cb9f73c0173aca54b68" 249 | integrity sha512-ijJ+6yig+x9XplEpG2K6FUdJeQGGj/15U3S56W9IqXKJqleuD7zJ2AX/miLezwxpd7ZxDAqO87zWufKg+RPZyQ== 250 | dependencies: 251 | "@typescript-eslint/types" "5.40.0" 252 | eslint-visitor-keys "^3.3.0" 253 | 254 | acorn-jsx@^5.3.2: 255 | version "5.3.2" 256 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 257 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 258 | 259 | acorn@^8.8.0: 260 | version "8.8.0" 261 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" 262 | integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== 263 | 264 | ajv@^6.10.0, ajv@^6.12.4: 265 | version "6.12.6" 266 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 267 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 268 | dependencies: 269 | fast-deep-equal "^3.1.1" 270 | fast-json-stable-stringify "^2.0.0" 271 | json-schema-traverse "^0.4.1" 272 | uri-js "^4.2.2" 273 | 274 | ansi-regex@^5.0.1: 275 | version "5.0.1" 276 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 277 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 278 | 279 | ansi-styles@^4.1.0: 280 | version "4.3.0" 281 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 282 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 283 | dependencies: 284 | color-convert "^2.0.1" 285 | 286 | argparse@^2.0.1: 287 | version "2.0.1" 288 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 289 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 290 | 291 | aria-query@^4.2.2: 292 | version "4.2.2" 293 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 294 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 295 | dependencies: 296 | "@babel/runtime" "^7.10.2" 297 | "@babel/runtime-corejs3" "^7.10.2" 298 | 299 | array-includes@^3.1.4, array-includes@^3.1.5: 300 | version "3.1.5" 301 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 302 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 303 | dependencies: 304 | call-bind "^1.0.2" 305 | define-properties "^1.1.4" 306 | es-abstract "^1.19.5" 307 | get-intrinsic "^1.1.1" 308 | is-string "^1.0.7" 309 | 310 | array-union@^2.1.0: 311 | version "2.1.0" 312 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 313 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 314 | 315 | array.prototype.flat@^1.2.5: 316 | version "1.3.0" 317 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" 318 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== 319 | dependencies: 320 | call-bind "^1.0.2" 321 | define-properties "^1.1.3" 322 | es-abstract "^1.19.2" 323 | es-shim-unscopables "^1.0.0" 324 | 325 | array.prototype.flatmap@^1.3.0: 326 | version "1.3.0" 327 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 328 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 329 | dependencies: 330 | call-bind "^1.0.2" 331 | define-properties "^1.1.3" 332 | es-abstract "^1.19.2" 333 | es-shim-unscopables "^1.0.0" 334 | 335 | ast-types-flow@^0.0.7: 336 | version "0.0.7" 337 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 338 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 339 | 340 | axe-core@^4.4.3: 341 | version "4.4.3" 342 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.3.tgz#11c74d23d5013c0fa5d183796729bc3482bd2f6f" 343 | integrity sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w== 344 | 345 | axobject-query@^2.2.0: 346 | version "2.2.0" 347 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 348 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 349 | 350 | balanced-match@^1.0.0: 351 | version "1.0.2" 352 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 353 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 354 | 355 | brace-expansion@^1.1.7: 356 | version "1.1.11" 357 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 358 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 359 | dependencies: 360 | balanced-match "^1.0.0" 361 | concat-map "0.0.1" 362 | 363 | braces@^3.0.2: 364 | version "3.0.2" 365 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 366 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 367 | dependencies: 368 | fill-range "^7.0.1" 369 | 370 | call-bind@^1.0.0, call-bind@^1.0.2: 371 | version "1.0.2" 372 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 373 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 374 | dependencies: 375 | function-bind "^1.1.1" 376 | get-intrinsic "^1.0.2" 377 | 378 | callsites@^3.0.0: 379 | version "3.1.0" 380 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 381 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 382 | 383 | caniuse-lite@^1.0.30001406: 384 | version "1.0.30001419" 385 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001419.tgz#3542722d57d567c8210d5e4d0f9f17336b776457" 386 | integrity sha512-aFO1r+g6R7TW+PNQxKzjITwLOyDhVRLjW0LcwS/HCZGUUKTGNp9+IwLC4xyDSZBygVL/mxaFR3HIV6wEKQuSzw== 387 | 388 | chalk@^4.0.0: 389 | version "4.1.2" 390 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 391 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 392 | dependencies: 393 | ansi-styles "^4.1.0" 394 | supports-color "^7.1.0" 395 | 396 | color-convert@^2.0.1: 397 | version "2.0.1" 398 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 399 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 400 | dependencies: 401 | color-name "~1.1.4" 402 | 403 | color-name@~1.1.4: 404 | version "1.1.4" 405 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 406 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 407 | 408 | concat-map@0.0.1: 409 | version "0.0.1" 410 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 411 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 412 | 413 | core-js-pure@^3.25.1: 414 | version "3.25.5" 415 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.25.5.tgz#79716ba54240c6aa9ceba6eee08cf79471ba184d" 416 | integrity sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg== 417 | 418 | cross-spawn@^7.0.2: 419 | version "7.0.3" 420 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 421 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 422 | dependencies: 423 | path-key "^3.1.0" 424 | shebang-command "^2.0.0" 425 | which "^2.0.1" 426 | 427 | csstype@^3.0.2: 428 | version "3.1.1" 429 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" 430 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 431 | 432 | damerau-levenshtein@^1.0.8: 433 | version "1.0.8" 434 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 435 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 436 | 437 | debug@^2.6.9: 438 | version "2.6.9" 439 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 440 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 441 | dependencies: 442 | ms "2.0.0" 443 | 444 | debug@^3.2.7: 445 | version "3.2.7" 446 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 447 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 448 | dependencies: 449 | ms "^2.1.1" 450 | 451 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 452 | version "4.3.4" 453 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 454 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 455 | dependencies: 456 | ms "2.1.2" 457 | 458 | deep-is@^0.1.3: 459 | version "0.1.4" 460 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 461 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 462 | 463 | define-properties@^1.1.3, define-properties@^1.1.4: 464 | version "1.1.4" 465 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 466 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 467 | dependencies: 468 | has-property-descriptors "^1.0.0" 469 | object-keys "^1.1.1" 470 | 471 | depd@2.0.0: 472 | version "2.0.0" 473 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 474 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== 475 | 476 | dir-glob@^3.0.1: 477 | version "3.0.1" 478 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 479 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 480 | dependencies: 481 | path-type "^4.0.0" 482 | 483 | doctrine@^2.1.0: 484 | version "2.1.0" 485 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 486 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 487 | dependencies: 488 | esutils "^2.0.2" 489 | 490 | doctrine@^3.0.0: 491 | version "3.0.0" 492 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 493 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 494 | dependencies: 495 | esutils "^2.0.2" 496 | 497 | emoji-regex@^9.2.2: 498 | version "9.2.2" 499 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 500 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 501 | 502 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 503 | version "1.20.4" 504 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" 505 | integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== 506 | dependencies: 507 | call-bind "^1.0.2" 508 | es-to-primitive "^1.2.1" 509 | function-bind "^1.1.1" 510 | function.prototype.name "^1.1.5" 511 | get-intrinsic "^1.1.3" 512 | get-symbol-description "^1.0.0" 513 | has "^1.0.3" 514 | has-property-descriptors "^1.0.0" 515 | has-symbols "^1.0.3" 516 | internal-slot "^1.0.3" 517 | is-callable "^1.2.7" 518 | is-negative-zero "^2.0.2" 519 | is-regex "^1.1.4" 520 | is-shared-array-buffer "^1.0.2" 521 | is-string "^1.0.7" 522 | is-weakref "^1.0.2" 523 | object-inspect "^1.12.2" 524 | object-keys "^1.1.1" 525 | object.assign "^4.1.4" 526 | regexp.prototype.flags "^1.4.3" 527 | safe-regex-test "^1.0.0" 528 | string.prototype.trimend "^1.0.5" 529 | string.prototype.trimstart "^1.0.5" 530 | unbox-primitive "^1.0.2" 531 | 532 | es-shim-unscopables@^1.0.0: 533 | version "1.0.0" 534 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 535 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 536 | dependencies: 537 | has "^1.0.3" 538 | 539 | es-to-primitive@^1.2.1: 540 | version "1.2.1" 541 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 542 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 543 | dependencies: 544 | is-callable "^1.1.4" 545 | is-date-object "^1.0.1" 546 | is-symbol "^1.0.2" 547 | 548 | escape-string-regexp@^4.0.0: 549 | version "4.0.0" 550 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 551 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 552 | 553 | eslint-config-next@12.3.1: 554 | version "12.3.1" 555 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.3.1.tgz#5d4eb0b7903cea81fd0d5106601d3afb0a453ff4" 556 | integrity sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg== 557 | dependencies: 558 | "@next/eslint-plugin-next" "12.3.1" 559 | "@rushstack/eslint-patch" "^1.1.3" 560 | "@typescript-eslint/parser" "^5.21.0" 561 | eslint-import-resolver-node "^0.3.6" 562 | eslint-import-resolver-typescript "^2.7.1" 563 | eslint-plugin-import "^2.26.0" 564 | eslint-plugin-jsx-a11y "^6.5.1" 565 | eslint-plugin-react "^7.31.7" 566 | eslint-plugin-react-hooks "^4.5.0" 567 | 568 | eslint-import-resolver-node@^0.3.6: 569 | version "0.3.6" 570 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 571 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 572 | dependencies: 573 | debug "^3.2.7" 574 | resolve "^1.20.0" 575 | 576 | eslint-import-resolver-typescript@^2.7.1: 577 | version "2.7.1" 578 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" 579 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== 580 | dependencies: 581 | debug "^4.3.4" 582 | glob "^7.2.0" 583 | is-glob "^4.0.3" 584 | resolve "^1.22.0" 585 | tsconfig-paths "^3.14.1" 586 | 587 | eslint-module-utils@^2.7.3: 588 | version "2.7.4" 589 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 590 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 591 | dependencies: 592 | debug "^3.2.7" 593 | 594 | eslint-plugin-import@^2.26.0: 595 | version "2.26.0" 596 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" 597 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== 598 | dependencies: 599 | array-includes "^3.1.4" 600 | array.prototype.flat "^1.2.5" 601 | debug "^2.6.9" 602 | doctrine "^2.1.0" 603 | eslint-import-resolver-node "^0.3.6" 604 | eslint-module-utils "^2.7.3" 605 | has "^1.0.3" 606 | is-core-module "^2.8.1" 607 | is-glob "^4.0.3" 608 | minimatch "^3.1.2" 609 | object.values "^1.1.5" 610 | resolve "^1.22.0" 611 | tsconfig-paths "^3.14.1" 612 | 613 | eslint-plugin-jsx-a11y@^6.5.1: 614 | version "6.6.1" 615 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff" 616 | integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q== 617 | dependencies: 618 | "@babel/runtime" "^7.18.9" 619 | aria-query "^4.2.2" 620 | array-includes "^3.1.5" 621 | ast-types-flow "^0.0.7" 622 | axe-core "^4.4.3" 623 | axobject-query "^2.2.0" 624 | damerau-levenshtein "^1.0.8" 625 | emoji-regex "^9.2.2" 626 | has "^1.0.3" 627 | jsx-ast-utils "^3.3.2" 628 | language-tags "^1.0.5" 629 | minimatch "^3.1.2" 630 | semver "^6.3.0" 631 | 632 | eslint-plugin-react-hooks@^4.5.0: 633 | version "4.6.0" 634 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 635 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 636 | 637 | eslint-plugin-react@^7.31.7: 638 | version "7.31.10" 639 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a" 640 | integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== 641 | dependencies: 642 | array-includes "^3.1.5" 643 | array.prototype.flatmap "^1.3.0" 644 | doctrine "^2.1.0" 645 | estraverse "^5.3.0" 646 | jsx-ast-utils "^2.4.1 || ^3.0.0" 647 | minimatch "^3.1.2" 648 | object.entries "^1.1.5" 649 | object.fromentries "^2.0.5" 650 | object.hasown "^1.1.1" 651 | object.values "^1.1.5" 652 | prop-types "^15.8.1" 653 | resolve "^2.0.0-next.3" 654 | semver "^6.3.0" 655 | string.prototype.matchall "^4.0.7" 656 | 657 | eslint-scope@^7.1.1: 658 | version "7.1.1" 659 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 660 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 661 | dependencies: 662 | esrecurse "^4.3.0" 663 | estraverse "^5.2.0" 664 | 665 | eslint-utils@^3.0.0: 666 | version "3.0.0" 667 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 668 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 669 | dependencies: 670 | eslint-visitor-keys "^2.0.0" 671 | 672 | eslint-visitor-keys@^2.0.0: 673 | version "2.1.0" 674 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 675 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 676 | 677 | eslint-visitor-keys@^3.3.0: 678 | version "3.3.0" 679 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 680 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 681 | 682 | eslint@8.25.0: 683 | version "8.25.0" 684 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b" 685 | integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A== 686 | dependencies: 687 | "@eslint/eslintrc" "^1.3.3" 688 | "@humanwhocodes/config-array" "^0.10.5" 689 | "@humanwhocodes/module-importer" "^1.0.1" 690 | ajv "^6.10.0" 691 | chalk "^4.0.0" 692 | cross-spawn "^7.0.2" 693 | debug "^4.3.2" 694 | doctrine "^3.0.0" 695 | escape-string-regexp "^4.0.0" 696 | eslint-scope "^7.1.1" 697 | eslint-utils "^3.0.0" 698 | eslint-visitor-keys "^3.3.0" 699 | espree "^9.4.0" 700 | esquery "^1.4.0" 701 | esutils "^2.0.2" 702 | fast-deep-equal "^3.1.3" 703 | file-entry-cache "^6.0.1" 704 | find-up "^5.0.0" 705 | glob-parent "^6.0.1" 706 | globals "^13.15.0" 707 | globby "^11.1.0" 708 | grapheme-splitter "^1.0.4" 709 | ignore "^5.2.0" 710 | import-fresh "^3.0.0" 711 | imurmurhash "^0.1.4" 712 | is-glob "^4.0.0" 713 | js-sdsl "^4.1.4" 714 | js-yaml "^4.1.0" 715 | json-stable-stringify-without-jsonify "^1.0.1" 716 | levn "^0.4.1" 717 | lodash.merge "^4.6.2" 718 | minimatch "^3.1.2" 719 | natural-compare "^1.4.0" 720 | optionator "^0.9.1" 721 | regexpp "^3.2.0" 722 | strip-ansi "^6.0.1" 723 | strip-json-comments "^3.1.0" 724 | text-table "^0.2.0" 725 | 726 | espree@^9.4.0: 727 | version "9.4.0" 728 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" 729 | integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== 730 | dependencies: 731 | acorn "^8.8.0" 732 | acorn-jsx "^5.3.2" 733 | eslint-visitor-keys "^3.3.0" 734 | 735 | esquery@^1.4.0: 736 | version "1.4.0" 737 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 738 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 739 | dependencies: 740 | estraverse "^5.1.0" 741 | 742 | esrecurse@^4.3.0: 743 | version "4.3.0" 744 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 745 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 746 | dependencies: 747 | estraverse "^5.2.0" 748 | 749 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 750 | version "5.3.0" 751 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 752 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 753 | 754 | esutils@^2.0.2: 755 | version "2.0.3" 756 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 757 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 758 | 759 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 760 | version "3.1.3" 761 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 762 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 763 | 764 | fast-glob@^3.2.9: 765 | version "3.2.12" 766 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 767 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 768 | dependencies: 769 | "@nodelib/fs.stat" "^2.0.2" 770 | "@nodelib/fs.walk" "^1.2.3" 771 | glob-parent "^5.1.2" 772 | merge2 "^1.3.0" 773 | micromatch "^4.0.4" 774 | 775 | fast-json-stable-stringify@^2.0.0: 776 | version "2.1.0" 777 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 778 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 779 | 780 | fast-levenshtein@^2.0.6: 781 | version "2.0.6" 782 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 783 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 784 | 785 | fastq@^1.6.0: 786 | version "1.13.0" 787 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 788 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 789 | dependencies: 790 | reusify "^1.0.4" 791 | 792 | file-entry-cache@^6.0.1: 793 | version "6.0.1" 794 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 795 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 796 | dependencies: 797 | flat-cache "^3.0.4" 798 | 799 | fill-range@^7.0.1: 800 | version "7.0.1" 801 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 802 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 803 | dependencies: 804 | to-regex-range "^5.0.1" 805 | 806 | find-up@^5.0.0: 807 | version "5.0.0" 808 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 809 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 810 | dependencies: 811 | locate-path "^6.0.0" 812 | path-exists "^4.0.0" 813 | 814 | flat-cache@^3.0.4: 815 | version "3.0.4" 816 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 817 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 818 | dependencies: 819 | flatted "^3.1.0" 820 | rimraf "^3.0.2" 821 | 822 | flatted@^3.1.0: 823 | version "3.2.7" 824 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 825 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 826 | 827 | fs.realpath@^1.0.0: 828 | version "1.0.0" 829 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 830 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 831 | 832 | function-bind@^1.1.1: 833 | version "1.1.1" 834 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 835 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 836 | 837 | function.prototype.name@^1.1.5: 838 | version "1.1.5" 839 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 840 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 841 | dependencies: 842 | call-bind "^1.0.2" 843 | define-properties "^1.1.3" 844 | es-abstract "^1.19.0" 845 | functions-have-names "^1.2.2" 846 | 847 | functions-have-names@^1.2.2: 848 | version "1.2.3" 849 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 850 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 851 | 852 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 853 | version "1.1.3" 854 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 855 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 856 | dependencies: 857 | function-bind "^1.1.1" 858 | has "^1.0.3" 859 | has-symbols "^1.0.3" 860 | 861 | get-symbol-description@^1.0.0: 862 | version "1.0.0" 863 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 864 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 865 | dependencies: 866 | call-bind "^1.0.2" 867 | get-intrinsic "^1.1.1" 868 | 869 | glob-parent@^5.1.2: 870 | version "5.1.2" 871 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 872 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 873 | dependencies: 874 | is-glob "^4.0.1" 875 | 876 | glob-parent@^6.0.1: 877 | version "6.0.2" 878 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 879 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 880 | dependencies: 881 | is-glob "^4.0.3" 882 | 883 | glob@7.1.7: 884 | version "7.1.7" 885 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 886 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 887 | dependencies: 888 | fs.realpath "^1.0.0" 889 | inflight "^1.0.4" 890 | inherits "2" 891 | minimatch "^3.0.4" 892 | once "^1.3.0" 893 | path-is-absolute "^1.0.0" 894 | 895 | glob@^7.1.3, glob@^7.2.0: 896 | version "7.2.3" 897 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 898 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 899 | dependencies: 900 | fs.realpath "^1.0.0" 901 | inflight "^1.0.4" 902 | inherits "2" 903 | minimatch "^3.1.1" 904 | once "^1.3.0" 905 | path-is-absolute "^1.0.0" 906 | 907 | globals@^13.15.0: 908 | version "13.17.0" 909 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" 910 | integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== 911 | dependencies: 912 | type-fest "^0.20.2" 913 | 914 | globby@^11.1.0: 915 | version "11.1.0" 916 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 917 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 918 | dependencies: 919 | array-union "^2.1.0" 920 | dir-glob "^3.0.1" 921 | fast-glob "^3.2.9" 922 | ignore "^5.2.0" 923 | merge2 "^1.4.1" 924 | slash "^3.0.0" 925 | 926 | grapheme-splitter@^1.0.4: 927 | version "1.0.4" 928 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 929 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 930 | 931 | has-bigints@^1.0.1, has-bigints@^1.0.2: 932 | version "1.0.2" 933 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 934 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 935 | 936 | has-flag@^4.0.0: 937 | version "4.0.0" 938 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 939 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 940 | 941 | has-property-descriptors@^1.0.0: 942 | version "1.0.0" 943 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 944 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 945 | dependencies: 946 | get-intrinsic "^1.1.1" 947 | 948 | has-symbols@^1.0.2, has-symbols@^1.0.3: 949 | version "1.0.3" 950 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 951 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 952 | 953 | has-tostringtag@^1.0.0: 954 | version "1.0.0" 955 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 956 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 957 | dependencies: 958 | has-symbols "^1.0.2" 959 | 960 | has@^1.0.3: 961 | version "1.0.3" 962 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 963 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 964 | dependencies: 965 | function-bind "^1.1.1" 966 | 967 | http-errors@^2.0.0: 968 | version "2.0.0" 969 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" 970 | integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== 971 | dependencies: 972 | depd "2.0.0" 973 | inherits "2.0.4" 974 | setprototypeof "1.2.0" 975 | statuses "2.0.1" 976 | toidentifier "1.0.1" 977 | 978 | ignore@^5.2.0: 979 | version "5.2.0" 980 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 981 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 982 | 983 | import-fresh@^3.0.0, import-fresh@^3.2.1: 984 | version "3.3.0" 985 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 986 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 987 | dependencies: 988 | parent-module "^1.0.0" 989 | resolve-from "^4.0.0" 990 | 991 | imurmurhash@^0.1.4: 992 | version "0.1.4" 993 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 994 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 995 | 996 | inflight@^1.0.4: 997 | version "1.0.6" 998 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 999 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1000 | dependencies: 1001 | once "^1.3.0" 1002 | wrappy "1" 1003 | 1004 | inherits@2, inherits@2.0.4: 1005 | version "2.0.4" 1006 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1007 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1008 | 1009 | internal-slot@^1.0.3: 1010 | version "1.0.3" 1011 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1012 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1013 | dependencies: 1014 | get-intrinsic "^1.1.0" 1015 | has "^1.0.3" 1016 | side-channel "^1.0.4" 1017 | 1018 | is-bigint@^1.0.1: 1019 | version "1.0.4" 1020 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1021 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1022 | dependencies: 1023 | has-bigints "^1.0.1" 1024 | 1025 | is-boolean-object@^1.1.0: 1026 | version "1.1.2" 1027 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1028 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1029 | dependencies: 1030 | call-bind "^1.0.2" 1031 | has-tostringtag "^1.0.0" 1032 | 1033 | is-callable@^1.1.4, is-callable@^1.2.7: 1034 | version "1.2.7" 1035 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1036 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1037 | 1038 | is-core-module@^2.8.1, is-core-module@^2.9.0: 1039 | version "2.10.0" 1040 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" 1041 | integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== 1042 | dependencies: 1043 | has "^1.0.3" 1044 | 1045 | is-date-object@^1.0.1: 1046 | version "1.0.5" 1047 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1048 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1049 | dependencies: 1050 | has-tostringtag "^1.0.0" 1051 | 1052 | is-extglob@^2.1.1: 1053 | version "2.1.1" 1054 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1055 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1056 | 1057 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1058 | version "4.0.3" 1059 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1060 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1061 | dependencies: 1062 | is-extglob "^2.1.1" 1063 | 1064 | is-negative-zero@^2.0.2: 1065 | version "2.0.2" 1066 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1067 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1068 | 1069 | is-number-object@^1.0.4: 1070 | version "1.0.7" 1071 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1072 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1073 | dependencies: 1074 | has-tostringtag "^1.0.0" 1075 | 1076 | is-number@^7.0.0: 1077 | version "7.0.0" 1078 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1079 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1080 | 1081 | is-regex@^1.1.4: 1082 | version "1.1.4" 1083 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1084 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1085 | dependencies: 1086 | call-bind "^1.0.2" 1087 | has-tostringtag "^1.0.0" 1088 | 1089 | is-shared-array-buffer@^1.0.2: 1090 | version "1.0.2" 1091 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1092 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1093 | dependencies: 1094 | call-bind "^1.0.2" 1095 | 1096 | is-string@^1.0.5, is-string@^1.0.7: 1097 | version "1.0.7" 1098 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1099 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1100 | dependencies: 1101 | has-tostringtag "^1.0.0" 1102 | 1103 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1104 | version "1.0.4" 1105 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1106 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1107 | dependencies: 1108 | has-symbols "^1.0.2" 1109 | 1110 | is-weakref@^1.0.2: 1111 | version "1.0.2" 1112 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1113 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1114 | dependencies: 1115 | call-bind "^1.0.2" 1116 | 1117 | isexe@^2.0.0: 1118 | version "2.0.0" 1119 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1120 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1121 | 1122 | js-sdsl@^4.1.4: 1123 | version "4.1.5" 1124 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" 1125 | integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== 1126 | 1127 | "js-tokens@^3.0.0 || ^4.0.0": 1128 | version "4.0.0" 1129 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1130 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1131 | 1132 | js-yaml@^4.1.0: 1133 | version "4.1.0" 1134 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1135 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1136 | dependencies: 1137 | argparse "^2.0.1" 1138 | 1139 | json-schema-traverse@^0.4.1: 1140 | version "0.4.1" 1141 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1142 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1143 | 1144 | json-stable-stringify-without-jsonify@^1.0.1: 1145 | version "1.0.1" 1146 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1147 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1148 | 1149 | json5@^1.0.1: 1150 | version "1.0.1" 1151 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1152 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1153 | dependencies: 1154 | minimist "^1.2.0" 1155 | 1156 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2: 1157 | version "3.3.3" 1158 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 1159 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1160 | dependencies: 1161 | array-includes "^3.1.5" 1162 | object.assign "^4.1.3" 1163 | 1164 | language-subtag-registry@~0.3.2: 1165 | version "0.3.22" 1166 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" 1167 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 1168 | 1169 | language-tags@^1.0.5: 1170 | version "1.0.5" 1171 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1172 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1173 | dependencies: 1174 | language-subtag-registry "~0.3.2" 1175 | 1176 | levn@^0.4.1: 1177 | version "0.4.1" 1178 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1179 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1180 | dependencies: 1181 | prelude-ls "^1.2.1" 1182 | type-check "~0.4.0" 1183 | 1184 | locate-path@^6.0.0: 1185 | version "6.0.0" 1186 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1187 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1188 | dependencies: 1189 | p-locate "^5.0.0" 1190 | 1191 | lodash-es@^4.17.21: 1192 | version "4.17.21" 1193 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" 1194 | integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== 1195 | 1196 | lodash.merge@^4.6.2: 1197 | version "4.6.2" 1198 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1199 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1200 | 1201 | lodash@^4.17.21: 1202 | version "4.17.21" 1203 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1204 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1205 | 1206 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1207 | version "1.4.0" 1208 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1209 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1210 | dependencies: 1211 | js-tokens "^3.0.0 || ^4.0.0" 1212 | 1213 | lru-cache@^6.0.0: 1214 | version "6.0.0" 1215 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1216 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1217 | dependencies: 1218 | yallist "^4.0.0" 1219 | 1220 | merge2@^1.3.0, merge2@^1.4.1: 1221 | version "1.4.1" 1222 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1223 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1224 | 1225 | micromatch@^4.0.4: 1226 | version "4.0.5" 1227 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1228 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1229 | dependencies: 1230 | braces "^3.0.2" 1231 | picomatch "^2.3.1" 1232 | 1233 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1234 | version "3.1.2" 1235 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1236 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1237 | dependencies: 1238 | brace-expansion "^1.1.7" 1239 | 1240 | minimist@^1.2.0, minimist@^1.2.6: 1241 | version "1.2.7" 1242 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1243 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1244 | 1245 | ms@2.0.0: 1246 | version "2.0.0" 1247 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1248 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1249 | 1250 | ms@2.1.2: 1251 | version "2.1.2" 1252 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1253 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1254 | 1255 | ms@^2.1.1: 1256 | version "2.1.3" 1257 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1258 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1259 | 1260 | nanoclone@^0.2.1: 1261 | version "0.2.1" 1262 | resolved "https://registry.yarnpkg.com/nanoclone/-/nanoclone-0.2.1.tgz#dd4090f8f1a110d26bb32c49ed2f5b9235209ed4" 1263 | integrity sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA== 1264 | 1265 | nanoid@^3.3.4: 1266 | version "3.3.4" 1267 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1268 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1269 | 1270 | natural-compare@^1.4.0: 1271 | version "1.4.0" 1272 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1273 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1274 | 1275 | next@12.3.1: 1276 | version "12.3.1" 1277 | resolved "https://registry.yarnpkg.com/next/-/next-12.3.1.tgz#127b825ad2207faf869b33393ec8c75fe61e50f1" 1278 | integrity sha512-l7bvmSeIwX5lp07WtIiP9u2ytZMv7jIeB8iacR28PuUEFG5j0HGAPnMqyG5kbZNBG2H7tRsrQ4HCjuMOPnANZw== 1279 | dependencies: 1280 | "@next/env" "12.3.1" 1281 | "@swc/helpers" "0.4.11" 1282 | caniuse-lite "^1.0.30001406" 1283 | postcss "8.4.14" 1284 | styled-jsx "5.0.7" 1285 | use-sync-external-store "1.2.0" 1286 | optionalDependencies: 1287 | "@next/swc-android-arm-eabi" "12.3.1" 1288 | "@next/swc-android-arm64" "12.3.1" 1289 | "@next/swc-darwin-arm64" "12.3.1" 1290 | "@next/swc-darwin-x64" "12.3.1" 1291 | "@next/swc-freebsd-x64" "12.3.1" 1292 | "@next/swc-linux-arm-gnueabihf" "12.3.1" 1293 | "@next/swc-linux-arm64-gnu" "12.3.1" 1294 | "@next/swc-linux-arm64-musl" "12.3.1" 1295 | "@next/swc-linux-x64-gnu" "12.3.1" 1296 | "@next/swc-linux-x64-musl" "12.3.1" 1297 | "@next/swc-win32-arm64-msvc" "12.3.1" 1298 | "@next/swc-win32-ia32-msvc" "12.3.1" 1299 | "@next/swc-win32-x64-msvc" "12.3.1" 1300 | 1301 | object-assign@^4.1.1: 1302 | version "4.1.1" 1303 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1304 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1305 | 1306 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1307 | version "1.12.2" 1308 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1309 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1310 | 1311 | object-keys@^1.1.1: 1312 | version "1.1.1" 1313 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1314 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1315 | 1316 | object.assign@^4.1.3, object.assign@^4.1.4: 1317 | version "4.1.4" 1318 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1319 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1320 | dependencies: 1321 | call-bind "^1.0.2" 1322 | define-properties "^1.1.4" 1323 | has-symbols "^1.0.3" 1324 | object-keys "^1.1.1" 1325 | 1326 | object.entries@^1.1.5: 1327 | version "1.1.5" 1328 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1329 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1330 | dependencies: 1331 | call-bind "^1.0.2" 1332 | define-properties "^1.1.3" 1333 | es-abstract "^1.19.1" 1334 | 1335 | object.fromentries@^2.0.5: 1336 | version "2.0.5" 1337 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1338 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1339 | dependencies: 1340 | call-bind "^1.0.2" 1341 | define-properties "^1.1.3" 1342 | es-abstract "^1.19.1" 1343 | 1344 | object.hasown@^1.1.1: 1345 | version "1.1.1" 1346 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 1347 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 1348 | dependencies: 1349 | define-properties "^1.1.4" 1350 | es-abstract "^1.19.5" 1351 | 1352 | object.values@^1.1.5: 1353 | version "1.1.5" 1354 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1355 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1356 | dependencies: 1357 | call-bind "^1.0.2" 1358 | define-properties "^1.1.3" 1359 | es-abstract "^1.19.1" 1360 | 1361 | once@^1.3.0: 1362 | version "1.4.0" 1363 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1364 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1365 | dependencies: 1366 | wrappy "1" 1367 | 1368 | optionator@^0.9.1: 1369 | version "0.9.1" 1370 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1371 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1372 | dependencies: 1373 | deep-is "^0.1.3" 1374 | fast-levenshtein "^2.0.6" 1375 | levn "^0.4.1" 1376 | prelude-ls "^1.2.1" 1377 | type-check "^0.4.0" 1378 | word-wrap "^1.2.3" 1379 | 1380 | p-limit@^3.0.2: 1381 | version "3.1.0" 1382 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1383 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1384 | dependencies: 1385 | yocto-queue "^0.1.0" 1386 | 1387 | p-locate@^5.0.0: 1388 | version "5.0.0" 1389 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1390 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1391 | dependencies: 1392 | p-limit "^3.0.2" 1393 | 1394 | parent-module@^1.0.0: 1395 | version "1.0.1" 1396 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1397 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1398 | dependencies: 1399 | callsites "^3.0.0" 1400 | 1401 | path-exists@^4.0.0: 1402 | version "4.0.0" 1403 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1404 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1405 | 1406 | path-is-absolute@^1.0.0: 1407 | version "1.0.1" 1408 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1409 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1410 | 1411 | path-key@^3.1.0: 1412 | version "3.1.1" 1413 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1414 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1415 | 1416 | path-parse@^1.0.7: 1417 | version "1.0.7" 1418 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1419 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1420 | 1421 | path-type@^4.0.0: 1422 | version "4.0.0" 1423 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1424 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1425 | 1426 | picocolors@^1.0.0: 1427 | version "1.0.0" 1428 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1429 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1430 | 1431 | picomatch@^2.3.1: 1432 | version "2.3.1" 1433 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1434 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1435 | 1436 | postcss@8.4.14: 1437 | version "8.4.14" 1438 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" 1439 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 1440 | dependencies: 1441 | nanoid "^3.3.4" 1442 | picocolors "^1.0.0" 1443 | source-map-js "^1.0.2" 1444 | 1445 | prelude-ls@^1.2.1: 1446 | version "1.2.1" 1447 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1448 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1449 | 1450 | prop-types@^15.8.1: 1451 | version "15.8.1" 1452 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1453 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1454 | dependencies: 1455 | loose-envify "^1.4.0" 1456 | object-assign "^4.1.1" 1457 | react-is "^16.13.1" 1458 | 1459 | property-expr@^2.0.4: 1460 | version "2.0.5" 1461 | resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.5.tgz#278bdb15308ae16af3e3b9640024524f4dc02cb4" 1462 | integrity sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA== 1463 | 1464 | punycode@^2.1.0: 1465 | version "2.1.1" 1466 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1467 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1468 | 1469 | queue-microtask@^1.2.2: 1470 | version "1.2.3" 1471 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1472 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1473 | 1474 | react-dom@18.2.0: 1475 | version "18.2.0" 1476 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1477 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1478 | dependencies: 1479 | loose-envify "^1.1.0" 1480 | scheduler "^0.23.0" 1481 | 1482 | react-is@^16.13.1: 1483 | version "16.13.1" 1484 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1485 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1486 | 1487 | react@18.2.0: 1488 | version "18.2.0" 1489 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1490 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1491 | dependencies: 1492 | loose-envify "^1.1.0" 1493 | 1494 | regenerator-runtime@^0.13.4: 1495 | version "0.13.10" 1496 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" 1497 | integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== 1498 | 1499 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 1500 | version "1.4.3" 1501 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1502 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1503 | dependencies: 1504 | call-bind "^1.0.2" 1505 | define-properties "^1.1.3" 1506 | functions-have-names "^1.2.2" 1507 | 1508 | regexpp@^3.2.0: 1509 | version "3.2.0" 1510 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1511 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1512 | 1513 | resolve-from@^4.0.0: 1514 | version "4.0.0" 1515 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1516 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1517 | 1518 | resolve@^1.20.0, resolve@^1.22.0: 1519 | version "1.22.1" 1520 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1521 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1522 | dependencies: 1523 | is-core-module "^2.9.0" 1524 | path-parse "^1.0.7" 1525 | supports-preserve-symlinks-flag "^1.0.0" 1526 | 1527 | resolve@^2.0.0-next.3: 1528 | version "2.0.0-next.4" 1529 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1530 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1531 | dependencies: 1532 | is-core-module "^2.9.0" 1533 | path-parse "^1.0.7" 1534 | supports-preserve-symlinks-flag "^1.0.0" 1535 | 1536 | reusify@^1.0.4: 1537 | version "1.0.4" 1538 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1539 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1540 | 1541 | rimraf@^3.0.2: 1542 | version "3.0.2" 1543 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1544 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1545 | dependencies: 1546 | glob "^7.1.3" 1547 | 1548 | run-parallel@^1.1.9: 1549 | version "1.2.0" 1550 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1551 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1552 | dependencies: 1553 | queue-microtask "^1.2.2" 1554 | 1555 | safe-regex-test@^1.0.0: 1556 | version "1.0.0" 1557 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1558 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1559 | dependencies: 1560 | call-bind "^1.0.2" 1561 | get-intrinsic "^1.1.3" 1562 | is-regex "^1.1.4" 1563 | 1564 | scheduler@^0.23.0: 1565 | version "0.23.0" 1566 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1567 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1568 | dependencies: 1569 | loose-envify "^1.1.0" 1570 | 1571 | semver@^6.3.0: 1572 | version "6.3.0" 1573 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1574 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1575 | 1576 | semver@^7.3.7: 1577 | version "7.3.8" 1578 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1579 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1580 | dependencies: 1581 | lru-cache "^6.0.0" 1582 | 1583 | setprototypeof@1.2.0: 1584 | version "1.2.0" 1585 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" 1586 | integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== 1587 | 1588 | shebang-command@^2.0.0: 1589 | version "2.0.0" 1590 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1591 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1592 | dependencies: 1593 | shebang-regex "^3.0.0" 1594 | 1595 | shebang-regex@^3.0.0: 1596 | version "3.0.0" 1597 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1598 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1599 | 1600 | side-channel@^1.0.4: 1601 | version "1.0.4" 1602 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1603 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1604 | dependencies: 1605 | call-bind "^1.0.0" 1606 | get-intrinsic "^1.0.2" 1607 | object-inspect "^1.9.0" 1608 | 1609 | slash@^3.0.0: 1610 | version "3.0.0" 1611 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1612 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1613 | 1614 | source-map-js@^1.0.2: 1615 | version "1.0.2" 1616 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1617 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1618 | 1619 | statuses@2.0.1: 1620 | version "2.0.1" 1621 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" 1622 | integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== 1623 | 1624 | string.prototype.matchall@^4.0.7: 1625 | version "4.0.7" 1626 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 1627 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 1628 | dependencies: 1629 | call-bind "^1.0.2" 1630 | define-properties "^1.1.3" 1631 | es-abstract "^1.19.1" 1632 | get-intrinsic "^1.1.1" 1633 | has-symbols "^1.0.3" 1634 | internal-slot "^1.0.3" 1635 | regexp.prototype.flags "^1.4.1" 1636 | side-channel "^1.0.4" 1637 | 1638 | string.prototype.trimend@^1.0.5: 1639 | version "1.0.5" 1640 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 1641 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 1642 | dependencies: 1643 | call-bind "^1.0.2" 1644 | define-properties "^1.1.4" 1645 | es-abstract "^1.19.5" 1646 | 1647 | string.prototype.trimstart@^1.0.5: 1648 | version "1.0.5" 1649 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 1650 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 1651 | dependencies: 1652 | call-bind "^1.0.2" 1653 | define-properties "^1.1.4" 1654 | es-abstract "^1.19.5" 1655 | 1656 | strip-ansi@^6.0.1: 1657 | version "6.0.1" 1658 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1659 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1660 | dependencies: 1661 | ansi-regex "^5.0.1" 1662 | 1663 | strip-bom@^3.0.0: 1664 | version "3.0.0" 1665 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1666 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1667 | 1668 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1669 | version "3.1.1" 1670 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1671 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1672 | 1673 | styled-jsx@5.0.7: 1674 | version "5.0.7" 1675 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.7.tgz#be44afc53771b983769ac654d355ca8d019dff48" 1676 | integrity sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA== 1677 | 1678 | supports-color@^7.1.0: 1679 | version "7.2.0" 1680 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1681 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1682 | dependencies: 1683 | has-flag "^4.0.0" 1684 | 1685 | supports-preserve-symlinks-flag@^1.0.0: 1686 | version "1.0.0" 1687 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1688 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1689 | 1690 | text-table@^0.2.0: 1691 | version "0.2.0" 1692 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1693 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1694 | 1695 | to-regex-range@^5.0.1: 1696 | version "5.0.1" 1697 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1698 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1699 | dependencies: 1700 | is-number "^7.0.0" 1701 | 1702 | toidentifier@1.0.1: 1703 | version "1.0.1" 1704 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" 1705 | integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== 1706 | 1707 | toposort@^2.0.2: 1708 | version "2.0.2" 1709 | resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" 1710 | integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== 1711 | 1712 | tsconfig-paths@^3.14.1: 1713 | version "3.14.1" 1714 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 1715 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 1716 | dependencies: 1717 | "@types/json5" "^0.0.29" 1718 | json5 "^1.0.1" 1719 | minimist "^1.2.6" 1720 | strip-bom "^3.0.0" 1721 | 1722 | tslib@^1.8.1: 1723 | version "1.14.1" 1724 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1725 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1726 | 1727 | tslib@^2.4.0: 1728 | version "2.4.0" 1729 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" 1730 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== 1731 | 1732 | tsutils@^3.21.0: 1733 | version "3.21.0" 1734 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 1735 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 1736 | dependencies: 1737 | tslib "^1.8.1" 1738 | 1739 | type-check@^0.4.0, type-check@~0.4.0: 1740 | version "0.4.0" 1741 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1742 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1743 | dependencies: 1744 | prelude-ls "^1.2.1" 1745 | 1746 | type-fest@^0.20.2: 1747 | version "0.20.2" 1748 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1749 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1750 | 1751 | typescript@4.8.4: 1752 | version "4.8.4" 1753 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6" 1754 | integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== 1755 | 1756 | unbox-primitive@^1.0.2: 1757 | version "1.0.2" 1758 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 1759 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 1760 | dependencies: 1761 | call-bind "^1.0.2" 1762 | has-bigints "^1.0.2" 1763 | has-symbols "^1.0.3" 1764 | which-boxed-primitive "^1.0.2" 1765 | 1766 | uri-js@^4.2.2: 1767 | version "4.4.1" 1768 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1769 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1770 | dependencies: 1771 | punycode "^2.1.0" 1772 | 1773 | use-sync-external-store@1.2.0: 1774 | version "1.2.0" 1775 | resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" 1776 | integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== 1777 | 1778 | which-boxed-primitive@^1.0.2: 1779 | version "1.0.2" 1780 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1781 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1782 | dependencies: 1783 | is-bigint "^1.0.1" 1784 | is-boolean-object "^1.1.0" 1785 | is-number-object "^1.0.4" 1786 | is-string "^1.0.5" 1787 | is-symbol "^1.0.3" 1788 | 1789 | which@^2.0.1: 1790 | version "2.0.2" 1791 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1792 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1793 | dependencies: 1794 | isexe "^2.0.0" 1795 | 1796 | word-wrap@^1.2.3: 1797 | version "1.2.3" 1798 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1799 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1800 | 1801 | wrappy@1: 1802 | version "1.0.2" 1803 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1804 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1805 | 1806 | yallist@^4.0.0: 1807 | version "4.0.0" 1808 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1809 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1810 | 1811 | yocto-queue@^0.1.0: 1812 | version "0.1.0" 1813 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1814 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1815 | 1816 | yup@^0.32.11: 1817 | version "0.32.11" 1818 | resolved "https://registry.yarnpkg.com/yup/-/yup-0.32.11.tgz#d67fb83eefa4698607982e63f7ca4c5ed3cf18c5" 1819 | integrity sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg== 1820 | dependencies: 1821 | "@babel/runtime" "^7.15.4" 1822 | "@types/lodash" "^4.14.175" 1823 | lodash "^4.17.21" 1824 | lodash-es "^4.17.21" 1825 | nanoclone "^0.2.1" 1826 | property-expr "^2.0.4" 1827 | toposort "^2.0.2" 1828 | --------------------------------------------------------------------------------