├── auth-code-flow ├── .eslintrc.json ├── styles │ └── globals.css ├── utils │ └── encode.js ├── .env.local.example ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── vercel.svg │ ├── thirteen.svg │ └── next.svg ├── jsconfig.json ├── next.config.js ├── pages │ ├── _app.js │ ├── api │ │ ├── login.js │ │ └── callback.js │ ├── _document.js │ ├── index.js │ └── home.js ├── components │ ├── MainContainer.js │ ├── ConnectButton.js │ └── Card.js ├── tailwind.config.js ├── .gitignore ├── package.json ├── hooks │ └── useFetch.js └── yarn.lock ├── auth-code-flow-pkce ├── .eslintrc.json ├── styles │ └── globals.css ├── utils │ ├── encode.js │ └── generateCodeChallenge.js ├── .env.local.example ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── vercel.svg │ ├── thirteen.svg │ └── next.svg ├── jsconfig.json ├── next.config.js ├── pages │ ├── _app.js │ ├── api │ │ ├── login.js │ │ ├── callback.js │ │ └── cors.js │ ├── _document.js │ ├── index.js │ └── home.js ├── components │ ├── MainContainer.js │ ├── ConnectButton.js │ └── Card.js ├── tailwind.config.js ├── .gitignore ├── package.json └── hooks │ └── useFetch.js ├── preview-endpoint ├── .env.example ├── package.json ├── utils │ ├── users.js │ ├── token.js │ └── headers.js └── index.js ├── sign-and-verifying ├── .env.example ├── keypair.sh ├── package.json ├── utils │ ├── token.js │ ├── users.js │ └── headers.js └── index.js ├── package.json ├── README.md └── .gitignore /auth-code-flow/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/babel","next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/babel","next/core-web-vitals"] 3 | } 4 | -------------------------------------------------------------------------------- /auth-code-flow/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /preview-endpoint/.env.example: -------------------------------------------------------------------------------- 1 | PORT=3000 2 | 3 | USERNAME= 4 | PASSWORD= 5 | FULLNAME= 6 | 7 | SECRET= -------------------------------------------------------------------------------- /auth-code-flow-pkce/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /auth-code-flow/utils/encode.js: -------------------------------------------------------------------------------- 1 | export const encode = (str) => Buffer.from(str).toString("base64url"); 2 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/utils/encode.js: -------------------------------------------------------------------------------- 1 | export const encode = (str) => Buffer.from(str).toString("base64url"); 2 | -------------------------------------------------------------------------------- /auth-code-flow/.env.local.example: -------------------------------------------------------------------------------- 1 | SPOTIFY_CLIENT_ID= 2 | SPOTIFY_CLIENT_SECRET= 3 | REDIRECT_URI=http://localhost:3002/api/callback -------------------------------------------------------------------------------- /auth-code-flow-pkce/.env.local.example: -------------------------------------------------------------------------------- 1 | TWITTER_CLIENT_ID= 2 | TWITTER_CLIENT_SECRET= 3 | REDIRECT_URI=http://localhost:3003/api/callback -------------------------------------------------------------------------------- /auth-code-flow/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /auth-code-flow/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glrodasz/platzi-intro-oauth-oidc/HEAD/auth-code-flow/public/favicon.ico -------------------------------------------------------------------------------- /auth-code-flow-pkce/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glrodasz/platzi-intro-oauth-oidc/HEAD/auth-code-flow-pkce/public/favicon.ico -------------------------------------------------------------------------------- /auth-code-flow/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@/*": ["./*"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@/*": ["./*"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /sign-and-verifying/.env.example: -------------------------------------------------------------------------------- 1 | PORT=3001 2 | 3 | USERNAME= 4 | PASSWORD= 5 | FULLNAME= 6 | 7 | SECRET= 8 | PRIVATE_KEY_PATH=private.pem 9 | PUBLIC_KEY_PATH=public.pem -------------------------------------------------------------------------------- /auth-code-flow/next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /auth-code-flow/pages/_app.js: -------------------------------------------------------------------------------- 1 | import '@/styles/globals.css' 2 | 3 | export default function App({ Component, pageProps }) { 4 | return 5 | } 6 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/_app.js: -------------------------------------------------------------------------------- 1 | import '@/styles/globals.css' 2 | 3 | export default function App({ Component, pageProps }) { 4 | return 5 | } 6 | -------------------------------------------------------------------------------- /sign-and-verifying/keypair.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | openssl genpkey -algorithm RSA -out private.pem -pkeyopt rsa_keygen_bits:2048 4 | openssl rsa -in private.pem -outform PEM -pubout -out public.pem -------------------------------------------------------------------------------- /auth-code-flow/components/MainContainer.js: -------------------------------------------------------------------------------- 1 | export const MainContainer = ({ children }) => { 2 | return ( 3 |
{children}
4 | ); 5 | }; 6 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/components/MainContainer.js: -------------------------------------------------------------------------------- 1 | export const MainContainer = ({ children }) => { 2 | return ( 3 |
{children}
4 | ); 5 | }; 6 | -------------------------------------------------------------------------------- /auth-code-flow/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: [ 3 | "./pages/**/*.{js,ts,jsx,tsx}", 4 | "./components/**/*.{js,ts,jsx,tsx}", 5 | ], 6 | theme: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: [ 3 | "./pages/**/*.{js,ts,jsx,tsx}", 4 | "./components/**/*.{js,ts,jsx,tsx}", 5 | ], 6 | theme: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /auth-code-flow/pages/api/login.js: -------------------------------------------------------------------------------- 1 | const SPOTIFY_AUTH_URL = "https://accounts.spotify.com/authorize"; 2 | 3 | export default function handler(req, res) { 4 | const scopes = []; 5 | 6 | const query = ""; 7 | 8 | res.writeHead(302, { Location: `${SPOTIFY_AUTH_URL}?${query}` }); 9 | res.end(); 10 | } 11 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/api/login.js: -------------------------------------------------------------------------------- 1 | 2 | const TWITTER_AUTH_URL = "https://twitter.com/i/oauth2/authorize"; 3 | 4 | export default function handler(req, res) { 5 | const scopes = []; 6 | 7 | const query = "" 8 | 9 | res.writeHead(302, { Location: `${TWITTER_AUTH_URL}?${query}` }); 10 | res.end(); 11 | } 12 | -------------------------------------------------------------------------------- /auth-code-flow/pages/_document.js: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from 'next/document' 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | ) 13 | } 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "platzi-intro-oauth-oidc-dummy", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "private": true, 7 | "workspaces": [ 8 | "preview-endpoint", 9 | "sign-and-verifying", 10 | "auth-code-flow/", 11 | "auth-code-flow-pkce/" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/_document.js: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from 'next/document' 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | ) 13 | } 14 | -------------------------------------------------------------------------------- /auth-code-flow/pages/index.js: -------------------------------------------------------------------------------- 1 | import { ConnectButton } from "@/components/ConnectButton"; 2 | import { MainContainer } from "@/components/MainContainer"; 3 | 4 | export default function Home() { 5 | return ( 6 | 7 | Connect to Spotify 8 | 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/index.js: -------------------------------------------------------------------------------- 1 | import { ConnectButton } from "@/components/ConnectButton"; 2 | import { MainContainer } from "@/components/MainContainer"; 3 | 4 | export default function Home() { 5 | return ( 6 | 7 | Connect to Twitter 8 | 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/utils/generateCodeChallenge.js: -------------------------------------------------------------------------------- 1 | import crypto from "node:crypto"; 2 | 3 | export const generateCodeChallenge = (codeVerifier) => { 4 | const base64CodeChallenge = crypto 5 | .createHash("sha256") 6 | .update(codeVerifier) 7 | .digest("base64"); 8 | 9 | return Buffer.from(base64CodeChallenge, "base64").toString("base64url"); 10 | }; 11 | -------------------------------------------------------------------------------- /preview-endpoint/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "preview-endpoint", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "type": "module", 7 | "scripts": { 8 | "start": "node index.js", 9 | "dev": "node --watch index.js" 10 | }, 11 | "dependencies": { 12 | "dotenv": "^16.0.3", 13 | "express": "^4.18.2", 14 | "jsonwebtoken": "^9.0.0" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sign-and-verifying/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sign-and-verifying", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "type": "module", 7 | "scripts": { 8 | "start": "node index.js", 9 | "dev": "node --watch index.js" 10 | }, 11 | "dependencies": { 12 | "dotenv": "^16.0.3", 13 | "express": "^4.18.2", 14 | "jsonwebtoken": "^9.0.0" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/components/ConnectButton.js: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | export const ConnectButton = ({ children, href }) => { 3 | return ( 4 | 8 | {children} 9 | 10 | ); 11 | }; 12 | -------------------------------------------------------------------------------- /auth-code-flow/components/ConnectButton.js: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | export const ConnectButton = ({ children, href }) => { 3 | return ( 4 | 8 | {children} 9 | 10 | ); 11 | }; 12 | -------------------------------------------------------------------------------- /auth-code-flow/pages/api/callback.js: -------------------------------------------------------------------------------- 1 | const SPOTIFY_TOKEN_URL = "https://accounts.spotify.com/api/token"; 2 | 3 | export default async function handler(req, res) { 4 | const options = {}; 5 | 6 | try { 7 | const response = await fetch(SPOTIFY_TOKEN_URL, options); 8 | const data = await response.json(); 9 | 10 | res.writeHead(302, { Location: "/home" }); 11 | res.end(); 12 | } catch (error) { 13 | console.error(error); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/api/callback.js: -------------------------------------------------------------------------------- 1 | const TWITTER_TOKEN_URL = "https://api.twitter.com/2/oauth2/token"; 2 | 3 | export default async function handler(req, res) { 4 | const options = {}; 5 | 6 | try { 7 | const response = await fetch(TWITTER_TOKEN_URL, options); 8 | const data = await response.json(); 9 | 10 | res.writeHead(302, { Location: "/home" }); 11 | res.end(); 12 | } catch (error) { 13 | console.error(error); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /auth-code-flow/.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 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/.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 | -------------------------------------------------------------------------------- /sign-and-verifying/utils/token.js: -------------------------------------------------------------------------------- 1 | // Load environment variables 2 | import * as dotenv from "dotenv"; 3 | dotenv.config(); 4 | 5 | export const signToken = (user) => { 6 | const payload = { 7 | // TODO: add sub, name, and exp claims 8 | }; 9 | 10 | // TODO: Return signed token 11 | return null; 12 | }; 13 | 14 | export const verifyToken = (token) => { 15 | return null; 16 | }; 17 | 18 | export const validateExpiration = (payload) => { 19 | if (Date.now() > payload.exp) { 20 | throw new Error("Token expired"); 21 | } 22 | }; 23 | -------------------------------------------------------------------------------- /preview-endpoint/utils/users.js: -------------------------------------------------------------------------------- 1 | import * as dotenv from "dotenv"; 2 | dotenv.config(); 3 | 4 | const users = [ 5 | { 6 | id: process.env.USERNAME, 7 | username: process.env.USERNAME, 8 | password: process.env.PASSWORD, 9 | fullname: process.env.FULLNAME, 10 | }, 11 | ]; 12 | 13 | export const getUser = (username, password) => { 14 | const user = users.find((user) => user.username === username); 15 | 16 | if (!user || user.password !== password) { 17 | throw new Error("Invalid credentials"); 18 | } 19 | 20 | return user; 21 | }; 22 | -------------------------------------------------------------------------------- /sign-and-verifying/utils/users.js: -------------------------------------------------------------------------------- 1 | import * as dotenv from "dotenv"; 2 | dotenv.config(); 3 | 4 | const users = [ 5 | { 6 | id: process.env.USERNAME, 7 | username: process.env.USERNAME, 8 | password: process.env.PASSWORD, 9 | fullname: process.env.FULLNAME, 10 | }, 11 | ]; 12 | 13 | export const getUser = (username, password) => { 14 | const user = users.find((user) => user.username === username); 15 | 16 | if (!user || user.password !== password) { 17 | throw new Error("Invalid credentials"); 18 | } 19 | 20 | return user; 21 | }; 22 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/home.js: -------------------------------------------------------------------------------- 1 | import { Card } from "@/components/Card"; 2 | import { MainContainer } from "@/components/MainContainer"; 3 | 4 | const TWITTER_ME_ENDPOINT = 5 | "https://api.twitter.com/2/users/me?user.fields=profile_image_url"; 6 | const TWITTER_TWEETS_ENDPOINT = (userId) => 7 | userId ? `https://api.twitter.com/2/users/${userId}/tweets` : null; 8 | 9 | export default function Home() { 10 | return ( 11 | 12 | 13 | 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/pages/api/cors.js: -------------------------------------------------------------------------------- 1 | import cookie from "cookie"; 2 | 3 | export default async function handler(req, res) { 4 | const cookies = cookie.parse(req.headers.cookie); 5 | 6 | try { 7 | const response = await fetch(req.query.url, { 8 | method: req.method, 9 | headers: { 10 | Authorization: `Bearer ${cookies.access_token}`, 11 | "Content-Type": "application/json", 12 | }, 13 | }); 14 | const data = await response.json(); 15 | res.status(200).json(data); 16 | } catch (error) { 17 | console.error(error); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /auth-code-flow/pages/home.js: -------------------------------------------------------------------------------- 1 | import { Card } from "@/components/Card"; 2 | import { MainContainer } from "@/components/MainContainer"; 3 | 4 | const SPOTIFY_ME_ENDPOINT = "https://api.spotify.com/v1/me"; 5 | const SPOTIFY_PLAYLISTS_ENDPOINT = (userId) => 6 | userId ? `https://api.spotify.com/v1/users/${userId}/playlists` : null; 7 | 8 | export async function getServerSideProps({ req }) { 9 | return { props: { accessToken: "" } }; 10 | } 11 | 12 | export default function Home({ accessToken }) { 13 | return ( 14 | 15 | 16 | 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /auth-code-flow/public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-code-flow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth-code-flow", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "PORT=3002 next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@next/font": "13.1.6", 13 | "cookie": "^0.5.0", 14 | "eslint": "8.33.0", 15 | "eslint-config-next": "13.1.6", 16 | "next": "13.1.6", 17 | "react": "18.2.0", 18 | "react-dom": "18.2.0" 19 | }, 20 | "devDependencies": { 21 | "autoprefixer": "^10.4.13", 22 | "postcss": "^8.4.21", 23 | "tailwindcss": "^3.2.4" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth-code-flow-pkce", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "PORT=3003 next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@next/font": "13.1.6", 13 | "cookie": "^0.5.0", 14 | "eslint": "8.33.0", 15 | "eslint-config-next": "13.1.6", 16 | "next": "13.1.6", 17 | "randomstring": "^1.2.3", 18 | "react": "18.2.0", 19 | "react-dom": "18.2.0" 20 | }, 21 | "devDependencies": { 22 | "autoprefixer": "^10.4.13", 23 | "postcss": "^8.4.21", 24 | "tailwindcss": "^3.2.4" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/hooks/useFetch.js: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | 3 | export const useFetch = (url) => { 4 | const [response, setResponse] = useState(null); 5 | const [error, setError] = useState(null); 6 | const [isLoading, setIsLoading] = useState(false); 7 | 8 | useEffect(() => { 9 | const fetchData = async () => { 10 | setIsLoading(true); 11 | try { 12 | const res = await fetch(url); 13 | const json = await res.json(); 14 | setResponse(json); 15 | setIsLoading(false); 16 | } catch (error) { 17 | setError(error); 18 | } 19 | }; 20 | fetchData(); 21 | }, [url]); 22 | 23 | return { response, error, isLoading }; 24 | }; 25 | -------------------------------------------------------------------------------- /preview-endpoint/utils/token.js: -------------------------------------------------------------------------------- 1 | // Load environment variables 2 | import * as dotenv from "dotenv"; 3 | dotenv.config(); 4 | 5 | import jwt from "jsonwebtoken"; 6 | 7 | const SECRET = process.env.SECRET; 8 | 9 | const ONE_MINUTE_IN_MS = 60 * 1000; 10 | 11 | export const signToken = (user) => { 12 | const payload = { 13 | sub: user.id, 14 | name: user.fullname, 15 | exp: Date.now() + ONE_MINUTE_IN_MS, 16 | }; 17 | 18 | return jwt.sign(payload, SECRET); 19 | }; 20 | 21 | export const verifyToken = (token) => { 22 | return jwt.verify(token, SECRET); 23 | }; 24 | 25 | export const validateExpiration = (payload) => { 26 | if (Date.now() > payload.exp) { 27 | throw new Error("Token expired"); 28 | } 29 | }; 30 | -------------------------------------------------------------------------------- /auth-code-flow/hooks/useFetch.js: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | 3 | export const useFetch = (url, accessToken) => { 4 | const [response, setResponse] = useState(null); 5 | const [error, setError] = useState(null); 6 | const [isLoading, setIsLoading] = useState(false); 7 | 8 | useEffect(() => { 9 | const fetchData = async () => { 10 | setIsLoading(true); 11 | try { 12 | const res = await fetch(url, { 13 | method: "GET", 14 | headers: { 15 | Authorization: `Bearer ${accessToken}`, 16 | "Content-Type": "application/json", 17 | }, 18 | }); 19 | const json = await res.json(); 20 | setResponse(json); 21 | setIsLoading(false); 22 | } catch (error) { 23 | setError(error); 24 | } 25 | }; 26 | fetchData(); 27 | }, [url, accessToken]); 28 | 29 | return { response, error, isLoading }; 30 | }; 31 | -------------------------------------------------------------------------------- /preview-endpoint/utils/headers.js: -------------------------------------------------------------------------------- 1 | export const getCredentials = (req) => { 2 | const { authorization } = req.headers; 3 | 4 | if (!authorization) { 5 | throw new Error("No authorization header provided"); 6 | } 7 | 8 | // Basic Z2xyb2Rhc3o6cGxhdHpp 9 | const [type, credentials] = authorization.split(" "); 10 | 11 | if (type !== "Basic") { 12 | throw new Error("Authorization type must be Basic"); 13 | } 14 | 15 | // username:password in base 64 16 | const [username, password] = Buffer.from(credentials, "base64") 17 | .toString() 18 | .split(":"); 19 | 20 | return { username, password }; 21 | }; 22 | 23 | export const getToken = (req) => { 24 | const { authorization } = req.headers; 25 | 26 | if (!authorization) { 27 | throw new Error("No authorization header provided"); 28 | } 29 | 30 | // Bearer eyJhbGciOiJIUzI1(...) 31 | const [type, token] = authorization.split(" "); 32 | 33 | if (type !== "Bearer") { 34 | throw new Error("Authorization type must be Bearer"); 35 | } 36 | 37 | return token; 38 | }; 39 | -------------------------------------------------------------------------------- /sign-and-verifying/utils/headers.js: -------------------------------------------------------------------------------- 1 | export const getCredentials = (req) => { 2 | const { authorization } = req.headers; 3 | 4 | if (!authorization) { 5 | throw new Error("No authorization header provided"); 6 | } 7 | 8 | // Basic Z2xyb2Rhc3o6cGxhdHpp 9 | const [type, credentials] = authorization.split(" "); 10 | 11 | if (type !== "Basic") { 12 | throw new Error("Authorization type must be Basic"); 13 | } 14 | 15 | // username:password in base 64 16 | const [username, password] = Buffer.from(credentials, "base64") 17 | .toString() 18 | .split(":"); 19 | 20 | return { username, password }; 21 | }; 22 | 23 | export const getToken = (req) => { 24 | const { authorization } = req.headers; 25 | 26 | if (!authorization) { 27 | throw new Error("No authorization header provided"); 28 | } 29 | 30 | // Bearer eyJhbGciOiJIUzI1(...) 31 | const [type, token] = authorization.split(" "); 32 | 33 | if (type !== "Bearer") { 34 | throw new Error("Authorization type must be Bearer"); 35 | } 36 | 37 | return token; 38 | }; 39 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/components/Card.js: -------------------------------------------------------------------------------- 1 | export const Card = ({ userProfile, userTweets }) => { 2 | return ( 3 |
4 |
5 | {userProfile?.name} 10 |
11 |
12 |

13 | {userProfile?.name} 14 |

15 |

16 | @{userProfile?.username} 17 |

18 |

19 | Tweets: 20 | {userTweets?.slice(0,5).map((tweet) => tweet.text).join(", ")}. 21 |

22 |
23 |
24 | ); 25 | }; 26 | -------------------------------------------------------------------------------- /auth-code-flow/components/Card.js: -------------------------------------------------------------------------------- 1 | export const Card = ({ userProfile, userPlaylists }) => { 2 | return ( 3 |
4 |
5 | {userProfile?.display_name} 10 |
11 |
12 |

13 | {userProfile?.display_name} 14 |

15 |

16 | {userProfile?.product === "premium" ? "Premium" : "Free"} 17 |

18 |

19 | Playlists: 20 | {userPlaylists?.items.map((playlist) => playlist.name).join(", ")}. 21 |

22 |
23 |
24 | ); 25 | }; 26 | -------------------------------------------------------------------------------- /auth-code-flow/public/thirteen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/public/thirteen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-code-flow/public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-code-flow-pkce/public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preview-endpoint/index.js: -------------------------------------------------------------------------------- 1 | // Load environment variables 2 | import * as dotenv from "dotenv"; 3 | dotenv.config(); 4 | 5 | // Import Express and utilities 6 | import express from "express"; 7 | import { getCredentials, getToken } from "./utils/headers.js"; 8 | import { signToken, verifyToken, validateExpiration } from "./utils/token.js"; 9 | import { getUser } from "./utils/users.js"; 10 | 11 | // Initialize Express 12 | const app = express(); 13 | 14 | // Declare PORT from env variable 15 | const PORT = process.env.PORT; 16 | 17 | app.get("/public", (req, res) => { 18 | res.send("I'm public"); 19 | }); 20 | 21 | app.get("/private", (req, res) => { 22 | try { 23 | const token = getToken(req); 24 | const payload = verifyToken(token); 25 | 26 | validateExpiration(payload); 27 | 28 | res.send("I'm private"); 29 | } catch (error) { 30 | res.status(401).send({ error: error.message }); 31 | } 32 | }); 33 | 34 | app.post("/token", (req, res) => { 35 | try { 36 | const { username, password } = getCredentials(req); 37 | const user = getUser(username, password); 38 | const token = signToken(user); 39 | 40 | res.send({ token }); 41 | } catch (error) { 42 | res.status(400).send({ error: error.message }); 43 | } 44 | }); 45 | 46 | // Start the server 47 | app.listen(PORT, () => console.log(`🌐 Listening on http://localhost:${PORT}`)); 48 | -------------------------------------------------------------------------------- /sign-and-verifying/index.js: -------------------------------------------------------------------------------- 1 | // Load environment variables 2 | import * as dotenv from "dotenv"; 3 | dotenv.config(); 4 | 5 | // Import Express and utilities 6 | import express from "express"; 7 | import { getCredentials, getToken } from "./utils/headers.js"; 8 | import { signToken, verifyToken, validateExpiration } from "./utils/token.js"; 9 | import { getUser } from "./utils/users.js"; 10 | 11 | // Initialize Express 12 | const app = express(); 13 | 14 | // Declare PORT from env variable 15 | const PORT = process.env.PORT 16 | 17 | app.get("/public", (req, res) => { 18 | res.send("I'm public"); 19 | }); 20 | 21 | app.get("/private", (req, res) => { 22 | try { 23 | const token = getToken(req); 24 | const payload = verifyToken(token); 25 | 26 | validateExpiration(payload); 27 | 28 | res.send("I'm private"); 29 | } catch (error) { 30 | res.status(401).send({ error: error.message }); 31 | } 32 | }); 33 | 34 | app.post("/token", (req, res) => { 35 | try { 36 | const { username, password } = getCredentials(req); 37 | const user = getUser(username, password); 38 | const token = signToken(user); 39 | 40 | res.send({ token }); 41 | } catch (error) { 42 | res.status(400).send({ error: error.message }); 43 | } 44 | }); 45 | 46 | // Start the server 47 | app.listen(PORT, () => console.log(`🌐 Listening on http://localhost:${PORT}`)); 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Curso de Introducción a OAuth 2.0 y OpenID Connect 2 | Este curso puede tomarse en [https://platzi.com](https://platzi.com/guillermorodas) 3 | 4 | ## Modulos 5 | 1. Introducción a OAuth 2.0 y OIDC 6 | 2. JSON Web Tokens 7 | 3. Open Authorization 2.0 8 | 4. OpenID Connect 9 | 5. OAuth y OIDC en producción 10 | 11 | ## Requerimientos 12 | * JavaScript básico 13 | * Backedn básico 14 | 15 | ## Slides 16 | https://glrz.me/slides-oauth-oidc 17 | 18 | ## Branches 19 | Las ramas están ordenadas tal y cómo van aparenciendo el curso. 20 | * [Preview: Protección de un endpoint](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/develop/preview-endpoint) 21 | * [Firmando un JSON Web Token](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/firmando-un-json-web-token) 22 | * [Verificando un JSON Web Token](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/verificando-un-json-web-token) 23 | * [Spotify: Authorization Code Flow](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/authorization-code-flow) 24 | * [Twitter: Authorization Code Flow with PKCE](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/authorization-code-flow-with-pkce) 25 | * [Twitch: Implicit Flow](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/implicit-flow) 26 | * [Discord: Client Credentials Flow](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/client-credentials-flow) 27 | * [Auth0: Resource Owner Password Flow](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/resource-owner-password-flow) 28 | * [Auth0: Implicit Flow w/ Form Post](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/implicit-flow-form-post) 29 | * [Autenticación en minutos con Auth.js](https://github.com/glrodasz/platzi-intro-oauth-oidc/tree/authjs-example) 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/macos,node,yarn 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=macos,node,yarn 3 | 4 | ### macOS ### 5 | # General 6 | .DS_Store 7 | .AppleDouble 8 | .LSOverride 9 | 10 | # Icon must end with two \r 11 | Icon 12 | 13 | 14 | # Thumbnails 15 | ._* 16 | 17 | # Files that might appear in the root of a volume 18 | .DocumentRevisions-V100 19 | .fseventsd 20 | .Spotlight-V100 21 | .TemporaryItems 22 | .Trashes 23 | .VolumeIcon.icns 24 | .com.apple.timemachine.donotpresent 25 | 26 | # Directories potentially created on remote AFP share 27 | .AppleDB 28 | .AppleDesktop 29 | Network Trash Folder 30 | Temporary Items 31 | .apdisk 32 | 33 | ### macOS Patch ### 34 | # iCloud generated files 35 | *.icloud 36 | 37 | ### Node ### 38 | # Logs 39 | logs 40 | *.log 41 | npm-debug.log* 42 | yarn-debug.log* 43 | yarn-error.log* 44 | lerna-debug.log* 45 | .pnpm-debug.log* 46 | 47 | # Diagnostic reports (https://nodejs.org/api/report.html) 48 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 49 | 50 | # Runtime data 51 | pids 52 | *.pid 53 | *.seed 54 | *.pid.lock 55 | 56 | # Directory for instrumented libs generated by jscoverage/JSCover 57 | lib-cov 58 | 59 | # Coverage directory used by tools like istanbul 60 | coverage 61 | *.lcov 62 | 63 | # nyc test coverage 64 | .nyc_output 65 | 66 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 67 | .grunt 68 | 69 | # Bower dependency directory (https://bower.io/) 70 | bower_components 71 | 72 | # node-waf configuration 73 | .lock-wscript 74 | 75 | # Compiled binary addons (https://nodejs.org/api/addons.html) 76 | build/Release 77 | 78 | # Dependency directories 79 | node_modules/ 80 | jspm_packages/ 81 | 82 | # Snowpack dependency directory (https://snowpack.dev/) 83 | web_modules/ 84 | 85 | # TypeScript cache 86 | *.tsbuildinfo 87 | 88 | # Optional npm cache directory 89 | .npm 90 | 91 | # Optional eslint cache 92 | .eslintcache 93 | 94 | # Optional stylelint cache 95 | .stylelintcache 96 | 97 | # Microbundle cache 98 | .rpt2_cache/ 99 | .rts2_cache_cjs/ 100 | .rts2_cache_es/ 101 | .rts2_cache_umd/ 102 | 103 | # Optional REPL history 104 | .node_repl_history 105 | 106 | # Output of 'npm pack' 107 | *.tgz 108 | 109 | # Yarn Integrity file 110 | .yarn-integrity 111 | 112 | # dotenv environment variable files 113 | .env 114 | .env.development.local 115 | .env.test.local 116 | .env.production.local 117 | .env.local 118 | 119 | # parcel-bundler cache (https://parceljs.org/) 120 | .cache 121 | .parcel-cache 122 | 123 | # Next.js build output 124 | .next 125 | out 126 | 127 | # Nuxt.js build / generate output 128 | .nuxt 129 | dist 130 | 131 | # Gatsby files 132 | .cache/ 133 | # Comment in the public line in if your project uses Gatsby and not Next.js 134 | # https://nextjs.org/blog/next-9-1#public-directory-support 135 | # public 136 | 137 | # vuepress build output 138 | .vuepress/dist 139 | 140 | # vuepress v2.x temp and cache directory 141 | .temp 142 | 143 | # Docusaurus cache and generated files 144 | .docusaurus 145 | 146 | # Serverless directories 147 | .serverless/ 148 | 149 | # FuseBox cache 150 | .fusebox/ 151 | 152 | # DynamoDB Local files 153 | .dynamodb/ 154 | 155 | # TernJS port file 156 | .tern-port 157 | 158 | # Stores VSCode versions used for testing VSCode extensions 159 | .vscode-test 160 | 161 | # yarn v2 162 | .yarn/cache 163 | .yarn/unplugged 164 | .yarn/build-state.yml 165 | .yarn/install-state.gz 166 | .pnp.* 167 | 168 | ### Node Patch ### 169 | # Serverless Webpack directories 170 | .webpack/ 171 | 172 | # Optional stylelint cache 173 | 174 | # SvelteKit build / generate output 175 | .svelte-kit 176 | 177 | ### yarn ### 178 | # https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored 179 | 180 | .yarn/* 181 | !.yarn/releases 182 | !.yarn/patches 183 | !.yarn/plugins 184 | !.yarn/sdks 185 | !.yarn/versions 186 | 187 | # if you are NOT using Zero-installs, then: 188 | # comment the following lines 189 | !.yarn/cache 190 | 191 | # and uncomment the following lines 192 | # .pnp.* 193 | 194 | # End of https://www.toptal.com/developers/gitignore/api/macos,node,yarn 195 | 196 | # SIGN AND VERIFYNG 197 | private.pem 198 | public.pem -------------------------------------------------------------------------------- /auth-code-flow/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime@^7.20.7": 6 | version "7.20.13" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b" 8 | integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA== 9 | dependencies: 10 | regenerator-runtime "^0.13.11" 11 | 12 | "@eslint/eslintrc@^1.4.1": 13 | version "1.4.1" 14 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz#af58772019a2d271b7e2d4c23ff4ddcba3ccfb3e" 15 | integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== 16 | dependencies: 17 | ajv "^6.12.4" 18 | debug "^4.3.2" 19 | espree "^9.4.0" 20 | globals "^13.19.0" 21 | ignore "^5.2.0" 22 | import-fresh "^3.2.1" 23 | js-yaml "^4.1.0" 24 | minimatch "^3.1.2" 25 | strip-json-comments "^3.1.1" 26 | 27 | "@humanwhocodes/config-array@^0.11.8": 28 | version "0.11.8" 29 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 30 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 31 | dependencies: 32 | "@humanwhocodes/object-schema" "^1.2.1" 33 | debug "^4.1.1" 34 | minimatch "^3.0.5" 35 | 36 | "@humanwhocodes/module-importer@^1.0.1": 37 | version "1.0.1" 38 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 39 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 40 | 41 | "@humanwhocodes/object-schema@^1.2.1": 42 | version "1.2.1" 43 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 44 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 45 | 46 | "@next/env@13.1.6": 47 | version "13.1.6" 48 | resolved "https://registry.yarnpkg.com/@next/env/-/env-13.1.6.tgz#c4925609f16142ded1a5cb833359ab17359b7a93" 49 | integrity sha512-s+W9Fdqh5MFk6ECrbnVmmAOwxKQuhGMT7xXHrkYIBMBcTiOqNWhv5KbJIboKR5STXxNXl32hllnvKaffzFaWQg== 50 | 51 | "@next/eslint-plugin-next@13.1.6": 52 | version "13.1.6" 53 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz#ad8be22dd3d8aee9a9bd9a2507e2c55a2f7ebdd9" 54 | integrity sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw== 55 | dependencies: 56 | glob "7.1.7" 57 | 58 | "@next/font@13.1.6": 59 | version "13.1.6" 60 | resolved "https://registry.yarnpkg.com/@next/font/-/font-13.1.6.tgz#2bf99e3321ec9b4d65781c0d0ebff072e8752e1a" 61 | integrity sha512-AITjmeb1RgX1HKMCiA39ztx2mxeAyxl4ljv2UoSBUGAbFFMg8MO7YAvjHCgFhD39hL7YTbFjol04e/BPBH5RzQ== 62 | 63 | "@next/swc-android-arm-eabi@13.1.6": 64 | version "13.1.6" 65 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.1.6.tgz#d766dfc10e27814d947b20f052067c239913dbcc" 66 | integrity sha512-F3/6Z8LH/pGlPzR1AcjPFxx35mPqjE5xZcf+IL+KgbW9tMkp7CYi1y7qKrEWU7W4AumxX/8OINnDQWLiwLasLQ== 67 | 68 | "@next/swc-android-arm64@13.1.6": 69 | version "13.1.6" 70 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.1.6.tgz#f37a98d5f18927d8c9970d750d516ac779465176" 71 | integrity sha512-cMwQjnB8vrYkWyK/H0Rf2c2pKIH4RGjpKUDvbjVAit6SbwPDpmaijLio0LWFV3/tOnY6kvzbL62lndVA0mkYpw== 72 | 73 | "@next/swc-darwin-arm64@13.1.6": 74 | version "13.1.6" 75 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.1.6.tgz#ec1b90fd9bf809d8b81004c5182e254dced4ad96" 76 | integrity sha512-KKRQH4DDE4kONXCvFMNBZGDb499Hs+xcFAwvj+rfSUssIDrZOlyfJNy55rH5t2Qxed1e4K80KEJgsxKQN1/fyw== 77 | 78 | "@next/swc-darwin-x64@13.1.6": 79 | version "13.1.6" 80 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.1.6.tgz#e869ac75d16995eee733a7d1550322d9051c1eb4" 81 | integrity sha512-/uOky5PaZDoaU99ohjtNcDTJ6ks/gZ5ykTQDvNZDjIoCxFe3+t06bxsTPY6tAO6uEAw5f6vVFX5H5KLwhrkZCA== 82 | 83 | "@next/swc-freebsd-x64@13.1.6": 84 | version "13.1.6" 85 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.1.6.tgz#84a7b2e423a2904afc2edca21c2f1ba6b53fa4c1" 86 | integrity sha512-qaEALZeV7to6weSXk3Br80wtFQ7cFTpos/q+m9XVRFggu+8Ib895XhMWdJBzew6aaOcMvYR6KQ6JmHA2/eMzWw== 87 | 88 | "@next/swc-linux-arm-gnueabihf@13.1.6": 89 | version "13.1.6" 90 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.1.6.tgz#980eed1f655ff8a72187d8a6ef9e73ac39d20d23" 91 | integrity sha512-OybkbC58A1wJ+JrJSOjGDvZzrVEQA4sprJejGqMwiZyLqhr9Eo8FXF0y6HL+m1CPCpPhXEHz/2xKoYsl16kNqw== 92 | 93 | "@next/swc-linux-arm64-gnu@13.1.6": 94 | version "13.1.6" 95 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.1.6.tgz#87a71db21cded3f7c63d1d19079845c59813c53d" 96 | integrity sha512-yCH+yDr7/4FDuWv6+GiYrPI9kcTAO3y48UmaIbrKy8ZJpi7RehJe3vIBRUmLrLaNDH3rY1rwoHi471NvR5J5NQ== 97 | 98 | "@next/swc-linux-arm64-musl@13.1.6": 99 | version "13.1.6" 100 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.1.6.tgz#c5aac8619331b9fd030603bbe2b36052011e11de" 101 | integrity sha512-ECagB8LGX25P9Mrmlc7Q/TQBb9rGScxHbv/kLqqIWs2fIXy6Y/EiBBiM72NTwuXUFCNrWR4sjUPSooVBJJ3ESQ== 102 | 103 | "@next/swc-linux-x64-gnu@13.1.6": 104 | version "13.1.6" 105 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.1.6.tgz#9513d36d540bbfea575576746736054c31aacdea" 106 | integrity sha512-GT5w2mruk90V/I5g6ScuueE7fqj/d8Bui2qxdw6lFxmuTgMeol5rnzAv4uAoVQgClOUO/MULilzlODg9Ib3Y4Q== 107 | 108 | "@next/swc-linux-x64-musl@13.1.6": 109 | version "13.1.6" 110 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.1.6.tgz#d61fc6884899f5957251f4ce3f522e34a2c479b7" 111 | integrity sha512-keFD6KvwOPzmat4TCnlnuxJCQepPN+8j3Nw876FtULxo8005Y9Ghcl7ACcR8GoiKoddAq8gxNBrpjoxjQRHeAQ== 112 | 113 | "@next/swc-win32-arm64-msvc@13.1.6": 114 | version "13.1.6" 115 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.1.6.tgz#fac2077a8ae9768e31444c9ae90807e64117cda7" 116 | integrity sha512-OwertslIiGQluFvHyRDzBCIB07qJjqabAmINlXUYt7/sY7Q7QPE8xVi5beBxX/rxTGPIbtyIe3faBE6Z2KywhQ== 117 | 118 | "@next/swc-win32-ia32-msvc@13.1.6": 119 | version "13.1.6" 120 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.1.6.tgz#498bc11c91b4c482a625bf4b978f98ae91111e46" 121 | integrity sha512-g8zowiuP8FxUR9zslPmlju7qYbs2XBtTLVSxVikPtUDQedhcls39uKYLvOOd1JZg0ehyhopobRoH1q+MHlIN/w== 122 | 123 | "@next/swc-win32-x64-msvc@13.1.6": 124 | version "13.1.6" 125 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.1.6.tgz#17ed919c723426b7d0ce1cd73d40ce3dcd342089" 126 | integrity sha512-Ls2OL9hi3YlJKGNdKv8k3X/lLgc3VmLG3a/DeTkAd+lAituJp8ZHmRmm9f9SL84fT3CotlzcgbdaCDfFwFA6bA== 127 | 128 | "@nodelib/fs.scandir@2.1.5": 129 | version "2.1.5" 130 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 131 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 132 | dependencies: 133 | "@nodelib/fs.stat" "2.0.5" 134 | run-parallel "^1.1.9" 135 | 136 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 137 | version "2.0.5" 138 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 139 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 140 | 141 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 142 | version "1.2.8" 143 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 144 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 145 | dependencies: 146 | "@nodelib/fs.scandir" "2.1.5" 147 | fastq "^1.6.0" 148 | 149 | "@pkgr/utils@^2.3.1": 150 | version "2.3.1" 151 | resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.3.1.tgz#0a9b06ffddee364d6642b3cd562ca76f55b34a03" 152 | integrity sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw== 153 | dependencies: 154 | cross-spawn "^7.0.3" 155 | is-glob "^4.0.3" 156 | open "^8.4.0" 157 | picocolors "^1.0.0" 158 | tiny-glob "^0.2.9" 159 | tslib "^2.4.0" 160 | 161 | "@rushstack/eslint-patch@^1.1.3": 162 | version "1.2.0" 163 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" 164 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 165 | 166 | "@swc/helpers@0.4.14": 167 | version "0.4.14" 168 | resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" 169 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== 170 | dependencies: 171 | tslib "^2.4.0" 172 | 173 | "@types/json5@^0.0.29": 174 | version "0.0.29" 175 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 176 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 177 | 178 | "@typescript-eslint/parser@^5.42.0": 179 | version "5.50.0" 180 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.50.0.tgz#a33f44b2cc83d1b7176ec854fbecd55605b0b032" 181 | integrity sha512-KCcSyNaogUDftK2G9RXfQyOCt51uB5yqC6pkUYqhYh8Kgt+DwR5M0EwEAxGPy/+DH6hnmKeGsNhiZRQxjH71uQ== 182 | dependencies: 183 | "@typescript-eslint/scope-manager" "5.50.0" 184 | "@typescript-eslint/types" "5.50.0" 185 | "@typescript-eslint/typescript-estree" "5.50.0" 186 | debug "^4.3.4" 187 | 188 | "@typescript-eslint/scope-manager@5.50.0": 189 | version "5.50.0" 190 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.50.0.tgz#90b8a3b337ad2c52bbfe4eac38f9164614e40584" 191 | integrity sha512-rt03kaX+iZrhssaT974BCmoUikYtZI24Vp/kwTSy841XhiYShlqoshRFDvN1FKKvU2S3gK+kcBW1EA7kNUrogg== 192 | dependencies: 193 | "@typescript-eslint/types" "5.50.0" 194 | "@typescript-eslint/visitor-keys" "5.50.0" 195 | 196 | "@typescript-eslint/types@5.50.0": 197 | version "5.50.0" 198 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.50.0.tgz#c461d3671a6bec6c2f41f38ed60bd87aa8a30093" 199 | integrity sha512-atruOuJpir4OtyNdKahiHZobPKFvZnBnfDiyEaBf6d9vy9visE7gDjlmhl+y29uxZ2ZDgvXijcungGFjGGex7w== 200 | 201 | "@typescript-eslint/typescript-estree@5.50.0": 202 | version "5.50.0" 203 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.50.0.tgz#0b9b82975bdfa40db9a81fdabc7f93396867ea97" 204 | integrity sha512-Gq4zapso+OtIZlv8YNAStFtT6d05zyVCK7Fx3h5inlLBx2hWuc/0465C2mg/EQDDU2LKe52+/jN4f0g9bd+kow== 205 | dependencies: 206 | "@typescript-eslint/types" "5.50.0" 207 | "@typescript-eslint/visitor-keys" "5.50.0" 208 | debug "^4.3.4" 209 | globby "^11.1.0" 210 | is-glob "^4.0.3" 211 | semver "^7.3.7" 212 | tsutils "^3.21.0" 213 | 214 | "@typescript-eslint/visitor-keys@5.50.0": 215 | version "5.50.0" 216 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.50.0.tgz#b752ffc143841f3d7bc57d6dd01ac5c40f8c4903" 217 | integrity sha512-cdMeD9HGu6EXIeGOh2yVW6oGf9wq8asBgZx7nsR/D36gTfQ0odE5kcRYe5M81vjEFAcPeugXrHg78Imu55F6gg== 218 | dependencies: 219 | "@typescript-eslint/types" "5.50.0" 220 | eslint-visitor-keys "^3.3.0" 221 | 222 | acorn-jsx@^5.3.2: 223 | version "5.3.2" 224 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 225 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 226 | 227 | acorn-node@^1.8.2: 228 | version "1.8.2" 229 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 230 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 231 | dependencies: 232 | acorn "^7.0.0" 233 | acorn-walk "^7.0.0" 234 | xtend "^4.0.2" 235 | 236 | acorn-walk@^7.0.0: 237 | version "7.2.0" 238 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 239 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 240 | 241 | acorn@^7.0.0: 242 | version "7.4.1" 243 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 244 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 245 | 246 | acorn@^8.8.0: 247 | version "8.8.2" 248 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 249 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 250 | 251 | ajv@^6.10.0, ajv@^6.12.4: 252 | version "6.12.6" 253 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 254 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 255 | dependencies: 256 | fast-deep-equal "^3.1.1" 257 | fast-json-stable-stringify "^2.0.0" 258 | json-schema-traverse "^0.4.1" 259 | uri-js "^4.2.2" 260 | 261 | ansi-regex@^5.0.1: 262 | version "5.0.1" 263 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 264 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 265 | 266 | ansi-styles@^4.1.0: 267 | version "4.3.0" 268 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 269 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 270 | dependencies: 271 | color-convert "^2.0.1" 272 | 273 | anymatch@~3.1.2: 274 | version "3.1.3" 275 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 276 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 277 | dependencies: 278 | normalize-path "^3.0.0" 279 | picomatch "^2.0.4" 280 | 281 | arg@^5.0.2: 282 | version "5.0.2" 283 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" 284 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 285 | 286 | argparse@^2.0.1: 287 | version "2.0.1" 288 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 289 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 290 | 291 | aria-query@^5.1.3: 292 | version "5.1.3" 293 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" 294 | integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== 295 | dependencies: 296 | deep-equal "^2.0.5" 297 | 298 | array-includes@^3.1.5, array-includes@^3.1.6: 299 | version "3.1.6" 300 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 301 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 302 | dependencies: 303 | call-bind "^1.0.2" 304 | define-properties "^1.1.4" 305 | es-abstract "^1.20.4" 306 | get-intrinsic "^1.1.3" 307 | is-string "^1.0.7" 308 | 309 | array-union@^2.1.0: 310 | version "2.1.0" 311 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 312 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 313 | 314 | array.prototype.flat@^1.3.1: 315 | version "1.3.1" 316 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" 317 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 318 | dependencies: 319 | call-bind "^1.0.2" 320 | define-properties "^1.1.4" 321 | es-abstract "^1.20.4" 322 | es-shim-unscopables "^1.0.0" 323 | 324 | array.prototype.flatmap@^1.3.1: 325 | version "1.3.1" 326 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 327 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 328 | dependencies: 329 | call-bind "^1.0.2" 330 | define-properties "^1.1.4" 331 | es-abstract "^1.20.4" 332 | es-shim-unscopables "^1.0.0" 333 | 334 | array.prototype.tosorted@^1.1.1: 335 | version "1.1.1" 336 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" 337 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 338 | dependencies: 339 | call-bind "^1.0.2" 340 | define-properties "^1.1.4" 341 | es-abstract "^1.20.4" 342 | es-shim-unscopables "^1.0.0" 343 | get-intrinsic "^1.1.3" 344 | 345 | ast-types-flow@^0.0.7: 346 | version "0.0.7" 347 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 348 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 349 | 350 | autoprefixer@^10.4.13: 351 | version "10.4.13" 352 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8" 353 | integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== 354 | dependencies: 355 | browserslist "^4.21.4" 356 | caniuse-lite "^1.0.30001426" 357 | fraction.js "^4.2.0" 358 | normalize-range "^0.1.2" 359 | picocolors "^1.0.0" 360 | postcss-value-parser "^4.2.0" 361 | 362 | available-typed-arrays@^1.0.5: 363 | version "1.0.5" 364 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 365 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 366 | 367 | axe-core@^4.6.2: 368 | version "4.6.3" 369 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.6.3.tgz#fc0db6fdb65cc7a80ccf85286d91d64ababa3ece" 370 | integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== 371 | 372 | axobject-query@^3.1.1: 373 | version "3.1.1" 374 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" 375 | integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== 376 | dependencies: 377 | deep-equal "^2.0.5" 378 | 379 | balanced-match@^1.0.0: 380 | version "1.0.2" 381 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 382 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 383 | 384 | binary-extensions@^2.0.0: 385 | version "2.2.0" 386 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 387 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 388 | 389 | brace-expansion@^1.1.7: 390 | version "1.1.11" 391 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 392 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 393 | dependencies: 394 | balanced-match "^1.0.0" 395 | concat-map "0.0.1" 396 | 397 | braces@^3.0.2, braces@~3.0.2: 398 | version "3.0.2" 399 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 400 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 401 | dependencies: 402 | fill-range "^7.0.1" 403 | 404 | browserslist@^4.21.4: 405 | version "4.21.5" 406 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" 407 | integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== 408 | dependencies: 409 | caniuse-lite "^1.0.30001449" 410 | electron-to-chromium "^1.4.284" 411 | node-releases "^2.0.8" 412 | update-browserslist-db "^1.0.10" 413 | 414 | call-bind@^1.0.0, call-bind@^1.0.2: 415 | version "1.0.2" 416 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 417 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 418 | dependencies: 419 | function-bind "^1.1.1" 420 | get-intrinsic "^1.0.2" 421 | 422 | callsites@^3.0.0: 423 | version "3.1.0" 424 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 425 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 426 | 427 | camelcase-css@^2.0.1: 428 | version "2.0.1" 429 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 430 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 431 | 432 | caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449: 433 | version "1.0.30001450" 434 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001450.tgz#022225b91200589196b814b51b1bbe45144cf74f" 435 | integrity sha512-qMBmvmQmFXaSxexkjjfMvD5rnDL0+m+dUMZKoDYsGG8iZN29RuYh9eRoMvKsT6uMAWlyUUGDEQGJJYjzCIO9ew== 436 | 437 | chalk@^4.0.0: 438 | version "4.1.2" 439 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 440 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 441 | dependencies: 442 | ansi-styles "^4.1.0" 443 | supports-color "^7.1.0" 444 | 445 | chokidar@^3.5.3: 446 | version "3.5.3" 447 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 448 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 449 | dependencies: 450 | anymatch "~3.1.2" 451 | braces "~3.0.2" 452 | glob-parent "~5.1.2" 453 | is-binary-path "~2.1.0" 454 | is-glob "~4.0.1" 455 | normalize-path "~3.0.0" 456 | readdirp "~3.6.0" 457 | optionalDependencies: 458 | fsevents "~2.3.2" 459 | 460 | client-only@0.0.1: 461 | version "0.0.1" 462 | resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" 463 | integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== 464 | 465 | color-convert@^2.0.1: 466 | version "2.0.1" 467 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 468 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 469 | dependencies: 470 | color-name "~1.1.4" 471 | 472 | color-name@^1.1.4, color-name@~1.1.4: 473 | version "1.1.4" 474 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 475 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 476 | 477 | concat-map@0.0.1: 478 | version "0.0.1" 479 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 480 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 481 | 482 | cookie@^0.5.0: 483 | version "0.5.0" 484 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" 485 | integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== 486 | 487 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 488 | version "7.0.3" 489 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 490 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 491 | dependencies: 492 | path-key "^3.1.0" 493 | shebang-command "^2.0.0" 494 | which "^2.0.1" 495 | 496 | cssesc@^3.0.0: 497 | version "3.0.0" 498 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 499 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 500 | 501 | damerau-levenshtein@^1.0.8: 502 | version "1.0.8" 503 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 504 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 505 | 506 | debug@^3.2.7: 507 | version "3.2.7" 508 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 509 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 510 | dependencies: 511 | ms "^2.1.1" 512 | 513 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 514 | version "4.3.4" 515 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 516 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 517 | dependencies: 518 | ms "2.1.2" 519 | 520 | deep-equal@^2.0.5: 521 | version "2.2.0" 522 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.0.tgz#5caeace9c781028b9ff459f33b779346637c43e6" 523 | integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== 524 | dependencies: 525 | call-bind "^1.0.2" 526 | es-get-iterator "^1.1.2" 527 | get-intrinsic "^1.1.3" 528 | is-arguments "^1.1.1" 529 | is-array-buffer "^3.0.1" 530 | is-date-object "^1.0.5" 531 | is-regex "^1.1.4" 532 | is-shared-array-buffer "^1.0.2" 533 | isarray "^2.0.5" 534 | object-is "^1.1.5" 535 | object-keys "^1.1.1" 536 | object.assign "^4.1.4" 537 | regexp.prototype.flags "^1.4.3" 538 | side-channel "^1.0.4" 539 | which-boxed-primitive "^1.0.2" 540 | which-collection "^1.0.1" 541 | which-typed-array "^1.1.9" 542 | 543 | deep-is@^0.1.3: 544 | version "0.1.4" 545 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 546 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 547 | 548 | define-lazy-prop@^2.0.0: 549 | version "2.0.0" 550 | resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" 551 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== 552 | 553 | define-properties@^1.1.3, define-properties@^1.1.4: 554 | version "1.1.4" 555 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 556 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 557 | dependencies: 558 | has-property-descriptors "^1.0.0" 559 | object-keys "^1.1.1" 560 | 561 | defined@^1.0.0: 562 | version "1.0.1" 563 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" 564 | integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== 565 | 566 | detective@^5.2.1: 567 | version "5.2.1" 568 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" 569 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== 570 | dependencies: 571 | acorn-node "^1.8.2" 572 | defined "^1.0.0" 573 | minimist "^1.2.6" 574 | 575 | didyoumean@^1.2.2: 576 | version "1.2.2" 577 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" 578 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 579 | 580 | dir-glob@^3.0.1: 581 | version "3.0.1" 582 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 583 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 584 | dependencies: 585 | path-type "^4.0.0" 586 | 587 | dlv@^1.1.3: 588 | version "1.1.3" 589 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" 590 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 591 | 592 | doctrine@^2.1.0: 593 | version "2.1.0" 594 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 595 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 596 | dependencies: 597 | esutils "^2.0.2" 598 | 599 | doctrine@^3.0.0: 600 | version "3.0.0" 601 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 602 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 603 | dependencies: 604 | esutils "^2.0.2" 605 | 606 | electron-to-chromium@^1.4.284: 607 | version "1.4.286" 608 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz#0e039de59135f44ab9a8ec9025e53a9135eba11f" 609 | integrity sha512-Vp3CVhmYpgf4iXNKAucoQUDcCrBQX3XLBtwgFqP9BUXuucgvAV9zWp1kYU7LL9j4++s9O+12cb3wMtN4SJy6UQ== 610 | 611 | emoji-regex@^9.2.2: 612 | version "9.2.2" 613 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 614 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 615 | 616 | enhanced-resolve@^5.10.0: 617 | version "5.12.0" 618 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" 619 | integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== 620 | dependencies: 621 | graceful-fs "^4.2.4" 622 | tapable "^2.2.0" 623 | 624 | es-abstract@^1.19.0, es-abstract@^1.20.4: 625 | version "1.21.1" 626 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.1.tgz#e6105a099967c08377830a0c9cb589d570dd86c6" 627 | integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== 628 | dependencies: 629 | available-typed-arrays "^1.0.5" 630 | call-bind "^1.0.2" 631 | es-set-tostringtag "^2.0.1" 632 | es-to-primitive "^1.2.1" 633 | function-bind "^1.1.1" 634 | function.prototype.name "^1.1.5" 635 | get-intrinsic "^1.1.3" 636 | get-symbol-description "^1.0.0" 637 | globalthis "^1.0.3" 638 | gopd "^1.0.1" 639 | has "^1.0.3" 640 | has-property-descriptors "^1.0.0" 641 | has-proto "^1.0.1" 642 | has-symbols "^1.0.3" 643 | internal-slot "^1.0.4" 644 | is-array-buffer "^3.0.1" 645 | is-callable "^1.2.7" 646 | is-negative-zero "^2.0.2" 647 | is-regex "^1.1.4" 648 | is-shared-array-buffer "^1.0.2" 649 | is-string "^1.0.7" 650 | is-typed-array "^1.1.10" 651 | is-weakref "^1.0.2" 652 | object-inspect "^1.12.2" 653 | object-keys "^1.1.1" 654 | object.assign "^4.1.4" 655 | regexp.prototype.flags "^1.4.3" 656 | safe-regex-test "^1.0.0" 657 | string.prototype.trimend "^1.0.6" 658 | string.prototype.trimstart "^1.0.6" 659 | typed-array-length "^1.0.4" 660 | unbox-primitive "^1.0.2" 661 | which-typed-array "^1.1.9" 662 | 663 | es-get-iterator@^1.1.2: 664 | version "1.1.3" 665 | resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" 666 | integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== 667 | dependencies: 668 | call-bind "^1.0.2" 669 | get-intrinsic "^1.1.3" 670 | has-symbols "^1.0.3" 671 | is-arguments "^1.1.1" 672 | is-map "^2.0.2" 673 | is-set "^2.0.2" 674 | is-string "^1.0.7" 675 | isarray "^2.0.5" 676 | stop-iteration-iterator "^1.0.0" 677 | 678 | es-set-tostringtag@^2.0.1: 679 | version "2.0.1" 680 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" 681 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 682 | dependencies: 683 | get-intrinsic "^1.1.3" 684 | has "^1.0.3" 685 | has-tostringtag "^1.0.0" 686 | 687 | es-shim-unscopables@^1.0.0: 688 | version "1.0.0" 689 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 690 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 691 | dependencies: 692 | has "^1.0.3" 693 | 694 | es-to-primitive@^1.2.1: 695 | version "1.2.1" 696 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 697 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 698 | dependencies: 699 | is-callable "^1.1.4" 700 | is-date-object "^1.0.1" 701 | is-symbol "^1.0.2" 702 | 703 | escalade@^3.1.1: 704 | version "3.1.1" 705 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 706 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 707 | 708 | escape-string-regexp@^4.0.0: 709 | version "4.0.0" 710 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 711 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 712 | 713 | eslint-config-next@13.1.6: 714 | version "13.1.6" 715 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.1.6.tgz#ab6894fe5b80080f1e9b9306d1c4b0003230620e" 716 | integrity sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw== 717 | dependencies: 718 | "@next/eslint-plugin-next" "13.1.6" 719 | "@rushstack/eslint-patch" "^1.1.3" 720 | "@typescript-eslint/parser" "^5.42.0" 721 | eslint-import-resolver-node "^0.3.6" 722 | eslint-import-resolver-typescript "^3.5.2" 723 | eslint-plugin-import "^2.26.0" 724 | eslint-plugin-jsx-a11y "^6.5.1" 725 | eslint-plugin-react "^7.31.7" 726 | eslint-plugin-react-hooks "^4.5.0" 727 | 728 | eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: 729 | version "0.3.7" 730 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" 731 | integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== 732 | dependencies: 733 | debug "^3.2.7" 734 | is-core-module "^2.11.0" 735 | resolve "^1.22.1" 736 | 737 | eslint-import-resolver-typescript@^3.5.2: 738 | version "3.5.3" 739 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz#db5ed9e906651b7a59dd84870aaef0e78c663a05" 740 | integrity sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ== 741 | dependencies: 742 | debug "^4.3.4" 743 | enhanced-resolve "^5.10.0" 744 | get-tsconfig "^4.2.0" 745 | globby "^13.1.2" 746 | is-core-module "^2.10.0" 747 | is-glob "^4.0.3" 748 | synckit "^0.8.4" 749 | 750 | eslint-module-utils@^2.7.4: 751 | version "2.7.4" 752 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 753 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 754 | dependencies: 755 | debug "^3.2.7" 756 | 757 | eslint-plugin-import@^2.26.0: 758 | version "2.27.5" 759 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" 760 | integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== 761 | dependencies: 762 | array-includes "^3.1.6" 763 | array.prototype.flat "^1.3.1" 764 | array.prototype.flatmap "^1.3.1" 765 | debug "^3.2.7" 766 | doctrine "^2.1.0" 767 | eslint-import-resolver-node "^0.3.7" 768 | eslint-module-utils "^2.7.4" 769 | has "^1.0.3" 770 | is-core-module "^2.11.0" 771 | is-glob "^4.0.3" 772 | minimatch "^3.1.2" 773 | object.values "^1.1.6" 774 | resolve "^1.22.1" 775 | semver "^6.3.0" 776 | tsconfig-paths "^3.14.1" 777 | 778 | eslint-plugin-jsx-a11y@^6.5.1: 779 | version "6.7.1" 780 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" 781 | integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== 782 | dependencies: 783 | "@babel/runtime" "^7.20.7" 784 | aria-query "^5.1.3" 785 | array-includes "^3.1.6" 786 | array.prototype.flatmap "^1.3.1" 787 | ast-types-flow "^0.0.7" 788 | axe-core "^4.6.2" 789 | axobject-query "^3.1.1" 790 | damerau-levenshtein "^1.0.8" 791 | emoji-regex "^9.2.2" 792 | has "^1.0.3" 793 | jsx-ast-utils "^3.3.3" 794 | language-tags "=1.0.5" 795 | minimatch "^3.1.2" 796 | object.entries "^1.1.6" 797 | object.fromentries "^2.0.6" 798 | semver "^6.3.0" 799 | 800 | eslint-plugin-react-hooks@^4.5.0: 801 | version "4.6.0" 802 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 803 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 804 | 805 | eslint-plugin-react@^7.31.7: 806 | version "7.32.2" 807 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" 808 | integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== 809 | dependencies: 810 | array-includes "^3.1.6" 811 | array.prototype.flatmap "^1.3.1" 812 | array.prototype.tosorted "^1.1.1" 813 | doctrine "^2.1.0" 814 | estraverse "^5.3.0" 815 | jsx-ast-utils "^2.4.1 || ^3.0.0" 816 | minimatch "^3.1.2" 817 | object.entries "^1.1.6" 818 | object.fromentries "^2.0.6" 819 | object.hasown "^1.1.2" 820 | object.values "^1.1.6" 821 | prop-types "^15.8.1" 822 | resolve "^2.0.0-next.4" 823 | semver "^6.3.0" 824 | string.prototype.matchall "^4.0.8" 825 | 826 | eslint-scope@^7.1.1: 827 | version "7.1.1" 828 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 829 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 830 | dependencies: 831 | esrecurse "^4.3.0" 832 | estraverse "^5.2.0" 833 | 834 | eslint-utils@^3.0.0: 835 | version "3.0.0" 836 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 837 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 838 | dependencies: 839 | eslint-visitor-keys "^2.0.0" 840 | 841 | eslint-visitor-keys@^2.0.0: 842 | version "2.1.0" 843 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 844 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 845 | 846 | eslint-visitor-keys@^3.3.0: 847 | version "3.3.0" 848 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 849 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 850 | 851 | eslint@8.33.0: 852 | version "8.33.0" 853 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.33.0.tgz#02f110f32998cb598c6461f24f4d306e41ca33d7" 854 | integrity sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA== 855 | dependencies: 856 | "@eslint/eslintrc" "^1.4.1" 857 | "@humanwhocodes/config-array" "^0.11.8" 858 | "@humanwhocodes/module-importer" "^1.0.1" 859 | "@nodelib/fs.walk" "^1.2.8" 860 | ajv "^6.10.0" 861 | chalk "^4.0.0" 862 | cross-spawn "^7.0.2" 863 | debug "^4.3.2" 864 | doctrine "^3.0.0" 865 | escape-string-regexp "^4.0.0" 866 | eslint-scope "^7.1.1" 867 | eslint-utils "^3.0.0" 868 | eslint-visitor-keys "^3.3.0" 869 | espree "^9.4.0" 870 | esquery "^1.4.0" 871 | esutils "^2.0.2" 872 | fast-deep-equal "^3.1.3" 873 | file-entry-cache "^6.0.1" 874 | find-up "^5.0.0" 875 | glob-parent "^6.0.2" 876 | globals "^13.19.0" 877 | grapheme-splitter "^1.0.4" 878 | ignore "^5.2.0" 879 | import-fresh "^3.0.0" 880 | imurmurhash "^0.1.4" 881 | is-glob "^4.0.0" 882 | is-path-inside "^3.0.3" 883 | js-sdsl "^4.1.4" 884 | js-yaml "^4.1.0" 885 | json-stable-stringify-without-jsonify "^1.0.1" 886 | levn "^0.4.1" 887 | lodash.merge "^4.6.2" 888 | minimatch "^3.1.2" 889 | natural-compare "^1.4.0" 890 | optionator "^0.9.1" 891 | regexpp "^3.2.0" 892 | strip-ansi "^6.0.1" 893 | strip-json-comments "^3.1.0" 894 | text-table "^0.2.0" 895 | 896 | espree@^9.4.0: 897 | version "9.4.1" 898 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" 899 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 900 | dependencies: 901 | acorn "^8.8.0" 902 | acorn-jsx "^5.3.2" 903 | eslint-visitor-keys "^3.3.0" 904 | 905 | esquery@^1.4.0: 906 | version "1.4.0" 907 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 908 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 909 | dependencies: 910 | estraverse "^5.1.0" 911 | 912 | esrecurse@^4.3.0: 913 | version "4.3.0" 914 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 915 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 916 | dependencies: 917 | estraverse "^5.2.0" 918 | 919 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 920 | version "5.3.0" 921 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 922 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 923 | 924 | esutils@^2.0.2: 925 | version "2.0.3" 926 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 927 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 928 | 929 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 930 | version "3.1.3" 931 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 932 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 933 | 934 | fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: 935 | version "3.2.12" 936 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 937 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 938 | dependencies: 939 | "@nodelib/fs.stat" "^2.0.2" 940 | "@nodelib/fs.walk" "^1.2.3" 941 | glob-parent "^5.1.2" 942 | merge2 "^1.3.0" 943 | micromatch "^4.0.4" 944 | 945 | fast-json-stable-stringify@^2.0.0: 946 | version "2.1.0" 947 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 948 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 949 | 950 | fast-levenshtein@^2.0.6: 951 | version "2.0.6" 952 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 953 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 954 | 955 | fastq@^1.6.0: 956 | version "1.15.0" 957 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 958 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 959 | dependencies: 960 | reusify "^1.0.4" 961 | 962 | file-entry-cache@^6.0.1: 963 | version "6.0.1" 964 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 965 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 966 | dependencies: 967 | flat-cache "^3.0.4" 968 | 969 | fill-range@^7.0.1: 970 | version "7.0.1" 971 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 972 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 973 | dependencies: 974 | to-regex-range "^5.0.1" 975 | 976 | find-up@^5.0.0: 977 | version "5.0.0" 978 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 979 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 980 | dependencies: 981 | locate-path "^6.0.0" 982 | path-exists "^4.0.0" 983 | 984 | flat-cache@^3.0.4: 985 | version "3.0.4" 986 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 987 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 988 | dependencies: 989 | flatted "^3.1.0" 990 | rimraf "^3.0.2" 991 | 992 | flatted@^3.1.0: 993 | version "3.2.7" 994 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 995 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 996 | 997 | for-each@^0.3.3: 998 | version "0.3.3" 999 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 1000 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1001 | dependencies: 1002 | is-callable "^1.1.3" 1003 | 1004 | fraction.js@^4.2.0: 1005 | version "4.2.0" 1006 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" 1007 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 1008 | 1009 | fs.realpath@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1012 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1013 | 1014 | fsevents@~2.3.2: 1015 | version "2.3.2" 1016 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1017 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1018 | 1019 | function-bind@^1.1.1: 1020 | version "1.1.1" 1021 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1022 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1023 | 1024 | function.prototype.name@^1.1.5: 1025 | version "1.1.5" 1026 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1027 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1028 | dependencies: 1029 | call-bind "^1.0.2" 1030 | define-properties "^1.1.3" 1031 | es-abstract "^1.19.0" 1032 | functions-have-names "^1.2.2" 1033 | 1034 | functions-have-names@^1.2.2: 1035 | version "1.2.3" 1036 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1037 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1038 | 1039 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 1040 | version "1.2.0" 1041 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" 1042 | integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 1043 | dependencies: 1044 | function-bind "^1.1.1" 1045 | has "^1.0.3" 1046 | has-symbols "^1.0.3" 1047 | 1048 | get-symbol-description@^1.0.0: 1049 | version "1.0.0" 1050 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1051 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1052 | dependencies: 1053 | call-bind "^1.0.2" 1054 | get-intrinsic "^1.1.1" 1055 | 1056 | get-tsconfig@^4.2.0: 1057 | version "4.4.0" 1058 | resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.4.0.tgz#64eee64596668a81b8fce18403f94f245ee0d4e5" 1059 | integrity sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ== 1060 | 1061 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1062 | version "5.1.2" 1063 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1064 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1065 | dependencies: 1066 | is-glob "^4.0.1" 1067 | 1068 | glob-parent@^6.0.2: 1069 | version "6.0.2" 1070 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1071 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1072 | dependencies: 1073 | is-glob "^4.0.3" 1074 | 1075 | glob@7.1.7: 1076 | version "7.1.7" 1077 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1078 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1079 | dependencies: 1080 | fs.realpath "^1.0.0" 1081 | inflight "^1.0.4" 1082 | inherits "2" 1083 | minimatch "^3.0.4" 1084 | once "^1.3.0" 1085 | path-is-absolute "^1.0.0" 1086 | 1087 | glob@^7.1.3: 1088 | version "7.2.3" 1089 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1090 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1091 | dependencies: 1092 | fs.realpath "^1.0.0" 1093 | inflight "^1.0.4" 1094 | inherits "2" 1095 | minimatch "^3.1.1" 1096 | once "^1.3.0" 1097 | path-is-absolute "^1.0.0" 1098 | 1099 | globals@^13.19.0: 1100 | version "13.20.0" 1101 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1102 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1103 | dependencies: 1104 | type-fest "^0.20.2" 1105 | 1106 | globalthis@^1.0.3: 1107 | version "1.0.3" 1108 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1109 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1110 | dependencies: 1111 | define-properties "^1.1.3" 1112 | 1113 | globalyzer@0.1.0: 1114 | version "0.1.0" 1115 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465" 1116 | integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== 1117 | 1118 | globby@^11.1.0: 1119 | version "11.1.0" 1120 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1121 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1122 | dependencies: 1123 | array-union "^2.1.0" 1124 | dir-glob "^3.0.1" 1125 | fast-glob "^3.2.9" 1126 | ignore "^5.2.0" 1127 | merge2 "^1.4.1" 1128 | slash "^3.0.0" 1129 | 1130 | globby@^13.1.2: 1131 | version "13.1.3" 1132 | resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff" 1133 | integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== 1134 | dependencies: 1135 | dir-glob "^3.0.1" 1136 | fast-glob "^3.2.11" 1137 | ignore "^5.2.0" 1138 | merge2 "^1.4.1" 1139 | slash "^4.0.0" 1140 | 1141 | globrex@^0.1.2: 1142 | version "0.1.2" 1143 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" 1144 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 1145 | 1146 | gopd@^1.0.1: 1147 | version "1.0.1" 1148 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1149 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1150 | dependencies: 1151 | get-intrinsic "^1.1.3" 1152 | 1153 | graceful-fs@^4.2.4: 1154 | version "4.2.10" 1155 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1156 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1157 | 1158 | grapheme-splitter@^1.0.4: 1159 | version "1.0.4" 1160 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1161 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1162 | 1163 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1164 | version "1.0.2" 1165 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1166 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1167 | 1168 | has-flag@^4.0.0: 1169 | version "4.0.0" 1170 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1171 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1172 | 1173 | has-property-descriptors@^1.0.0: 1174 | version "1.0.0" 1175 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1176 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1177 | dependencies: 1178 | get-intrinsic "^1.1.1" 1179 | 1180 | has-proto@^1.0.1: 1181 | version "1.0.1" 1182 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1183 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1184 | 1185 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1186 | version "1.0.3" 1187 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1188 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1189 | 1190 | has-tostringtag@^1.0.0: 1191 | version "1.0.0" 1192 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1193 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1194 | dependencies: 1195 | has-symbols "^1.0.2" 1196 | 1197 | has@^1.0.3: 1198 | version "1.0.3" 1199 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1200 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1201 | dependencies: 1202 | function-bind "^1.1.1" 1203 | 1204 | ignore@^5.2.0: 1205 | version "5.2.4" 1206 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 1207 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1208 | 1209 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1210 | version "3.3.0" 1211 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1212 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1213 | dependencies: 1214 | parent-module "^1.0.0" 1215 | resolve-from "^4.0.0" 1216 | 1217 | imurmurhash@^0.1.4: 1218 | version "0.1.4" 1219 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1220 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1221 | 1222 | inflight@^1.0.4: 1223 | version "1.0.6" 1224 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1225 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1226 | dependencies: 1227 | once "^1.3.0" 1228 | wrappy "1" 1229 | 1230 | inherits@2: 1231 | version "2.0.4" 1232 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1233 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1234 | 1235 | internal-slot@^1.0.3, internal-slot@^1.0.4: 1236 | version "1.0.4" 1237 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.4.tgz#8551e7baf74a7a6ba5f749cfb16aa60722f0d6f3" 1238 | integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ== 1239 | dependencies: 1240 | get-intrinsic "^1.1.3" 1241 | has "^1.0.3" 1242 | side-channel "^1.0.4" 1243 | 1244 | is-arguments@^1.1.1: 1245 | version "1.1.1" 1246 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" 1247 | integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== 1248 | dependencies: 1249 | call-bind "^1.0.2" 1250 | has-tostringtag "^1.0.0" 1251 | 1252 | is-array-buffer@^3.0.1: 1253 | version "3.0.1" 1254 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.1.tgz#deb1db4fcae48308d54ef2442706c0393997052a" 1255 | integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== 1256 | dependencies: 1257 | call-bind "^1.0.2" 1258 | get-intrinsic "^1.1.3" 1259 | is-typed-array "^1.1.10" 1260 | 1261 | is-bigint@^1.0.1: 1262 | version "1.0.4" 1263 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1264 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1265 | dependencies: 1266 | has-bigints "^1.0.1" 1267 | 1268 | is-binary-path@~2.1.0: 1269 | version "2.1.0" 1270 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1271 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1272 | dependencies: 1273 | binary-extensions "^2.0.0" 1274 | 1275 | is-boolean-object@^1.1.0: 1276 | version "1.1.2" 1277 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1278 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1279 | dependencies: 1280 | call-bind "^1.0.2" 1281 | has-tostringtag "^1.0.0" 1282 | 1283 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1284 | version "1.2.7" 1285 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1286 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1287 | 1288 | is-core-module@^2.10.0, is-core-module@^2.11.0, is-core-module@^2.9.0: 1289 | version "2.11.0" 1290 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1291 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1292 | dependencies: 1293 | has "^1.0.3" 1294 | 1295 | is-date-object@^1.0.1, is-date-object@^1.0.5: 1296 | version "1.0.5" 1297 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1298 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1299 | dependencies: 1300 | has-tostringtag "^1.0.0" 1301 | 1302 | is-docker@^2.0.0, is-docker@^2.1.1: 1303 | version "2.2.1" 1304 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 1305 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 1306 | 1307 | is-extglob@^2.1.1: 1308 | version "2.1.1" 1309 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1310 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1311 | 1312 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1313 | version "4.0.3" 1314 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1315 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1316 | dependencies: 1317 | is-extglob "^2.1.1" 1318 | 1319 | is-map@^2.0.1, is-map@^2.0.2: 1320 | version "2.0.2" 1321 | resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" 1322 | integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 1323 | 1324 | is-negative-zero@^2.0.2: 1325 | version "2.0.2" 1326 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1327 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1328 | 1329 | is-number-object@^1.0.4: 1330 | version "1.0.7" 1331 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1332 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1333 | dependencies: 1334 | has-tostringtag "^1.0.0" 1335 | 1336 | is-number@^7.0.0: 1337 | version "7.0.0" 1338 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1339 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1340 | 1341 | is-path-inside@^3.0.3: 1342 | version "3.0.3" 1343 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1344 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1345 | 1346 | is-regex@^1.1.4: 1347 | version "1.1.4" 1348 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1349 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1350 | dependencies: 1351 | call-bind "^1.0.2" 1352 | has-tostringtag "^1.0.0" 1353 | 1354 | is-set@^2.0.1, is-set@^2.0.2: 1355 | version "2.0.2" 1356 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" 1357 | integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 1358 | 1359 | is-shared-array-buffer@^1.0.2: 1360 | version "1.0.2" 1361 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1362 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1363 | dependencies: 1364 | call-bind "^1.0.2" 1365 | 1366 | is-string@^1.0.5, is-string@^1.0.7: 1367 | version "1.0.7" 1368 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1369 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1370 | dependencies: 1371 | has-tostringtag "^1.0.0" 1372 | 1373 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1374 | version "1.0.4" 1375 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1376 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1377 | dependencies: 1378 | has-symbols "^1.0.2" 1379 | 1380 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1381 | version "1.1.10" 1382 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" 1383 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 1384 | dependencies: 1385 | available-typed-arrays "^1.0.5" 1386 | call-bind "^1.0.2" 1387 | for-each "^0.3.3" 1388 | gopd "^1.0.1" 1389 | has-tostringtag "^1.0.0" 1390 | 1391 | is-weakmap@^2.0.1: 1392 | version "2.0.1" 1393 | resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" 1394 | integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 1395 | 1396 | is-weakref@^1.0.2: 1397 | version "1.0.2" 1398 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1399 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1400 | dependencies: 1401 | call-bind "^1.0.2" 1402 | 1403 | is-weakset@^2.0.1: 1404 | version "2.0.2" 1405 | resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" 1406 | integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== 1407 | dependencies: 1408 | call-bind "^1.0.2" 1409 | get-intrinsic "^1.1.1" 1410 | 1411 | is-wsl@^2.2.0: 1412 | version "2.2.0" 1413 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 1414 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1415 | dependencies: 1416 | is-docker "^2.0.0" 1417 | 1418 | isarray@^2.0.5: 1419 | version "2.0.5" 1420 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 1421 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1422 | 1423 | isexe@^2.0.0: 1424 | version "2.0.0" 1425 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1426 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1427 | 1428 | js-sdsl@^4.1.4: 1429 | version "4.3.0" 1430 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" 1431 | integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== 1432 | 1433 | "js-tokens@^3.0.0 || ^4.0.0": 1434 | version "4.0.0" 1435 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1436 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1437 | 1438 | js-yaml@^4.1.0: 1439 | version "4.1.0" 1440 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1441 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1442 | dependencies: 1443 | argparse "^2.0.1" 1444 | 1445 | json-schema-traverse@^0.4.1: 1446 | version "0.4.1" 1447 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1448 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1449 | 1450 | json-stable-stringify-without-jsonify@^1.0.1: 1451 | version "1.0.1" 1452 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1453 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1454 | 1455 | json5@^1.0.1: 1456 | version "1.0.2" 1457 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 1458 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 1459 | dependencies: 1460 | minimist "^1.2.0" 1461 | 1462 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: 1463 | version "3.3.3" 1464 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 1465 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1466 | dependencies: 1467 | array-includes "^3.1.5" 1468 | object.assign "^4.1.3" 1469 | 1470 | language-subtag-registry@~0.3.2: 1471 | version "0.3.22" 1472 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" 1473 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 1474 | 1475 | language-tags@=1.0.5: 1476 | version "1.0.5" 1477 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1478 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1479 | dependencies: 1480 | language-subtag-registry "~0.3.2" 1481 | 1482 | levn@^0.4.1: 1483 | version "0.4.1" 1484 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1485 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1486 | dependencies: 1487 | prelude-ls "^1.2.1" 1488 | type-check "~0.4.0" 1489 | 1490 | lilconfig@^2.0.5, lilconfig@^2.0.6: 1491 | version "2.0.6" 1492 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" 1493 | integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== 1494 | 1495 | locate-path@^6.0.0: 1496 | version "6.0.0" 1497 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1498 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1499 | dependencies: 1500 | p-locate "^5.0.0" 1501 | 1502 | lodash.merge@^4.6.2: 1503 | version "4.6.2" 1504 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1505 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1506 | 1507 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1508 | version "1.4.0" 1509 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1510 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1511 | dependencies: 1512 | js-tokens "^3.0.0 || ^4.0.0" 1513 | 1514 | lru-cache@^6.0.0: 1515 | version "6.0.0" 1516 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1517 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1518 | dependencies: 1519 | yallist "^4.0.0" 1520 | 1521 | merge2@^1.3.0, merge2@^1.4.1: 1522 | version "1.4.1" 1523 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1524 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1525 | 1526 | micromatch@^4.0.4, micromatch@^4.0.5: 1527 | version "4.0.5" 1528 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1529 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1530 | dependencies: 1531 | braces "^3.0.2" 1532 | picomatch "^2.3.1" 1533 | 1534 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1535 | version "3.1.2" 1536 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1537 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1538 | dependencies: 1539 | brace-expansion "^1.1.7" 1540 | 1541 | minimist@^1.2.0, minimist@^1.2.6: 1542 | version "1.2.7" 1543 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1544 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1545 | 1546 | ms@2.1.2: 1547 | version "2.1.2" 1548 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1549 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1550 | 1551 | ms@^2.1.1: 1552 | version "2.1.3" 1553 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1554 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1555 | 1556 | nanoid@^3.3.4: 1557 | version "3.3.4" 1558 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1559 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1560 | 1561 | natural-compare@^1.4.0: 1562 | version "1.4.0" 1563 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1564 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1565 | 1566 | next@13.1.6: 1567 | version "13.1.6" 1568 | resolved "https://registry.yarnpkg.com/next/-/next-13.1.6.tgz#054babe20b601f21f682f197063c9b0b32f1a27c" 1569 | integrity sha512-hHlbhKPj9pW+Cymvfzc15lvhaOZ54l+8sXDXJWm3OBNBzgrVj6hwGPmqqsXg40xO1Leq+kXpllzRPuncpC0Phw== 1570 | dependencies: 1571 | "@next/env" "13.1.6" 1572 | "@swc/helpers" "0.4.14" 1573 | caniuse-lite "^1.0.30001406" 1574 | postcss "8.4.14" 1575 | styled-jsx "5.1.1" 1576 | optionalDependencies: 1577 | "@next/swc-android-arm-eabi" "13.1.6" 1578 | "@next/swc-android-arm64" "13.1.6" 1579 | "@next/swc-darwin-arm64" "13.1.6" 1580 | "@next/swc-darwin-x64" "13.1.6" 1581 | "@next/swc-freebsd-x64" "13.1.6" 1582 | "@next/swc-linux-arm-gnueabihf" "13.1.6" 1583 | "@next/swc-linux-arm64-gnu" "13.1.6" 1584 | "@next/swc-linux-arm64-musl" "13.1.6" 1585 | "@next/swc-linux-x64-gnu" "13.1.6" 1586 | "@next/swc-linux-x64-musl" "13.1.6" 1587 | "@next/swc-win32-arm64-msvc" "13.1.6" 1588 | "@next/swc-win32-ia32-msvc" "13.1.6" 1589 | "@next/swc-win32-x64-msvc" "13.1.6" 1590 | 1591 | node-releases@^2.0.8: 1592 | version "2.0.10" 1593 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" 1594 | integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== 1595 | 1596 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1597 | version "3.0.0" 1598 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1599 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1600 | 1601 | normalize-range@^0.1.2: 1602 | version "0.1.2" 1603 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1604 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 1605 | 1606 | object-assign@^4.1.1: 1607 | version "4.1.1" 1608 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1609 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1610 | 1611 | object-hash@^3.0.0: 1612 | version "3.0.0" 1613 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" 1614 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 1615 | 1616 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1617 | version "1.12.3" 1618 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 1619 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1620 | 1621 | object-is@^1.1.5: 1622 | version "1.1.5" 1623 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" 1624 | integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== 1625 | dependencies: 1626 | call-bind "^1.0.2" 1627 | define-properties "^1.1.3" 1628 | 1629 | object-keys@^1.1.1: 1630 | version "1.1.1" 1631 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1632 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1633 | 1634 | object.assign@^4.1.3, object.assign@^4.1.4: 1635 | version "4.1.4" 1636 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1637 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1638 | dependencies: 1639 | call-bind "^1.0.2" 1640 | define-properties "^1.1.4" 1641 | has-symbols "^1.0.3" 1642 | object-keys "^1.1.1" 1643 | 1644 | object.entries@^1.1.6: 1645 | version "1.1.6" 1646 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" 1647 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1648 | dependencies: 1649 | call-bind "^1.0.2" 1650 | define-properties "^1.1.4" 1651 | es-abstract "^1.20.4" 1652 | 1653 | object.fromentries@^2.0.6: 1654 | version "2.0.6" 1655 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" 1656 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1657 | dependencies: 1658 | call-bind "^1.0.2" 1659 | define-properties "^1.1.4" 1660 | es-abstract "^1.20.4" 1661 | 1662 | object.hasown@^1.1.2: 1663 | version "1.1.2" 1664 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" 1665 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1666 | dependencies: 1667 | define-properties "^1.1.4" 1668 | es-abstract "^1.20.4" 1669 | 1670 | object.values@^1.1.6: 1671 | version "1.1.6" 1672 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1673 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1674 | dependencies: 1675 | call-bind "^1.0.2" 1676 | define-properties "^1.1.4" 1677 | es-abstract "^1.20.4" 1678 | 1679 | once@^1.3.0: 1680 | version "1.4.0" 1681 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1682 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1683 | dependencies: 1684 | wrappy "1" 1685 | 1686 | open@^8.4.0: 1687 | version "8.4.0" 1688 | resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" 1689 | integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== 1690 | dependencies: 1691 | define-lazy-prop "^2.0.0" 1692 | is-docker "^2.1.1" 1693 | is-wsl "^2.2.0" 1694 | 1695 | optionator@^0.9.1: 1696 | version "0.9.1" 1697 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1698 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1699 | dependencies: 1700 | deep-is "^0.1.3" 1701 | fast-levenshtein "^2.0.6" 1702 | levn "^0.4.1" 1703 | prelude-ls "^1.2.1" 1704 | type-check "^0.4.0" 1705 | word-wrap "^1.2.3" 1706 | 1707 | p-limit@^3.0.2: 1708 | version "3.1.0" 1709 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1710 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1711 | dependencies: 1712 | yocto-queue "^0.1.0" 1713 | 1714 | p-locate@^5.0.0: 1715 | version "5.0.0" 1716 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1717 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1718 | dependencies: 1719 | p-limit "^3.0.2" 1720 | 1721 | parent-module@^1.0.0: 1722 | version "1.0.1" 1723 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1724 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1725 | dependencies: 1726 | callsites "^3.0.0" 1727 | 1728 | path-exists@^4.0.0: 1729 | version "4.0.0" 1730 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1731 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1732 | 1733 | path-is-absolute@^1.0.0: 1734 | version "1.0.1" 1735 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1736 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1737 | 1738 | path-key@^3.1.0: 1739 | version "3.1.1" 1740 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1741 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1742 | 1743 | path-parse@^1.0.7: 1744 | version "1.0.7" 1745 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1746 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1747 | 1748 | path-type@^4.0.0: 1749 | version "4.0.0" 1750 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1751 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1752 | 1753 | picocolors@^1.0.0: 1754 | version "1.0.0" 1755 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1756 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1757 | 1758 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1759 | version "2.3.1" 1760 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1761 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1762 | 1763 | pify@^2.3.0: 1764 | version "2.3.0" 1765 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1766 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1767 | 1768 | postcss-import@^14.1.0: 1769 | version "14.1.0" 1770 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" 1771 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== 1772 | dependencies: 1773 | postcss-value-parser "^4.0.0" 1774 | read-cache "^1.0.0" 1775 | resolve "^1.1.7" 1776 | 1777 | postcss-js@^4.0.0: 1778 | version "4.0.0" 1779 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" 1780 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== 1781 | dependencies: 1782 | camelcase-css "^2.0.1" 1783 | 1784 | postcss-load-config@^3.1.4: 1785 | version "3.1.4" 1786 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" 1787 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 1788 | dependencies: 1789 | lilconfig "^2.0.5" 1790 | yaml "^1.10.2" 1791 | 1792 | postcss-nested@6.0.0: 1793 | version "6.0.0" 1794 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.0.tgz#1572f1984736578f360cffc7eb7dca69e30d1735" 1795 | integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== 1796 | dependencies: 1797 | postcss-selector-parser "^6.0.10" 1798 | 1799 | postcss-selector-parser@^6.0.10: 1800 | version "6.0.11" 1801 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" 1802 | integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== 1803 | dependencies: 1804 | cssesc "^3.0.0" 1805 | util-deprecate "^1.0.2" 1806 | 1807 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 1808 | version "4.2.0" 1809 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 1810 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1811 | 1812 | postcss@8.4.14: 1813 | version "8.4.14" 1814 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" 1815 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 1816 | dependencies: 1817 | nanoid "^3.3.4" 1818 | picocolors "^1.0.0" 1819 | source-map-js "^1.0.2" 1820 | 1821 | postcss@^8.4.18, postcss@^8.4.21: 1822 | version "8.4.21" 1823 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4" 1824 | integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== 1825 | dependencies: 1826 | nanoid "^3.3.4" 1827 | picocolors "^1.0.0" 1828 | source-map-js "^1.0.2" 1829 | 1830 | prelude-ls@^1.2.1: 1831 | version "1.2.1" 1832 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1833 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1834 | 1835 | prop-types@^15.8.1: 1836 | version "15.8.1" 1837 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1838 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1839 | dependencies: 1840 | loose-envify "^1.4.0" 1841 | object-assign "^4.1.1" 1842 | react-is "^16.13.1" 1843 | 1844 | punycode@^2.1.0: 1845 | version "2.3.0" 1846 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1847 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1848 | 1849 | queue-microtask@^1.2.2: 1850 | version "1.2.3" 1851 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1852 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1853 | 1854 | quick-lru@^5.1.1: 1855 | version "5.1.1" 1856 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1857 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1858 | 1859 | react-dom@18.2.0: 1860 | version "18.2.0" 1861 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1862 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1863 | dependencies: 1864 | loose-envify "^1.1.0" 1865 | scheduler "^0.23.0" 1866 | 1867 | react-is@^16.13.1: 1868 | version "16.13.1" 1869 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1870 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1871 | 1872 | react@18.2.0: 1873 | version "18.2.0" 1874 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1875 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1876 | dependencies: 1877 | loose-envify "^1.1.0" 1878 | 1879 | read-cache@^1.0.0: 1880 | version "1.0.0" 1881 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 1882 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 1883 | dependencies: 1884 | pify "^2.3.0" 1885 | 1886 | readdirp@~3.6.0: 1887 | version "3.6.0" 1888 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1889 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1890 | dependencies: 1891 | picomatch "^2.2.1" 1892 | 1893 | regenerator-runtime@^0.13.11: 1894 | version "0.13.11" 1895 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" 1896 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 1897 | 1898 | regexp.prototype.flags@^1.4.3: 1899 | version "1.4.3" 1900 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1901 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1902 | dependencies: 1903 | call-bind "^1.0.2" 1904 | define-properties "^1.1.3" 1905 | functions-have-names "^1.2.2" 1906 | 1907 | regexpp@^3.2.0: 1908 | version "3.2.0" 1909 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1910 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1911 | 1912 | resolve-from@^4.0.0: 1913 | version "4.0.0" 1914 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1915 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1916 | 1917 | resolve@^1.1.7, resolve@^1.22.1: 1918 | version "1.22.1" 1919 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1920 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1921 | dependencies: 1922 | is-core-module "^2.9.0" 1923 | path-parse "^1.0.7" 1924 | supports-preserve-symlinks-flag "^1.0.0" 1925 | 1926 | resolve@^2.0.0-next.4: 1927 | version "2.0.0-next.4" 1928 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1929 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1930 | dependencies: 1931 | is-core-module "^2.9.0" 1932 | path-parse "^1.0.7" 1933 | supports-preserve-symlinks-flag "^1.0.0" 1934 | 1935 | reusify@^1.0.4: 1936 | version "1.0.4" 1937 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1938 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1939 | 1940 | rimraf@^3.0.2: 1941 | version "3.0.2" 1942 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1943 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1944 | dependencies: 1945 | glob "^7.1.3" 1946 | 1947 | run-parallel@^1.1.9: 1948 | version "1.2.0" 1949 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1950 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1951 | dependencies: 1952 | queue-microtask "^1.2.2" 1953 | 1954 | safe-regex-test@^1.0.0: 1955 | version "1.0.0" 1956 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1957 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1958 | dependencies: 1959 | call-bind "^1.0.2" 1960 | get-intrinsic "^1.1.3" 1961 | is-regex "^1.1.4" 1962 | 1963 | scheduler@^0.23.0: 1964 | version "0.23.0" 1965 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1966 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1967 | dependencies: 1968 | loose-envify "^1.1.0" 1969 | 1970 | semver@^6.3.0: 1971 | version "6.3.0" 1972 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1973 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1974 | 1975 | semver@^7.3.7: 1976 | version "7.3.8" 1977 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1978 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1979 | dependencies: 1980 | lru-cache "^6.0.0" 1981 | 1982 | shebang-command@^2.0.0: 1983 | version "2.0.0" 1984 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1985 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1986 | dependencies: 1987 | shebang-regex "^3.0.0" 1988 | 1989 | shebang-regex@^3.0.0: 1990 | version "3.0.0" 1991 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1992 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1993 | 1994 | side-channel@^1.0.4: 1995 | version "1.0.4" 1996 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1997 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1998 | dependencies: 1999 | call-bind "^1.0.0" 2000 | get-intrinsic "^1.0.2" 2001 | object-inspect "^1.9.0" 2002 | 2003 | slash@^3.0.0: 2004 | version "3.0.0" 2005 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2006 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2007 | 2008 | slash@^4.0.0: 2009 | version "4.0.0" 2010 | resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" 2011 | integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== 2012 | 2013 | source-map-js@^1.0.2: 2014 | version "1.0.2" 2015 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 2016 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 2017 | 2018 | stop-iteration-iterator@^1.0.0: 2019 | version "1.0.0" 2020 | resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" 2021 | integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== 2022 | dependencies: 2023 | internal-slot "^1.0.4" 2024 | 2025 | string.prototype.matchall@^4.0.8: 2026 | version "4.0.8" 2027 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" 2028 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 2029 | dependencies: 2030 | call-bind "^1.0.2" 2031 | define-properties "^1.1.4" 2032 | es-abstract "^1.20.4" 2033 | get-intrinsic "^1.1.3" 2034 | has-symbols "^1.0.3" 2035 | internal-slot "^1.0.3" 2036 | regexp.prototype.flags "^1.4.3" 2037 | side-channel "^1.0.4" 2038 | 2039 | string.prototype.trimend@^1.0.6: 2040 | version "1.0.6" 2041 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 2042 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 2043 | dependencies: 2044 | call-bind "^1.0.2" 2045 | define-properties "^1.1.4" 2046 | es-abstract "^1.20.4" 2047 | 2048 | string.prototype.trimstart@^1.0.6: 2049 | version "1.0.6" 2050 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 2051 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 2052 | dependencies: 2053 | call-bind "^1.0.2" 2054 | define-properties "^1.1.4" 2055 | es-abstract "^1.20.4" 2056 | 2057 | strip-ansi@^6.0.1: 2058 | version "6.0.1" 2059 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2060 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2061 | dependencies: 2062 | ansi-regex "^5.0.1" 2063 | 2064 | strip-bom@^3.0.0: 2065 | version "3.0.0" 2066 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2067 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 2068 | 2069 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2070 | version "3.1.1" 2071 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2072 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2073 | 2074 | styled-jsx@5.1.1: 2075 | version "5.1.1" 2076 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" 2077 | integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== 2078 | dependencies: 2079 | client-only "0.0.1" 2080 | 2081 | supports-color@^7.1.0: 2082 | version "7.2.0" 2083 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2084 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2085 | dependencies: 2086 | has-flag "^4.0.0" 2087 | 2088 | supports-preserve-symlinks-flag@^1.0.0: 2089 | version "1.0.0" 2090 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2091 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2092 | 2093 | synckit@^0.8.4: 2094 | version "0.8.5" 2095 | resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" 2096 | integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== 2097 | dependencies: 2098 | "@pkgr/utils" "^2.3.1" 2099 | tslib "^2.5.0" 2100 | 2101 | tailwindcss@^3.2.4: 2102 | version "3.2.4" 2103 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.2.4.tgz#afe3477e7a19f3ceafb48e4b083e292ce0dc0250" 2104 | integrity sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ== 2105 | dependencies: 2106 | arg "^5.0.2" 2107 | chokidar "^3.5.3" 2108 | color-name "^1.1.4" 2109 | detective "^5.2.1" 2110 | didyoumean "^1.2.2" 2111 | dlv "^1.1.3" 2112 | fast-glob "^3.2.12" 2113 | glob-parent "^6.0.2" 2114 | is-glob "^4.0.3" 2115 | lilconfig "^2.0.6" 2116 | micromatch "^4.0.5" 2117 | normalize-path "^3.0.0" 2118 | object-hash "^3.0.0" 2119 | picocolors "^1.0.0" 2120 | postcss "^8.4.18" 2121 | postcss-import "^14.1.0" 2122 | postcss-js "^4.0.0" 2123 | postcss-load-config "^3.1.4" 2124 | postcss-nested "6.0.0" 2125 | postcss-selector-parser "^6.0.10" 2126 | postcss-value-parser "^4.2.0" 2127 | quick-lru "^5.1.1" 2128 | resolve "^1.22.1" 2129 | 2130 | tapable@^2.2.0: 2131 | version "2.2.1" 2132 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" 2133 | integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 2134 | 2135 | text-table@^0.2.0: 2136 | version "0.2.0" 2137 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2138 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2139 | 2140 | tiny-glob@^0.2.9: 2141 | version "0.2.9" 2142 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.9.tgz#2212d441ac17928033b110f8b3640683129d31e2" 2143 | integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== 2144 | dependencies: 2145 | globalyzer "0.1.0" 2146 | globrex "^0.1.2" 2147 | 2148 | to-regex-range@^5.0.1: 2149 | version "5.0.1" 2150 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2151 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2152 | dependencies: 2153 | is-number "^7.0.0" 2154 | 2155 | tsconfig-paths@^3.14.1: 2156 | version "3.14.1" 2157 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 2158 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 2159 | dependencies: 2160 | "@types/json5" "^0.0.29" 2161 | json5 "^1.0.1" 2162 | minimist "^1.2.6" 2163 | strip-bom "^3.0.0" 2164 | 2165 | tslib@^1.8.1: 2166 | version "1.14.1" 2167 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2168 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2169 | 2170 | tslib@^2.4.0, tslib@^2.5.0: 2171 | version "2.5.0" 2172 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" 2173 | integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== 2174 | 2175 | tsutils@^3.21.0: 2176 | version "3.21.0" 2177 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 2178 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2179 | dependencies: 2180 | tslib "^1.8.1" 2181 | 2182 | type-check@^0.4.0, type-check@~0.4.0: 2183 | version "0.4.0" 2184 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2185 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2186 | dependencies: 2187 | prelude-ls "^1.2.1" 2188 | 2189 | type-fest@^0.20.2: 2190 | version "0.20.2" 2191 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2192 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2193 | 2194 | typed-array-length@^1.0.4: 2195 | version "1.0.4" 2196 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 2197 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2198 | dependencies: 2199 | call-bind "^1.0.2" 2200 | for-each "^0.3.3" 2201 | is-typed-array "^1.1.9" 2202 | 2203 | unbox-primitive@^1.0.2: 2204 | version "1.0.2" 2205 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2206 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2207 | dependencies: 2208 | call-bind "^1.0.2" 2209 | has-bigints "^1.0.2" 2210 | has-symbols "^1.0.3" 2211 | which-boxed-primitive "^1.0.2" 2212 | 2213 | update-browserslist-db@^1.0.10: 2214 | version "1.0.10" 2215 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" 2216 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 2217 | dependencies: 2218 | escalade "^3.1.1" 2219 | picocolors "^1.0.0" 2220 | 2221 | uri-js@^4.2.2: 2222 | version "4.4.1" 2223 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2224 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2225 | dependencies: 2226 | punycode "^2.1.0" 2227 | 2228 | util-deprecate@^1.0.2: 2229 | version "1.0.2" 2230 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2231 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2232 | 2233 | which-boxed-primitive@^1.0.2: 2234 | version "1.0.2" 2235 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2236 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2237 | dependencies: 2238 | is-bigint "^1.0.1" 2239 | is-boolean-object "^1.1.0" 2240 | is-number-object "^1.0.4" 2241 | is-string "^1.0.5" 2242 | is-symbol "^1.0.3" 2243 | 2244 | which-collection@^1.0.1: 2245 | version "1.0.1" 2246 | resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" 2247 | integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 2248 | dependencies: 2249 | is-map "^2.0.1" 2250 | is-set "^2.0.1" 2251 | is-weakmap "^2.0.1" 2252 | is-weakset "^2.0.1" 2253 | 2254 | which-typed-array@^1.1.9: 2255 | version "1.1.9" 2256 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" 2257 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 2258 | dependencies: 2259 | available-typed-arrays "^1.0.5" 2260 | call-bind "^1.0.2" 2261 | for-each "^0.3.3" 2262 | gopd "^1.0.1" 2263 | has-tostringtag "^1.0.0" 2264 | is-typed-array "^1.1.10" 2265 | 2266 | which@^2.0.1: 2267 | version "2.0.2" 2268 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2269 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2270 | dependencies: 2271 | isexe "^2.0.0" 2272 | 2273 | word-wrap@^1.2.3: 2274 | version "1.2.3" 2275 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2276 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2277 | 2278 | wrappy@1: 2279 | version "1.0.2" 2280 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2281 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2282 | 2283 | xtend@^4.0.2: 2284 | version "4.0.2" 2285 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2286 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2287 | 2288 | yallist@^4.0.0: 2289 | version "4.0.0" 2290 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2291 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2292 | 2293 | yaml@^1.10.2: 2294 | version "1.10.2" 2295 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 2296 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2297 | 2298 | yocto-queue@^0.1.0: 2299 | version "0.1.0" 2300 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2301 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2302 | --------------------------------------------------------------------------------