├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── assets ├── screenshot.png ├── shooting-stars-reverse.json └── shooting-stars.json ├── components ├── ConverterCard.tsx ├── Footer.tsx ├── Layout.tsx ├── Navbar.tsx └── ShootingStars.tsx ├── lib └── convert.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── [url].ts ├── index.tsx └── retrevnoc.tsx ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── site.webmanifest └── vercel.svg ├── styles └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5", 3 | "tabWidth": 2, 4 | "semi": false, 5 | "singleQuote": true, 6 | "printWidth": 120 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web VPN Converter 2 | 3 | _Connect to your local networks in BIT from anywhere in the world._ 4 | 5 | ## Demo 6 | 7 | [![screenshot](assets/screenshot.png)](https://webvpn.swo.moe) 8 | 9 | ## API reference 10 | 11 | ### Base 12 | 13 | ```http 14 | GET /api/ 15 | ``` 16 | 17 | Note that `ENCODED_URL` must be URL encoded. 18 | 19 | ### Optional params 20 | 21 | - `prefix`: Must be one of `web` (default) or `lib`. Adds either `webvpn.bit.edu.cn` or `libvpn.bit.edu.cn` as prefix to the URL. 22 | - `redirect`: Either `true` or `false` (default). If `true`, the client will be redirected to the converted/encrypted URL directly. 23 | 24 | ### Example 25 | 26 | ```http 27 | GET /api/https%3A%2F%2Fbit.edu.cn?prefix=web&redirect=false 28 | ``` 29 | 30 | ```json 31 | { 32 | "url": "https://webvpn.bit.edu.cn/https/77726476706e69737468656265737421f2fe55d222347d1e7d06" 33 | } 34 | ``` 35 | 36 | ## Development 37 | 38 | ```bash 39 | pnpm install 40 | pnpm dev 41 | pnpm build 42 | ``` 43 | 44 | ## Changelog 45 | 46 | - `May 3, 2022` - Add support for forward converter and reverse _retrevnoc_. 47 | - `Apr 29, 2022` - Migrate from Vue to Next.js with Tailwind CSS. 48 | -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/assets/screenshot.png -------------------------------------------------------------------------------- /components/ConverterCard.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from 'react' 2 | import useClipboard from 'react-use-clipboard' 3 | import { useDebouncedCallback } from 'use-debounce' 4 | import { 5 | RiArrowDownLine, 6 | RiCheckLine, 7 | RiClipboardLine, 8 | RiDeleteBin2Line, 9 | RiExternalLinkLine, 10 | RiLoaderLine, 11 | RiSubtractLine, 12 | } from 'react-icons/ri' 13 | 14 | import { decryptUrl, encryptUrl } from '../lib/convert' 15 | import { useLocalStorageObject } from 'react-use-window-localstorage' 16 | 17 | const prefix = { 18 | web: 'https://webvpn.bit.edu.cn', 19 | lib: 'https://nlibvpn.bit.edu.cn', 20 | } 21 | 22 | const ConverterCard = ({ reverse = false }: { reverse?: boolean }) => { 23 | const [enteredUrl, setEnteredUrl] = useState('') 24 | const [urlPrefix, setUrlPrefix] = useState(prefix.web) 25 | const [userEntering, setUserEntering] = useState(false) 26 | const [decryptionError, setDecryptionError] = useState(false) 27 | const [convertedUrl, setConvertedUrl] = useState('') 28 | const [isCopied, setCopied] = useClipboard(convertedUrl, { 29 | successDuration: 2000, 30 | }) 31 | 32 | // history only stored for converter (not retrevnoc) 33 | const [history, setHistory] = useLocalStorageObject('history', []) 34 | 35 | // debounced callback so that the converter function doesn't get called on every keystroke 36 | const encrypt = (url: string, prefix: string) => setConvertedUrl(url === '' ? '' : prefix + encryptUrl(url)) 37 | const decrypt = (url: string) => { 38 | const { url: decryptedUrl, error } = decryptUrl(url) 39 | if (error) { 40 | setDecryptionError(true) 41 | setConvertedUrl(error) 42 | } else { 43 | setDecryptionError(false) 44 | setConvertedUrl(decryptedUrl) 45 | } 46 | } 47 | const debounced = useDebouncedCallback((url: string, prefix: string) => { 48 | // set loading state to false after user stopped entering 49 | setUserEntering(false) 50 | // set converted url to the encrypted result 51 | reverse ? decrypt(url) : encrypt(url, prefix) 52 | }, 500) 53 | 54 | return ( 55 | <> 56 |
57 | 60 | { 65 | setUserEntering(true) 66 | setEnteredUrl(e.target.value) 67 | debounced(e.target.value, urlPrefix) 68 | }} 69 | className={`dark:bg-zinc-800 border border-zinc-400/30 dark:border-zinc-700 dark:text-zinc-300 rounded focus:outline-none block w-full my-2 p-2 transition-all duration-50 ${ 70 | reverse ? 'focus:ring-purple-400 focus:border-purple-400' : 'focus:ring-orange-400 focus:border-orange-400' 71 | }`} 72 | required 73 | autoFocus 74 | /> 75 | 76 |
77 | 78 | {reverse ? ( 79 |
80 | decrypt 81 |
82 | ) : ( 83 |
84 | 95 | 106 |
107 | )} 108 | 109 |
110 | 111 | 112 |
113 | 118 | 119 | 120 | 121 | 134 | 135 | 149 | 162 |
163 |
164 | 165 | {history.length > 0 && !reverse && ( 166 |
167 | 168 |
169 | {history.map((url: string, index: number) => ( 170 |
174 | 184 | 185 | 193 |
194 | ))} 195 |
196 |
197 | )} 198 | 199 | ) 200 | } 201 | 202 | export default ConverterCard 203 | -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- 1 | const Footer = () => ( 2 | 15 | ) 16 | export default Footer 17 | -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- 1 | import Footer from './Footer' 2 | import Navbar from './Navbar' 3 | 4 | const Layout = ({ children }: { children: JSX.Element }) => ( 5 |
6 | 7 |
{children}
8 |
9 |
10 | ) 11 | 12 | export default Layout 13 | -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link' 2 | import { RiGithubLine } from 'react-icons/ri' 3 | 4 | const NavLink = ({ 5 | href, 6 | children, 7 | isExternal = false, 8 | }: { 9 | href: string 10 | children: string | JSX.Element 11 | isExternal?: boolean 12 | }) => { 13 | const options = isExternal 14 | ? { 15 | href, 16 | target: '_blank', 17 | rel: 'noopener noreferrer', 18 | } 19 | : {} 20 | const classnames = 21 | 'p-2 text-center text-sm font-medium uppercase tracking-wider rounded dark:text-orange-50 hover:opacity-80 transition-all duration-50' 22 | return isExternal ? ( 23 | 24 | {children} 25 | 26 | ) : ( 27 | 28 | {children} 29 | 30 | ) 31 | } 32 | 33 | const Navbar = () => { 34 | return ( 35 | 44 | ) 45 | } 46 | 47 | export default Navbar 48 | -------------------------------------------------------------------------------- /components/ShootingStars.tsx: -------------------------------------------------------------------------------- 1 | import Lottie from 'lottie-react' 2 | import ShootingStarsJSON from '../assets/shooting-stars.json' 3 | import ShootingStarsReverseJSON from '../assets/shooting-stars-reverse.json' 4 | 5 | const ShootingStars = ({ reverse = false }: { reverse?: boolean }) => ( 6 |
7 | 8 |
9 | ) 10 | 11 | export default ShootingStars 12 | -------------------------------------------------------------------------------- /lib/convert.ts: -------------------------------------------------------------------------------- 1 | import aesjs from 'aes-js' 2 | 3 | const utf8 = aesjs.utils.utf8 4 | const hex = aesjs.utils.hex 5 | const AesCfb = aesjs.ModeOfOperation.cfb 6 | 7 | const textRightAppend = (text: string, mode: string) => { 8 | const segmentByteSize = mode === 'utf8' ? 16 : 32 9 | if (text.length % segmentByteSize === 0) { 10 | return text 11 | } 12 | 13 | const appendLength = segmentByteSize - (text.length % segmentByteSize) 14 | let i = 0 15 | while (i++ < appendLength) { 16 | text += '0' 17 | } 18 | return text 19 | } 20 | 21 | const encrypt = (text: string, key: string, iv: string) => { 22 | const textLength = text.length 23 | text = textRightAppend(text, 'utf8') 24 | 25 | const keyBytes = utf8.toBytes(key) 26 | const ivBytes = utf8.toBytes(iv) 27 | const textBytes = utf8.toBytes(text) 28 | 29 | const aesCfb = new AesCfb(keyBytes, ivBytes, 16) 30 | const encryptBytes = aesCfb.encrypt(textBytes) 31 | 32 | return hex.fromBytes(ivBytes) + hex.fromBytes(encryptBytes).slice(0, textLength * 2) 33 | } 34 | 35 | const decrypt = (text: string, key: string) => { 36 | const textLength = (text.length - 32) / 2 37 | text = textRightAppend(text, 'hex') 38 | 39 | const keyBytes = utf8.toBytes(key) 40 | const ivBytes = hex.toBytes(text.slice(0, 32)) 41 | const textBytes = hex.toBytes(text.slice(32)) 42 | 43 | const aesCfb = new AesCfb(keyBytes, ivBytes, 16) 44 | const decryptBytes = aesCfb.decrypt(textBytes) 45 | 46 | return utf8.fromBytes(decryptBytes).slice(0, textLength) 47 | } 48 | 49 | export const encryptUrl = (url: string) => { 50 | let port = '' 51 | let segments = [] 52 | let protocol = 'http' 53 | const knownProto = ['http', 'https', 'ssh', 'vnc', 'telnet', 'rdp'] 54 | 55 | for (const proto of knownProto) { 56 | const protoLength = proto.length + 3 57 | if (url.substring(0, protoLength).toLowerCase() === proto + '://') { 58 | protocol = proto 59 | url = url.substring(protoLength) 60 | break 61 | } 62 | } 63 | 64 | let v6 = '' 65 | const match = /\[[0-9a-fA-F:]+?\]/.exec(url) 66 | if (match) { 67 | v6 = match[0] 68 | url = url.slice(match[0].length) 69 | } 70 | 71 | segments = url.split('?')[0].split(':') 72 | if (segments.length > 1) { 73 | port = segments[1].split('/')[0] 74 | url = url.substring(0, segments[0].length) + url.substring(segments[0].length + port.length + 1) 75 | } 76 | 77 | const i = url.indexOf('/') 78 | if (i === -1) { 79 | if (v6 !== '') { 80 | url = v6 81 | } 82 | url = encrypt(url, 'wrdvpnisthebest!', 'wrdvpnisthebest!') 83 | } else { 84 | let host = url.slice(0, i) 85 | const path = url.slice(i) 86 | if (v6 !== '') { 87 | host = v6 88 | } 89 | url = encrypt(host, 'wrdvpnisthebest!', 'wrdvpnisthebest!') + path 90 | } 91 | 92 | if (port !== '') { 93 | url = '/' + protocol + '-' + port + '/' + url 94 | } else { 95 | url = '/' + protocol + '/' + url 96 | } 97 | 98 | return url 99 | } 100 | 101 | export const decryptUrl = (rawUrl: string) => { 102 | try { 103 | if (!rawUrl) return { url: '', error: null } 104 | 105 | const url = new URL(rawUrl) 106 | const pathname = url.pathname 107 | 108 | // This produces an array of segments similar to: 109 | // ['', 'http-5000', '777264767...2a46d8ffc0', 'xxx', ...] 110 | const segments = pathname.split('/') 111 | 112 | const [protocol, port] = segments[1].split('-') 113 | const decrypted = decrypt(segments[2], 'wrdvpnisthebest!') 114 | const remainingSegments = segments.slice(3).join('/') 115 | 116 | return { 117 | url: `${protocol}://${decrypted}${port ? ':' + port : ''}/${remainingSegments}`, 118 | error: null, 119 | } 120 | } catch (error: unknown) { 121 | if (typeof error === 'string') { 122 | return { url: '', error } 123 | } else { 124 | return { url: '', error: 'Unknown error, check your URL.' } 125 | } 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bit-webvpn-converter", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint", 10 | "format": "prettier --write --ignore-path .gitignore ." 11 | }, 12 | "dependencies": { 13 | "@fontsource/nanum-pen-script": "^5.0.11", 14 | "aes-js": "^3.1.2", 15 | "lottie-react": "^2.4.0", 16 | "next": "14.0.4", 17 | "react": "18.2.0", 18 | "react-dom": "18.2.0", 19 | "react-icons": "^4.12.0", 20 | "react-use-clipboard": "^1.0.9", 21 | "react-use-window-localstorage": "^1.0.18", 22 | "use-debounce": "^10.0.0" 23 | }, 24 | "devDependencies": { 25 | "@types/aes-js": "^3.1.4", 26 | "@types/node": "20.10.4", 27 | "@types/react": "18.2.43", 28 | "@types/react-dom": "18.2.17", 29 | "autoprefixer": "^10.4.16", 30 | "eslint": "8.55.0", 31 | "eslint-config-next": "14.0.4", 32 | "eslint-config-prettier": "^9.1.0", 33 | "postcss": "^8.4.32", 34 | "prettier": "^3.1.1", 35 | "tailwindcss": "^3.3.6", 36 | "typescript": "5.3.3" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css' 2 | import '@fontsource/nanum-pen-script' 3 | 4 | import type { AppProps } from 'next/app' 5 | import Layout from '../components/Layout' 6 | 7 | function MyApp({ Component, pageProps }: AppProps) { 8 | return ( 9 | 10 | 11 | 12 | ) 13 | } 14 | 15 | export default MyApp 16 | -------------------------------------------------------------------------------- /pages/api/[url].ts: -------------------------------------------------------------------------------- 1 | import type { NextApiRequest, NextApiResponse } from 'next' 2 | import { encryptUrl } from '../../lib/convert' 3 | 4 | const prefixOptions = { 5 | web: 'https://webvpn.bit.edu.cn', 6 | lib: 'https://nlibvpn.bit.edu.cn', 7 | } as const 8 | 9 | export default function handler(req: NextApiRequest, res: NextApiResponse) { 10 | // request like /api/https%3A%2F%2Fbit.edu.cn?prefix=web|lib&redirect=true|false 11 | const { url, prefix = 'web', redirect = 'false' } = req.query 12 | 13 | // if prefix is not one of web or lib, return invalid request 14 | if (typeof prefix !== 'string' || !['web', 'lib'].includes(prefix)) { 15 | res.status(400).json({ error: 'Invalid prefix' }) 16 | return 17 | } 18 | if (typeof url !== 'string') { 19 | res.status(400).json({ error: 'Invalid url' }) 20 | return 21 | } 22 | if (typeof redirect !== 'string' || !['true', 'false'].includes(redirect)) { 23 | res.status(400).json({ error: 'Invalid redirect option' }) 24 | return 25 | } 26 | 27 | const encryptedUrl = prefixOptions[prefix as keyof typeof prefixOptions] + encryptUrl(url) 28 | 29 | // next.js query parameter does not parse boolean directly, so we have to do a string compare 30 | if (redirect === 'true') { 31 | res.redirect(302, encryptedUrl) 32 | } else { 33 | res.status(200).json({ url: encryptedUrl }) 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import type { NextPage } from 'next' 2 | import Head from 'next/head' 3 | 4 | // import ShootingStars from '../components/ShootingStars' 5 | import ConverterCard from '../components/ConverterCard' 6 | 7 | const Home: NextPage = () => { 8 | return ( 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | Web VPN - converter 17 | 18 | 19 | {/* */} 20 | 21 |
22 |

23 | Web VPN Converter. 24 |

25 |
for BIT
26 |
27 | 28 |

29 | 30 | Convert BIT local network URLs into Web VPN URLs.
31 |
32 | Connect to your local networks in BIT from anywhere in the world. 33 |

34 | 35 | 36 |
37 | ) 38 | } 39 | 40 | export default Home 41 | -------------------------------------------------------------------------------- /pages/retrevnoc.tsx: -------------------------------------------------------------------------------- 1 | import Head from 'next/head' 2 | // import ShootingStars from '../components/ShootingStars' 3 | import ConverterCard from '../components/ConverterCard' 4 | 5 | const Retrevnoc = () => { 6 | return ( 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | Web VPN - retrevnoc 15 | 16 | 17 | {/* */} 18 | 19 |
20 |

