├── .env.example ├── .eslintrc.json ├── app ├── ssr │ ├── loading.tsx │ ├── page.tsx │ └── layout.tsx ├── page.tsx └── layout.tsx ├── public ├── favicon.ico └── vercel.svg ├── .vscode └── settings.json ├── next.config.js ├── graphql └── queries │ └── characters.ts ├── lib ├── utils │ └── getCookies.ts ├── localStorage.ts └── apolloClient.ts ├── components └── Characters.tsx ├── providers └── Apollo.tsx ├── styles ├── globals.css └── Home.module.css ├── .gitignore ├── package.json ├── tsconfig.json ├── README.md └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_API_URL = http://localhost:4000 -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /app/ssr/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return

Loading SSR...

; 3 | } 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaouz/next-13-apollo-ssr/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib", 3 | "typescript.enablePromptUseWorkspaceTsdk": true 4 | } -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import Characters from "../components/Characters"; 2 | 3 | export default function CSR() { 4 | return ; 5 | } 6 | -------------------------------------------------------------------------------- /app/ssr/page.tsx: -------------------------------------------------------------------------------- 1 | import Characters from "../../components/Characters"; 2 | 3 | export default async function SSR() { 4 | return ; 5 | } 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | swcMinify: true, 5 | experimental: { 6 | appDir: true, 7 | }, 8 | }; 9 | 10 | module.exports = nextConfig; 11 | -------------------------------------------------------------------------------- /graphql/queries/characters.ts: -------------------------------------------------------------------------------- 1 | import { gql } from "@apollo/client"; 2 | 3 | export const CHARACTERS_QUERY = gql` 4 | query { 5 | characters { 6 | results { 7 | name 8 | status 9 | species 10 | type 11 | gender 12 | } 13 | } 14 | } 15 | `; 16 | -------------------------------------------------------------------------------- /lib/utils/getCookies.ts: -------------------------------------------------------------------------------- 1 | export const getCookies = (cookies: string): Record => { 2 | const cookieObject: Record = {}; 3 | const cookieArray = cookies.split(";"); 4 | cookieArray.forEach((cookie) => { 5 | const [key, value] = cookie.split("="); 6 | cookieObject[key.trim()] = value; 7 | }); 8 | return cookieObject; 9 | }; 10 | -------------------------------------------------------------------------------- /components/Characters.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useQuery } from "@apollo/client"; 3 | import { CHARACTERS_QUERY } from "../graphql/queries/characters"; 4 | 5 | export default function Characters() { 6 | const { data, loading, error } = useQuery(CHARACTERS_QUERY); 7 | return ( 8 | <> 9 | {loading &&

Loading...

} 10 |

Characters

11 |
{JSON.stringify(data, null, 4)}
12 | 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /providers/Apollo.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { ApolloProvider } from "@apollo/client"; 3 | import { useApollo } from "@/lib/apolloClient"; 4 | 5 | export default function Apollo({ 6 | children, 7 | apolloState, 8 | }: { 9 | children: React.ReactNode; 10 | apolloState?: string; 11 | }) { 12 | console.log("apolloStaet", apolloState); 13 | const apolloClient = useApollo(JSON.parse(apolloState ?? "{}")); 14 | return {children}; 15 | } 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.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 | .env -------------------------------------------------------------------------------- /lib/localStorage.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This file makes sure that we can get a storage that us unique to the current request context 3 | */ 4 | import { NormalizedCacheObject } from "@apollo/client"; 5 | import { AsyncLocalStorage } from "async_hooks"; 6 | 7 | // https://github.com/vercel/next.js/blob/canary/packages/next/client/components/request-async-storage.ts 8 | export const asyncStorage: 9 | | AsyncLocalStorage<{ apolloState?: NormalizedCacheObject }> 10 | | {} = require("next/dist/client/components/request-async-storage").requestAsyncStorage; 11 | 12 | export function getRequestStorage(): { apolloState?: NormalizedCacheObject } { 13 | if ("getStore" in asyncStorage) { 14 | return asyncStorage.getStore() ?? {}; 15 | } 16 | 17 | return asyncStorage; 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-13-apollo-ssr", 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 | "@apollo/client": "^3.7.1", 13 | "@types/node": "18.11.9", 14 | "@types/react": "18.0.25", 15 | "@types/react-dom": "18.0.9", 16 | "deepmerge": "^4.2.2", 17 | "eslint": "8.28.0", 18 | "eslint-config-next": "13.0.5", 19 | "graphql": "^16.6.0", 20 | "lodash": "^4.17.21", 21 | "next": "13.0.5", 22 | "react": "18.2.0", 23 | "react-dom": "18.2.0", 24 | "typescript": "4.9.3" 25 | }, 26 | "devDependencies": { 27 | "@types/lodash": "^4.14.190" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import { getRequestStorage } from "@/lib/localStorage"; 2 | import Apollo from "@/providers/Apollo"; 3 | import Link from "next/link"; 4 | 5 | export default async function RootLayout({ 6 | children, 7 | }: { 8 | children: React.ReactNode; 9 | }) { 10 | return ( 11 | 12 | 13 | Next 13+ Apollo Client + SSR 14 | 15 | 16 | Go to SSR 17 |

18 | Try navigating between the links, notice if you refresh your page at 19 | the `/ssr` route, then go to the CSR page, the query is cached. 20 |