21 | NPV bew Retrevnoc. 22 |

23 |
TIB rof
24 |
25 | 26 |

27 | 28 | Reverse lol.
29 |
30 | Decrypt Web VPN URLs. 31 |

32 | 33 | 34 |
35 | ) 36 | } 37 | export default Retrevnoc 38 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@fontsource/nanum-pen-script': 12 | specifier: ^5.0.11 13 | version: 5.0.11 14 | aes-js: 15 | specifier: ^3.1.2 16 | version: 3.1.2 17 | lottie-react: 18 | specifier: ^2.4.0 19 | version: 2.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 20 | next: 21 | specifier: 14.0.4 22 | version: 14.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 23 | react: 24 | specifier: 18.2.0 25 | version: 18.2.0 26 | react-dom: 27 | specifier: 18.2.0 28 | version: 18.2.0(react@18.2.0) 29 | react-icons: 30 | specifier: ^4.12.0 31 | version: 4.12.0(react@18.2.0) 32 | react-use-clipboard: 33 | specifier: ^1.0.9 34 | version: 1.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 35 | react-use-window-localstorage: 36 | specifier: ^1.0.18 37 | version: 1.0.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 38 | use-debounce: 39 | specifier: ^10.0.0 40 | version: 10.0.0(react@18.2.0) 41 | devDependencies: 42 | '@types/aes-js': 43 | specifier: ^3.1.4 44 | version: 3.1.4 45 | '@types/node': 46 | specifier: 20.10.4 47 | version: 20.10.4 48 | '@types/react': 49 | specifier: 18.2.43 50 | version: 18.2.43 51 | '@types/react-dom': 52 | specifier: 18.2.17 53 | version: 18.2.17 54 | autoprefixer: 55 | specifier: ^10.4.16 56 | version: 10.4.16(postcss@8.4.32) 57 | eslint: 58 | specifier: 8.55.0 59 | version: 8.55.0 60 | eslint-config-next: 61 | specifier: 14.0.4 62 | version: 14.0.4(eslint@8.55.0)(typescript@5.3.3) 63 | eslint-config-prettier: 64 | specifier: ^9.1.0 65 | version: 9.1.0(eslint@8.55.0) 66 | postcss: 67 | specifier: ^8.4.32 68 | version: 8.4.32 69 | prettier: 70 | specifier: ^3.1.1 71 | version: 3.1.1 72 | tailwindcss: 73 | specifier: ^3.3.6 74 | version: 3.3.6 75 | typescript: 76 | specifier: 5.3.3 77 | version: 5.3.3 78 | 79 | packages: 80 | 81 | '@aashutoshrathi/word-wrap@1.2.6': 82 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 83 | engines: {node: '>=0.10.0'} 84 | 85 | '@alloc/quick-lru@5.2.0': 86 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 87 | engines: {node: '>=10'} 88 | 89 | '@babel/runtime@7.23.5': 90 | resolution: {integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==} 91 | engines: {node: '>=6.9.0'} 92 | 93 | '@eslint-community/eslint-utils@4.2.0': 94 | resolution: {integrity: sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==} 95 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 96 | peerDependencies: 97 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 98 | 99 | '@eslint-community/regexpp@4.6.2': 100 | resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} 101 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 102 | 103 | '@eslint/eslintrc@2.1.4': 104 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 105 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 106 | 107 | '@eslint/js@8.55.0': 108 | resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} 109 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 110 | 111 | '@fontsource/nanum-pen-script@5.0.11': 112 | resolution: {integrity: sha512-eBkgMhuA2v2XeVuIDLl4ohPT5p/nkhEVRoqAcT3hoC/RIYE8hB26AfWkH/0bse89H1PN/vGhk1IqHr+lIITkpQ==} 113 | 114 | '@humanwhocodes/config-array@0.11.13': 115 | resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} 116 | engines: {node: '>=10.10.0'} 117 | deprecated: Use @eslint/config-array instead 118 | 119 | '@humanwhocodes/module-importer@1.0.1': 120 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 121 | engines: {node: '>=12.22'} 122 | 123 | '@humanwhocodes/object-schema@2.0.1': 124 | resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} 125 | deprecated: Use @eslint/object-schema instead 126 | 127 | '@jridgewell/gen-mapping@0.3.3': 128 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 129 | engines: {node: '>=6.0.0'} 130 | 131 | '@jridgewell/resolve-uri@3.1.1': 132 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 133 | engines: {node: '>=6.0.0'} 134 | 135 | '@jridgewell/set-array@1.1.2': 136 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 137 | engines: {node: '>=6.0.0'} 138 | 139 | '@jridgewell/sourcemap-codec@1.4.15': 140 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 141 | 142 | '@jridgewell/trace-mapping@0.3.20': 143 | resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} 144 | 145 | '@next/env@14.0.4': 146 | resolution: {integrity: sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==} 147 | 148 | '@next/eslint-plugin-next@14.0.4': 149 | resolution: {integrity: sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==} 150 | 151 | '@next/swc-darwin-arm64@14.0.4': 152 | resolution: {integrity: sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==} 153 | engines: {node: '>= 10'} 154 | cpu: [arm64] 155 | os: [darwin] 156 | 157 | '@next/swc-darwin-x64@14.0.4': 158 | resolution: {integrity: sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==} 159 | engines: {node: '>= 10'} 160 | cpu: [x64] 161 | os: [darwin] 162 | 163 | '@next/swc-linux-arm64-gnu@14.0.4': 164 | resolution: {integrity: sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==} 165 | engines: {node: '>= 10'} 166 | cpu: [arm64] 167 | os: [linux] 168 | 169 | '@next/swc-linux-arm64-musl@14.0.4': 170 | resolution: {integrity: sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==} 171 | engines: {node: '>= 10'} 172 | cpu: [arm64] 173 | os: [linux] 174 | 175 | '@next/swc-linux-x64-gnu@14.0.4': 176 | resolution: {integrity: sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==} 177 | engines: {node: '>= 10'} 178 | cpu: [x64] 179 | os: [linux] 180 | 181 | '@next/swc-linux-x64-musl@14.0.4': 182 | resolution: {integrity: sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==} 183 | engines: {node: '>= 10'} 184 | cpu: [x64] 185 | os: [linux] 186 | 187 | '@next/swc-win32-arm64-msvc@14.0.4': 188 | resolution: {integrity: sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==} 189 | engines: {node: '>= 10'} 190 | cpu: [arm64] 191 | os: [win32] 192 | 193 | '@next/swc-win32-ia32-msvc@14.0.4': 194 | resolution: {integrity: sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==} 195 | engines: {node: '>= 10'} 196 | cpu: [ia32] 197 | os: [win32] 198 | 199 | '@next/swc-win32-x64-msvc@14.0.4': 200 | resolution: {integrity: sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==} 201 | engines: {node: '>= 10'} 202 | cpu: [x64] 203 | os: [win32] 204 | 205 | '@nodelib/fs.scandir@2.1.5': 206 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 207 | engines: {node: '>= 8'} 208 | 209 | '@nodelib/fs.stat@2.0.5': 210 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 211 | engines: {node: '>= 8'} 212 | 213 | '@nodelib/fs.walk@1.2.8': 214 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 215 | engines: {node: '>= 8'} 216 | 217 | '@rushstack/eslint-patch@1.6.0': 218 | resolution: {integrity: sha512-2/U3GXA6YiPYQDLGwtGlnNgKYBSwCFIHf8Y9LUY5VATHdtbLlU0Y1R3QoBnT0aB4qv/BEiVVsj7LJXoQCgJ2vA==} 219 | 220 | '@swc/helpers@0.5.2': 221 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 222 | 223 | '@types/aes-js@3.1.4': 224 | resolution: {integrity: sha512-v3D66IptpUqh+pHKVNRxY8yvp2ESSZXe0rTzsGdzUhEwag7ljVfgCllkWv2YgiYXDhWFBrEywll4A5JToyTNFA==} 225 | 226 | '@types/json5@0.0.29': 227 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 228 | 229 | '@types/node@20.10.4': 230 | resolution: {integrity: sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==} 231 | 232 | '@types/prop-types@15.7.5': 233 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 234 | 235 | '@types/react-dom@18.2.17': 236 | resolution: {integrity: sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==} 237 | 238 | '@types/react@18.2.43': 239 | resolution: {integrity: sha512-nvOV01ZdBdd/KW6FahSbcNplt2jCJfyWdTos61RYHV+FVv5L/g9AOX1bmbVcWcLFL8+KHQfh1zVIQrud6ihyQA==} 240 | 241 | '@types/scheduler@0.16.2': 242 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} 243 | 244 | '@typescript-eslint/parser@6.13.2': 245 | resolution: {integrity: sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg==} 246 | engines: {node: ^16.0.0 || >=18.0.0} 247 | peerDependencies: 248 | eslint: ^7.0.0 || ^8.0.0 249 | typescript: '*' 250 | peerDependenciesMeta: 251 | typescript: 252 | optional: true 253 | 254 | '@typescript-eslint/scope-manager@6.13.2': 255 | resolution: {integrity: sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==} 256 | engines: {node: ^16.0.0 || >=18.0.0} 257 | 258 | '@typescript-eslint/types@6.13.2': 259 | resolution: {integrity: sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==} 260 | engines: {node: ^16.0.0 || >=18.0.0} 261 | 262 | '@typescript-eslint/typescript-estree@6.13.2': 263 | resolution: {integrity: sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==} 264 | engines: {node: ^16.0.0 || >=18.0.0} 265 | peerDependencies: 266 | typescript: '*' 267 | peerDependenciesMeta: 268 | typescript: 269 | optional: true 270 | 271 | '@typescript-eslint/visitor-keys@6.13.2': 272 | resolution: {integrity: sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==} 273 | engines: {node: ^16.0.0 || >=18.0.0} 274 | 275 | '@ungap/structured-clone@1.2.0': 276 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 277 | 278 | acorn-jsx@5.3.2: 279 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 280 | peerDependencies: 281 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 282 | 283 | acorn@8.9.0: 284 | resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} 285 | engines: {node: '>=0.4.0'} 286 | hasBin: true 287 | 288 | aes-js@3.1.2: 289 | resolution: {integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==} 290 | 291 | ajv@6.12.6: 292 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 293 | 294 | ansi-regex@5.0.1: 295 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 296 | engines: {node: '>=8'} 297 | 298 | ansi-styles@4.3.0: 299 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 300 | engines: {node: '>=8'} 301 | 302 | any-promise@1.3.0: 303 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 304 | 305 | anymatch@3.1.3: 306 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 307 | engines: {node: '>= 8'} 308 | 309 | arg@5.0.2: 310 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 311 | 312 | argparse@2.0.1: 313 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 314 | 315 | aria-query@5.3.0: 316 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 317 | 318 | array-buffer-byte-length@1.0.0: 319 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 320 | 321 | array-includes@3.1.7: 322 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 323 | engines: {node: '>= 0.4'} 324 | 325 | array-union@2.1.0: 326 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 327 | engines: {node: '>=8'} 328 | 329 | array.prototype.findlastindex@1.2.3: 330 | resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} 331 | engines: {node: '>= 0.4'} 332 | 333 | array.prototype.flat@1.3.2: 334 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 335 | engines: {node: '>= 0.4'} 336 | 337 | array.prototype.flatmap@1.3.2: 338 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 339 | engines: {node: '>= 0.4'} 340 | 341 | array.prototype.tosorted@1.1.2: 342 | resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} 343 | 344 | arraybuffer.prototype.slice@1.0.2: 345 | resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} 346 | engines: {node: '>= 0.4'} 347 | 348 | ast-types-flow@0.0.8: 349 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 350 | 351 | asynciterator.prototype@1.0.0: 352 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} 353 | 354 | autoprefixer@10.4.16: 355 | resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} 356 | engines: {node: ^10 || ^12 || >=14} 357 | hasBin: true 358 | peerDependencies: 359 | postcss: ^8.1.0 360 | 361 | available-typed-arrays@1.0.5: 362 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 363 | engines: {node: '>= 0.4'} 364 | 365 | axe-core@4.7.0: 366 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 367 | engines: {node: '>=4'} 368 | 369 | axobject-query@3.2.1: 370 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 371 | 372 | balanced-match@1.0.2: 373 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 374 | 375 | binary-extensions@2.2.0: 376 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 377 | engines: {node: '>=8'} 378 | 379 | brace-expansion@1.1.11: 380 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 381 | 382 | braces@3.0.3: 383 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 384 | engines: {node: '>=8'} 385 | 386 | browserslist@4.22.2: 387 | resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} 388 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 389 | hasBin: true 390 | 391 | busboy@1.6.0: 392 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 393 | engines: {node: '>=10.16.0'} 394 | 395 | call-bind@1.0.5: 396 | resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} 397 | 398 | callsites@3.1.0: 399 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 400 | engines: {node: '>=6'} 401 | 402 | camelcase-css@2.0.1: 403 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 404 | engines: {node: '>= 6'} 405 | 406 | caniuse-lite@1.0.30001568: 407 | resolution: {integrity: sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==} 408 | 409 | chalk@4.1.2: 410 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 411 | engines: {node: '>=10'} 412 | 413 | chokidar@3.5.3: 414 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 415 | engines: {node: '>= 8.10.0'} 416 | 417 | client-only@0.0.1: 418 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 419 | 420 | color-convert@2.0.1: 421 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 422 | engines: {node: '>=7.0.0'} 423 | 424 | color-name@1.1.4: 425 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 426 | 427 | commander@4.1.1: 428 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 429 | engines: {node: '>= 6'} 430 | 431 | concat-map@0.0.1: 432 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 433 | 434 | copy-to-clipboard@3.3.3: 435 | resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} 436 | 437 | cross-spawn@7.0.3: 438 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 439 | engines: {node: '>= 8'} 440 | 441 | cssesc@3.0.0: 442 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 443 | engines: {node: '>=4'} 444 | hasBin: true 445 | 446 | csstype@3.1.1: 447 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} 448 | 449 | damerau-levenshtein@1.0.8: 450 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 451 | 452 | debug@3.2.7: 453 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 454 | peerDependencies: 455 | supports-color: '*' 456 | peerDependenciesMeta: 457 | supports-color: 458 | optional: true 459 | 460 | debug@4.3.4: 461 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 462 | engines: {node: '>=6.0'} 463 | peerDependencies: 464 | supports-color: '*' 465 | peerDependenciesMeta: 466 | supports-color: 467 | optional: true 468 | 469 | deep-is@0.1.4: 470 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 471 | 472 | define-data-property@1.1.1: 473 | resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} 474 | engines: {node: '>= 0.4'} 475 | 476 | define-properties@1.2.1: 477 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 478 | engines: {node: '>= 0.4'} 479 | 480 | dequal@2.0.3: 481 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 482 | engines: {node: '>=6'} 483 | 484 | didyoumean@1.2.2: 485 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 486 | 487 | dir-glob@3.0.1: 488 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 489 | engines: {node: '>=8'} 490 | 491 | dlv@1.1.3: 492 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 493 | 494 | doctrine@2.1.0: 495 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 496 | engines: {node: '>=0.10.0'} 497 | 498 | doctrine@3.0.0: 499 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 500 | engines: {node: '>=6.0.0'} 501 | 502 | electron-to-chromium@1.4.609: 503 | resolution: {integrity: sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==} 504 | 505 | emoji-regex@9.2.2: 506 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 507 | 508 | enhanced-resolve@5.15.0: 509 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 510 | engines: {node: '>=10.13.0'} 511 | 512 | es-abstract@1.22.3: 513 | resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} 514 | engines: {node: '>= 0.4'} 515 | 516 | es-iterator-helpers@1.0.15: 517 | resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} 518 | 519 | es-set-tostringtag@2.0.2: 520 | resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} 521 | engines: {node: '>= 0.4'} 522 | 523 | es-shim-unscopables@1.0.2: 524 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 525 | 526 | es-to-primitive@1.2.1: 527 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 528 | engines: {node: '>= 0.4'} 529 | 530 | escalade@3.1.1: 531 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 532 | engines: {node: '>=6'} 533 | 534 | escape-string-regexp@4.0.0: 535 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 536 | engines: {node: '>=10'} 537 | 538 | eslint-config-next@14.0.4: 539 | resolution: {integrity: sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==} 540 | peerDependencies: 541 | eslint: ^7.23.0 || ^8.0.0 542 | typescript: '>=3.3.1' 543 | peerDependenciesMeta: 544 | typescript: 545 | optional: true 546 | 547 | eslint-config-prettier@9.1.0: 548 | resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} 549 | hasBin: true 550 | peerDependencies: 551 | eslint: '>=7.0.0' 552 | 553 | eslint-import-resolver-node@0.3.9: 554 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 555 | 556 | eslint-import-resolver-typescript@3.6.1: 557 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 558 | engines: {node: ^14.18.0 || >=16.0.0} 559 | peerDependencies: 560 | eslint: '*' 561 | eslint-plugin-import: '*' 562 | 563 | eslint-module-utils@2.8.0: 564 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 565 | engines: {node: '>=4'} 566 | peerDependencies: 567 | '@typescript-eslint/parser': '*' 568 | eslint: '*' 569 | eslint-import-resolver-node: '*' 570 | eslint-import-resolver-typescript: '*' 571 | eslint-import-resolver-webpack: '*' 572 | peerDependenciesMeta: 573 | '@typescript-eslint/parser': 574 | optional: true 575 | eslint: 576 | optional: true 577 | eslint-import-resolver-node: 578 | optional: true 579 | eslint-import-resolver-typescript: 580 | optional: true 581 | eslint-import-resolver-webpack: 582 | optional: true 583 | 584 | eslint-plugin-import@2.29.0: 585 | resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} 586 | engines: {node: '>=4'} 587 | peerDependencies: 588 | '@typescript-eslint/parser': '*' 589 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 590 | peerDependenciesMeta: 591 | '@typescript-eslint/parser': 592 | optional: true 593 | 594 | eslint-plugin-jsx-a11y@6.8.0: 595 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 596 | engines: {node: '>=4.0'} 597 | peerDependencies: 598 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 599 | 600 | eslint-plugin-react-hooks@4.6.0: 601 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 602 | engines: {node: '>=10'} 603 | peerDependencies: 604 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 605 | 606 | eslint-plugin-react@7.33.2: 607 | resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 608 | engines: {node: '>=4'} 609 | peerDependencies: 610 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 611 | 612 | eslint-scope@7.2.2: 613 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 614 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 615 | 616 | eslint-visitor-keys@3.4.3: 617 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 618 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 619 | 620 | eslint@8.55.0: 621 | resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} 622 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 623 | hasBin: true 624 | 625 | espree@9.6.1: 626 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 627 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 628 | 629 | esquery@1.4.2: 630 | resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==} 631 | engines: {node: '>=0.10'} 632 | 633 | esrecurse@4.3.0: 634 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 635 | engines: {node: '>=4.0'} 636 | 637 | estraverse@5.3.0: 638 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 639 | engines: {node: '>=4.0'} 640 | 641 | esutils@2.0.3: 642 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 643 | engines: {node: '>=0.10.0'} 644 | 645 | fast-deep-equal@3.1.3: 646 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 647 | 648 | fast-glob@3.3.2: 649 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 650 | engines: {node: '>=8.6.0'} 651 | 652 | fast-json-stable-stringify@2.1.0: 653 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 654 | 655 | fast-levenshtein@2.0.6: 656 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 657 | 658 | fastq@1.13.0: 659 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 660 | 661 | file-entry-cache@6.0.1: 662 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 663 | engines: {node: ^10.12.0 || >=12.0.0} 664 | 665 | fill-range@7.1.1: 666 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 667 | engines: {node: '>=8'} 668 | 669 | find-up@5.0.0: 670 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 671 | engines: {node: '>=10'} 672 | 673 | flat-cache@3.0.4: 674 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 675 | engines: {node: ^10.12.0 || >=12.0.0} 676 | 677 | flatted@3.2.7: 678 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 679 | 680 | for-each@0.3.3: 681 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 682 | 683 | fraction.js@4.3.7: 684 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 685 | 686 | fs.realpath@1.0.0: 687 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 688 | 689 | fsevents@2.3.3: 690 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 691 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 692 | os: [darwin] 693 | 694 | function-bind@1.1.2: 695 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 696 | 697 | function.prototype.name@1.1.6: 698 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 699 | engines: {node: '>= 0.4'} 700 | 701 | functions-have-names@1.2.3: 702 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 703 | 704 | get-intrinsic@1.2.2: 705 | resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} 706 | 707 | get-symbol-description@1.0.0: 708 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 709 | engines: {node: '>= 0.4'} 710 | 711 | get-tsconfig@4.7.2: 712 | resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 713 | 714 | glob-parent@5.1.2: 715 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 716 | engines: {node: '>= 6'} 717 | 718 | glob-parent@6.0.2: 719 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 720 | engines: {node: '>=10.13.0'} 721 | 722 | glob-to-regexp@0.4.1: 723 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 724 | 725 | glob@7.1.6: 726 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 727 | deprecated: Glob versions prior to v9 are no longer supported 728 | 729 | glob@7.1.7: 730 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 731 | deprecated: Glob versions prior to v9 are no longer supported 732 | 733 | glob@7.2.3: 734 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 735 | deprecated: Glob versions prior to v9 are no longer supported 736 | 737 | globals@13.19.0: 738 | resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} 739 | engines: {node: '>=8'} 740 | 741 | globalthis@1.0.3: 742 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 743 | engines: {node: '>= 0.4'} 744 | 745 | globby@11.1.0: 746 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 747 | engines: {node: '>=10'} 748 | 749 | gopd@1.0.1: 750 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 751 | 752 | graceful-fs@4.2.11: 753 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 754 | 755 | graphemer@1.4.0: 756 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 757 | 758 | has-bigints@1.0.2: 759 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 760 | 761 | has-flag@4.0.0: 762 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 763 | engines: {node: '>=8'} 764 | 765 | has-property-descriptors@1.0.1: 766 | resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} 767 | 768 | has-proto@1.0.1: 769 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 770 | engines: {node: '>= 0.4'} 771 | 772 | has-symbols@1.0.3: 773 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 774 | engines: {node: '>= 0.4'} 775 | 776 | has-tostringtag@1.0.0: 777 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 778 | engines: {node: '>= 0.4'} 779 | 780 | hasown@2.0.0: 781 | resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} 782 | engines: {node: '>= 0.4'} 783 | 784 | ignore@5.2.1: 785 | resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==} 786 | engines: {node: '>= 4'} 787 | 788 | ignore@5.3.0: 789 | resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} 790 | engines: {node: '>= 4'} 791 | 792 | import-fresh@3.3.0: 793 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 794 | engines: {node: '>=6'} 795 | 796 | imurmurhash@0.1.4: 797 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 798 | engines: {node: '>=0.8.19'} 799 | 800 | inflight@1.0.6: 801 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 802 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 803 | 804 | inherits@2.0.4: 805 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 806 | 807 | internal-slot@1.0.6: 808 | resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} 809 | engines: {node: '>= 0.4'} 810 | 811 | is-array-buffer@3.0.2: 812 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 813 | 814 | is-async-function@2.0.0: 815 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 816 | engines: {node: '>= 0.4'} 817 | 818 | is-bigint@1.0.4: 819 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 820 | 821 | is-binary-path@2.1.0: 822 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 823 | engines: {node: '>=8'} 824 | 825 | is-boolean-object@1.1.2: 826 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 827 | engines: {node: '>= 0.4'} 828 | 829 | is-callable@1.2.7: 830 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 831 | engines: {node: '>= 0.4'} 832 | 833 | is-core-module@2.13.1: 834 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 835 | 836 | is-date-object@1.0.5: 837 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 838 | engines: {node: '>= 0.4'} 839 | 840 | is-extglob@2.1.1: 841 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 842 | engines: {node: '>=0.10.0'} 843 | 844 | is-finalizationregistry@1.0.2: 845 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 846 | 847 | is-generator-function@1.0.10: 848 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 849 | engines: {node: '>= 0.4'} 850 | 851 | is-glob@4.0.3: 852 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 853 | engines: {node: '>=0.10.0'} 854 | 855 | is-map@2.0.2: 856 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 857 | 858 | is-negative-zero@2.0.2: 859 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 860 | engines: {node: '>= 0.4'} 861 | 862 | is-number-object@1.0.7: 863 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 864 | engines: {node: '>= 0.4'} 865 | 866 | is-number@7.0.0: 867 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 868 | engines: {node: '>=0.12.0'} 869 | 870 | is-path-inside@3.0.3: 871 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 872 | engines: {node: '>=8'} 873 | 874 | is-regex@1.1.4: 875 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 876 | engines: {node: '>= 0.4'} 877 | 878 | is-set@2.0.2: 879 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 880 | 881 | is-shared-array-buffer@1.0.2: 882 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 883 | 884 | is-string@1.0.7: 885 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 886 | engines: {node: '>= 0.4'} 887 | 888 | is-symbol@1.0.4: 889 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 890 | engines: {node: '>= 0.4'} 891 | 892 | is-typed-array@1.1.12: 893 | resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 894 | engines: {node: '>= 0.4'} 895 | 896 | is-weakmap@2.0.1: 897 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 898 | 899 | is-weakref@1.0.2: 900 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 901 | 902 | is-weakset@2.0.2: 903 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 904 | 905 | isarray@2.0.5: 906 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 907 | 908 | isexe@2.0.0: 909 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 910 | 911 | iterator.prototype@1.1.2: 912 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 913 | 914 | jiti@1.21.0: 915 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 916 | hasBin: true 917 | 918 | js-tokens@4.0.0: 919 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 920 | 921 | js-yaml@4.1.0: 922 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 923 | hasBin: true 924 | 925 | json-schema-traverse@0.4.1: 926 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 927 | 928 | json-stable-stringify-without-jsonify@1.0.1: 929 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 930 | 931 | json5@1.0.2: 932 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 933 | hasBin: true 934 | 935 | jsx-ast-utils@3.3.5: 936 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 937 | engines: {node: '>=4.0'} 938 | 939 | language-subtag-registry@0.3.22: 940 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 941 | 942 | language-tags@1.0.9: 943 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 944 | engines: {node: '>=0.10'} 945 | 946 | levn@0.4.1: 947 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 948 | engines: {node: '>= 0.8.0'} 949 | 950 | lilconfig@2.1.0: 951 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 952 | engines: {node: '>=10'} 953 | 954 | lilconfig@3.0.0: 955 | resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} 956 | engines: {node: '>=14'} 957 | 958 | lines-and-columns@1.2.4: 959 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 960 | 961 | locate-path@6.0.0: 962 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 963 | engines: {node: '>=10'} 964 | 965 | lodash.merge@4.6.2: 966 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 967 | 968 | loose-envify@1.4.0: 969 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 970 | hasBin: true 971 | 972 | lottie-react@2.4.0: 973 | resolution: {integrity: sha512-pDJGj+AQlnlyHvOHFK7vLdsDcvbuqvwPZdMlJ360wrzGFurXeKPr8SiRCjLf3LrNYKANQtSsh5dz9UYQHuqx4w==} 974 | peerDependencies: 975 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 976 | react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 977 | 978 | lottie-web@5.12.2: 979 | resolution: {integrity: sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==} 980 | 981 | lru-cache@6.0.0: 982 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 983 | engines: {node: '>=10'} 984 | 985 | merge2@1.4.1: 986 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 987 | engines: {node: '>= 8'} 988 | 989 | micromatch@4.0.5: 990 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 991 | engines: {node: '>=8.6'} 992 | 993 | minimatch@3.1.2: 994 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 995 | 996 | minimist@1.2.8: 997 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 998 | 999 | ms@2.1.2: 1000 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1001 | 1002 | ms@2.1.3: 1003 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1004 | 1005 | mz@2.7.0: 1006 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1007 | 1008 | nanoid@3.3.7: 1009 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1010 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1011 | hasBin: true 1012 | 1013 | natural-compare@1.4.0: 1014 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1015 | 1016 | next@14.0.4: 1017 | resolution: {integrity: sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==} 1018 | engines: {node: '>=18.17.0'} 1019 | hasBin: true 1020 | peerDependencies: 1021 | '@opentelemetry/api': ^1.1.0 1022 | react: ^18.2.0 1023 | react-dom: ^18.2.0 1024 | sass: ^1.3.0 1025 | peerDependenciesMeta: 1026 | '@opentelemetry/api': 1027 | optional: true 1028 | sass: 1029 | optional: true 1030 | 1031 | node-releases@2.0.14: 1032 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 1033 | 1034 | normalize-path@3.0.0: 1035 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1036 | engines: {node: '>=0.10.0'} 1037 | 1038 | normalize-range@0.1.2: 1039 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1040 | engines: {node: '>=0.10.0'} 1041 | 1042 | object-assign@4.1.1: 1043 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1044 | engines: {node: '>=0.10.0'} 1045 | 1046 | object-hash@3.0.0: 1047 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1048 | engines: {node: '>= 6'} 1049 | 1050 | object-inspect@1.13.1: 1051 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 1052 | 1053 | object-keys@1.1.1: 1054 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1055 | engines: {node: '>= 0.4'} 1056 | 1057 | object.assign@4.1.5: 1058 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1059 | engines: {node: '>= 0.4'} 1060 | 1061 | object.entries@1.1.7: 1062 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} 1063 | engines: {node: '>= 0.4'} 1064 | 1065 | object.fromentries@2.0.7: 1066 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 1067 | engines: {node: '>= 0.4'} 1068 | 1069 | object.groupby@1.0.1: 1070 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} 1071 | 1072 | object.hasown@1.1.3: 1073 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} 1074 | 1075 | object.values@1.1.7: 1076 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 1077 | engines: {node: '>= 0.4'} 1078 | 1079 | once@1.4.0: 1080 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1081 | 1082 | optionator@0.9.3: 1083 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 1084 | engines: {node: '>= 0.8.0'} 1085 | 1086 | p-limit@3.1.0: 1087 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1088 | engines: {node: '>=10'} 1089 | 1090 | p-locate@5.0.0: 1091 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1092 | engines: {node: '>=10'} 1093 | 1094 | parent-module@1.0.1: 1095 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1096 | engines: {node: '>=6'} 1097 | 1098 | path-exists@4.0.0: 1099 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1100 | engines: {node: '>=8'} 1101 | 1102 | path-is-absolute@1.0.1: 1103 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1104 | engines: {node: '>=0.10.0'} 1105 | 1106 | path-key@3.1.1: 1107 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1108 | engines: {node: '>=8'} 1109 | 1110 | path-parse@1.0.7: 1111 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1112 | 1113 | path-type@4.0.0: 1114 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1115 | engines: {node: '>=8'} 1116 | 1117 | picocolors@1.0.0: 1118 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 1119 | 1120 | picomatch@2.3.1: 1121 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1122 | engines: {node: '>=8.6'} 1123 | 1124 | pify@2.3.0: 1125 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1126 | engines: {node: '>=0.10.0'} 1127 | 1128 | pirates@4.0.6: 1129 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1130 | engines: {node: '>= 6'} 1131 | 1132 | postcss-import@15.1.0: 1133 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1134 | engines: {node: '>=14.0.0'} 1135 | peerDependencies: 1136 | postcss: ^8.0.0 1137 | 1138 | postcss-js@4.0.1: 1139 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1140 | engines: {node: ^12 || ^14 || >= 16} 1141 | peerDependencies: 1142 | postcss: ^8.4.21 1143 | 1144 | postcss-load-config@4.0.2: 1145 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1146 | engines: {node: '>= 14'} 1147 | peerDependencies: 1148 | postcss: '>=8.0.9' 1149 | ts-node: '>=9.0.0' 1150 | peerDependenciesMeta: 1151 | postcss: 1152 | optional: true 1153 | ts-node: 1154 | optional: true 1155 | 1156 | postcss-nested@6.0.1: 1157 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 1158 | engines: {node: '>=12.0'} 1159 | peerDependencies: 1160 | postcss: ^8.2.14 1161 | 1162 | postcss-selector-parser@6.0.13: 1163 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} 1164 | engines: {node: '>=4'} 1165 | 1166 | postcss-value-parser@4.2.0: 1167 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1168 | 1169 | postcss@8.4.31: 1170 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1171 | engines: {node: ^10 || ^12 || >=14} 1172 | 1173 | postcss@8.4.32: 1174 | resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} 1175 | engines: {node: ^10 || ^12 || >=14} 1176 | 1177 | prelude-ls@1.2.1: 1178 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1179 | engines: {node: '>= 0.8.0'} 1180 | 1181 | prettier@3.1.1: 1182 | resolution: {integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==} 1183 | engines: {node: '>=14'} 1184 | hasBin: true 1185 | 1186 | prop-types@15.8.1: 1187 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1188 | 1189 | punycode@2.1.1: 1190 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 1191 | engines: {node: '>=6'} 1192 | 1193 | queue-microtask@1.2.3: 1194 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1195 | 1196 | react-dom@18.2.0: 1197 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 1198 | peerDependencies: 1199 | react: ^18.2.0 1200 | 1201 | react-icons@4.12.0: 1202 | resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==} 1203 | peerDependencies: 1204 | react: '*' 1205 | 1206 | react-is@16.13.1: 1207 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1208 | 1209 | react-use-clipboard@1.0.9: 1210 | resolution: {integrity: sha512-OcMzc14usXhqQnAkvzmhCXAbW5WBT2LSgscVh2vKHXZfg72jFsSOsEearqdeC/nUj8YxEfLnziqe7AE7YkWFwA==} 1211 | peerDependencies: 1212 | react: ^16.8.0 || ^17 || ^18 1213 | react-dom: ^16.8.0 || ^17 || ^18 1214 | 1215 | react-use-window-localstorage@1.0.18: 1216 | resolution: {integrity: sha512-3KNrnvURTQYqT2di/OJfAW5PS4/QjnR1gl++gRwiE8OmDqwlXq1b/F4KcWRJTkGuxRVNoSld5E5njnBg/Z5QHg==} 1217 | deprecated: This package is deprecated. Upgrade to the much improved react-storage-complete 1218 | peerDependencies: 1219 | react: '>=16' 1220 | react-dom: '>=16' 1221 | 1222 | react@18.2.0: 1223 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 1224 | engines: {node: '>=0.10.0'} 1225 | 1226 | read-cache@1.0.0: 1227 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1228 | 1229 | readdirp@3.6.0: 1230 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1231 | engines: {node: '>=8.10.0'} 1232 | 1233 | reflect.getprototypeof@1.0.4: 1234 | resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} 1235 | engines: {node: '>= 0.4'} 1236 | 1237 | regenerator-runtime@0.14.0: 1238 | resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} 1239 | 1240 | regexp.prototype.flags@1.5.1: 1241 | resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} 1242 | engines: {node: '>= 0.4'} 1243 | 1244 | resolve-from@4.0.0: 1245 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1246 | engines: {node: '>=4'} 1247 | 1248 | resolve-pkg-maps@1.0.0: 1249 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1250 | 1251 | resolve@1.22.8: 1252 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1253 | hasBin: true 1254 | 1255 | resolve@2.0.0-next.5: 1256 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1257 | hasBin: true 1258 | 1259 | reusify@1.0.4: 1260 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1261 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1262 | 1263 | rimraf@3.0.2: 1264 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1265 | deprecated: Rimraf versions prior to v4 are no longer supported 1266 | hasBin: true 1267 | 1268 | run-parallel@1.2.0: 1269 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1270 | 1271 | safe-array-concat@1.0.1: 1272 | resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} 1273 | engines: {node: '>=0.4'} 1274 | 1275 | safe-regex-test@1.0.0: 1276 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 1277 | 1278 | scheduler@0.23.0: 1279 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 1280 | 1281 | semver@6.3.1: 1282 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1283 | hasBin: true 1284 | 1285 | semver@7.5.4: 1286 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 1287 | engines: {node: '>=10'} 1288 | hasBin: true 1289 | 1290 | set-function-length@1.1.1: 1291 | resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} 1292 | engines: {node: '>= 0.4'} 1293 | 1294 | set-function-name@2.0.1: 1295 | resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} 1296 | engines: {node: '>= 0.4'} 1297 | 1298 | shebang-command@2.0.0: 1299 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1300 | engines: {node: '>=8'} 1301 | 1302 | shebang-regex@3.0.0: 1303 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1304 | engines: {node: '>=8'} 1305 | 1306 | side-channel@1.0.4: 1307 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 1308 | 1309 | slash@3.0.0: 1310 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1311 | engines: {node: '>=8'} 1312 | 1313 | source-map-js@1.0.2: 1314 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 1315 | engines: {node: '>=0.10.0'} 1316 | 1317 | streamsearch@1.1.0: 1318 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1319 | engines: {node: '>=10.0.0'} 1320 | 1321 | string.prototype.matchall@4.0.10: 1322 | resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} 1323 | 1324 | string.prototype.trim@1.2.8: 1325 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 1326 | engines: {node: '>= 0.4'} 1327 | 1328 | string.prototype.trimend@1.0.7: 1329 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 1330 | 1331 | string.prototype.trimstart@1.0.7: 1332 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 1333 | 1334 | strip-ansi@6.0.1: 1335 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1336 | engines: {node: '>=8'} 1337 | 1338 | strip-bom@3.0.0: 1339 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1340 | engines: {node: '>=4'} 1341 | 1342 | strip-json-comments@3.1.1: 1343 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1344 | engines: {node: '>=8'} 1345 | 1346 | styled-jsx@5.1.1: 1347 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 1348 | engines: {node: '>= 12.0.0'} 1349 | peerDependencies: 1350 | '@babel/core': '*' 1351 | babel-plugin-macros: '*' 1352 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 1353 | peerDependenciesMeta: 1354 | '@babel/core': 1355 | optional: true 1356 | babel-plugin-macros: 1357 | optional: true 1358 | 1359 | sucrase@3.34.0: 1360 | resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} 1361 | engines: {node: '>=8'} 1362 | hasBin: true 1363 | 1364 | supports-color@7.2.0: 1365 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1366 | engines: {node: '>=8'} 1367 | 1368 | supports-preserve-symlinks-flag@1.0.0: 1369 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1370 | engines: {node: '>= 0.4'} 1371 | 1372 | tailwindcss@3.3.6: 1373 | resolution: {integrity: sha512-AKjF7qbbLvLaPieoKeTjG1+FyNZT6KaJMJPFeQyLfIp7l82ggH1fbHJSsYIvnbTFQOlkh+gBYpyby5GT1LIdLw==} 1374 | engines: {node: '>=14.0.0'} 1375 | hasBin: true 1376 | 1377 | tapable@2.2.1: 1378 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1379 | engines: {node: '>=6'} 1380 | 1381 | text-table@0.2.0: 1382 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1383 | 1384 | thenify-all@1.6.0: 1385 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1386 | engines: {node: '>=0.8'} 1387 | 1388 | thenify@3.3.1: 1389 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1390 | 1391 | to-regex-range@5.0.1: 1392 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1393 | engines: {node: '>=8.0'} 1394 | 1395 | toggle-selection@1.0.6: 1396 | resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} 1397 | 1398 | ts-api-utils@1.0.3: 1399 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 1400 | engines: {node: '>=16.13.0'} 1401 | peerDependencies: 1402 | typescript: '>=4.2.0' 1403 | 1404 | ts-interface-checker@0.1.13: 1405 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1406 | 1407 | tsconfig-paths@3.14.2: 1408 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 1409 | 1410 | tslib@2.6.2: 1411 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 1412 | 1413 | type-check@0.4.0: 1414 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1415 | engines: {node: '>= 0.8.0'} 1416 | 1417 | type-fest@0.20.2: 1418 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1419 | engines: {node: '>=10'} 1420 | 1421 | typed-array-buffer@1.0.0: 1422 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 1423 | engines: {node: '>= 0.4'} 1424 | 1425 | typed-array-byte-length@1.0.0: 1426 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 1427 | engines: {node: '>= 0.4'} 1428 | 1429 | typed-array-byte-offset@1.0.0: 1430 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 1431 | engines: {node: '>= 0.4'} 1432 | 1433 | typed-array-length@1.0.4: 1434 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 1435 | 1436 | typescript@5.3.3: 1437 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 1438 | engines: {node: '>=14.17'} 1439 | hasBin: true 1440 | 1441 | unbox-primitive@1.0.2: 1442 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1443 | 1444 | undici-types@5.26.5: 1445 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 1446 | 1447 | update-browserslist-db@1.0.13: 1448 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 1449 | hasBin: true 1450 | peerDependencies: 1451 | browserslist: '>= 4.21.0' 1452 | 1453 | uri-js@4.4.1: 1454 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1455 | 1456 | use-debounce@10.0.0: 1457 | resolution: {integrity: sha512-XRjvlvCB46bah9IBXVnq/ACP2lxqXyZj0D9hj4K5OzNroMDpTEBg8Anuh1/UfRTRs7pLhQ+RiNxxwZu9+MVl1A==} 1458 | engines: {node: '>= 16.0.0'} 1459 | peerDependencies: 1460 | react: '>=16.8.0' 1461 | 1462 | util-deprecate@1.0.2: 1463 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1464 | 1465 | watchpack@2.4.0: 1466 | resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} 1467 | engines: {node: '>=10.13.0'} 1468 | 1469 | which-boxed-primitive@1.0.2: 1470 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 1471 | 1472 | which-builtin-type@1.1.3: 1473 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 1474 | engines: {node: '>= 0.4'} 1475 | 1476 | which-collection@1.0.1: 1477 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 1478 | 1479 | which-typed-array@1.1.13: 1480 | resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} 1481 | engines: {node: '>= 0.4'} 1482 | 1483 | which@2.0.2: 1484 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1485 | engines: {node: '>= 8'} 1486 | hasBin: true 1487 | 1488 | wrappy@1.0.2: 1489 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1490 | 1491 | yallist@4.0.0: 1492 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1493 | 1494 | yaml@2.3.4: 1495 | resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} 1496 | engines: {node: '>= 14'} 1497 | 1498 | yocto-queue@0.1.0: 1499 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1500 | engines: {node: '>=10'} 1501 | 1502 | snapshots: 1503 | 1504 | '@aashutoshrathi/word-wrap@1.2.6': {} 1505 | 1506 | '@alloc/quick-lru@5.2.0': {} 1507 | 1508 | '@babel/runtime@7.23.5': 1509 | dependencies: 1510 | regenerator-runtime: 0.14.0 1511 | 1512 | '@eslint-community/eslint-utils@4.2.0(eslint@8.55.0)': 1513 | dependencies: 1514 | eslint: 8.55.0 1515 | eslint-visitor-keys: 3.4.3 1516 | 1517 | '@eslint-community/regexpp@4.6.2': {} 1518 | 1519 | '@eslint/eslintrc@2.1.4': 1520 | dependencies: 1521 | ajv: 6.12.6 1522 | debug: 4.3.4 1523 | espree: 9.6.1 1524 | globals: 13.19.0 1525 | ignore: 5.2.1 1526 | import-fresh: 3.3.0 1527 | js-yaml: 4.1.0 1528 | minimatch: 3.1.2 1529 | strip-json-comments: 3.1.1 1530 | transitivePeerDependencies: 1531 | - supports-color 1532 | 1533 | '@eslint/js@8.55.0': {} 1534 | 1535 | '@fontsource/nanum-pen-script@5.0.11': {} 1536 | 1537 | '@humanwhocodes/config-array@0.11.13': 1538 | dependencies: 1539 | '@humanwhocodes/object-schema': 2.0.1 1540 | debug: 4.3.4 1541 | minimatch: 3.1.2 1542 | transitivePeerDependencies: 1543 | - supports-color 1544 | 1545 | '@humanwhocodes/module-importer@1.0.1': {} 1546 | 1547 | '@humanwhocodes/object-schema@2.0.1': {} 1548 | 1549 | '@jridgewell/gen-mapping@0.3.3': 1550 | dependencies: 1551 | '@jridgewell/set-array': 1.1.2 1552 | '@jridgewell/sourcemap-codec': 1.4.15 1553 | '@jridgewell/trace-mapping': 0.3.20 1554 | 1555 | '@jridgewell/resolve-uri@3.1.1': {} 1556 | 1557 | '@jridgewell/set-array@1.1.2': {} 1558 | 1559 | '@jridgewell/sourcemap-codec@1.4.15': {} 1560 | 1561 | '@jridgewell/trace-mapping@0.3.20': 1562 | dependencies: 1563 | '@jridgewell/resolve-uri': 3.1.1 1564 | '@jridgewell/sourcemap-codec': 1.4.15 1565 | 1566 | '@next/env@14.0.4': {} 1567 | 1568 | '@next/eslint-plugin-next@14.0.4': 1569 | dependencies: 1570 | glob: 7.1.7 1571 | 1572 | '@next/swc-darwin-arm64@14.0.4': 1573 | optional: true 1574 | 1575 | '@next/swc-darwin-x64@14.0.4': 1576 | optional: true 1577 | 1578 | '@next/swc-linux-arm64-gnu@14.0.4': 1579 | optional: true 1580 | 1581 | '@next/swc-linux-arm64-musl@14.0.4': 1582 | optional: true 1583 | 1584 | '@next/swc-linux-x64-gnu@14.0.4': 1585 | optional: true 1586 | 1587 | '@next/swc-linux-x64-musl@14.0.4': 1588 | optional: true 1589 | 1590 | '@next/swc-win32-arm64-msvc@14.0.4': 1591 | optional: true 1592 | 1593 | '@next/swc-win32-ia32-msvc@14.0.4': 1594 | optional: true 1595 | 1596 | '@next/swc-win32-x64-msvc@14.0.4': 1597 | optional: true 1598 | 1599 | '@nodelib/fs.scandir@2.1.5': 1600 | dependencies: 1601 | '@nodelib/fs.stat': 2.0.5 1602 | run-parallel: 1.2.0 1603 | 1604 | '@nodelib/fs.stat@2.0.5': {} 1605 | 1606 | '@nodelib/fs.walk@1.2.8': 1607 | dependencies: 1608 | '@nodelib/fs.scandir': 2.1.5 1609 | fastq: 1.13.0 1610 | 1611 | '@rushstack/eslint-patch@1.6.0': {} 1612 | 1613 | '@swc/helpers@0.5.2': 1614 | dependencies: 1615 | tslib: 2.6.2 1616 | 1617 | '@types/aes-js@3.1.4': {} 1618 | 1619 | '@types/json5@0.0.29': {} 1620 | 1621 | '@types/node@20.10.4': 1622 | dependencies: 1623 | undici-types: 5.26.5 1624 | 1625 | '@types/prop-types@15.7.5': {} 1626 | 1627 | '@types/react-dom@18.2.17': 1628 | dependencies: 1629 | '@types/react': 18.2.43 1630 | 1631 | '@types/react@18.2.43': 1632 | dependencies: 1633 | '@types/prop-types': 15.7.5 1634 | '@types/scheduler': 0.16.2 1635 | csstype: 3.1.1 1636 | 1637 | '@types/scheduler@0.16.2': {} 1638 | 1639 | '@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3)': 1640 | dependencies: 1641 | '@typescript-eslint/scope-manager': 6.13.2 1642 | '@typescript-eslint/types': 6.13.2 1643 | '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.3.3) 1644 | '@typescript-eslint/visitor-keys': 6.13.2 1645 | debug: 4.3.4 1646 | eslint: 8.55.0 1647 | optionalDependencies: 1648 | typescript: 5.3.3 1649 | transitivePeerDependencies: 1650 | - supports-color 1651 | 1652 | '@typescript-eslint/scope-manager@6.13.2': 1653 | dependencies: 1654 | '@typescript-eslint/types': 6.13.2 1655 | '@typescript-eslint/visitor-keys': 6.13.2 1656 | 1657 | '@typescript-eslint/types@6.13.2': {} 1658 | 1659 | '@typescript-eslint/typescript-estree@6.13.2(typescript@5.3.3)': 1660 | dependencies: 1661 | '@typescript-eslint/types': 6.13.2 1662 | '@typescript-eslint/visitor-keys': 6.13.2 1663 | debug: 4.3.4 1664 | globby: 11.1.0 1665 | is-glob: 4.0.3 1666 | semver: 7.5.4 1667 | ts-api-utils: 1.0.3(typescript@5.3.3) 1668 | optionalDependencies: 1669 | typescript: 5.3.3 1670 | transitivePeerDependencies: 1671 | - supports-color 1672 | 1673 | '@typescript-eslint/visitor-keys@6.13.2': 1674 | dependencies: 1675 | '@typescript-eslint/types': 6.13.2 1676 | eslint-visitor-keys: 3.4.3 1677 | 1678 | '@ungap/structured-clone@1.2.0': {} 1679 | 1680 | acorn-jsx@5.3.2(acorn@8.9.0): 1681 | dependencies: 1682 | acorn: 8.9.0 1683 | 1684 | acorn@8.9.0: {} 1685 | 1686 | aes-js@3.1.2: {} 1687 | 1688 | ajv@6.12.6: 1689 | dependencies: 1690 | fast-deep-equal: 3.1.3 1691 | fast-json-stable-stringify: 2.1.0 1692 | json-schema-traverse: 0.4.1 1693 | uri-js: 4.4.1 1694 | 1695 | ansi-regex@5.0.1: {} 1696 | 1697 | ansi-styles@4.3.0: 1698 | dependencies: 1699 | color-convert: 2.0.1 1700 | 1701 | any-promise@1.3.0: {} 1702 | 1703 | anymatch@3.1.3: 1704 | dependencies: 1705 | normalize-path: 3.0.0 1706 | picomatch: 2.3.1 1707 | 1708 | arg@5.0.2: {} 1709 | 1710 | argparse@2.0.1: {} 1711 | 1712 | aria-query@5.3.0: 1713 | dependencies: 1714 | dequal: 2.0.3 1715 | 1716 | array-buffer-byte-length@1.0.0: 1717 | dependencies: 1718 | call-bind: 1.0.5 1719 | is-array-buffer: 3.0.2 1720 | 1721 | array-includes@3.1.7: 1722 | dependencies: 1723 | call-bind: 1.0.5 1724 | define-properties: 1.2.1 1725 | es-abstract: 1.22.3 1726 | get-intrinsic: 1.2.2 1727 | is-string: 1.0.7 1728 | 1729 | array-union@2.1.0: {} 1730 | 1731 | array.prototype.findlastindex@1.2.3: 1732 | dependencies: 1733 | call-bind: 1.0.5 1734 | define-properties: 1.2.1 1735 | es-abstract: 1.22.3 1736 | es-shim-unscopables: 1.0.2 1737 | get-intrinsic: 1.2.2 1738 | 1739 | array.prototype.flat@1.3.2: 1740 | dependencies: 1741 | call-bind: 1.0.5 1742 | define-properties: 1.2.1 1743 | es-abstract: 1.22.3 1744 | es-shim-unscopables: 1.0.2 1745 | 1746 | array.prototype.flatmap@1.3.2: 1747 | dependencies: 1748 | call-bind: 1.0.5 1749 | define-properties: 1.2.1 1750 | es-abstract: 1.22.3 1751 | es-shim-unscopables: 1.0.2 1752 | 1753 | array.prototype.tosorted@1.1.2: 1754 | dependencies: 1755 | call-bind: 1.0.5 1756 | define-properties: 1.2.1 1757 | es-abstract: 1.22.3 1758 | es-shim-unscopables: 1.0.2 1759 | get-intrinsic: 1.2.2 1760 | 1761 | arraybuffer.prototype.slice@1.0.2: 1762 | dependencies: 1763 | array-buffer-byte-length: 1.0.0 1764 | call-bind: 1.0.5 1765 | define-properties: 1.2.1 1766 | es-abstract: 1.22.3 1767 | get-intrinsic: 1.2.2 1768 | is-array-buffer: 3.0.2 1769 | is-shared-array-buffer: 1.0.2 1770 | 1771 | ast-types-flow@0.0.8: {} 1772 | 1773 | asynciterator.prototype@1.0.0: 1774 | dependencies: 1775 | has-symbols: 1.0.3 1776 | 1777 | autoprefixer@10.4.16(postcss@8.4.32): 1778 | dependencies: 1779 | browserslist: 4.22.2 1780 | caniuse-lite: 1.0.30001568 1781 | fraction.js: 4.3.7 1782 | normalize-range: 0.1.2 1783 | picocolors: 1.0.0 1784 | postcss: 8.4.32 1785 | postcss-value-parser: 4.2.0 1786 | 1787 | available-typed-arrays@1.0.5: {} 1788 | 1789 | axe-core@4.7.0: {} 1790 | 1791 | axobject-query@3.2.1: 1792 | dependencies: 1793 | dequal: 2.0.3 1794 | 1795 | balanced-match@1.0.2: {} 1796 | 1797 | binary-extensions@2.2.0: {} 1798 | 1799 | brace-expansion@1.1.11: 1800 | dependencies: 1801 | balanced-match: 1.0.2 1802 | concat-map: 0.0.1 1803 | 1804 | braces@3.0.3: 1805 | dependencies: 1806 | fill-range: 7.1.1 1807 | 1808 | browserslist@4.22.2: 1809 | dependencies: 1810 | caniuse-lite: 1.0.30001568 1811 | electron-to-chromium: 1.4.609 1812 | node-releases: 2.0.14 1813 | update-browserslist-db: 1.0.13(browserslist@4.22.2) 1814 | 1815 | busboy@1.6.0: 1816 | dependencies: 1817 | streamsearch: 1.1.0 1818 | 1819 | call-bind@1.0.5: 1820 | dependencies: 1821 | function-bind: 1.1.2 1822 | get-intrinsic: 1.2.2 1823 | set-function-length: 1.1.1 1824 | 1825 | callsites@3.1.0: {} 1826 | 1827 | camelcase-css@2.0.1: {} 1828 | 1829 | caniuse-lite@1.0.30001568: {} 1830 | 1831 | chalk@4.1.2: 1832 | dependencies: 1833 | ansi-styles: 4.3.0 1834 | supports-color: 7.2.0 1835 | 1836 | chokidar@3.5.3: 1837 | dependencies: 1838 | anymatch: 3.1.3 1839 | braces: 3.0.3 1840 | glob-parent: 5.1.2 1841 | is-binary-path: 2.1.0 1842 | is-glob: 4.0.3 1843 | normalize-path: 3.0.0 1844 | readdirp: 3.6.0 1845 | optionalDependencies: 1846 | fsevents: 2.3.3 1847 | 1848 | client-only@0.0.1: {} 1849 | 1850 | color-convert@2.0.1: 1851 | dependencies: 1852 | color-name: 1.1.4 1853 | 1854 | color-name@1.1.4: {} 1855 | 1856 | commander@4.1.1: {} 1857 | 1858 | concat-map@0.0.1: {} 1859 | 1860 | copy-to-clipboard@3.3.3: 1861 | dependencies: 1862 | toggle-selection: 1.0.6 1863 | 1864 | cross-spawn@7.0.3: 1865 | dependencies: 1866 | path-key: 3.1.1 1867 | shebang-command: 2.0.0 1868 | which: 2.0.2 1869 | 1870 | cssesc@3.0.0: {} 1871 | 1872 | csstype@3.1.1: {} 1873 | 1874 | damerau-levenshtein@1.0.8: {} 1875 | 1876 | debug@3.2.7: 1877 | dependencies: 1878 | ms: 2.1.3 1879 | 1880 | debug@4.3.4: 1881 | dependencies: 1882 | ms: 2.1.2 1883 | 1884 | deep-is@0.1.4: {} 1885 | 1886 | define-data-property@1.1.1: 1887 | dependencies: 1888 | get-intrinsic: 1.2.2 1889 | gopd: 1.0.1 1890 | has-property-descriptors: 1.0.1 1891 | 1892 | define-properties@1.2.1: 1893 | dependencies: 1894 | define-data-property: 1.1.1 1895 | has-property-descriptors: 1.0.1 1896 | object-keys: 1.1.1 1897 | 1898 | dequal@2.0.3: {} 1899 | 1900 | didyoumean@1.2.2: {} 1901 | 1902 | dir-glob@3.0.1: 1903 | dependencies: 1904 | path-type: 4.0.0 1905 | 1906 | dlv@1.1.3: {} 1907 | 1908 | doctrine@2.1.0: 1909 | dependencies: 1910 | esutils: 2.0.3 1911 | 1912 | doctrine@3.0.0: 1913 | dependencies: 1914 | esutils: 2.0.3 1915 | 1916 | electron-to-chromium@1.4.609: {} 1917 | 1918 | emoji-regex@9.2.2: {} 1919 | 1920 | enhanced-resolve@5.15.0: 1921 | dependencies: 1922 | graceful-fs: 4.2.11 1923 | tapable: 2.2.1 1924 | 1925 | es-abstract@1.22.3: 1926 | dependencies: 1927 | array-buffer-byte-length: 1.0.0 1928 | arraybuffer.prototype.slice: 1.0.2 1929 | available-typed-arrays: 1.0.5 1930 | call-bind: 1.0.5 1931 | es-set-tostringtag: 2.0.2 1932 | es-to-primitive: 1.2.1 1933 | function.prototype.name: 1.1.6 1934 | get-intrinsic: 1.2.2 1935 | get-symbol-description: 1.0.0 1936 | globalthis: 1.0.3 1937 | gopd: 1.0.1 1938 | has-property-descriptors: 1.0.1 1939 | has-proto: 1.0.1 1940 | has-symbols: 1.0.3 1941 | hasown: 2.0.0 1942 | internal-slot: 1.0.6 1943 | is-array-buffer: 3.0.2 1944 | is-callable: 1.2.7 1945 | is-negative-zero: 2.0.2 1946 | is-regex: 1.1.4 1947 | is-shared-array-buffer: 1.0.2 1948 | is-string: 1.0.7 1949 | is-typed-array: 1.1.12 1950 | is-weakref: 1.0.2 1951 | object-inspect: 1.13.1 1952 | object-keys: 1.1.1 1953 | object.assign: 4.1.5 1954 | regexp.prototype.flags: 1.5.1 1955 | safe-array-concat: 1.0.1 1956 | safe-regex-test: 1.0.0 1957 | string.prototype.trim: 1.2.8 1958 | string.prototype.trimend: 1.0.7 1959 | string.prototype.trimstart: 1.0.7 1960 | typed-array-buffer: 1.0.0 1961 | typed-array-byte-length: 1.0.0 1962 | typed-array-byte-offset: 1.0.0 1963 | typed-array-length: 1.0.4 1964 | unbox-primitive: 1.0.2 1965 | which-typed-array: 1.1.13 1966 | 1967 | es-iterator-helpers@1.0.15: 1968 | dependencies: 1969 | asynciterator.prototype: 1.0.0 1970 | call-bind: 1.0.5 1971 | define-properties: 1.2.1 1972 | es-abstract: 1.22.3 1973 | es-set-tostringtag: 2.0.2 1974 | function-bind: 1.1.2 1975 | get-intrinsic: 1.2.2 1976 | globalthis: 1.0.3 1977 | has-property-descriptors: 1.0.1 1978 | has-proto: 1.0.1 1979 | has-symbols: 1.0.3 1980 | internal-slot: 1.0.6 1981 | iterator.prototype: 1.1.2 1982 | safe-array-concat: 1.0.1 1983 | 1984 | es-set-tostringtag@2.0.2: 1985 | dependencies: 1986 | get-intrinsic: 1.2.2 1987 | has-tostringtag: 1.0.0 1988 | hasown: 2.0.0 1989 | 1990 | es-shim-unscopables@1.0.2: 1991 | dependencies: 1992 | hasown: 2.0.0 1993 | 1994 | es-to-primitive@1.2.1: 1995 | dependencies: 1996 | is-callable: 1.2.7 1997 | is-date-object: 1.0.5 1998 | is-symbol: 1.0.4 1999 | 2000 | escalade@3.1.1: {} 2001 | 2002 | escape-string-regexp@4.0.0: {} 2003 | 2004 | eslint-config-next@14.0.4(eslint@8.55.0)(typescript@5.3.3): 2005 | dependencies: 2006 | '@next/eslint-plugin-next': 14.0.4 2007 | '@rushstack/eslint-patch': 1.6.0 2008 | '@typescript-eslint/parser': 6.13.2(eslint@8.55.0)(typescript@5.3.3) 2009 | eslint: 8.55.0 2010 | eslint-import-resolver-node: 0.3.9 2011 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0(eslint@8.55.0))(eslint@8.55.0) 2012 | eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0) 2013 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.55.0) 2014 | eslint-plugin-react: 7.33.2(eslint@8.55.0) 2015 | eslint-plugin-react-hooks: 4.6.0(eslint@8.55.0) 2016 | optionalDependencies: 2017 | typescript: 5.3.3 2018 | transitivePeerDependencies: 2019 | - eslint-import-resolver-webpack 2020 | - supports-color 2021 | 2022 | eslint-config-prettier@9.1.0(eslint@8.55.0): 2023 | dependencies: 2024 | eslint: 8.55.0 2025 | 2026 | eslint-import-resolver-node@0.3.9: 2027 | dependencies: 2028 | debug: 3.2.7 2029 | is-core-module: 2.13.1 2030 | resolve: 1.22.8 2031 | transitivePeerDependencies: 2032 | - supports-color 2033 | 2034 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0(eslint@8.55.0))(eslint@8.55.0): 2035 | dependencies: 2036 | debug: 4.3.4 2037 | enhanced-resolve: 5.15.0 2038 | eslint: 8.55.0 2039 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0(eslint@8.55.0))(eslint@8.55.0))(eslint@8.55.0) 2040 | eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0) 2041 | fast-glob: 3.3.2 2042 | get-tsconfig: 4.7.2 2043 | is-core-module: 2.13.1 2044 | is-glob: 4.0.3 2045 | transitivePeerDependencies: 2046 | - '@typescript-eslint/parser' 2047 | - eslint-import-resolver-node 2048 | - eslint-import-resolver-webpack 2049 | - supports-color 2050 | 2051 | eslint-module-utils@2.8.0(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0(eslint@8.55.0))(eslint@8.55.0))(eslint@8.55.0): 2052 | dependencies: 2053 | debug: 3.2.7 2054 | optionalDependencies: 2055 | '@typescript-eslint/parser': 6.13.2(eslint@8.55.0)(typescript@5.3.3) 2056 | eslint: 8.55.0 2057 | eslint-import-resolver-node: 0.3.9 2058 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0(eslint@8.55.0))(eslint@8.55.0) 2059 | transitivePeerDependencies: 2060 | - supports-color 2061 | 2062 | eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0): 2063 | dependencies: 2064 | array-includes: 3.1.7 2065 | array.prototype.findlastindex: 1.2.3 2066 | array.prototype.flat: 1.3.2 2067 | array.prototype.flatmap: 1.3.2 2068 | debug: 3.2.7 2069 | doctrine: 2.1.0 2070 | eslint: 8.55.0 2071 | eslint-import-resolver-node: 0.3.9 2072 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0(eslint@8.55.0))(eslint@8.55.0))(eslint@8.55.0) 2073 | hasown: 2.0.0 2074 | is-core-module: 2.13.1 2075 | is-glob: 4.0.3 2076 | minimatch: 3.1.2 2077 | object.fromentries: 2.0.7 2078 | object.groupby: 1.0.1 2079 | object.values: 1.1.7 2080 | semver: 6.3.1 2081 | tsconfig-paths: 3.14.2 2082 | optionalDependencies: 2083 | '@typescript-eslint/parser': 6.13.2(eslint@8.55.0)(typescript@5.3.3) 2084 | transitivePeerDependencies: 2085 | - eslint-import-resolver-typescript 2086 | - eslint-import-resolver-webpack 2087 | - supports-color 2088 | 2089 | eslint-plugin-jsx-a11y@6.8.0(eslint@8.55.0): 2090 | dependencies: 2091 | '@babel/runtime': 7.23.5 2092 | aria-query: 5.3.0 2093 | array-includes: 3.1.7 2094 | array.prototype.flatmap: 1.3.2 2095 | ast-types-flow: 0.0.8 2096 | axe-core: 4.7.0 2097 | axobject-query: 3.2.1 2098 | damerau-levenshtein: 1.0.8 2099 | emoji-regex: 9.2.2 2100 | es-iterator-helpers: 1.0.15 2101 | eslint: 8.55.0 2102 | hasown: 2.0.0 2103 | jsx-ast-utils: 3.3.5 2104 | language-tags: 1.0.9 2105 | minimatch: 3.1.2 2106 | object.entries: 1.1.7 2107 | object.fromentries: 2.0.7 2108 | 2109 | eslint-plugin-react-hooks@4.6.0(eslint@8.55.0): 2110 | dependencies: 2111 | eslint: 8.55.0 2112 | 2113 | eslint-plugin-react@7.33.2(eslint@8.55.0): 2114 | dependencies: 2115 | array-includes: 3.1.7 2116 | array.prototype.flatmap: 1.3.2 2117 | array.prototype.tosorted: 1.1.2 2118 | doctrine: 2.1.0 2119 | es-iterator-helpers: 1.0.15 2120 | eslint: 8.55.0 2121 | estraverse: 5.3.0 2122 | jsx-ast-utils: 3.3.5 2123 | minimatch: 3.1.2 2124 | object.entries: 1.1.7 2125 | object.fromentries: 2.0.7 2126 | object.hasown: 1.1.3 2127 | object.values: 1.1.7 2128 | prop-types: 15.8.1 2129 | resolve: 2.0.0-next.5 2130 | semver: 6.3.1 2131 | string.prototype.matchall: 4.0.10 2132 | 2133 | eslint-scope@7.2.2: 2134 | dependencies: 2135 | esrecurse: 4.3.0 2136 | estraverse: 5.3.0 2137 | 2138 | eslint-visitor-keys@3.4.3: {} 2139 | 2140 | eslint@8.55.0: 2141 | dependencies: 2142 | '@eslint-community/eslint-utils': 4.2.0(eslint@8.55.0) 2143 | '@eslint-community/regexpp': 4.6.2 2144 | '@eslint/eslintrc': 2.1.4 2145 | '@eslint/js': 8.55.0 2146 | '@humanwhocodes/config-array': 0.11.13 2147 | '@humanwhocodes/module-importer': 1.0.1 2148 | '@nodelib/fs.walk': 1.2.8 2149 | '@ungap/structured-clone': 1.2.0 2150 | ajv: 6.12.6 2151 | chalk: 4.1.2 2152 | cross-spawn: 7.0.3 2153 | debug: 4.3.4 2154 | doctrine: 3.0.0 2155 | escape-string-regexp: 4.0.0 2156 | eslint-scope: 7.2.2 2157 | eslint-visitor-keys: 3.4.3 2158 | espree: 9.6.1 2159 | esquery: 1.4.2 2160 | esutils: 2.0.3 2161 | fast-deep-equal: 3.1.3 2162 | file-entry-cache: 6.0.1 2163 | find-up: 5.0.0 2164 | glob-parent: 6.0.2 2165 | globals: 13.19.0 2166 | graphemer: 1.4.0 2167 | ignore: 5.2.1 2168 | imurmurhash: 0.1.4 2169 | is-glob: 4.0.3 2170 | is-path-inside: 3.0.3 2171 | js-yaml: 4.1.0 2172 | json-stable-stringify-without-jsonify: 1.0.1 2173 | levn: 0.4.1 2174 | lodash.merge: 4.6.2 2175 | minimatch: 3.1.2 2176 | natural-compare: 1.4.0 2177 | optionator: 0.9.3 2178 | strip-ansi: 6.0.1 2179 | text-table: 0.2.0 2180 | transitivePeerDependencies: 2181 | - supports-color 2182 | 2183 | espree@9.6.1: 2184 | dependencies: 2185 | acorn: 8.9.0 2186 | acorn-jsx: 5.3.2(acorn@8.9.0) 2187 | eslint-visitor-keys: 3.4.3 2188 | 2189 | esquery@1.4.2: 2190 | dependencies: 2191 | estraverse: 5.3.0 2192 | 2193 | esrecurse@4.3.0: 2194 | dependencies: 2195 | estraverse: 5.3.0 2196 | 2197 | estraverse@5.3.0: {} 2198 | 2199 | esutils@2.0.3: {} 2200 | 2201 | fast-deep-equal@3.1.3: {} 2202 | 2203 | fast-glob@3.3.2: 2204 | dependencies: 2205 | '@nodelib/fs.stat': 2.0.5 2206 | '@nodelib/fs.walk': 1.2.8 2207 | glob-parent: 5.1.2 2208 | merge2: 1.4.1 2209 | micromatch: 4.0.5 2210 | 2211 | fast-json-stable-stringify@2.1.0: {} 2212 | 2213 | fast-levenshtein@2.0.6: {} 2214 | 2215 | fastq@1.13.0: 2216 | dependencies: 2217 | reusify: 1.0.4 2218 | 2219 | file-entry-cache@6.0.1: 2220 | dependencies: 2221 | flat-cache: 3.0.4 2222 | 2223 | fill-range@7.1.1: 2224 | dependencies: 2225 | to-regex-range: 5.0.1 2226 | 2227 | find-up@5.0.0: 2228 | dependencies: 2229 | locate-path: 6.0.0 2230 | path-exists: 4.0.0 2231 | 2232 | flat-cache@3.0.4: 2233 | dependencies: 2234 | flatted: 3.2.7 2235 | rimraf: 3.0.2 2236 | 2237 | flatted@3.2.7: {} 2238 | 2239 | for-each@0.3.3: 2240 | dependencies: 2241 | is-callable: 1.2.7 2242 | 2243 | fraction.js@4.3.7: {} 2244 | 2245 | fs.realpath@1.0.0: {} 2246 | 2247 | fsevents@2.3.3: 2248 | optional: true 2249 | 2250 | function-bind@1.1.2: {} 2251 | 2252 | function.prototype.name@1.1.6: 2253 | dependencies: 2254 | call-bind: 1.0.5 2255 | define-properties: 1.2.1 2256 | es-abstract: 1.22.3 2257 | functions-have-names: 1.2.3 2258 | 2259 | functions-have-names@1.2.3: {} 2260 | 2261 | get-intrinsic@1.2.2: 2262 | dependencies: 2263 | function-bind: 1.1.2 2264 | has-proto: 1.0.1 2265 | has-symbols: 1.0.3 2266 | hasown: 2.0.0 2267 | 2268 | get-symbol-description@1.0.0: 2269 | dependencies: 2270 | call-bind: 1.0.5 2271 | get-intrinsic: 1.2.2 2272 | 2273 | get-tsconfig@4.7.2: 2274 | dependencies: 2275 | resolve-pkg-maps: 1.0.0 2276 | 2277 | glob-parent@5.1.2: 2278 | dependencies: 2279 | is-glob: 4.0.3 2280 | 2281 | glob-parent@6.0.2: 2282 | dependencies: 2283 | is-glob: 4.0.3 2284 | 2285 | glob-to-regexp@0.4.1: {} 2286 | 2287 | glob@7.1.6: 2288 | dependencies: 2289 | fs.realpath: 1.0.0 2290 | inflight: 1.0.6 2291 | inherits: 2.0.4 2292 | minimatch: 3.1.2 2293 | once: 1.4.0 2294 | path-is-absolute: 1.0.1 2295 | 2296 | glob@7.1.7: 2297 | dependencies: 2298 | fs.realpath: 1.0.0 2299 | inflight: 1.0.6 2300 | inherits: 2.0.4 2301 | minimatch: 3.1.2 2302 | once: 1.4.0 2303 | path-is-absolute: 1.0.1 2304 | 2305 | glob@7.2.3: 2306 | dependencies: 2307 | fs.realpath: 1.0.0 2308 | inflight: 1.0.6 2309 | inherits: 2.0.4 2310 | minimatch: 3.1.2 2311 | once: 1.4.0 2312 | path-is-absolute: 1.0.1 2313 | 2314 | globals@13.19.0: 2315 | dependencies: 2316 | type-fest: 0.20.2 2317 | 2318 | globalthis@1.0.3: 2319 | dependencies: 2320 | define-properties: 1.2.1 2321 | 2322 | globby@11.1.0: 2323 | dependencies: 2324 | array-union: 2.1.0 2325 | dir-glob: 3.0.1 2326 | fast-glob: 3.3.2 2327 | ignore: 5.3.0 2328 | merge2: 1.4.1 2329 | slash: 3.0.0 2330 | 2331 | gopd@1.0.1: 2332 | dependencies: 2333 | get-intrinsic: 1.2.2 2334 | 2335 | graceful-fs@4.2.11: {} 2336 | 2337 | graphemer@1.4.0: {} 2338 | 2339 | has-bigints@1.0.2: {} 2340 | 2341 | has-flag@4.0.0: {} 2342 | 2343 | has-property-descriptors@1.0.1: 2344 | dependencies: 2345 | get-intrinsic: 1.2.2 2346 | 2347 | has-proto@1.0.1: {} 2348 | 2349 | has-symbols@1.0.3: {} 2350 | 2351 | has-tostringtag@1.0.0: 2352 | dependencies: 2353 | has-symbols: 1.0.3 2354 | 2355 | hasown@2.0.0: 2356 | dependencies: 2357 | function-bind: 1.1.2 2358 | 2359 | ignore@5.2.1: {} 2360 | 2361 | ignore@5.3.0: {} 2362 | 2363 | import-fresh@3.3.0: 2364 | dependencies: 2365 | parent-module: 1.0.1 2366 | resolve-from: 4.0.0 2367 | 2368 | imurmurhash@0.1.4: {} 2369 | 2370 | inflight@1.0.6: 2371 | dependencies: 2372 | once: 1.4.0 2373 | wrappy: 1.0.2 2374 | 2375 | inherits@2.0.4: {} 2376 | 2377 | internal-slot@1.0.6: 2378 | dependencies: 2379 | get-intrinsic: 1.2.2 2380 | hasown: 2.0.0 2381 | side-channel: 1.0.4 2382 | 2383 | is-array-buffer@3.0.2: 2384 | dependencies: 2385 | call-bind: 1.0.5 2386 | get-intrinsic: 1.2.2 2387 | is-typed-array: 1.1.12 2388 | 2389 | is-async-function@2.0.0: 2390 | dependencies: 2391 | has-tostringtag: 1.0.0 2392 | 2393 | is-bigint@1.0.4: 2394 | dependencies: 2395 | has-bigints: 1.0.2 2396 | 2397 | is-binary-path@2.1.0: 2398 | dependencies: 2399 | binary-extensions: 2.2.0 2400 | 2401 | is-boolean-object@1.1.2: 2402 | dependencies: 2403 | call-bind: 1.0.5 2404 | has-tostringtag: 1.0.0 2405 | 2406 | is-callable@1.2.7: {} 2407 | 2408 | is-core-module@2.13.1: 2409 | dependencies: 2410 | hasown: 2.0.0 2411 | 2412 | is-date-object@1.0.5: 2413 | dependencies: 2414 | has-tostringtag: 1.0.0 2415 | 2416 | is-extglob@2.1.1: {} 2417 | 2418 | is-finalizationregistry@1.0.2: 2419 | dependencies: 2420 | call-bind: 1.0.5 2421 | 2422 | is-generator-function@1.0.10: 2423 | dependencies: 2424 | has-tostringtag: 1.0.0 2425 | 2426 | is-glob@4.0.3: 2427 | dependencies: 2428 | is-extglob: 2.1.1 2429 | 2430 | is-map@2.0.2: {} 2431 | 2432 | is-negative-zero@2.0.2: {} 2433 | 2434 | is-number-object@1.0.7: 2435 | dependencies: 2436 | has-tostringtag: 1.0.0 2437 | 2438 | is-number@7.0.0: {} 2439 | 2440 | is-path-inside@3.0.3: {} 2441 | 2442 | is-regex@1.1.4: 2443 | dependencies: 2444 | call-bind: 1.0.5 2445 | has-tostringtag: 1.0.0 2446 | 2447 | is-set@2.0.2: {} 2448 | 2449 | is-shared-array-buffer@1.0.2: 2450 | dependencies: 2451 | call-bind: 1.0.5 2452 | 2453 | is-string@1.0.7: 2454 | dependencies: 2455 | has-tostringtag: 1.0.0 2456 | 2457 | is-symbol@1.0.4: 2458 | dependencies: 2459 | has-symbols: 1.0.3 2460 | 2461 | is-typed-array@1.1.12: 2462 | dependencies: 2463 | which-typed-array: 1.1.13 2464 | 2465 | is-weakmap@2.0.1: {} 2466 | 2467 | is-weakref@1.0.2: 2468 | dependencies: 2469 | call-bind: 1.0.5 2470 | 2471 | is-weakset@2.0.2: 2472 | dependencies: 2473 | call-bind: 1.0.5 2474 | get-intrinsic: 1.2.2 2475 | 2476 | isarray@2.0.5: {} 2477 | 2478 | isexe@2.0.0: {} 2479 | 2480 | iterator.prototype@1.1.2: 2481 | dependencies: 2482 | define-properties: 1.2.1 2483 | get-intrinsic: 1.2.2 2484 | has-symbols: 1.0.3 2485 | reflect.getprototypeof: 1.0.4 2486 | set-function-name: 2.0.1 2487 | 2488 | jiti@1.21.0: {} 2489 | 2490 | js-tokens@4.0.0: {} 2491 | 2492 | js-yaml@4.1.0: 2493 | dependencies: 2494 | argparse: 2.0.1 2495 | 2496 | json-schema-traverse@0.4.1: {} 2497 | 2498 | json-stable-stringify-without-jsonify@1.0.1: {} 2499 | 2500 | json5@1.0.2: 2501 | dependencies: 2502 | minimist: 1.2.8 2503 | 2504 | jsx-ast-utils@3.3.5: 2505 | dependencies: 2506 | array-includes: 3.1.7 2507 | array.prototype.flat: 1.3.2 2508 | object.assign: 4.1.5 2509 | object.values: 1.1.7 2510 | 2511 | language-subtag-registry@0.3.22: {} 2512 | 2513 | language-tags@1.0.9: 2514 | dependencies: 2515 | language-subtag-registry: 0.3.22 2516 | 2517 | levn@0.4.1: 2518 | dependencies: 2519 | prelude-ls: 1.2.1 2520 | type-check: 0.4.0 2521 | 2522 | lilconfig@2.1.0: {} 2523 | 2524 | lilconfig@3.0.0: {} 2525 | 2526 | lines-and-columns@1.2.4: {} 2527 | 2528 | locate-path@6.0.0: 2529 | dependencies: 2530 | p-locate: 5.0.0 2531 | 2532 | lodash.merge@4.6.2: {} 2533 | 2534 | loose-envify@1.4.0: 2535 | dependencies: 2536 | js-tokens: 4.0.0 2537 | 2538 | lottie-react@2.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 2539 | dependencies: 2540 | lottie-web: 5.12.2 2541 | react: 18.2.0 2542 | react-dom: 18.2.0(react@18.2.0) 2543 | 2544 | lottie-web@5.12.2: {} 2545 | 2546 | lru-cache@6.0.0: 2547 | dependencies: 2548 | yallist: 4.0.0 2549 | 2550 | merge2@1.4.1: {} 2551 | 2552 | micromatch@4.0.5: 2553 | dependencies: 2554 | braces: 3.0.3 2555 | picomatch: 2.3.1 2556 | 2557 | minimatch@3.1.2: 2558 | dependencies: 2559 | brace-expansion: 1.1.11 2560 | 2561 | minimist@1.2.8: {} 2562 | 2563 | ms@2.1.2: {} 2564 | 2565 | ms@2.1.3: {} 2566 | 2567 | mz@2.7.0: 2568 | dependencies: 2569 | any-promise: 1.3.0 2570 | object-assign: 4.1.1 2571 | thenify-all: 1.6.0 2572 | 2573 | nanoid@3.3.7: {} 2574 | 2575 | natural-compare@1.4.0: {} 2576 | 2577 | next@14.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 2578 | dependencies: 2579 | '@next/env': 14.0.4 2580 | '@swc/helpers': 0.5.2 2581 | busboy: 1.6.0 2582 | caniuse-lite: 1.0.30001568 2583 | graceful-fs: 4.2.11 2584 | postcss: 8.4.31 2585 | react: 18.2.0 2586 | react-dom: 18.2.0(react@18.2.0) 2587 | styled-jsx: 5.1.1(react@18.2.0) 2588 | watchpack: 2.4.0 2589 | optionalDependencies: 2590 | '@next/swc-darwin-arm64': 14.0.4 2591 | '@next/swc-darwin-x64': 14.0.4 2592 | '@next/swc-linux-arm64-gnu': 14.0.4 2593 | '@next/swc-linux-arm64-musl': 14.0.4 2594 | '@next/swc-linux-x64-gnu': 14.0.4 2595 | '@next/swc-linux-x64-musl': 14.0.4 2596 | '@next/swc-win32-arm64-msvc': 14.0.4 2597 | '@next/swc-win32-ia32-msvc': 14.0.4 2598 | '@next/swc-win32-x64-msvc': 14.0.4 2599 | transitivePeerDependencies: 2600 | - '@babel/core' 2601 | - babel-plugin-macros 2602 | 2603 | node-releases@2.0.14: {} 2604 | 2605 | normalize-path@3.0.0: {} 2606 | 2607 | normalize-range@0.1.2: {} 2608 | 2609 | object-assign@4.1.1: {} 2610 | 2611 | object-hash@3.0.0: {} 2612 | 2613 | object-inspect@1.13.1: {} 2614 | 2615 | object-keys@1.1.1: {} 2616 | 2617 | object.assign@4.1.5: 2618 | dependencies: 2619 | call-bind: 1.0.5 2620 | define-properties: 1.2.1 2621 | has-symbols: 1.0.3 2622 | object-keys: 1.1.1 2623 | 2624 | object.entries@1.1.7: 2625 | dependencies: 2626 | call-bind: 1.0.5 2627 | define-properties: 1.2.1 2628 | es-abstract: 1.22.3 2629 | 2630 | object.fromentries@2.0.7: 2631 | dependencies: 2632 | call-bind: 1.0.5 2633 | define-properties: 1.2.1 2634 | es-abstract: 1.22.3 2635 | 2636 | object.groupby@1.0.1: 2637 | dependencies: 2638 | call-bind: 1.0.5 2639 | define-properties: 1.2.1 2640 | es-abstract: 1.22.3 2641 | get-intrinsic: 1.2.2 2642 | 2643 | object.hasown@1.1.3: 2644 | dependencies: 2645 | define-properties: 1.2.1 2646 | es-abstract: 1.22.3 2647 | 2648 | object.values@1.1.7: 2649 | dependencies: 2650 | call-bind: 1.0.5 2651 | define-properties: 1.2.1 2652 | es-abstract: 1.22.3 2653 | 2654 | once@1.4.0: 2655 | dependencies: 2656 | wrappy: 1.0.2 2657 | 2658 | optionator@0.9.3: 2659 | dependencies: 2660 | '@aashutoshrathi/word-wrap': 1.2.6 2661 | deep-is: 0.1.4 2662 | fast-levenshtein: 2.0.6 2663 | levn: 0.4.1 2664 | prelude-ls: 1.2.1 2665 | type-check: 0.4.0 2666 | 2667 | p-limit@3.1.0: 2668 | dependencies: 2669 | yocto-queue: 0.1.0 2670 | 2671 | p-locate@5.0.0: 2672 | dependencies: 2673 | p-limit: 3.1.0 2674 | 2675 | parent-module@1.0.1: 2676 | dependencies: 2677 | callsites: 3.1.0 2678 | 2679 | path-exists@4.0.0: {} 2680 | 2681 | path-is-absolute@1.0.1: {} 2682 | 2683 | path-key@3.1.1: {} 2684 | 2685 | path-parse@1.0.7: {} 2686 | 2687 | path-type@4.0.0: {} 2688 | 2689 | picocolors@1.0.0: {} 2690 | 2691 | picomatch@2.3.1: {} 2692 | 2693 | pify@2.3.0: {} 2694 | 2695 | pirates@4.0.6: {} 2696 | 2697 | postcss-import@15.1.0(postcss@8.4.32): 2698 | dependencies: 2699 | postcss: 8.4.32 2700 | postcss-value-parser: 4.2.0 2701 | read-cache: 1.0.0 2702 | resolve: 1.22.8 2703 | 2704 | postcss-js@4.0.1(postcss@8.4.32): 2705 | dependencies: 2706 | camelcase-css: 2.0.1 2707 | postcss: 8.4.32 2708 | 2709 | postcss-load-config@4.0.2(postcss@8.4.32): 2710 | dependencies: 2711 | lilconfig: 3.0.0 2712 | yaml: 2.3.4 2713 | optionalDependencies: 2714 | postcss: 8.4.32 2715 | 2716 | postcss-nested@6.0.1(postcss@8.4.32): 2717 | dependencies: 2718 | postcss: 8.4.32 2719 | postcss-selector-parser: 6.0.13 2720 | 2721 | postcss-selector-parser@6.0.13: 2722 | dependencies: 2723 | cssesc: 3.0.0 2724 | util-deprecate: 1.0.2 2725 | 2726 | postcss-value-parser@4.2.0: {} 2727 | 2728 | postcss@8.4.31: 2729 | dependencies: 2730 | nanoid: 3.3.7 2731 | picocolors: 1.0.0 2732 | source-map-js: 1.0.2 2733 | 2734 | postcss@8.4.32: 2735 | dependencies: 2736 | nanoid: 3.3.7 2737 | picocolors: 1.0.0 2738 | source-map-js: 1.0.2 2739 | 2740 | prelude-ls@1.2.1: {} 2741 | 2742 | prettier@3.1.1: {} 2743 | 2744 | prop-types@15.8.1: 2745 | dependencies: 2746 | loose-envify: 1.4.0 2747 | object-assign: 4.1.1 2748 | react-is: 16.13.1 2749 | 2750 | punycode@2.1.1: {} 2751 | 2752 | queue-microtask@1.2.3: {} 2753 | 2754 | react-dom@18.2.0(react@18.2.0): 2755 | dependencies: 2756 | loose-envify: 1.4.0 2757 | react: 18.2.0 2758 | scheduler: 0.23.0 2759 | 2760 | react-icons@4.12.0(react@18.2.0): 2761 | dependencies: 2762 | react: 18.2.0 2763 | 2764 | react-is@16.13.1: {} 2765 | 2766 | react-use-clipboard@1.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 2767 | dependencies: 2768 | copy-to-clipboard: 3.3.3 2769 | react: 18.2.0 2770 | react-dom: 18.2.0(react@18.2.0) 2771 | 2772 | react-use-window-localstorage@1.0.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 2773 | dependencies: 2774 | react: 18.2.0 2775 | react-dom: 18.2.0(react@18.2.0) 2776 | 2777 | react@18.2.0: 2778 | dependencies: 2779 | loose-envify: 1.4.0 2780 | 2781 | read-cache@1.0.0: 2782 | dependencies: 2783 | pify: 2.3.0 2784 | 2785 | readdirp@3.6.0: 2786 | dependencies: 2787 | picomatch: 2.3.1 2788 | 2789 | reflect.getprototypeof@1.0.4: 2790 | dependencies: 2791 | call-bind: 1.0.5 2792 | define-properties: 1.2.1 2793 | es-abstract: 1.22.3 2794 | get-intrinsic: 1.2.2 2795 | globalthis: 1.0.3 2796 | which-builtin-type: 1.1.3 2797 | 2798 | regenerator-runtime@0.14.0: {} 2799 | 2800 | regexp.prototype.flags@1.5.1: 2801 | dependencies: 2802 | call-bind: 1.0.5 2803 | define-properties: 1.2.1 2804 | set-function-name: 2.0.1 2805 | 2806 | resolve-from@4.0.0: {} 2807 | 2808 | resolve-pkg-maps@1.0.0: {} 2809 | 2810 | resolve@1.22.8: 2811 | dependencies: 2812 | is-core-module: 2.13.1 2813 | path-parse: 1.0.7 2814 | supports-preserve-symlinks-flag: 1.0.0 2815 | 2816 | resolve@2.0.0-next.5: 2817 | dependencies: 2818 | is-core-module: 2.13.1 2819 | path-parse: 1.0.7 2820 | supports-preserve-symlinks-flag: 1.0.0 2821 | 2822 | reusify@1.0.4: {} 2823 | 2824 | rimraf@3.0.2: 2825 | dependencies: 2826 | glob: 7.2.3 2827 | 2828 | run-parallel@1.2.0: 2829 | dependencies: 2830 | queue-microtask: 1.2.3 2831 | 2832 | safe-array-concat@1.0.1: 2833 | dependencies: 2834 | call-bind: 1.0.5 2835 | get-intrinsic: 1.2.2 2836 | has-symbols: 1.0.3 2837 | isarray: 2.0.5 2838 | 2839 | safe-regex-test@1.0.0: 2840 | dependencies: 2841 | call-bind: 1.0.5 2842 | get-intrinsic: 1.2.2 2843 | is-regex: 1.1.4 2844 | 2845 | scheduler@0.23.0: 2846 | dependencies: 2847 | loose-envify: 1.4.0 2848 | 2849 | semver@6.3.1: {} 2850 | 2851 | semver@7.5.4: 2852 | dependencies: 2853 | lru-cache: 6.0.0 2854 | 2855 | set-function-length@1.1.1: 2856 | dependencies: 2857 | define-data-property: 1.1.1 2858 | get-intrinsic: 1.2.2 2859 | gopd: 1.0.1 2860 | has-property-descriptors: 1.0.1 2861 | 2862 | set-function-name@2.0.1: 2863 | dependencies: 2864 | define-data-property: 1.1.1 2865 | functions-have-names: 1.2.3 2866 | has-property-descriptors: 1.0.1 2867 | 2868 | shebang-command@2.0.0: 2869 | dependencies: 2870 | shebang-regex: 3.0.0 2871 | 2872 | shebang-regex@3.0.0: {} 2873 | 2874 | side-channel@1.0.4: 2875 | dependencies: 2876 | call-bind: 1.0.5 2877 | get-intrinsic: 1.2.2 2878 | object-inspect: 1.13.1 2879 | 2880 | slash@3.0.0: {} 2881 | 2882 | source-map-js@1.0.2: {} 2883 | 2884 | streamsearch@1.1.0: {} 2885 | 2886 | string.prototype.matchall@4.0.10: 2887 | dependencies: 2888 | call-bind: 1.0.5 2889 | define-properties: 1.2.1 2890 | es-abstract: 1.22.3 2891 | get-intrinsic: 1.2.2 2892 | has-symbols: 1.0.3 2893 | internal-slot: 1.0.6 2894 | regexp.prototype.flags: 1.5.1 2895 | set-function-name: 2.0.1 2896 | side-channel: 1.0.4 2897 | 2898 | string.prototype.trim@1.2.8: 2899 | dependencies: 2900 | call-bind: 1.0.5 2901 | define-properties: 1.2.1 2902 | es-abstract: 1.22.3 2903 | 2904 | string.prototype.trimend@1.0.7: 2905 | dependencies: 2906 | call-bind: 1.0.5 2907 | define-properties: 1.2.1 2908 | es-abstract: 1.22.3 2909 | 2910 | string.prototype.trimstart@1.0.7: 2911 | dependencies: 2912 | call-bind: 1.0.5 2913 | define-properties: 1.2.1 2914 | es-abstract: 1.22.3 2915 | 2916 | strip-ansi@6.0.1: 2917 | dependencies: 2918 | ansi-regex: 5.0.1 2919 | 2920 | strip-bom@3.0.0: {} 2921 | 2922 | strip-json-comments@3.1.1: {} 2923 | 2924 | styled-jsx@5.1.1(react@18.2.0): 2925 | dependencies: 2926 | client-only: 0.0.1 2927 | react: 18.2.0 2928 | 2929 | sucrase@3.34.0: 2930 | dependencies: 2931 | '@jridgewell/gen-mapping': 0.3.3 2932 | commander: 4.1.1 2933 | glob: 7.1.6 2934 | lines-and-columns: 1.2.4 2935 | mz: 2.7.0 2936 | pirates: 4.0.6 2937 | ts-interface-checker: 0.1.13 2938 | 2939 | supports-color@7.2.0: 2940 | dependencies: 2941 | has-flag: 4.0.0 2942 | 2943 | supports-preserve-symlinks-flag@1.0.0: {} 2944 | 2945 | tailwindcss@3.3.6: 2946 | dependencies: 2947 | '@alloc/quick-lru': 5.2.0 2948 | arg: 5.0.2 2949 | chokidar: 3.5.3 2950 | didyoumean: 1.2.2 2951 | dlv: 1.1.3 2952 | fast-glob: 3.3.2 2953 | glob-parent: 6.0.2 2954 | is-glob: 4.0.3 2955 | jiti: 1.21.0 2956 | lilconfig: 2.1.0 2957 | micromatch: 4.0.5 2958 | normalize-path: 3.0.0 2959 | object-hash: 3.0.0 2960 | picocolors: 1.0.0 2961 | postcss: 8.4.32 2962 | postcss-import: 15.1.0(postcss@8.4.32) 2963 | postcss-js: 4.0.1(postcss@8.4.32) 2964 | postcss-load-config: 4.0.2(postcss@8.4.32) 2965 | postcss-nested: 6.0.1(postcss@8.4.32) 2966 | postcss-selector-parser: 6.0.13 2967 | resolve: 1.22.8 2968 | sucrase: 3.34.0 2969 | transitivePeerDependencies: 2970 | - ts-node 2971 | 2972 | tapable@2.2.1: {} 2973 | 2974 | text-table@0.2.0: {} 2975 | 2976 | thenify-all@1.6.0: 2977 | dependencies: 2978 | thenify: 3.3.1 2979 | 2980 | thenify@3.3.1: 2981 | dependencies: 2982 | any-promise: 1.3.0 2983 | 2984 | to-regex-range@5.0.1: 2985 | dependencies: 2986 | is-number: 7.0.0 2987 | 2988 | toggle-selection@1.0.6: {} 2989 | 2990 | ts-api-utils@1.0.3(typescript@5.3.3): 2991 | dependencies: 2992 | typescript: 5.3.3 2993 | 2994 | ts-interface-checker@0.1.13: {} 2995 | 2996 | tsconfig-paths@3.14.2: 2997 | dependencies: 2998 | '@types/json5': 0.0.29 2999 | json5: 1.0.2 3000 | minimist: 1.2.8 3001 | strip-bom: 3.0.0 3002 | 3003 | tslib@2.6.2: {} 3004 | 3005 | type-check@0.4.0: 3006 | dependencies: 3007 | prelude-ls: 1.2.1 3008 | 3009 | type-fest@0.20.2: {} 3010 | 3011 | typed-array-buffer@1.0.0: 3012 | dependencies: 3013 | call-bind: 1.0.5 3014 | get-intrinsic: 1.2.2 3015 | is-typed-array: 1.1.12 3016 | 3017 | typed-array-byte-length@1.0.0: 3018 | dependencies: 3019 | call-bind: 1.0.5 3020 | for-each: 0.3.3 3021 | has-proto: 1.0.1 3022 | is-typed-array: 1.1.12 3023 | 3024 | typed-array-byte-offset@1.0.0: 3025 | dependencies: 3026 | available-typed-arrays: 1.0.5 3027 | call-bind: 1.0.5 3028 | for-each: 0.3.3 3029 | has-proto: 1.0.1 3030 | is-typed-array: 1.1.12 3031 | 3032 | typed-array-length@1.0.4: 3033 | dependencies: 3034 | call-bind: 1.0.5 3035 | for-each: 0.3.3 3036 | is-typed-array: 1.1.12 3037 | 3038 | typescript@5.3.3: {} 3039 | 3040 | unbox-primitive@1.0.2: 3041 | dependencies: 3042 | call-bind: 1.0.5 3043 | has-bigints: 1.0.2 3044 | has-symbols: 1.0.3 3045 | which-boxed-primitive: 1.0.2 3046 | 3047 | undici-types@5.26.5: {} 3048 | 3049 | update-browserslist-db@1.0.13(browserslist@4.22.2): 3050 | dependencies: 3051 | browserslist: 4.22.2 3052 | escalade: 3.1.1 3053 | picocolors: 1.0.0 3054 | 3055 | uri-js@4.4.1: 3056 | dependencies: 3057 | punycode: 2.1.1 3058 | 3059 | use-debounce@10.0.0(react@18.2.0): 3060 | dependencies: 3061 | react: 18.2.0 3062 | 3063 | util-deprecate@1.0.2: {} 3064 | 3065 | watchpack@2.4.0: 3066 | dependencies: 3067 | glob-to-regexp: 0.4.1 3068 | graceful-fs: 4.2.11 3069 | 3070 | which-boxed-primitive@1.0.2: 3071 | dependencies: 3072 | is-bigint: 1.0.4 3073 | is-boolean-object: 1.1.2 3074 | is-number-object: 1.0.7 3075 | is-string: 1.0.7 3076 | is-symbol: 1.0.4 3077 | 3078 | which-builtin-type@1.1.3: 3079 | dependencies: 3080 | function.prototype.name: 1.1.6 3081 | has-tostringtag: 1.0.0 3082 | is-async-function: 2.0.0 3083 | is-date-object: 1.0.5 3084 | is-finalizationregistry: 1.0.2 3085 | is-generator-function: 1.0.10 3086 | is-regex: 1.1.4 3087 | is-weakref: 1.0.2 3088 | isarray: 2.0.5 3089 | which-boxed-primitive: 1.0.2 3090 | which-collection: 1.0.1 3091 | which-typed-array: 1.1.13 3092 | 3093 | which-collection@1.0.1: 3094 | dependencies: 3095 | is-map: 2.0.2 3096 | is-set: 2.0.2 3097 | is-weakmap: 2.0.1 3098 | is-weakset: 2.0.2 3099 | 3100 | which-typed-array@1.1.13: 3101 | dependencies: 3102 | available-typed-arrays: 1.0.5 3103 | call-bind: 1.0.5 3104 | for-each: 0.3.3 3105 | gopd: 1.0.1 3106 | has-tostringtag: 1.0.0 3107 | 3108 | which@2.0.2: 3109 | dependencies: 3110 | isexe: 2.0.0 3111 | 3112 | wrappy@1.0.2: {} 3113 | 3114 | yallist@4.0.0: {} 3115 | 3116 | yaml@2.3.4: {} 3117 | 3118 | yocto-queue@0.1.0: {} 3119 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencerwooo/bit-webvpn-converter/f53aaea151e247c7db20195bae125382c3402417/public/favicon.ico -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], 3 | theme: { 4 | extend: { 5 | fontFamily: { 6 | nanum: ['"Nanum Pen Script"', 'cursive'], 7 | }, 8 | }, 9 | }, 10 | plugins: [], 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true 17 | }, 18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 19 | "exclude": ["node_modules"] 20 | } 21 | --------------------------------------------------------------------------------