21 | 24 | {children} 25 | 26 | 27 | 28 | ); 29 | } 30 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2015", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "baseUrl": "./", 7 | "skipLibCheck": true, 8 | "strict": true, 9 | "forceConsistentCasingInFileNames": false, 10 | "noEmit": true, 11 | "strictNullChecks": true, 12 | "strictFunctionTypes": false, 13 | "esModuleInterop": true, 14 | "module": "esnext", 15 | "moduleResolution": "node", 16 | "resolveJsonModule": true, 17 | "isolatedModules": true, 18 | "jsx": "preserve", 19 | "incremental": true, 20 | "paths": { 21 | "@/*": ["./*"] 22 | }, 23 | "plugins": [ 24 | { 25 | "name": "next" 26 | } 27 | ] 28 | }, 29 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 30 | "exclude": ["node_modules"] 31 | } 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Demo URL 2 | 3 | https://next-13-apollo-ssr.vercel.app 4 | 5 | This is a starter repository for using Apollo Client optimally with Next 13's SSR capabilities. 6 | 7 | ## Getting Started 8 | 9 | First, run the development server: 10 | 11 | ```bash 12 | npm run dev 13 | # or 14 | yarn dev 15 | ``` 16 | 17 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 18 | 19 | ## Learn More 20 | 21 | To learn more about Next.js, take a look at the following resources: 22 | 23 | - [Next.js 13 Documentation](https://beta.nextjs.org/docs) - learn about Next.js 13 features 24 | 25 | ## Deploy on Vercel 26 | 27 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 28 | 29 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 30 | -------------------------------------------------------------------------------- /app/ssr/layout.tsx: -------------------------------------------------------------------------------- 1 | import { CHARACTERS_QUERY } from "@/graphql/queries/characters"; 2 | import { initializeApollo } from "@/lib/apolloClient"; 3 | import { cookies } from "next/headers"; 4 | import Apollo from "@/providers/Apollo"; 5 | import Link from "next/link"; 6 | import { getRequestStorage } from "@/lib/localStorage"; 7 | 8 | export default async function SSRLayout({ 9 | children, 10 | }: { 11 | children: React.ReactNode; 12 | }) { 13 | // Set up SSR headers here. 14 | const apolloClient = initializeApollo({ 15 | headers: { 16 | // This is the important part, we need to set the cookie header here. 17 | authorization: cookies().get("authToken")?.value ?? "", 18 | }, 19 | }); 20 | // Calling query here will cause the query to be executed on the server, 21 | // and persist into requestStorage. 22 | await apolloClient.query({ query: CHARACTERS_QUERY }); 23 | return ( 24 | 25 | Go to CSR 26 | {children} 27 | 28 | ); 29 | } 30 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/apolloClient.ts: -------------------------------------------------------------------------------- 1 | import { useMemo } from "react"; 2 | import { 3 | ApolloClient, 4 | ApolloQueryResult, 5 | HttpLink, 6 | InMemoryCache, 7 | NormalizedCacheObject, 8 | OperationVariables, 9 | QueryOptions, 10 | } from "@apollo/client"; 11 | import { relayStylePagination } from "@apollo/client/utilities"; 12 | import merge from "deepmerge"; 13 | import isEqual from "lodash/isEqual"; 14 | import { getCookies } from "./utils/getCookies"; 15 | import { getRequestStorage } from "./localStorage"; 16 | 17 | let apolloClient: ApolloClient | undefined; 18 | 19 | const createApolloClient = () => { 20 | return new ApolloClient({ 21 | ssrMode: typeof window === "undefined", 22 | link: new HttpLink({ 23 | uri: `${process.env.NEXT_PUBLIC_API_URL}/graphql`, // Server URL (must be absolute) 24 | credentials: "include", // Additional fetch() options like `credentials` or `headers` 25 | headers: 26 | typeof window === "undefined" 27 | ? {} // No need to set anything here because we use apolloClient.server on SSR, 28 | : // although we still need to check if window is undefined because of Next.js 29 | { authorization: getCookies(document.cookie).token }, // CSR 30 | }), 31 | cache: new InMemoryCache({ 32 | // typePolicies is not required to use Apollo with Next.js - only for doing pagination. 33 | typePolicies: { 34 | Query: { 35 | fields: { 36 | posts: relayStylePagination(), 37 | }, 38 | }, 39 | }, 40 | }), 41 | }); 42 | }; 43 | 44 | export const mergeCaches = ( 45 | sourceCache: NormalizedCacheObject, 46 | destinationCache: NormalizedCacheObject 47 | ): NormalizedCacheObject => { 48 | // Merge the existing cache into data passed from getStaticProps/getServerSideProps 49 | const data = merge(sourceCache, destinationCache, { 50 | // combine arrays using object equality (like in sets) 51 | arrayMerge: (destinationArray, sourceArray) => [ 52 | ...sourceArray, 53 | ...destinationArray.filter((d) => 54 | sourceArray.every((s) => !isEqual(d, s)) 55 | ), 56 | ], 57 | }); 58 | return data; 59 | }; 60 | 61 | export const initializeApollo = (initialState?: NormalizedCacheObject) => { 62 | const _apolloClient = apolloClient ?? createApolloClient(); 63 | 64 | // If your page has Next.js data fetching methods that use Apollo Client, the initial state 65 | // gets hydrated here 66 | if (initialState) { 67 | // Get existing cache, loaded during client side data fetching 68 | const existingCache = _apolloClient.extract(); 69 | 70 | const data = mergeCaches(initialState, existingCache); 71 | 72 | // Restore the cache with the merged data 73 | _apolloClient.cache.restore(data); 74 | } 75 | 76 | // For SSG and SSR always create a new Apollo Client 77 | if (typeof window === "undefined" && !apolloClient) { 78 | // Override apolloClient query method to persist cache into the request storage 79 | const originalQuery = _apolloClient.query; 80 | _apolloClient.query = async function < 81 | T = unknown, 82 | TVariables = OperationVariables 83 | >(options: QueryOptions): Promise> { 84 | const r = await originalQuery.apply(originalQuery, [options]); 85 | const currentCache = _apolloClient.cache.extract(); 86 | // Put the cache into local storage specific to this request. 87 | getRequestStorage().apolloState = mergeCaches( 88 | getRequestStorage().apolloState ?? {}, 89 | currentCache 90 | ); 91 | return r as ApolloQueryResult; 92 | }; 93 | return _apolloClient; 94 | } 95 | // Create the Apollo Client once in the client 96 | if (!apolloClient) apolloClient = _apolloClient; 97 | 98 | return _apolloClient; 99 | }; 100 | 101 | export const useApollo = (state: NormalizedCacheObject) => { 102 | const store = useMemo(() => initializeApollo(state), [state]); 103 | return store; 104 | }; 105 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@apollo/client@^3.7.1": 6 | version "3.7.1" 7 | resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.7.1.tgz#86ce47c18a0714e229231148b0306562550c2248" 8 | integrity sha512-xu5M/l7p9gT9Fx7nF3AQivp0XukjB7TM7tOd5wifIpI8RskYveL4I+rpTijzWrnqCPZabkbzJKH7WEAKdctt9w== 9 | dependencies: 10 | "@graphql-typed-document-node/core" "^3.1.1" 11 | "@wry/context" "^0.7.0" 12 | "@wry/equality" "^0.5.0" 13 | "@wry/trie" "^0.3.0" 14 | graphql-tag "^2.12.6" 15 | hoist-non-react-statics "^3.3.2" 16 | optimism "^0.16.1" 17 | prop-types "^15.7.2" 18 | response-iterator "^0.2.6" 19 | symbol-observable "^4.0.0" 20 | ts-invariant "^0.10.3" 21 | tslib "^2.3.0" 22 | zen-observable-ts "^1.2.5" 23 | 24 | "@babel/runtime-corejs3@^7.10.2": 25 | version "7.20.1" 26 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz#d0775a49bb5fba77e42cbb7276c9955c7b05af8d" 27 | integrity sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg== 28 | dependencies: 29 | core-js-pure "^3.25.1" 30 | regenerator-runtime "^0.13.10" 31 | 32 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.18.9": 33 | version "7.20.1" 34 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9" 35 | integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg== 36 | dependencies: 37 | regenerator-runtime "^0.13.10" 38 | 39 | "@eslint/eslintrc@^1.3.3": 40 | version "1.3.3" 41 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" 42 | integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== 43 | dependencies: 44 | ajv "^6.12.4" 45 | debug "^4.3.2" 46 | espree "^9.4.0" 47 | globals "^13.15.0" 48 | ignore "^5.2.0" 49 | import-fresh "^3.2.1" 50 | js-yaml "^4.1.0" 51 | minimatch "^3.1.2" 52 | strip-json-comments "^3.1.1" 53 | 54 | "@graphql-typed-document-node/core@^3.1.1": 55 | version "3.1.1" 56 | resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052" 57 | integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg== 58 | 59 | "@humanwhocodes/config-array@^0.11.6": 60 | version "0.11.7" 61 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.7.tgz#38aec044c6c828f6ed51d5d7ae3d9b9faf6dbb0f" 62 | integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw== 63 | dependencies: 64 | "@humanwhocodes/object-schema" "^1.2.1" 65 | debug "^4.1.1" 66 | minimatch "^3.0.5" 67 | 68 | "@humanwhocodes/module-importer@^1.0.1": 69 | version "1.0.1" 70 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 71 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 72 | 73 | "@humanwhocodes/object-schema@^1.2.1": 74 | version "1.2.1" 75 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 76 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 77 | 78 | "@next/env@13.0.5": 79 | version "13.0.5" 80 | resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.5.tgz#f2fafaa42c6693260e00f443853b549509715ad1" 81 | integrity sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w== 82 | 83 | "@next/eslint-plugin-next@13.0.5": 84 | version "13.0.5" 85 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.5.tgz#75af8572ee3163908f08cf357d65ccd24edf5e6b" 86 | integrity sha512-H9U9B1dFnCDmylDZ6/dYt95Ie1Iu+SLBMcO6rkIGIDcj5UK+DNyMiWm83xWBZ1gREM8cfp5Srv1g6wqf8pM4lw== 87 | dependencies: 88 | glob "7.1.7" 89 | 90 | "@next/swc-android-arm-eabi@13.0.5": 91 | version "13.0.5" 92 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.5.tgz#bb83f8a8bea5d3d813059a28624e9ff3c0c22bac" 93 | integrity sha512-YO691dxHlviy6H0eghgwqn+5kU9J3iQnKERHTDSppqjjGDBl6ab4wz9XfI5AhljjkaTg3TknHoIEWFDoZ4Ve8g== 94 | 95 | "@next/swc-android-arm64@13.0.5": 96 | version "13.0.5" 97 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.5.tgz#6082f7e4a7b07c5e1a1284ef0cb3b741b49f03de" 98 | integrity sha512-ugbwffkUmp8cd2afehDC8LtQeFUxElRUBBngfB5UYSWBx18HW4OgzkPFIY8jUBH16zifvGZWXbICXJWDHrOLtw== 99 | 100 | "@next/swc-darwin-arm64@13.0.5": 101 | version "13.0.5" 102 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.5.tgz#764f85446590b8f2894c9aca0c96e039cd1ca5e0" 103 | integrity sha512-mshlh8QOtOalfZbc17uNAftWgqHTKnrv6QUwBe+mpGz04eqsSUzVz1JGZEdIkmuDxOz00cK2NPoc+VHDXh99IQ== 104 | 105 | "@next/swc-darwin-x64@13.0.5": 106 | version "13.0.5" 107 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.5.tgz#f0e4855639279f85f4e0d2bc3d10e5b6c3dff33d" 108 | integrity sha512-SfigOKW4Z2UB3ruUPyvrlDIkcJq1hiw1wvYApWugD+tQsAkYZKEoz+/8emCmeYZ6Gwgi1WHV+z52Oj8u7bEHPg== 109 | 110 | "@next/swc-freebsd-x64@13.0.5": 111 | version "13.0.5" 112 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.5.tgz#1ccc56db2fd6c1a8e10d3952b7cc5fb98c1eed71" 113 | integrity sha512-0NJg8HZr4yG8ynmMGFXQf+Mahvq4ZgBmUwSlLXXymgxEQgH17erH/LoR69uITtW+KTsALgk9axEt5AAabM4ucg== 114 | 115 | "@next/swc-linux-arm-gnueabihf@13.0.5": 116 | version "13.0.5" 117 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.5.tgz#1dd70f03a33d0ea84a5cae03141437ff1e1b5642" 118 | integrity sha512-Cye+h3oDT3NDWjACMlRaolL8fokpKie34FlPj9nfoW7bYKmoMBY1d4IO/GgBF+5xEl7HkH0Ny/qex63vQ0pN+A== 119 | 120 | "@next/swc-linux-arm64-gnu@13.0.5": 121 | version "13.0.5" 122 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.5.tgz#053d8379a509d005128763013e7be8b92abb0304" 123 | integrity sha512-5BfDS/VoRDR5QUGG9oedOCEZGmV2zxUVFYLUJVPMSMeIgqkjxWQBiG2BUHZI6/LGk9yvHmjx7BTvtBCLtRg6IQ== 124 | 125 | "@next/swc-linux-arm64-musl@13.0.5": 126 | version "13.0.5" 127 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.5.tgz#4a260c6e2f8003b01668c9f2ecfefc102f307d04" 128 | integrity sha512-xenvqlXz+KxVKAB1YR723gnVNszpsCvKZkiFFaAYqDGJ502YuqU2fwLsaSm/ASRizNcBYeo9HPLTyc3r/9cdMQ== 129 | 130 | "@next/swc-linux-x64-gnu@13.0.5": 131 | version "13.0.5" 132 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.5.tgz#d886be84865c4b3d720add8b0c1f7e71221972c2" 133 | integrity sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ== 134 | 135 | "@next/swc-linux-x64-musl@13.0.5": 136 | version "13.0.5" 137 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.5.tgz#2d4245512761d90f7e5086df6d6042f078b8e395" 138 | integrity sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w== 139 | 140 | "@next/swc-win32-arm64-msvc@13.0.5": 141 | version "13.0.5" 142 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.5.tgz#19df9e548b3fe1a2aa8491dd7c01ca950977ac9e" 143 | integrity sha512-wRE9rkp7I+/3Jf2T9PFIJOKq3adMWYEFkPOA7XAkUfYbQHlDJm/U5cVCWUsKByyQq5RThwufI91sgd19MfxRxg== 144 | 145 | "@next/swc-win32-ia32-msvc@13.0.5": 146 | version "13.0.5" 147 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.5.tgz#a4de6f9d2556b48869f20b1c0f61c5a88a213319" 148 | integrity sha512-Q1XQSLEhFuFhkKFdJIGt7cYQ4T3u6P5wrtUNreg5M+7P+fjSiC8+X+Vjcw+oebaacsdl0pWZlK+oACGafush1w== 149 | 150 | "@next/swc-win32-x64-msvc@13.0.5": 151 | version "13.0.5" 152 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.5.tgz#f95f882900fe8bf84e049b720f18e851a7187cfe" 153 | integrity sha512-t5gRblrwwiNZP6cT7NkxlgxrFgHWtv9ei5vUraCLgBqzvIsa7X+PnarZUeQCXqz6Jg9JSGGT9j8lvzD97UqeJQ== 154 | 155 | "@nodelib/fs.scandir@2.1.5": 156 | version "2.1.5" 157 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 158 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 159 | dependencies: 160 | "@nodelib/fs.stat" "2.0.5" 161 | run-parallel "^1.1.9" 162 | 163 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 164 | version "2.0.5" 165 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 166 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 167 | 168 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 169 | version "1.2.8" 170 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 171 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 172 | dependencies: 173 | "@nodelib/fs.scandir" "2.1.5" 174 | fastq "^1.6.0" 175 | 176 | "@pkgr/utils@^2.3.1": 177 | version "2.3.1" 178 | resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.3.1.tgz#0a9b06ffddee364d6642b3cd562ca76f55b34a03" 179 | integrity sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw== 180 | dependencies: 181 | cross-spawn "^7.0.3" 182 | is-glob "^4.0.3" 183 | open "^8.4.0" 184 | picocolors "^1.0.0" 185 | tiny-glob "^0.2.9" 186 | tslib "^2.4.0" 187 | 188 | "@rushstack/eslint-patch@^1.1.3": 189 | version "1.2.0" 190 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" 191 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 192 | 193 | "@swc/helpers@0.4.14": 194 | version "0.4.14" 195 | resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" 196 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== 197 | dependencies: 198 | tslib "^2.4.0" 199 | 200 | "@types/json5@^0.0.29": 201 | version "0.0.29" 202 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 203 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 204 | 205 | "@types/lodash@^4.14.190": 206 | version "4.14.190" 207 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.190.tgz#d8e99647af141c63902d0ca53cf2b34d2df33545" 208 | integrity sha512-5iJ3FBJBvQHQ8sFhEhJfjUP+G+LalhavTkYyrAYqz5MEJG+erSv0k9KJLb6q7++17Lafk1scaTIFXcMJlwK8Mw== 209 | 210 | "@types/node@18.11.9": 211 | version "18.11.9" 212 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" 213 | integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== 214 | 215 | "@types/prop-types@*": 216 | version "15.7.5" 217 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 218 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 219 | 220 | "@types/react-dom@18.0.9": 221 | version "18.0.9" 222 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.9.tgz#ffee5e4bfc2a2f8774b15496474f8e7fe8d0b504" 223 | integrity sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg== 224 | dependencies: 225 | "@types/react" "*" 226 | 227 | "@types/react@*", "@types/react@18.0.25": 228 | version "18.0.25" 229 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.25.tgz#8b1dcd7e56fe7315535a4af25435e0bb55c8ae44" 230 | integrity sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g== 231 | dependencies: 232 | "@types/prop-types" "*" 233 | "@types/scheduler" "*" 234 | csstype "^3.0.2" 235 | 236 | "@types/scheduler@*": 237 | version "0.16.2" 238 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 239 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 240 | 241 | "@typescript-eslint/parser@^5.42.0": 242 | version "5.44.0" 243 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.44.0.tgz#99e2c710a2252191e7a79113264f438338b846ad" 244 | integrity sha512-H7LCqbZnKqkkgQHaKLGC6KUjt3pjJDx8ETDqmwncyb6PuoigYajyAwBGz08VU/l86dZWZgI4zm5k2VaKqayYyA== 245 | dependencies: 246 | "@typescript-eslint/scope-manager" "5.44.0" 247 | "@typescript-eslint/types" "5.44.0" 248 | "@typescript-eslint/typescript-estree" "5.44.0" 249 | debug "^4.3.4" 250 | 251 | "@typescript-eslint/scope-manager@5.44.0": 252 | version "5.44.0" 253 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.44.0.tgz#988c3f34b45b3474eb9ff0674c18309dedfc3e04" 254 | integrity sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g== 255 | dependencies: 256 | "@typescript-eslint/types" "5.44.0" 257 | "@typescript-eslint/visitor-keys" "5.44.0" 258 | 259 | "@typescript-eslint/types@5.44.0": 260 | version "5.44.0" 261 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.44.0.tgz#f3f0b89aaff78f097a2927fe5688c07e786a0241" 262 | integrity sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ== 263 | 264 | "@typescript-eslint/typescript-estree@5.44.0": 265 | version "5.44.0" 266 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.44.0.tgz#0461b386203e8d383bb1268b1ed1da9bc905b045" 267 | integrity sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw== 268 | dependencies: 269 | "@typescript-eslint/types" "5.44.0" 270 | "@typescript-eslint/visitor-keys" "5.44.0" 271 | debug "^4.3.4" 272 | globby "^11.1.0" 273 | is-glob "^4.0.3" 274 | semver "^7.3.7" 275 | tsutils "^3.21.0" 276 | 277 | "@typescript-eslint/visitor-keys@5.44.0": 278 | version "5.44.0" 279 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.44.0.tgz#10740dc28902bb903d12ee3a005cc3a70207d433" 280 | integrity sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ== 281 | dependencies: 282 | "@typescript-eslint/types" "5.44.0" 283 | eslint-visitor-keys "^3.3.0" 284 | 285 | "@wry/context@^0.7.0": 286 | version "0.7.0" 287 | resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.7.0.tgz#be88e22c0ddf62aeb0ae9f95c3d90932c619a5c8" 288 | integrity sha512-LcDAiYWRtwAoSOArfk7cuYvFXytxfVrdX7yxoUmK7pPITLk5jYh2F8knCwS7LjgYL8u1eidPlKKV6Ikqq0ODqQ== 289 | dependencies: 290 | tslib "^2.3.0" 291 | 292 | "@wry/equality@^0.5.0": 293 | version "0.5.3" 294 | resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.3.tgz#fafebc69561aa2d40340da89fa7dc4b1f6fb7831" 295 | integrity sha512-avR+UXdSrsF2v8vIqIgmeTY0UR91UT+IyablCyKe/uk22uOJ8fusKZnH9JH9e1/EtLeNJBtagNmL3eJdnOV53g== 296 | dependencies: 297 | tslib "^2.3.0" 298 | 299 | "@wry/trie@^0.3.0": 300 | version "0.3.2" 301 | resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.3.2.tgz#a06f235dc184bd26396ba456711f69f8c35097e6" 302 | integrity sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ== 303 | dependencies: 304 | tslib "^2.3.0" 305 | 306 | acorn-jsx@^5.3.2: 307 | version "5.3.2" 308 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 309 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 310 | 311 | acorn@^8.8.0: 312 | version "8.8.1" 313 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" 314 | integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== 315 | 316 | ajv@^6.10.0, ajv@^6.12.4: 317 | version "6.12.6" 318 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 319 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 320 | dependencies: 321 | fast-deep-equal "^3.1.1" 322 | fast-json-stable-stringify "^2.0.0" 323 | json-schema-traverse "^0.4.1" 324 | uri-js "^4.2.2" 325 | 326 | ansi-regex@^5.0.1: 327 | version "5.0.1" 328 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 329 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 330 | 331 | ansi-styles@^4.1.0: 332 | version "4.3.0" 333 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 334 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 335 | dependencies: 336 | color-convert "^2.0.1" 337 | 338 | argparse@^2.0.1: 339 | version "2.0.1" 340 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 341 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 342 | 343 | aria-query@^4.2.2: 344 | version "4.2.2" 345 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 346 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 347 | dependencies: 348 | "@babel/runtime" "^7.10.2" 349 | "@babel/runtime-corejs3" "^7.10.2" 350 | 351 | array-includes@^3.1.4, array-includes@^3.1.5, array-includes@^3.1.6: 352 | version "3.1.6" 353 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 354 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 355 | dependencies: 356 | call-bind "^1.0.2" 357 | define-properties "^1.1.4" 358 | es-abstract "^1.20.4" 359 | get-intrinsic "^1.1.3" 360 | is-string "^1.0.7" 361 | 362 | array-union@^2.1.0: 363 | version "2.1.0" 364 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 365 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 366 | 367 | array.prototype.flat@^1.2.5: 368 | version "1.3.1" 369 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" 370 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 371 | dependencies: 372 | call-bind "^1.0.2" 373 | define-properties "^1.1.4" 374 | es-abstract "^1.20.4" 375 | es-shim-unscopables "^1.0.0" 376 | 377 | array.prototype.flatmap@^1.3.1: 378 | version "1.3.1" 379 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 380 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 381 | dependencies: 382 | call-bind "^1.0.2" 383 | define-properties "^1.1.4" 384 | es-abstract "^1.20.4" 385 | es-shim-unscopables "^1.0.0" 386 | 387 | array.prototype.tosorted@^1.1.1: 388 | version "1.1.1" 389 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" 390 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 391 | dependencies: 392 | call-bind "^1.0.2" 393 | define-properties "^1.1.4" 394 | es-abstract "^1.20.4" 395 | es-shim-unscopables "^1.0.0" 396 | get-intrinsic "^1.1.3" 397 | 398 | ast-types-flow@^0.0.7: 399 | version "0.0.7" 400 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 401 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 402 | 403 | axe-core@^4.4.3: 404 | version "4.5.2" 405 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.5.2.tgz#823fdf491ff717ac3c58a52631d4206930c1d9f7" 406 | integrity sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA== 407 | 408 | axobject-query@^2.2.0: 409 | version "2.2.0" 410 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 411 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 412 | 413 | balanced-match@^1.0.0: 414 | version "1.0.2" 415 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 416 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 417 | 418 | brace-expansion@^1.1.7: 419 | version "1.1.11" 420 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 421 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 422 | dependencies: 423 | balanced-match "^1.0.0" 424 | concat-map "0.0.1" 425 | 426 | braces@^3.0.2: 427 | version "3.0.2" 428 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 429 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 430 | dependencies: 431 | fill-range "^7.0.1" 432 | 433 | call-bind@^1.0.0, call-bind@^1.0.2: 434 | version "1.0.2" 435 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 436 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 437 | dependencies: 438 | function-bind "^1.1.1" 439 | get-intrinsic "^1.0.2" 440 | 441 | callsites@^3.0.0: 442 | version "3.1.0" 443 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 444 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 445 | 446 | caniuse-lite@^1.0.30001406: 447 | version "1.0.30001434" 448 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz#ec1ec1cfb0a93a34a0600d37903853030520a4e5" 449 | integrity sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA== 450 | 451 | chalk@^4.0.0: 452 | version "4.1.2" 453 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 454 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 455 | dependencies: 456 | ansi-styles "^4.1.0" 457 | supports-color "^7.1.0" 458 | 459 | client-only@0.0.1: 460 | version "0.0.1" 461 | resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" 462 | integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== 463 | 464 | color-convert@^2.0.1: 465 | version "2.0.1" 466 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 467 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 468 | dependencies: 469 | color-name "~1.1.4" 470 | 471 | color-name@~1.1.4: 472 | version "1.1.4" 473 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 474 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 475 | 476 | concat-map@0.0.1: 477 | version "0.0.1" 478 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 479 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 480 | 481 | core-js-pure@^3.25.1: 482 | version "3.26.1" 483 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.26.1.tgz#653f4d7130c427820dcecd3168b594e8bb095a33" 484 | integrity sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ== 485 | 486 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 487 | version "7.0.3" 488 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 489 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 490 | dependencies: 491 | path-key "^3.1.0" 492 | shebang-command "^2.0.0" 493 | which "^2.0.1" 494 | 495 | csstype@^3.0.2: 496 | version "3.1.1" 497 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" 498 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 499 | 500 | damerau-levenshtein@^1.0.8: 501 | version "1.0.8" 502 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 503 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 504 | 505 | debug@^2.6.9: 506 | version "2.6.9" 507 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 508 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 509 | dependencies: 510 | ms "2.0.0" 511 | 512 | debug@^3.2.7: 513 | version "3.2.7" 514 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 515 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 516 | dependencies: 517 | ms "^2.1.1" 518 | 519 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 520 | version "4.3.4" 521 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 522 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 523 | dependencies: 524 | ms "2.1.2" 525 | 526 | deep-is@^0.1.3: 527 | version "0.1.4" 528 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 529 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 530 | 531 | deepmerge@^4.2.2: 532 | version "4.2.2" 533 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 534 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 535 | 536 | define-lazy-prop@^2.0.0: 537 | version "2.0.0" 538 | resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" 539 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== 540 | 541 | define-properties@^1.1.3, define-properties@^1.1.4: 542 | version "1.1.4" 543 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 544 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 545 | dependencies: 546 | has-property-descriptors "^1.0.0" 547 | object-keys "^1.1.1" 548 | 549 | dir-glob@^3.0.1: 550 | version "3.0.1" 551 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 552 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 553 | dependencies: 554 | path-type "^4.0.0" 555 | 556 | doctrine@^2.1.0: 557 | version "2.1.0" 558 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 559 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 560 | dependencies: 561 | esutils "^2.0.2" 562 | 563 | doctrine@^3.0.0: 564 | version "3.0.0" 565 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 566 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 567 | dependencies: 568 | esutils "^2.0.2" 569 | 570 | emoji-regex@^9.2.2: 571 | version "9.2.2" 572 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 573 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 574 | 575 | enhanced-resolve@^5.10.0: 576 | version "5.12.0" 577 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" 578 | integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== 579 | dependencies: 580 | graceful-fs "^4.2.4" 581 | tapable "^2.2.0" 582 | 583 | es-abstract@^1.19.0, es-abstract@^1.20.4: 584 | version "1.20.4" 585 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" 586 | integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== 587 | dependencies: 588 | call-bind "^1.0.2" 589 | es-to-primitive "^1.2.1" 590 | function-bind "^1.1.1" 591 | function.prototype.name "^1.1.5" 592 | get-intrinsic "^1.1.3" 593 | get-symbol-description "^1.0.0" 594 | has "^1.0.3" 595 | has-property-descriptors "^1.0.0" 596 | has-symbols "^1.0.3" 597 | internal-slot "^1.0.3" 598 | is-callable "^1.2.7" 599 | is-negative-zero "^2.0.2" 600 | is-regex "^1.1.4" 601 | is-shared-array-buffer "^1.0.2" 602 | is-string "^1.0.7" 603 | is-weakref "^1.0.2" 604 | object-inspect "^1.12.2" 605 | object-keys "^1.1.1" 606 | object.assign "^4.1.4" 607 | regexp.prototype.flags "^1.4.3" 608 | safe-regex-test "^1.0.0" 609 | string.prototype.trimend "^1.0.5" 610 | string.prototype.trimstart "^1.0.5" 611 | unbox-primitive "^1.0.2" 612 | 613 | es-shim-unscopables@^1.0.0: 614 | version "1.0.0" 615 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 616 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 617 | dependencies: 618 | has "^1.0.3" 619 | 620 | es-to-primitive@^1.2.1: 621 | version "1.2.1" 622 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 623 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 624 | dependencies: 625 | is-callable "^1.1.4" 626 | is-date-object "^1.0.1" 627 | is-symbol "^1.0.2" 628 | 629 | escape-string-regexp@^4.0.0: 630 | version "4.0.0" 631 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 632 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 633 | 634 | eslint-config-next@13.0.5: 635 | version "13.0.5" 636 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.0.5.tgz#7a72d8b422358f1141046a7e952f06249369a765" 637 | integrity sha512-lge94W7ME6kNCO96eCykq5GbKbllzmcDNDhh1/llMCRgNPl0+GIQ8dOoM0I7uRQVW56VmTXFybJFXgow11a5pg== 638 | dependencies: 639 | "@next/eslint-plugin-next" "13.0.5" 640 | "@rushstack/eslint-patch" "^1.1.3" 641 | "@typescript-eslint/parser" "^5.42.0" 642 | eslint-import-resolver-node "^0.3.6" 643 | eslint-import-resolver-typescript "^3.5.2" 644 | eslint-plugin-import "^2.26.0" 645 | eslint-plugin-jsx-a11y "^6.5.1" 646 | eslint-plugin-react "^7.31.7" 647 | eslint-plugin-react-hooks "^4.5.0" 648 | 649 | eslint-import-resolver-node@^0.3.6: 650 | version "0.3.6" 651 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 652 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 653 | dependencies: 654 | debug "^3.2.7" 655 | resolve "^1.20.0" 656 | 657 | eslint-import-resolver-typescript@^3.5.2: 658 | version "3.5.2" 659 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.2.tgz#9431acded7d898fd94591a08ea9eec3514c7de91" 660 | integrity sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ== 661 | dependencies: 662 | debug "^4.3.4" 663 | enhanced-resolve "^5.10.0" 664 | get-tsconfig "^4.2.0" 665 | globby "^13.1.2" 666 | is-core-module "^2.10.0" 667 | is-glob "^4.0.3" 668 | synckit "^0.8.4" 669 | 670 | eslint-module-utils@^2.7.3: 671 | version "2.7.4" 672 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 673 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 674 | dependencies: 675 | debug "^3.2.7" 676 | 677 | eslint-plugin-import@^2.26.0: 678 | version "2.26.0" 679 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" 680 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== 681 | dependencies: 682 | array-includes "^3.1.4" 683 | array.prototype.flat "^1.2.5" 684 | debug "^2.6.9" 685 | doctrine "^2.1.0" 686 | eslint-import-resolver-node "^0.3.6" 687 | eslint-module-utils "^2.7.3" 688 | has "^1.0.3" 689 | is-core-module "^2.8.1" 690 | is-glob "^4.0.3" 691 | minimatch "^3.1.2" 692 | object.values "^1.1.5" 693 | resolve "^1.22.0" 694 | tsconfig-paths "^3.14.1" 695 | 696 | eslint-plugin-jsx-a11y@^6.5.1: 697 | version "6.6.1" 698 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff" 699 | integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q== 700 | dependencies: 701 | "@babel/runtime" "^7.18.9" 702 | aria-query "^4.2.2" 703 | array-includes "^3.1.5" 704 | ast-types-flow "^0.0.7" 705 | axe-core "^4.4.3" 706 | axobject-query "^2.2.0" 707 | damerau-levenshtein "^1.0.8" 708 | emoji-regex "^9.2.2" 709 | has "^1.0.3" 710 | jsx-ast-utils "^3.3.2" 711 | language-tags "^1.0.5" 712 | minimatch "^3.1.2" 713 | semver "^6.3.0" 714 | 715 | eslint-plugin-react-hooks@^4.5.0: 716 | version "4.6.0" 717 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 718 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 719 | 720 | eslint-plugin-react@^7.31.7: 721 | version "7.31.11" 722 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz#011521d2b16dcf95795df688a4770b4eaab364c8" 723 | integrity sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw== 724 | dependencies: 725 | array-includes "^3.1.6" 726 | array.prototype.flatmap "^1.3.1" 727 | array.prototype.tosorted "^1.1.1" 728 | doctrine "^2.1.0" 729 | estraverse "^5.3.0" 730 | jsx-ast-utils "^2.4.1 || ^3.0.0" 731 | minimatch "^3.1.2" 732 | object.entries "^1.1.6" 733 | object.fromentries "^2.0.6" 734 | object.hasown "^1.1.2" 735 | object.values "^1.1.6" 736 | prop-types "^15.8.1" 737 | resolve "^2.0.0-next.3" 738 | semver "^6.3.0" 739 | string.prototype.matchall "^4.0.8" 740 | 741 | eslint-scope@^7.1.1: 742 | version "7.1.1" 743 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 744 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 745 | dependencies: 746 | esrecurse "^4.3.0" 747 | estraverse "^5.2.0" 748 | 749 | eslint-utils@^3.0.0: 750 | version "3.0.0" 751 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 752 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 753 | dependencies: 754 | eslint-visitor-keys "^2.0.0" 755 | 756 | eslint-visitor-keys@^2.0.0: 757 | version "2.1.0" 758 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 759 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 760 | 761 | eslint-visitor-keys@^3.3.0: 762 | version "3.3.0" 763 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 764 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 765 | 766 | eslint@8.28.0: 767 | version "8.28.0" 768 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.28.0.tgz#81a680732634677cc890134bcdd9fdfea8e63d6e" 769 | integrity sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ== 770 | dependencies: 771 | "@eslint/eslintrc" "^1.3.3" 772 | "@humanwhocodes/config-array" "^0.11.6" 773 | "@humanwhocodes/module-importer" "^1.0.1" 774 | "@nodelib/fs.walk" "^1.2.8" 775 | ajv "^6.10.0" 776 | chalk "^4.0.0" 777 | cross-spawn "^7.0.2" 778 | debug "^4.3.2" 779 | doctrine "^3.0.0" 780 | escape-string-regexp "^4.0.0" 781 | eslint-scope "^7.1.1" 782 | eslint-utils "^3.0.0" 783 | eslint-visitor-keys "^3.3.0" 784 | espree "^9.4.0" 785 | esquery "^1.4.0" 786 | esutils "^2.0.2" 787 | fast-deep-equal "^3.1.3" 788 | file-entry-cache "^6.0.1" 789 | find-up "^5.0.0" 790 | glob-parent "^6.0.2" 791 | globals "^13.15.0" 792 | grapheme-splitter "^1.0.4" 793 | ignore "^5.2.0" 794 | import-fresh "^3.0.0" 795 | imurmurhash "^0.1.4" 796 | is-glob "^4.0.0" 797 | is-path-inside "^3.0.3" 798 | js-sdsl "^4.1.4" 799 | js-yaml "^4.1.0" 800 | json-stable-stringify-without-jsonify "^1.0.1" 801 | levn "^0.4.1" 802 | lodash.merge "^4.6.2" 803 | minimatch "^3.1.2" 804 | natural-compare "^1.4.0" 805 | optionator "^0.9.1" 806 | regexpp "^3.2.0" 807 | strip-ansi "^6.0.1" 808 | strip-json-comments "^3.1.0" 809 | text-table "^0.2.0" 810 | 811 | espree@^9.4.0: 812 | version "9.4.1" 813 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" 814 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 815 | dependencies: 816 | acorn "^8.8.0" 817 | acorn-jsx "^5.3.2" 818 | eslint-visitor-keys "^3.3.0" 819 | 820 | esquery@^1.4.0: 821 | version "1.4.0" 822 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 823 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 824 | dependencies: 825 | estraverse "^5.1.0" 826 | 827 | esrecurse@^4.3.0: 828 | version "4.3.0" 829 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 830 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 831 | dependencies: 832 | estraverse "^5.2.0" 833 | 834 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 835 | version "5.3.0" 836 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 837 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 838 | 839 | esutils@^2.0.2: 840 | version "2.0.3" 841 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 842 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 843 | 844 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 845 | version "3.1.3" 846 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 847 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 848 | 849 | fast-glob@^3.2.11, fast-glob@^3.2.9: 850 | version "3.2.12" 851 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 852 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 853 | dependencies: 854 | "@nodelib/fs.stat" "^2.0.2" 855 | "@nodelib/fs.walk" "^1.2.3" 856 | glob-parent "^5.1.2" 857 | merge2 "^1.3.0" 858 | micromatch "^4.0.4" 859 | 860 | fast-json-stable-stringify@^2.0.0: 861 | version "2.1.0" 862 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 863 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 864 | 865 | fast-levenshtein@^2.0.6: 866 | version "2.0.6" 867 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 868 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 869 | 870 | fastq@^1.6.0: 871 | version "1.13.0" 872 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 873 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 874 | dependencies: 875 | reusify "^1.0.4" 876 | 877 | file-entry-cache@^6.0.1: 878 | version "6.0.1" 879 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 880 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 881 | dependencies: 882 | flat-cache "^3.0.4" 883 | 884 | fill-range@^7.0.1: 885 | version "7.0.1" 886 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 887 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 888 | dependencies: 889 | to-regex-range "^5.0.1" 890 | 891 | find-up@^5.0.0: 892 | version "5.0.0" 893 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 894 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 895 | dependencies: 896 | locate-path "^6.0.0" 897 | path-exists "^4.0.0" 898 | 899 | flat-cache@^3.0.4: 900 | version "3.0.4" 901 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 902 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 903 | dependencies: 904 | flatted "^3.1.0" 905 | rimraf "^3.0.2" 906 | 907 | flatted@^3.1.0: 908 | version "3.2.7" 909 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 910 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 911 | 912 | fs.realpath@^1.0.0: 913 | version "1.0.0" 914 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 915 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 916 | 917 | function-bind@^1.1.1: 918 | version "1.1.1" 919 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 920 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 921 | 922 | function.prototype.name@^1.1.5: 923 | version "1.1.5" 924 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 925 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 926 | dependencies: 927 | call-bind "^1.0.2" 928 | define-properties "^1.1.3" 929 | es-abstract "^1.19.0" 930 | functions-have-names "^1.2.2" 931 | 932 | functions-have-names@^1.2.2: 933 | version "1.2.3" 934 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 935 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 936 | 937 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 938 | version "1.1.3" 939 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 940 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 941 | dependencies: 942 | function-bind "^1.1.1" 943 | has "^1.0.3" 944 | has-symbols "^1.0.3" 945 | 946 | get-symbol-description@^1.0.0: 947 | version "1.0.0" 948 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 949 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 950 | dependencies: 951 | call-bind "^1.0.2" 952 | get-intrinsic "^1.1.1" 953 | 954 | get-tsconfig@^4.2.0: 955 | version "4.2.0" 956 | resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.2.0.tgz#ff368dd7104dab47bf923404eb93838245c66543" 957 | integrity sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg== 958 | 959 | glob-parent@^5.1.2: 960 | version "5.1.2" 961 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 962 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 963 | dependencies: 964 | is-glob "^4.0.1" 965 | 966 | glob-parent@^6.0.2: 967 | version "6.0.2" 968 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 969 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 970 | dependencies: 971 | is-glob "^4.0.3" 972 | 973 | glob@7.1.7: 974 | version "7.1.7" 975 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 976 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 977 | dependencies: 978 | fs.realpath "^1.0.0" 979 | inflight "^1.0.4" 980 | inherits "2" 981 | minimatch "^3.0.4" 982 | once "^1.3.0" 983 | path-is-absolute "^1.0.0" 984 | 985 | glob@^7.1.3: 986 | version "7.2.3" 987 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 988 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 989 | dependencies: 990 | fs.realpath "^1.0.0" 991 | inflight "^1.0.4" 992 | inherits "2" 993 | minimatch "^3.1.1" 994 | once "^1.3.0" 995 | path-is-absolute "^1.0.0" 996 | 997 | globals@^13.15.0: 998 | version "13.18.0" 999 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.18.0.tgz#fb224daeeb2bb7d254cd2c640f003528b8d0c1dc" 1000 | integrity sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A== 1001 | dependencies: 1002 | type-fest "^0.20.2" 1003 | 1004 | globalyzer@0.1.0: 1005 | version "0.1.0" 1006 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465" 1007 | integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== 1008 | 1009 | globby@^11.1.0: 1010 | version "11.1.0" 1011 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1012 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1013 | dependencies: 1014 | array-union "^2.1.0" 1015 | dir-glob "^3.0.1" 1016 | fast-glob "^3.2.9" 1017 | ignore "^5.2.0" 1018 | merge2 "^1.4.1" 1019 | slash "^3.0.0" 1020 | 1021 | globby@^13.1.2: 1022 | version "13.1.2" 1023 | resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.2.tgz#29047105582427ab6eca4f905200667b056da515" 1024 | integrity sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ== 1025 | dependencies: 1026 | dir-glob "^3.0.1" 1027 | fast-glob "^3.2.11" 1028 | ignore "^5.2.0" 1029 | merge2 "^1.4.1" 1030 | slash "^4.0.0" 1031 | 1032 | globrex@^0.1.2: 1033 | version "0.1.2" 1034 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" 1035 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 1036 | 1037 | graceful-fs@^4.2.4: 1038 | version "4.2.10" 1039 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1040 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1041 | 1042 | grapheme-splitter@^1.0.4: 1043 | version "1.0.4" 1044 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1045 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1046 | 1047 | graphql-tag@^2.12.6: 1048 | version "2.12.6" 1049 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" 1050 | integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== 1051 | dependencies: 1052 | tslib "^2.1.0" 1053 | 1054 | graphql@^16.6.0: 1055 | version "16.6.0" 1056 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.6.0.tgz#c2dcffa4649db149f6282af726c8c83f1c7c5fdb" 1057 | integrity sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw== 1058 | 1059 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1060 | version "1.0.2" 1061 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1062 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1063 | 1064 | has-flag@^4.0.0: 1065 | version "4.0.0" 1066 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1067 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1068 | 1069 | has-property-descriptors@^1.0.0: 1070 | version "1.0.0" 1071 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1072 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1073 | dependencies: 1074 | get-intrinsic "^1.1.1" 1075 | 1076 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1077 | version "1.0.3" 1078 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1079 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1080 | 1081 | has-tostringtag@^1.0.0: 1082 | version "1.0.0" 1083 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1084 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1085 | dependencies: 1086 | has-symbols "^1.0.2" 1087 | 1088 | has@^1.0.3: 1089 | version "1.0.3" 1090 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1091 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1092 | dependencies: 1093 | function-bind "^1.1.1" 1094 | 1095 | hoist-non-react-statics@^3.3.2: 1096 | version "3.3.2" 1097 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" 1098 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== 1099 | dependencies: 1100 | react-is "^16.7.0" 1101 | 1102 | ignore@^5.2.0: 1103 | version "5.2.0" 1104 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1105 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1106 | 1107 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1108 | version "3.3.0" 1109 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1110 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1111 | dependencies: 1112 | parent-module "^1.0.0" 1113 | resolve-from "^4.0.0" 1114 | 1115 | imurmurhash@^0.1.4: 1116 | version "0.1.4" 1117 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1118 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1119 | 1120 | inflight@^1.0.4: 1121 | version "1.0.6" 1122 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1123 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1124 | dependencies: 1125 | once "^1.3.0" 1126 | wrappy "1" 1127 | 1128 | inherits@2: 1129 | version "2.0.4" 1130 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1131 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1132 | 1133 | internal-slot@^1.0.3: 1134 | version "1.0.3" 1135 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1136 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1137 | dependencies: 1138 | get-intrinsic "^1.1.0" 1139 | has "^1.0.3" 1140 | side-channel "^1.0.4" 1141 | 1142 | is-bigint@^1.0.1: 1143 | version "1.0.4" 1144 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1145 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1146 | dependencies: 1147 | has-bigints "^1.0.1" 1148 | 1149 | is-boolean-object@^1.1.0: 1150 | version "1.1.2" 1151 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1152 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1153 | dependencies: 1154 | call-bind "^1.0.2" 1155 | has-tostringtag "^1.0.0" 1156 | 1157 | is-callable@^1.1.4, is-callable@^1.2.7: 1158 | version "1.2.7" 1159 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1160 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1161 | 1162 | is-core-module@^2.10.0, is-core-module@^2.8.1, is-core-module@^2.9.0: 1163 | version "2.11.0" 1164 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1165 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1166 | dependencies: 1167 | has "^1.0.3" 1168 | 1169 | is-date-object@^1.0.1: 1170 | version "1.0.5" 1171 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1172 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1173 | dependencies: 1174 | has-tostringtag "^1.0.0" 1175 | 1176 | is-docker@^2.0.0, is-docker@^2.1.1: 1177 | version "2.2.1" 1178 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 1179 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 1180 | 1181 | is-extglob@^2.1.1: 1182 | version "2.1.1" 1183 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1184 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1185 | 1186 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1187 | version "4.0.3" 1188 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1189 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1190 | dependencies: 1191 | is-extglob "^2.1.1" 1192 | 1193 | is-negative-zero@^2.0.2: 1194 | version "2.0.2" 1195 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1196 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1197 | 1198 | is-number-object@^1.0.4: 1199 | version "1.0.7" 1200 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1201 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1202 | dependencies: 1203 | has-tostringtag "^1.0.0" 1204 | 1205 | is-number@^7.0.0: 1206 | version "7.0.0" 1207 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1208 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1209 | 1210 | is-path-inside@^3.0.3: 1211 | version "3.0.3" 1212 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1213 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1214 | 1215 | is-regex@^1.1.4: 1216 | version "1.1.4" 1217 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1218 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1219 | dependencies: 1220 | call-bind "^1.0.2" 1221 | has-tostringtag "^1.0.0" 1222 | 1223 | is-shared-array-buffer@^1.0.2: 1224 | version "1.0.2" 1225 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1226 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1227 | dependencies: 1228 | call-bind "^1.0.2" 1229 | 1230 | is-string@^1.0.5, is-string@^1.0.7: 1231 | version "1.0.7" 1232 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1233 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1234 | dependencies: 1235 | has-tostringtag "^1.0.0" 1236 | 1237 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1238 | version "1.0.4" 1239 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1240 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1241 | dependencies: 1242 | has-symbols "^1.0.2" 1243 | 1244 | is-weakref@^1.0.2: 1245 | version "1.0.2" 1246 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1247 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1248 | dependencies: 1249 | call-bind "^1.0.2" 1250 | 1251 | is-wsl@^2.2.0: 1252 | version "2.2.0" 1253 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 1254 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1255 | dependencies: 1256 | is-docker "^2.0.0" 1257 | 1258 | isexe@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1261 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1262 | 1263 | js-sdsl@^4.1.4: 1264 | version "4.2.0" 1265 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0" 1266 | integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ== 1267 | 1268 | "js-tokens@^3.0.0 || ^4.0.0": 1269 | version "4.0.0" 1270 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1271 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1272 | 1273 | js-yaml@^4.1.0: 1274 | version "4.1.0" 1275 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1276 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1277 | dependencies: 1278 | argparse "^2.0.1" 1279 | 1280 | json-schema-traverse@^0.4.1: 1281 | version "0.4.1" 1282 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1283 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1284 | 1285 | json-stable-stringify-without-jsonify@^1.0.1: 1286 | version "1.0.1" 1287 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1288 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1289 | 1290 | json5@^1.0.1: 1291 | version "1.0.1" 1292 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1293 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1294 | dependencies: 1295 | minimist "^1.2.0" 1296 | 1297 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2: 1298 | version "3.3.3" 1299 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 1300 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1301 | dependencies: 1302 | array-includes "^3.1.5" 1303 | object.assign "^4.1.3" 1304 | 1305 | language-subtag-registry@~0.3.2: 1306 | version "0.3.22" 1307 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" 1308 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 1309 | 1310 | language-tags@^1.0.5: 1311 | version "1.0.5" 1312 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1313 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1314 | dependencies: 1315 | language-subtag-registry "~0.3.2" 1316 | 1317 | levn@^0.4.1: 1318 | version "0.4.1" 1319 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1320 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1321 | dependencies: 1322 | prelude-ls "^1.2.1" 1323 | type-check "~0.4.0" 1324 | 1325 | locate-path@^6.0.0: 1326 | version "6.0.0" 1327 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1328 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1329 | dependencies: 1330 | p-locate "^5.0.0" 1331 | 1332 | lodash.merge@^4.6.2: 1333 | version "4.6.2" 1334 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1335 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1336 | 1337 | lodash@^4.17.21: 1338 | version "4.17.21" 1339 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1340 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1341 | 1342 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1343 | version "1.4.0" 1344 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1345 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1346 | dependencies: 1347 | js-tokens "^3.0.0 || ^4.0.0" 1348 | 1349 | lru-cache@^6.0.0: 1350 | version "6.0.0" 1351 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1352 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1353 | dependencies: 1354 | yallist "^4.0.0" 1355 | 1356 | merge2@^1.3.0, merge2@^1.4.1: 1357 | version "1.4.1" 1358 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1359 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1360 | 1361 | micromatch@^4.0.4: 1362 | version "4.0.5" 1363 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1364 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1365 | dependencies: 1366 | braces "^3.0.2" 1367 | picomatch "^2.3.1" 1368 | 1369 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1370 | version "3.1.2" 1371 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1372 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1373 | dependencies: 1374 | brace-expansion "^1.1.7" 1375 | 1376 | minimist@^1.2.0, minimist@^1.2.6: 1377 | version "1.2.7" 1378 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1379 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1380 | 1381 | ms@2.0.0: 1382 | version "2.0.0" 1383 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1384 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1385 | 1386 | ms@2.1.2: 1387 | version "2.1.2" 1388 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1389 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1390 | 1391 | ms@^2.1.1: 1392 | version "2.1.3" 1393 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1394 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1395 | 1396 | nanoid@^3.3.4: 1397 | version "3.3.4" 1398 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1399 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1400 | 1401 | natural-compare@^1.4.0: 1402 | version "1.4.0" 1403 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1404 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1405 | 1406 | next@13.0.5: 1407 | version "13.0.5" 1408 | resolved "https://registry.yarnpkg.com/next/-/next-13.0.5.tgz#cddfd6804f84a21721da370e4425980876670173" 1409 | integrity sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg== 1410 | dependencies: 1411 | "@next/env" "13.0.5" 1412 | "@swc/helpers" "0.4.14" 1413 | caniuse-lite "^1.0.30001406" 1414 | postcss "8.4.14" 1415 | styled-jsx "5.1.0" 1416 | optionalDependencies: 1417 | "@next/swc-android-arm-eabi" "13.0.5" 1418 | "@next/swc-android-arm64" "13.0.5" 1419 | "@next/swc-darwin-arm64" "13.0.5" 1420 | "@next/swc-darwin-x64" "13.0.5" 1421 | "@next/swc-freebsd-x64" "13.0.5" 1422 | "@next/swc-linux-arm-gnueabihf" "13.0.5" 1423 | "@next/swc-linux-arm64-gnu" "13.0.5" 1424 | "@next/swc-linux-arm64-musl" "13.0.5" 1425 | "@next/swc-linux-x64-gnu" "13.0.5" 1426 | "@next/swc-linux-x64-musl" "13.0.5" 1427 | "@next/swc-win32-arm64-msvc" "13.0.5" 1428 | "@next/swc-win32-ia32-msvc" "13.0.5" 1429 | "@next/swc-win32-x64-msvc" "13.0.5" 1430 | 1431 | object-assign@^4.1.1: 1432 | version "4.1.1" 1433 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1434 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1435 | 1436 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1437 | version "1.12.2" 1438 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1439 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1440 | 1441 | object-keys@^1.1.1: 1442 | version "1.1.1" 1443 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1444 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1445 | 1446 | object.assign@^4.1.3, object.assign@^4.1.4: 1447 | version "4.1.4" 1448 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1449 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1450 | dependencies: 1451 | call-bind "^1.0.2" 1452 | define-properties "^1.1.4" 1453 | has-symbols "^1.0.3" 1454 | object-keys "^1.1.1" 1455 | 1456 | object.entries@^1.1.6: 1457 | version "1.1.6" 1458 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" 1459 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1460 | dependencies: 1461 | call-bind "^1.0.2" 1462 | define-properties "^1.1.4" 1463 | es-abstract "^1.20.4" 1464 | 1465 | object.fromentries@^2.0.6: 1466 | version "2.0.6" 1467 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" 1468 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1469 | dependencies: 1470 | call-bind "^1.0.2" 1471 | define-properties "^1.1.4" 1472 | es-abstract "^1.20.4" 1473 | 1474 | object.hasown@^1.1.2: 1475 | version "1.1.2" 1476 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" 1477 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1478 | dependencies: 1479 | define-properties "^1.1.4" 1480 | es-abstract "^1.20.4" 1481 | 1482 | object.values@^1.1.5, object.values@^1.1.6: 1483 | version "1.1.6" 1484 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1485 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1486 | dependencies: 1487 | call-bind "^1.0.2" 1488 | define-properties "^1.1.4" 1489 | es-abstract "^1.20.4" 1490 | 1491 | once@^1.3.0: 1492 | version "1.4.0" 1493 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1494 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1495 | dependencies: 1496 | wrappy "1" 1497 | 1498 | open@^8.4.0: 1499 | version "8.4.0" 1500 | resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" 1501 | integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== 1502 | dependencies: 1503 | define-lazy-prop "^2.0.0" 1504 | is-docker "^2.1.1" 1505 | is-wsl "^2.2.0" 1506 | 1507 | optimism@^0.16.1: 1508 | version "0.16.2" 1509 | resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.16.2.tgz#519b0c78b3b30954baed0defe5143de7776bf081" 1510 | integrity sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ== 1511 | dependencies: 1512 | "@wry/context" "^0.7.0" 1513 | "@wry/trie" "^0.3.0" 1514 | 1515 | optionator@^0.9.1: 1516 | version "0.9.1" 1517 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1518 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1519 | dependencies: 1520 | deep-is "^0.1.3" 1521 | fast-levenshtein "^2.0.6" 1522 | levn "^0.4.1" 1523 | prelude-ls "^1.2.1" 1524 | type-check "^0.4.0" 1525 | word-wrap "^1.2.3" 1526 | 1527 | p-limit@^3.0.2: 1528 | version "3.1.0" 1529 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1530 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1531 | dependencies: 1532 | yocto-queue "^0.1.0" 1533 | 1534 | p-locate@^5.0.0: 1535 | version "5.0.0" 1536 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1537 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1538 | dependencies: 1539 | p-limit "^3.0.2" 1540 | 1541 | parent-module@^1.0.0: 1542 | version "1.0.1" 1543 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1544 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1545 | dependencies: 1546 | callsites "^3.0.0" 1547 | 1548 | path-exists@^4.0.0: 1549 | version "4.0.0" 1550 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1551 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1552 | 1553 | path-is-absolute@^1.0.0: 1554 | version "1.0.1" 1555 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1556 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1557 | 1558 | path-key@^3.1.0: 1559 | version "3.1.1" 1560 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1561 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1562 | 1563 | path-parse@^1.0.7: 1564 | version "1.0.7" 1565 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1566 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1567 | 1568 | path-type@^4.0.0: 1569 | version "4.0.0" 1570 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1571 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1572 | 1573 | picocolors@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1576 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1577 | 1578 | picomatch@^2.3.1: 1579 | version "2.3.1" 1580 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1581 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1582 | 1583 | postcss@8.4.14: 1584 | version "8.4.14" 1585 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" 1586 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 1587 | dependencies: 1588 | nanoid "^3.3.4" 1589 | picocolors "^1.0.0" 1590 | source-map-js "^1.0.2" 1591 | 1592 | prelude-ls@^1.2.1: 1593 | version "1.2.1" 1594 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1595 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1596 | 1597 | prop-types@^15.7.2, prop-types@^15.8.1: 1598 | version "15.8.1" 1599 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1600 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1601 | dependencies: 1602 | loose-envify "^1.4.0" 1603 | object-assign "^4.1.1" 1604 | react-is "^16.13.1" 1605 | 1606 | punycode@^2.1.0: 1607 | version "2.1.1" 1608 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1609 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1610 | 1611 | queue-microtask@^1.2.2: 1612 | version "1.2.3" 1613 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1614 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1615 | 1616 | react-dom@18.2.0: 1617 | version "18.2.0" 1618 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1619 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1620 | dependencies: 1621 | loose-envify "^1.1.0" 1622 | scheduler "^0.23.0" 1623 | 1624 | react-is@^16.13.1, react-is@^16.7.0: 1625 | version "16.13.1" 1626 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1627 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1628 | 1629 | react@18.2.0: 1630 | version "18.2.0" 1631 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1632 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1633 | dependencies: 1634 | loose-envify "^1.1.0" 1635 | 1636 | regenerator-runtime@^0.13.10: 1637 | version "0.13.11" 1638 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" 1639 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 1640 | 1641 | regexp.prototype.flags@^1.4.3: 1642 | version "1.4.3" 1643 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1644 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1645 | dependencies: 1646 | call-bind "^1.0.2" 1647 | define-properties "^1.1.3" 1648 | functions-have-names "^1.2.2" 1649 | 1650 | regexpp@^3.2.0: 1651 | version "3.2.0" 1652 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1653 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1654 | 1655 | resolve-from@^4.0.0: 1656 | version "4.0.0" 1657 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1658 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1659 | 1660 | resolve@^1.20.0, resolve@^1.22.0: 1661 | version "1.22.1" 1662 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1663 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1664 | dependencies: 1665 | is-core-module "^2.9.0" 1666 | path-parse "^1.0.7" 1667 | supports-preserve-symlinks-flag "^1.0.0" 1668 | 1669 | resolve@^2.0.0-next.3: 1670 | version "2.0.0-next.4" 1671 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1672 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1673 | dependencies: 1674 | is-core-module "^2.9.0" 1675 | path-parse "^1.0.7" 1676 | supports-preserve-symlinks-flag "^1.0.0" 1677 | 1678 | response-iterator@^0.2.6: 1679 | version "0.2.6" 1680 | resolved "https://registry.yarnpkg.com/response-iterator/-/response-iterator-0.2.6.tgz#249005fb14d2e4eeb478a3f735a28fd8b4c9f3da" 1681 | integrity sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw== 1682 | 1683 | reusify@^1.0.4: 1684 | version "1.0.4" 1685 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1686 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1687 | 1688 | rimraf@^3.0.2: 1689 | version "3.0.2" 1690 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1691 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1692 | dependencies: 1693 | glob "^7.1.3" 1694 | 1695 | run-parallel@^1.1.9: 1696 | version "1.2.0" 1697 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1698 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1699 | dependencies: 1700 | queue-microtask "^1.2.2" 1701 | 1702 | safe-regex-test@^1.0.0: 1703 | version "1.0.0" 1704 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1705 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1706 | dependencies: 1707 | call-bind "^1.0.2" 1708 | get-intrinsic "^1.1.3" 1709 | is-regex "^1.1.4" 1710 | 1711 | scheduler@^0.23.0: 1712 | version "0.23.0" 1713 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1714 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1715 | dependencies: 1716 | loose-envify "^1.1.0" 1717 | 1718 | semver@^6.3.0: 1719 | version "6.3.0" 1720 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1721 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1722 | 1723 | semver@^7.3.7: 1724 | version "7.3.8" 1725 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1726 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1727 | dependencies: 1728 | lru-cache "^6.0.0" 1729 | 1730 | shebang-command@^2.0.0: 1731 | version "2.0.0" 1732 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1733 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1734 | dependencies: 1735 | shebang-regex "^3.0.0" 1736 | 1737 | shebang-regex@^3.0.0: 1738 | version "3.0.0" 1739 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1740 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1741 | 1742 | side-channel@^1.0.4: 1743 | version "1.0.4" 1744 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1745 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1746 | dependencies: 1747 | call-bind "^1.0.0" 1748 | get-intrinsic "^1.0.2" 1749 | object-inspect "^1.9.0" 1750 | 1751 | slash@^3.0.0: 1752 | version "3.0.0" 1753 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1754 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1755 | 1756 | slash@^4.0.0: 1757 | version "4.0.0" 1758 | resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" 1759 | integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== 1760 | 1761 | source-map-js@^1.0.2: 1762 | version "1.0.2" 1763 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1764 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1765 | 1766 | string.prototype.matchall@^4.0.8: 1767 | version "4.0.8" 1768 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" 1769 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 1770 | dependencies: 1771 | call-bind "^1.0.2" 1772 | define-properties "^1.1.4" 1773 | es-abstract "^1.20.4" 1774 | get-intrinsic "^1.1.3" 1775 | has-symbols "^1.0.3" 1776 | internal-slot "^1.0.3" 1777 | regexp.prototype.flags "^1.4.3" 1778 | side-channel "^1.0.4" 1779 | 1780 | string.prototype.trimend@^1.0.5: 1781 | version "1.0.6" 1782 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 1783 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 1784 | dependencies: 1785 | call-bind "^1.0.2" 1786 | define-properties "^1.1.4" 1787 | es-abstract "^1.20.4" 1788 | 1789 | string.prototype.trimstart@^1.0.5: 1790 | version "1.0.6" 1791 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 1792 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 1793 | dependencies: 1794 | call-bind "^1.0.2" 1795 | define-properties "^1.1.4" 1796 | es-abstract "^1.20.4" 1797 | 1798 | strip-ansi@^6.0.1: 1799 | version "6.0.1" 1800 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1801 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1802 | dependencies: 1803 | ansi-regex "^5.0.1" 1804 | 1805 | strip-bom@^3.0.0: 1806 | version "3.0.0" 1807 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1808 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1809 | 1810 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1811 | version "3.1.1" 1812 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1813 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1814 | 1815 | styled-jsx@5.1.0: 1816 | version "5.1.0" 1817 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.0.tgz#4a5622ab9714bd3fcfaeec292aa555871f057563" 1818 | integrity sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ== 1819 | dependencies: 1820 | client-only "0.0.1" 1821 | 1822 | supports-color@^7.1.0: 1823 | version "7.2.0" 1824 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1825 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1826 | dependencies: 1827 | has-flag "^4.0.0" 1828 | 1829 | supports-preserve-symlinks-flag@^1.0.0: 1830 | version "1.0.0" 1831 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1832 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1833 | 1834 | symbol-observable@^4.0.0: 1835 | version "4.0.0" 1836 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" 1837 | integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== 1838 | 1839 | synckit@^0.8.4: 1840 | version "0.8.4" 1841 | resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.4.tgz#0e6b392b73fafdafcde56692e3352500261d64ec" 1842 | integrity sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw== 1843 | dependencies: 1844 | "@pkgr/utils" "^2.3.1" 1845 | tslib "^2.4.0" 1846 | 1847 | tapable@^2.2.0: 1848 | version "2.2.1" 1849 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" 1850 | integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 1851 | 1852 | text-table@^0.2.0: 1853 | version "0.2.0" 1854 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1855 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1856 | 1857 | tiny-glob@^0.2.9: 1858 | version "0.2.9" 1859 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.9.tgz#2212d441ac17928033b110f8b3640683129d31e2" 1860 | integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== 1861 | dependencies: 1862 | globalyzer "0.1.0" 1863 | globrex "^0.1.2" 1864 | 1865 | to-regex-range@^5.0.1: 1866 | version "5.0.1" 1867 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1868 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1869 | dependencies: 1870 | is-number "^7.0.0" 1871 | 1872 | ts-invariant@^0.10.3: 1873 | version "0.10.3" 1874 | resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.10.3.tgz#3e048ff96e91459ffca01304dbc7f61c1f642f6c" 1875 | integrity sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ== 1876 | dependencies: 1877 | tslib "^2.1.0" 1878 | 1879 | tsconfig-paths@^3.14.1: 1880 | version "3.14.1" 1881 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 1882 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 1883 | dependencies: 1884 | "@types/json5" "^0.0.29" 1885 | json5 "^1.0.1" 1886 | minimist "^1.2.6" 1887 | strip-bom "^3.0.0" 1888 | 1889 | tslib@^1.8.1: 1890 | version "1.14.1" 1891 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1892 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1893 | 1894 | tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0: 1895 | version "2.4.1" 1896 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" 1897 | integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== 1898 | 1899 | tsutils@^3.21.0: 1900 | version "3.21.0" 1901 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 1902 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 1903 | dependencies: 1904 | tslib "^1.8.1" 1905 | 1906 | type-check@^0.4.0, type-check@~0.4.0: 1907 | version "0.4.0" 1908 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1909 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1910 | dependencies: 1911 | prelude-ls "^1.2.1" 1912 | 1913 | type-fest@^0.20.2: 1914 | version "0.20.2" 1915 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1916 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1917 | 1918 | typescript@4.9.3: 1919 | version "4.9.3" 1920 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.3.tgz#3aea307c1746b8c384435d8ac36b8a2e580d85db" 1921 | integrity sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA== 1922 | 1923 | unbox-primitive@^1.0.2: 1924 | version "1.0.2" 1925 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 1926 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 1927 | dependencies: 1928 | call-bind "^1.0.2" 1929 | has-bigints "^1.0.2" 1930 | has-symbols "^1.0.3" 1931 | which-boxed-primitive "^1.0.2" 1932 | 1933 | uri-js@^4.2.2: 1934 | version "4.4.1" 1935 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1936 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1937 | dependencies: 1938 | punycode "^2.1.0" 1939 | 1940 | which-boxed-primitive@^1.0.2: 1941 | version "1.0.2" 1942 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1943 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1944 | dependencies: 1945 | is-bigint "^1.0.1" 1946 | is-boolean-object "^1.1.0" 1947 | is-number-object "^1.0.4" 1948 | is-string "^1.0.5" 1949 | is-symbol "^1.0.3" 1950 | 1951 | which@^2.0.1: 1952 | version "2.0.2" 1953 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1954 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1955 | dependencies: 1956 | isexe "^2.0.0" 1957 | 1958 | word-wrap@^1.2.3: 1959 | version "1.2.3" 1960 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1961 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1962 | 1963 | wrappy@1: 1964 | version "1.0.2" 1965 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1966 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1967 | 1968 | yallist@^4.0.0: 1969 | version "4.0.0" 1970 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1971 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1972 | 1973 | yocto-queue@^0.1.0: 1974 | version "0.1.0" 1975 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1976 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1977 | 1978 | zen-observable-ts@^1.2.5: 1979 | version "1.2.5" 1980 | resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz#6c6d9ea3d3a842812c6e9519209365a122ba8b58" 1981 | integrity sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg== 1982 | dependencies: 1983 | zen-observable "0.8.15" 1984 | 1985 | zen-observable@0.8.15: 1986 | version "0.8.15" 1987 | resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" 1988 | integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ== 1989 | --------------------------------------------------------------------------------