├── .csb.json ├── .eslintrc.cjs ├── .gitignore ├── LICENSE.md ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── prettier.config.cjs ├── public └── img │ └── apple-tv-rebuild │ └── posters │ ├── airplane.webp │ ├── family-man.webp │ ├── laboratory.webp │ ├── napoleon.webp │ ├── person-in-darkness.webp │ ├── scary-building.webp │ └── stars.webp ├── src ├── App.tsx ├── components │ ├── button.tsx │ ├── container.tsx │ ├── fade-in.tsx │ ├── header.tsx │ └── section │ │ ├── hero.tsx │ │ ├── usps.tsx │ │ └── video-carousel.tsx ├── main.tsx ├── movies.ts ├── styles.css └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.csb.json: -------------------------------------------------------------------------------- 1 | { 2 | "openFiles": [ 3 | "src/App.tsx", 4 | "src/components/button.tsx", 5 | "src/components/container.tsx", 6 | "src/components/fade-in.tsx", 7 | "src/components/header.tsx", 8 | "src/components/section/hero.tsx", 9 | "src/components/section/usps.tsx", 10 | "src/components/section/video-carousel.tsx", 11 | "tailwind.config.cjs", 12 | "src/movies.ts", 13 | "src/styles.css" 14 | ], 15 | "activeFile": "src/App.tsx", 16 | "template": "vite-react-ts", 17 | "options": { 18 | "tailwind": true 19 | }, 20 | "dependencies": { 21 | "react": "latest", 22 | "react-dom": "latest", 23 | "framer-motion": "^11.0.8", 24 | "react-use": "^17.5.0", 25 | "tailwind-merge": "^2.2.1" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import("eslint").Linter.Config} */ 2 | const config = { 3 | parser: "@typescript-eslint/parser", 4 | extends: [ 5 | "plugin:react/recommended", 6 | "plugin:react-hooks/recommended", 7 | "plugin:@typescript-eslint/recommended", 8 | "plugin:prettier/recommended", 9 | ], 10 | parserOptions: { 11 | project: true, 12 | }, 13 | settings: { 14 | react: { 15 | version: "detect", 16 | }, 17 | }, 18 | }; 19 | 20 | module.exports = config; 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2024 FRONTEND.FYI 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | Parts of the design that are a direct copy of the platform or website rebuild as part of this tutorial, REMAIN COPYRIGHTED BY THEIR ORIGINAL OWNER. You can not reuse this design without permission of the original owner. Reusing the design in this tutorial only serves an educational purpose. 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How I Rebuild This Apple TV+ Page With Framer Motion And TailwindCSS 2 | 3 | ## Read the article and watch the video here: 4 | 5 | https://www.frontend.fyi/v/rebuilding-the-apple-tv-plus-website-with-framer-motion-and-tailwind 6 | 7 | Or directly on YouTube: 8 | https://youtu.be/TmelPbKsFWo 9 | 10 | ## Running this project 11 | 12 | Run `yarn` or `npm i` to install the project. Next run `yarn dev` or `npm run dev` to view the project by clicking the link in the terminal. 13 | 14 | See the [LICENSE](/LICENSE.md) for more information about reusing this code. 15 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React + TS 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "2024-03-04-apple-tv-rebuild", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc && vite build", 9 | "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "framer-motion": "^11.0.8", 14 | "react": "^18.2.0", 15 | "react-dom": "^18.2.0", 16 | "react-use": "^17.5.0", 17 | "tailwind-merge": "^2.2.1" 18 | }, 19 | "devDependencies": { 20 | "@trivago/prettier-plugin-sort-imports": "^4.3.0", 21 | "@types/react": "^18.2.56", 22 | "@types/react-dom": "^18.2.19", 23 | "@typescript-eslint/eslint-plugin": "^7.0.2", 24 | "@typescript-eslint/parser": "^7.1.0", 25 | "@vitejs/plugin-react": "^4.2.1", 26 | "autoprefixer": "^10.4.18", 27 | "eslint": "^8.57.0", 28 | "eslint-plugin-prettier": "^5.1.3", 29 | "eslint-plugin-react": "^7.34.0", 30 | "eslint-plugin-react-hooks": "^4.6.0", 31 | "eslint-plugin-react-refresh": "^0.4.5", 32 | "postcss": "^8.4.35", 33 | "prettier": "^3.2.5", 34 | "prettier-plugin-tailwindcss": "^0.5.11", 35 | "tailwindcss": "^3.4.1", 36 | "typescript": "^5.2.2", 37 | "vite": "^5.1.4" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | dependencies: 8 | framer-motion: 9 | specifier: ^11.0.8 10 | version: 11.0.8(react-dom@18.2.0)(react@18.2.0) 11 | react: 12 | specifier: ^18.2.0 13 | version: 18.2.0 14 | react-dom: 15 | specifier: ^18.2.0 16 | version: 18.2.0(react@18.2.0) 17 | react-use: 18 | specifier: ^17.5.0 19 | version: 17.5.0(react-dom@18.2.0)(react@18.2.0) 20 | tailwind-merge: 21 | specifier: ^2.2.1 22 | version: 2.2.1 23 | 24 | devDependencies: 25 | '@trivago/prettier-plugin-sort-imports': 26 | specifier: ^4.3.0 27 | version: 4.3.0(prettier@3.2.5) 28 | '@types/react': 29 | specifier: ^18.2.56 30 | version: 18.2.61 31 | '@types/react-dom': 32 | specifier: ^18.2.19 33 | version: 18.2.19 34 | '@typescript-eslint/eslint-plugin': 35 | specifier: ^7.0.2 36 | version: 7.1.0(@typescript-eslint/parser@7.1.0)(eslint@8.57.0)(typescript@5.3.3) 37 | '@typescript-eslint/parser': 38 | specifier: ^7.1.0 39 | version: 7.1.0(eslint@8.57.0)(typescript@5.3.3) 40 | '@vitejs/plugin-react': 41 | specifier: ^4.2.1 42 | version: 4.2.1(vite@5.1.4) 43 | autoprefixer: 44 | specifier: ^10.4.18 45 | version: 10.4.18(postcss@8.4.35) 46 | eslint: 47 | specifier: ^8.57.0 48 | version: 8.57.0 49 | eslint-plugin-prettier: 50 | specifier: ^5.1.3 51 | version: 5.1.3(eslint@8.57.0)(prettier@3.2.5) 52 | eslint-plugin-react: 53 | specifier: ^7.34.0 54 | version: 7.34.0(eslint@8.57.0) 55 | eslint-plugin-react-hooks: 56 | specifier: ^4.6.0 57 | version: 4.6.0(eslint@8.57.0) 58 | eslint-plugin-react-refresh: 59 | specifier: ^0.4.5 60 | version: 0.4.5(eslint@8.57.0) 61 | postcss: 62 | specifier: ^8.4.35 63 | version: 8.4.35 64 | prettier: 65 | specifier: ^3.2.5 66 | version: 3.2.5 67 | prettier-plugin-tailwindcss: 68 | specifier: ^0.5.11 69 | version: 0.5.11(@trivago/prettier-plugin-sort-imports@4.3.0)(prettier@3.2.5) 70 | tailwindcss: 71 | specifier: ^3.4.1 72 | version: 3.4.1 73 | typescript: 74 | specifier: ^5.2.2 75 | version: 5.3.3 76 | vite: 77 | specifier: ^5.1.4 78 | version: 5.1.4 79 | 80 | packages: 81 | 82 | /@aashutoshrathi/word-wrap@1.2.6: 83 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 84 | engines: {node: '>=0.10.0'} 85 | dev: true 86 | 87 | /@alloc/quick-lru@5.2.0: 88 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 89 | engines: {node: '>=10'} 90 | dev: true 91 | 92 | /@ampproject/remapping@2.3.0: 93 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 94 | engines: {node: '>=6.0.0'} 95 | dependencies: 96 | '@jridgewell/gen-mapping': 0.3.5 97 | '@jridgewell/trace-mapping': 0.3.25 98 | dev: true 99 | 100 | /@babel/code-frame@7.23.5: 101 | resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} 102 | engines: {node: '>=6.9.0'} 103 | dependencies: 104 | '@babel/highlight': 7.23.4 105 | chalk: 2.4.2 106 | dev: true 107 | 108 | /@babel/compat-data@7.23.5: 109 | resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} 110 | engines: {node: '>=6.9.0'} 111 | dev: true 112 | 113 | /@babel/core@7.24.0: 114 | resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==} 115 | engines: {node: '>=6.9.0'} 116 | dependencies: 117 | '@ampproject/remapping': 2.3.0 118 | '@babel/code-frame': 7.23.5 119 | '@babel/generator': 7.23.6 120 | '@babel/helper-compilation-targets': 7.23.6 121 | '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) 122 | '@babel/helpers': 7.24.0 123 | '@babel/parser': 7.24.0 124 | '@babel/template': 7.24.0 125 | '@babel/traverse': 7.24.0 126 | '@babel/types': 7.24.0 127 | convert-source-map: 2.0.0 128 | debug: 4.3.4 129 | gensync: 1.0.0-beta.2 130 | json5: 2.2.3 131 | semver: 6.3.1 132 | transitivePeerDependencies: 133 | - supports-color 134 | dev: true 135 | 136 | /@babel/generator@7.17.7: 137 | resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==} 138 | engines: {node: '>=6.9.0'} 139 | dependencies: 140 | '@babel/types': 7.24.0 141 | jsesc: 2.5.2 142 | source-map: 0.5.7 143 | dev: true 144 | 145 | /@babel/generator@7.23.6: 146 | resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} 147 | engines: {node: '>=6.9.0'} 148 | dependencies: 149 | '@babel/types': 7.24.0 150 | '@jridgewell/gen-mapping': 0.3.5 151 | '@jridgewell/trace-mapping': 0.3.25 152 | jsesc: 2.5.2 153 | dev: true 154 | 155 | /@babel/helper-compilation-targets@7.23.6: 156 | resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} 157 | engines: {node: '>=6.9.0'} 158 | dependencies: 159 | '@babel/compat-data': 7.23.5 160 | '@babel/helper-validator-option': 7.23.5 161 | browserslist: 4.23.0 162 | lru-cache: 5.1.1 163 | semver: 6.3.1 164 | dev: true 165 | 166 | /@babel/helper-environment-visitor@7.22.20: 167 | resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} 168 | engines: {node: '>=6.9.0'} 169 | dev: true 170 | 171 | /@babel/helper-function-name@7.23.0: 172 | resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} 173 | engines: {node: '>=6.9.0'} 174 | dependencies: 175 | '@babel/template': 7.24.0 176 | '@babel/types': 7.24.0 177 | dev: true 178 | 179 | /@babel/helper-hoist-variables@7.22.5: 180 | resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} 181 | engines: {node: '>=6.9.0'} 182 | dependencies: 183 | '@babel/types': 7.24.0 184 | dev: true 185 | 186 | /@babel/helper-module-imports@7.22.15: 187 | resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} 188 | engines: {node: '>=6.9.0'} 189 | dependencies: 190 | '@babel/types': 7.24.0 191 | dev: true 192 | 193 | /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0): 194 | resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} 195 | engines: {node: '>=6.9.0'} 196 | peerDependencies: 197 | '@babel/core': ^7.0.0 198 | dependencies: 199 | '@babel/core': 7.24.0 200 | '@babel/helper-environment-visitor': 7.22.20 201 | '@babel/helper-module-imports': 7.22.15 202 | '@babel/helper-simple-access': 7.22.5 203 | '@babel/helper-split-export-declaration': 7.22.6 204 | '@babel/helper-validator-identifier': 7.22.20 205 | dev: true 206 | 207 | /@babel/helper-plugin-utils@7.24.0: 208 | resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} 209 | engines: {node: '>=6.9.0'} 210 | dev: true 211 | 212 | /@babel/helper-simple-access@7.22.5: 213 | resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} 214 | engines: {node: '>=6.9.0'} 215 | dependencies: 216 | '@babel/types': 7.24.0 217 | dev: true 218 | 219 | /@babel/helper-split-export-declaration@7.22.6: 220 | resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} 221 | engines: {node: '>=6.9.0'} 222 | dependencies: 223 | '@babel/types': 7.24.0 224 | dev: true 225 | 226 | /@babel/helper-string-parser@7.23.4: 227 | resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} 228 | engines: {node: '>=6.9.0'} 229 | dev: true 230 | 231 | /@babel/helper-validator-identifier@7.22.20: 232 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 233 | engines: {node: '>=6.9.0'} 234 | dev: true 235 | 236 | /@babel/helper-validator-option@7.23.5: 237 | resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} 238 | engines: {node: '>=6.9.0'} 239 | dev: true 240 | 241 | /@babel/helpers@7.24.0: 242 | resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==} 243 | engines: {node: '>=6.9.0'} 244 | dependencies: 245 | '@babel/template': 7.24.0 246 | '@babel/traverse': 7.24.0 247 | '@babel/types': 7.24.0 248 | transitivePeerDependencies: 249 | - supports-color 250 | dev: true 251 | 252 | /@babel/highlight@7.23.4: 253 | resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} 254 | engines: {node: '>=6.9.0'} 255 | dependencies: 256 | '@babel/helper-validator-identifier': 7.22.20 257 | chalk: 2.4.2 258 | js-tokens: 4.0.0 259 | dev: true 260 | 261 | /@babel/parser@7.24.0: 262 | resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==} 263 | engines: {node: '>=6.0.0'} 264 | hasBin: true 265 | dependencies: 266 | '@babel/types': 7.24.0 267 | dev: true 268 | 269 | /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.24.0): 270 | resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==} 271 | engines: {node: '>=6.9.0'} 272 | peerDependencies: 273 | '@babel/core': ^7.0.0-0 274 | dependencies: 275 | '@babel/core': 7.24.0 276 | '@babel/helper-plugin-utils': 7.24.0 277 | dev: true 278 | 279 | /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.24.0): 280 | resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==} 281 | engines: {node: '>=6.9.0'} 282 | peerDependencies: 283 | '@babel/core': ^7.0.0-0 284 | dependencies: 285 | '@babel/core': 7.24.0 286 | '@babel/helper-plugin-utils': 7.24.0 287 | dev: true 288 | 289 | /@babel/runtime@7.24.0: 290 | resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} 291 | engines: {node: '>=6.9.0'} 292 | dependencies: 293 | regenerator-runtime: 0.14.1 294 | dev: false 295 | 296 | /@babel/template@7.24.0: 297 | resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} 298 | engines: {node: '>=6.9.0'} 299 | dependencies: 300 | '@babel/code-frame': 7.23.5 301 | '@babel/parser': 7.24.0 302 | '@babel/types': 7.24.0 303 | dev: true 304 | 305 | /@babel/traverse@7.23.2: 306 | resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} 307 | engines: {node: '>=6.9.0'} 308 | dependencies: 309 | '@babel/code-frame': 7.23.5 310 | '@babel/generator': 7.23.6 311 | '@babel/helper-environment-visitor': 7.22.20 312 | '@babel/helper-function-name': 7.23.0 313 | '@babel/helper-hoist-variables': 7.22.5 314 | '@babel/helper-split-export-declaration': 7.22.6 315 | '@babel/parser': 7.24.0 316 | '@babel/types': 7.24.0 317 | debug: 4.3.4 318 | globals: 11.12.0 319 | transitivePeerDependencies: 320 | - supports-color 321 | dev: true 322 | 323 | /@babel/traverse@7.24.0: 324 | resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==} 325 | engines: {node: '>=6.9.0'} 326 | dependencies: 327 | '@babel/code-frame': 7.23.5 328 | '@babel/generator': 7.23.6 329 | '@babel/helper-environment-visitor': 7.22.20 330 | '@babel/helper-function-name': 7.23.0 331 | '@babel/helper-hoist-variables': 7.22.5 332 | '@babel/helper-split-export-declaration': 7.22.6 333 | '@babel/parser': 7.24.0 334 | '@babel/types': 7.24.0 335 | debug: 4.3.4 336 | globals: 11.12.0 337 | transitivePeerDependencies: 338 | - supports-color 339 | dev: true 340 | 341 | /@babel/types@7.17.0: 342 | resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} 343 | engines: {node: '>=6.9.0'} 344 | dependencies: 345 | '@babel/helper-validator-identifier': 7.22.20 346 | to-fast-properties: 2.0.0 347 | dev: true 348 | 349 | /@babel/types@7.24.0: 350 | resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} 351 | engines: {node: '>=6.9.0'} 352 | dependencies: 353 | '@babel/helper-string-parser': 7.23.4 354 | '@babel/helper-validator-identifier': 7.22.20 355 | to-fast-properties: 2.0.0 356 | dev: true 357 | 358 | /@emotion/is-prop-valid@0.8.8: 359 | resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} 360 | requiresBuild: true 361 | dependencies: 362 | '@emotion/memoize': 0.7.4 363 | dev: false 364 | optional: true 365 | 366 | /@emotion/memoize@0.7.4: 367 | resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} 368 | requiresBuild: true 369 | dev: false 370 | optional: true 371 | 372 | /@esbuild/aix-ppc64@0.19.12: 373 | resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} 374 | engines: {node: '>=12'} 375 | cpu: [ppc64] 376 | os: [aix] 377 | requiresBuild: true 378 | dev: true 379 | optional: true 380 | 381 | /@esbuild/android-arm64@0.19.12: 382 | resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} 383 | engines: {node: '>=12'} 384 | cpu: [arm64] 385 | os: [android] 386 | requiresBuild: true 387 | dev: true 388 | optional: true 389 | 390 | /@esbuild/android-arm@0.19.12: 391 | resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} 392 | engines: {node: '>=12'} 393 | cpu: [arm] 394 | os: [android] 395 | requiresBuild: true 396 | dev: true 397 | optional: true 398 | 399 | /@esbuild/android-x64@0.19.12: 400 | resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} 401 | engines: {node: '>=12'} 402 | cpu: [x64] 403 | os: [android] 404 | requiresBuild: true 405 | dev: true 406 | optional: true 407 | 408 | /@esbuild/darwin-arm64@0.19.12: 409 | resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} 410 | engines: {node: '>=12'} 411 | cpu: [arm64] 412 | os: [darwin] 413 | requiresBuild: true 414 | dev: true 415 | optional: true 416 | 417 | /@esbuild/darwin-x64@0.19.12: 418 | resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} 419 | engines: {node: '>=12'} 420 | cpu: [x64] 421 | os: [darwin] 422 | requiresBuild: true 423 | dev: true 424 | optional: true 425 | 426 | /@esbuild/freebsd-arm64@0.19.12: 427 | resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} 428 | engines: {node: '>=12'} 429 | cpu: [arm64] 430 | os: [freebsd] 431 | requiresBuild: true 432 | dev: true 433 | optional: true 434 | 435 | /@esbuild/freebsd-x64@0.19.12: 436 | resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} 437 | engines: {node: '>=12'} 438 | cpu: [x64] 439 | os: [freebsd] 440 | requiresBuild: true 441 | dev: true 442 | optional: true 443 | 444 | /@esbuild/linux-arm64@0.19.12: 445 | resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} 446 | engines: {node: '>=12'} 447 | cpu: [arm64] 448 | os: [linux] 449 | requiresBuild: true 450 | dev: true 451 | optional: true 452 | 453 | /@esbuild/linux-arm@0.19.12: 454 | resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} 455 | engines: {node: '>=12'} 456 | cpu: [arm] 457 | os: [linux] 458 | requiresBuild: true 459 | dev: true 460 | optional: true 461 | 462 | /@esbuild/linux-ia32@0.19.12: 463 | resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} 464 | engines: {node: '>=12'} 465 | cpu: [ia32] 466 | os: [linux] 467 | requiresBuild: true 468 | dev: true 469 | optional: true 470 | 471 | /@esbuild/linux-loong64@0.19.12: 472 | resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} 473 | engines: {node: '>=12'} 474 | cpu: [loong64] 475 | os: [linux] 476 | requiresBuild: true 477 | dev: true 478 | optional: true 479 | 480 | /@esbuild/linux-mips64el@0.19.12: 481 | resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} 482 | engines: {node: '>=12'} 483 | cpu: [mips64el] 484 | os: [linux] 485 | requiresBuild: true 486 | dev: true 487 | optional: true 488 | 489 | /@esbuild/linux-ppc64@0.19.12: 490 | resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} 491 | engines: {node: '>=12'} 492 | cpu: [ppc64] 493 | os: [linux] 494 | requiresBuild: true 495 | dev: true 496 | optional: true 497 | 498 | /@esbuild/linux-riscv64@0.19.12: 499 | resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} 500 | engines: {node: '>=12'} 501 | cpu: [riscv64] 502 | os: [linux] 503 | requiresBuild: true 504 | dev: true 505 | optional: true 506 | 507 | /@esbuild/linux-s390x@0.19.12: 508 | resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} 509 | engines: {node: '>=12'} 510 | cpu: [s390x] 511 | os: [linux] 512 | requiresBuild: true 513 | dev: true 514 | optional: true 515 | 516 | /@esbuild/linux-x64@0.19.12: 517 | resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} 518 | engines: {node: '>=12'} 519 | cpu: [x64] 520 | os: [linux] 521 | requiresBuild: true 522 | dev: true 523 | optional: true 524 | 525 | /@esbuild/netbsd-x64@0.19.12: 526 | resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} 527 | engines: {node: '>=12'} 528 | cpu: [x64] 529 | os: [netbsd] 530 | requiresBuild: true 531 | dev: true 532 | optional: true 533 | 534 | /@esbuild/openbsd-x64@0.19.12: 535 | resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} 536 | engines: {node: '>=12'} 537 | cpu: [x64] 538 | os: [openbsd] 539 | requiresBuild: true 540 | dev: true 541 | optional: true 542 | 543 | /@esbuild/sunos-x64@0.19.12: 544 | resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} 545 | engines: {node: '>=12'} 546 | cpu: [x64] 547 | os: [sunos] 548 | requiresBuild: true 549 | dev: true 550 | optional: true 551 | 552 | /@esbuild/win32-arm64@0.19.12: 553 | resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} 554 | engines: {node: '>=12'} 555 | cpu: [arm64] 556 | os: [win32] 557 | requiresBuild: true 558 | dev: true 559 | optional: true 560 | 561 | /@esbuild/win32-ia32@0.19.12: 562 | resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} 563 | engines: {node: '>=12'} 564 | cpu: [ia32] 565 | os: [win32] 566 | requiresBuild: true 567 | dev: true 568 | optional: true 569 | 570 | /@esbuild/win32-x64@0.19.12: 571 | resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} 572 | engines: {node: '>=12'} 573 | cpu: [x64] 574 | os: [win32] 575 | requiresBuild: true 576 | dev: true 577 | optional: true 578 | 579 | /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): 580 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 581 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 582 | peerDependencies: 583 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 584 | dependencies: 585 | eslint: 8.57.0 586 | eslint-visitor-keys: 3.4.3 587 | dev: true 588 | 589 | /@eslint-community/regexpp@4.10.0: 590 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 591 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 592 | dev: true 593 | 594 | /@eslint/eslintrc@2.1.4: 595 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 596 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 597 | dependencies: 598 | ajv: 6.12.6 599 | debug: 4.3.4 600 | espree: 9.6.1 601 | globals: 13.24.0 602 | ignore: 5.3.1 603 | import-fresh: 3.3.0 604 | js-yaml: 4.1.0 605 | minimatch: 3.1.2 606 | strip-json-comments: 3.1.1 607 | transitivePeerDependencies: 608 | - supports-color 609 | dev: true 610 | 611 | /@eslint/js@8.57.0: 612 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 613 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 614 | dev: true 615 | 616 | /@humanwhocodes/config-array@0.11.14: 617 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 618 | engines: {node: '>=10.10.0'} 619 | dependencies: 620 | '@humanwhocodes/object-schema': 2.0.2 621 | debug: 4.3.4 622 | minimatch: 3.1.2 623 | transitivePeerDependencies: 624 | - supports-color 625 | dev: true 626 | 627 | /@humanwhocodes/module-importer@1.0.1: 628 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 629 | engines: {node: '>=12.22'} 630 | dev: true 631 | 632 | /@humanwhocodes/object-schema@2.0.2: 633 | resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} 634 | dev: true 635 | 636 | /@isaacs/cliui@8.0.2: 637 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 638 | engines: {node: '>=12'} 639 | dependencies: 640 | string-width: 5.1.2 641 | string-width-cjs: /string-width@4.2.3 642 | strip-ansi: 7.1.0 643 | strip-ansi-cjs: /strip-ansi@6.0.1 644 | wrap-ansi: 8.1.0 645 | wrap-ansi-cjs: /wrap-ansi@7.0.0 646 | dev: true 647 | 648 | /@jridgewell/gen-mapping@0.3.5: 649 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 650 | engines: {node: '>=6.0.0'} 651 | dependencies: 652 | '@jridgewell/set-array': 1.2.1 653 | '@jridgewell/sourcemap-codec': 1.4.15 654 | '@jridgewell/trace-mapping': 0.3.25 655 | dev: true 656 | 657 | /@jridgewell/resolve-uri@3.1.2: 658 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 659 | engines: {node: '>=6.0.0'} 660 | dev: true 661 | 662 | /@jridgewell/set-array@1.2.1: 663 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 664 | engines: {node: '>=6.0.0'} 665 | dev: true 666 | 667 | /@jridgewell/sourcemap-codec@1.4.15: 668 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 669 | 670 | /@jridgewell/trace-mapping@0.3.25: 671 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 672 | dependencies: 673 | '@jridgewell/resolve-uri': 3.1.2 674 | '@jridgewell/sourcemap-codec': 1.4.15 675 | dev: true 676 | 677 | /@nodelib/fs.scandir@2.1.5: 678 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 679 | engines: {node: '>= 8'} 680 | dependencies: 681 | '@nodelib/fs.stat': 2.0.5 682 | run-parallel: 1.2.0 683 | dev: true 684 | 685 | /@nodelib/fs.stat@2.0.5: 686 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 687 | engines: {node: '>= 8'} 688 | dev: true 689 | 690 | /@nodelib/fs.walk@1.2.8: 691 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 692 | engines: {node: '>= 8'} 693 | dependencies: 694 | '@nodelib/fs.scandir': 2.1.5 695 | fastq: 1.17.1 696 | dev: true 697 | 698 | /@pkgjs/parseargs@0.11.0: 699 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 700 | engines: {node: '>=14'} 701 | requiresBuild: true 702 | dev: true 703 | optional: true 704 | 705 | /@pkgr/core@0.1.1: 706 | resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} 707 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 708 | dev: true 709 | 710 | /@rollup/rollup-android-arm-eabi@4.12.0: 711 | resolution: {integrity: sha512-+ac02NL/2TCKRrJu2wffk1kZ+RyqxVUlbjSagNgPm94frxtr+XDL12E5Ll1enWskLrtrZ2r8L3wED1orIibV/w==} 712 | cpu: [arm] 713 | os: [android] 714 | requiresBuild: true 715 | dev: true 716 | optional: true 717 | 718 | /@rollup/rollup-android-arm64@4.12.0: 719 | resolution: {integrity: sha512-OBqcX2BMe6nvjQ0Nyp7cC90cnumt8PXmO7Dp3gfAju/6YwG0Tj74z1vKrfRz7qAv23nBcYM8BCbhrsWqO7PzQQ==} 720 | cpu: [arm64] 721 | os: [android] 722 | requiresBuild: true 723 | dev: true 724 | optional: true 725 | 726 | /@rollup/rollup-darwin-arm64@4.12.0: 727 | resolution: {integrity: sha512-X64tZd8dRE/QTrBIEs63kaOBG0b5GVEd3ccoLtyf6IdXtHdh8h+I56C2yC3PtC9Ucnv0CpNFJLqKFVgCYe0lOQ==} 728 | cpu: [arm64] 729 | os: [darwin] 730 | requiresBuild: true 731 | dev: true 732 | optional: true 733 | 734 | /@rollup/rollup-darwin-x64@4.12.0: 735 | resolution: {integrity: sha512-cc71KUZoVbUJmGP2cOuiZ9HSOP14AzBAThn3OU+9LcA1+IUqswJyR1cAJj3Mg55HbjZP6OLAIscbQsQLrpgTOg==} 736 | cpu: [x64] 737 | os: [darwin] 738 | requiresBuild: true 739 | dev: true 740 | optional: true 741 | 742 | /@rollup/rollup-linux-arm-gnueabihf@4.12.0: 743 | resolution: {integrity: sha512-a6w/Y3hyyO6GlpKL2xJ4IOh/7d+APaqLYdMf86xnczU3nurFTaVN9s9jOXQg97BE4nYm/7Ga51rjec5nfRdrvA==} 744 | cpu: [arm] 745 | os: [linux] 746 | requiresBuild: true 747 | dev: true 748 | optional: true 749 | 750 | /@rollup/rollup-linux-arm64-gnu@4.12.0: 751 | resolution: {integrity: sha512-0fZBq27b+D7Ar5CQMofVN8sggOVhEtzFUwOwPppQt0k+VR+7UHMZZY4y+64WJ06XOhBTKXtQB/Sv0NwQMXyNAA==} 752 | cpu: [arm64] 753 | os: [linux] 754 | requiresBuild: true 755 | dev: true 756 | optional: true 757 | 758 | /@rollup/rollup-linux-arm64-musl@4.12.0: 759 | resolution: {integrity: sha512-eTvzUS3hhhlgeAv6bfigekzWZjaEX9xP9HhxB0Dvrdbkk5w/b+1Sxct2ZuDxNJKzsRStSq1EaEkVSEe7A7ipgQ==} 760 | cpu: [arm64] 761 | os: [linux] 762 | requiresBuild: true 763 | dev: true 764 | optional: true 765 | 766 | /@rollup/rollup-linux-riscv64-gnu@4.12.0: 767 | resolution: {integrity: sha512-ix+qAB9qmrCRiaO71VFfY8rkiAZJL8zQRXveS27HS+pKdjwUfEhqo2+YF2oI+H/22Xsiski+qqwIBxVewLK7sw==} 768 | cpu: [riscv64] 769 | os: [linux] 770 | requiresBuild: true 771 | dev: true 772 | optional: true 773 | 774 | /@rollup/rollup-linux-x64-gnu@4.12.0: 775 | resolution: {integrity: sha512-TenQhZVOtw/3qKOPa7d+QgkeM6xY0LtwzR8OplmyL5LrgTWIXpTQg2Q2ycBf8jm+SFW2Wt/DTn1gf7nFp3ssVA==} 776 | cpu: [x64] 777 | os: [linux] 778 | requiresBuild: true 779 | dev: true 780 | optional: true 781 | 782 | /@rollup/rollup-linux-x64-musl@4.12.0: 783 | resolution: {integrity: sha512-LfFdRhNnW0zdMvdCb5FNuWlls2WbbSridJvxOvYWgSBOYZtgBfW9UGNJG//rwMqTX1xQE9BAodvMH9tAusKDUw==} 784 | cpu: [x64] 785 | os: [linux] 786 | requiresBuild: true 787 | dev: true 788 | optional: true 789 | 790 | /@rollup/rollup-win32-arm64-msvc@4.12.0: 791 | resolution: {integrity: sha512-JPDxovheWNp6d7AHCgsUlkuCKvtu3RB55iNEkaQcf0ttsDU/JZF+iQnYcQJSk/7PtT4mjjVG8N1kpwnI9SLYaw==} 792 | cpu: [arm64] 793 | os: [win32] 794 | requiresBuild: true 795 | dev: true 796 | optional: true 797 | 798 | /@rollup/rollup-win32-ia32-msvc@4.12.0: 799 | resolution: {integrity: sha512-fjtuvMWRGJn1oZacG8IPnzIV6GF2/XG+h71FKn76OYFqySXInJtseAqdprVTDTyqPxQOG9Exak5/E9Z3+EJ8ZA==} 800 | cpu: [ia32] 801 | os: [win32] 802 | requiresBuild: true 803 | dev: true 804 | optional: true 805 | 806 | /@rollup/rollup-win32-x64-msvc@4.12.0: 807 | resolution: {integrity: sha512-ZYmr5mS2wd4Dew/JjT0Fqi2NPB/ZhZ2VvPp7SmvPZb4Y1CG/LRcS6tcRo2cYU7zLK5A7cdbhWnnWmUjoI4qapg==} 808 | cpu: [x64] 809 | os: [win32] 810 | requiresBuild: true 811 | dev: true 812 | optional: true 813 | 814 | /@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.2.5): 815 | resolution: {integrity: sha512-r3n0onD3BTOVUNPhR4lhVK4/pABGpbA7bW3eumZnYdKaHkf1qEC+Mag6DPbGNuuh0eG8AaYj+YqmVHSiGslaTQ==} 816 | peerDependencies: 817 | '@vue/compiler-sfc': 3.x 818 | prettier: 2.x - 3.x 819 | peerDependenciesMeta: 820 | '@vue/compiler-sfc': 821 | optional: true 822 | dependencies: 823 | '@babel/generator': 7.17.7 824 | '@babel/parser': 7.24.0 825 | '@babel/traverse': 7.23.2 826 | '@babel/types': 7.17.0 827 | javascript-natural-sort: 0.7.1 828 | lodash: 4.17.21 829 | prettier: 3.2.5 830 | transitivePeerDependencies: 831 | - supports-color 832 | dev: true 833 | 834 | /@types/babel__core@7.20.5: 835 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 836 | dependencies: 837 | '@babel/parser': 7.24.0 838 | '@babel/types': 7.24.0 839 | '@types/babel__generator': 7.6.8 840 | '@types/babel__template': 7.4.4 841 | '@types/babel__traverse': 7.20.5 842 | dev: true 843 | 844 | /@types/babel__generator@7.6.8: 845 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 846 | dependencies: 847 | '@babel/types': 7.24.0 848 | dev: true 849 | 850 | /@types/babel__template@7.4.4: 851 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 852 | dependencies: 853 | '@babel/parser': 7.24.0 854 | '@babel/types': 7.24.0 855 | dev: true 856 | 857 | /@types/babel__traverse@7.20.5: 858 | resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} 859 | dependencies: 860 | '@babel/types': 7.24.0 861 | dev: true 862 | 863 | /@types/estree@1.0.5: 864 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} 865 | dev: true 866 | 867 | /@types/js-cookie@2.2.7: 868 | resolution: {integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==} 869 | dev: false 870 | 871 | /@types/json-schema@7.0.15: 872 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 873 | dev: true 874 | 875 | /@types/prop-types@15.7.11: 876 | resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} 877 | dev: true 878 | 879 | /@types/react-dom@18.2.19: 880 | resolution: {integrity: sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==} 881 | dependencies: 882 | '@types/react': 18.2.61 883 | dev: true 884 | 885 | /@types/react@18.2.61: 886 | resolution: {integrity: sha512-NURTN0qNnJa7O/k4XUkEW2yfygA+NxS0V5h1+kp9jPwhzZy95q3ADoGMP0+JypMhrZBTTgjKAUlTctde1zzeQA==} 887 | dependencies: 888 | '@types/prop-types': 15.7.11 889 | '@types/scheduler': 0.16.8 890 | csstype: 3.1.3 891 | dev: true 892 | 893 | /@types/scheduler@0.16.8: 894 | resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} 895 | dev: true 896 | 897 | /@types/semver@7.5.8: 898 | resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 899 | dev: true 900 | 901 | /@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0)(eslint@8.57.0)(typescript@5.3.3): 902 | resolution: {integrity: sha512-j6vT/kCulhG5wBmGtstKeiVr1rdXE4nk+DT1k6trYkwlrvW9eOF5ZbgKnd/YR6PcM4uTEXa0h6Fcvf6X7Dxl0w==} 903 | engines: {node: ^16.0.0 || >=18.0.0} 904 | peerDependencies: 905 | '@typescript-eslint/parser': ^7.0.0 906 | eslint: ^8.56.0 907 | typescript: '*' 908 | peerDependenciesMeta: 909 | typescript: 910 | optional: true 911 | dependencies: 912 | '@eslint-community/regexpp': 4.10.0 913 | '@typescript-eslint/parser': 7.1.0(eslint@8.57.0)(typescript@5.3.3) 914 | '@typescript-eslint/scope-manager': 7.1.0 915 | '@typescript-eslint/type-utils': 7.1.0(eslint@8.57.0)(typescript@5.3.3) 916 | '@typescript-eslint/utils': 7.1.0(eslint@8.57.0)(typescript@5.3.3) 917 | '@typescript-eslint/visitor-keys': 7.1.0 918 | debug: 4.3.4 919 | eslint: 8.57.0 920 | graphemer: 1.4.0 921 | ignore: 5.3.1 922 | natural-compare: 1.4.0 923 | semver: 7.6.0 924 | ts-api-utils: 1.2.1(typescript@5.3.3) 925 | typescript: 5.3.3 926 | transitivePeerDependencies: 927 | - supports-color 928 | dev: true 929 | 930 | /@typescript-eslint/parser@7.1.0(eslint@8.57.0)(typescript@5.3.3): 931 | resolution: {integrity: sha512-V1EknKUubZ1gWFjiOZhDSNToOjs63/9O0puCgGS8aDOgpZY326fzFu15QAUjwaXzRZjf/qdsdBrckYdv9YxB8w==} 932 | engines: {node: ^16.0.0 || >=18.0.0} 933 | peerDependencies: 934 | eslint: ^8.56.0 935 | typescript: '*' 936 | peerDependenciesMeta: 937 | typescript: 938 | optional: true 939 | dependencies: 940 | '@typescript-eslint/scope-manager': 7.1.0 941 | '@typescript-eslint/types': 7.1.0 942 | '@typescript-eslint/typescript-estree': 7.1.0(typescript@5.3.3) 943 | '@typescript-eslint/visitor-keys': 7.1.0 944 | debug: 4.3.4 945 | eslint: 8.57.0 946 | typescript: 5.3.3 947 | transitivePeerDependencies: 948 | - supports-color 949 | dev: true 950 | 951 | /@typescript-eslint/scope-manager@7.1.0: 952 | resolution: {integrity: sha512-6TmN4OJiohHfoOdGZ3huuLhpiUgOGTpgXNUPJgeZOZR3DnIpdSgtt83RS35OYNNXxM4TScVlpVKC9jyQSETR1A==} 953 | engines: {node: ^16.0.0 || >=18.0.0} 954 | dependencies: 955 | '@typescript-eslint/types': 7.1.0 956 | '@typescript-eslint/visitor-keys': 7.1.0 957 | dev: true 958 | 959 | /@typescript-eslint/type-utils@7.1.0(eslint@8.57.0)(typescript@5.3.3): 960 | resolution: {integrity: sha512-UZIhv8G+5b5skkcuhgvxYWHjk7FW7/JP5lPASMEUoliAPwIH/rxoUSQPia2cuOj9AmDZmwUl1usKm85t5VUMew==} 961 | engines: {node: ^16.0.0 || >=18.0.0} 962 | peerDependencies: 963 | eslint: ^8.56.0 964 | typescript: '*' 965 | peerDependenciesMeta: 966 | typescript: 967 | optional: true 968 | dependencies: 969 | '@typescript-eslint/typescript-estree': 7.1.0(typescript@5.3.3) 970 | '@typescript-eslint/utils': 7.1.0(eslint@8.57.0)(typescript@5.3.3) 971 | debug: 4.3.4 972 | eslint: 8.57.0 973 | ts-api-utils: 1.2.1(typescript@5.3.3) 974 | typescript: 5.3.3 975 | transitivePeerDependencies: 976 | - supports-color 977 | dev: true 978 | 979 | /@typescript-eslint/types@7.1.0: 980 | resolution: {integrity: sha512-qTWjWieJ1tRJkxgZYXx6WUYtWlBc48YRxgY2JN1aGeVpkhmnopq+SUC8UEVGNXIvWH7XyuTjwALfG6bFEgCkQA==} 981 | engines: {node: ^16.0.0 || >=18.0.0} 982 | dev: true 983 | 984 | /@typescript-eslint/typescript-estree@7.1.0(typescript@5.3.3): 985 | resolution: {integrity: sha512-k7MyrbD6E463CBbSpcOnwa8oXRdHzH1WiVzOipK3L5KSML92ZKgUBrTlehdi7PEIMT8k0bQixHUGXggPAlKnOQ==} 986 | engines: {node: ^16.0.0 || >=18.0.0} 987 | peerDependencies: 988 | typescript: '*' 989 | peerDependenciesMeta: 990 | typescript: 991 | optional: true 992 | dependencies: 993 | '@typescript-eslint/types': 7.1.0 994 | '@typescript-eslint/visitor-keys': 7.1.0 995 | debug: 4.3.4 996 | globby: 11.1.0 997 | is-glob: 4.0.3 998 | minimatch: 9.0.3 999 | semver: 7.6.0 1000 | ts-api-utils: 1.2.1(typescript@5.3.3) 1001 | typescript: 5.3.3 1002 | transitivePeerDependencies: 1003 | - supports-color 1004 | dev: true 1005 | 1006 | /@typescript-eslint/utils@7.1.0(eslint@8.57.0)(typescript@5.3.3): 1007 | resolution: {integrity: sha512-WUFba6PZC5OCGEmbweGpnNJytJiLG7ZvDBJJoUcX4qZYf1mGZ97mO2Mps6O2efxJcJdRNpqweCistDbZMwIVHw==} 1008 | engines: {node: ^16.0.0 || >=18.0.0} 1009 | peerDependencies: 1010 | eslint: ^8.56.0 1011 | dependencies: 1012 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 1013 | '@types/json-schema': 7.0.15 1014 | '@types/semver': 7.5.8 1015 | '@typescript-eslint/scope-manager': 7.1.0 1016 | '@typescript-eslint/types': 7.1.0 1017 | '@typescript-eslint/typescript-estree': 7.1.0(typescript@5.3.3) 1018 | eslint: 8.57.0 1019 | semver: 7.6.0 1020 | transitivePeerDependencies: 1021 | - supports-color 1022 | - typescript 1023 | dev: true 1024 | 1025 | /@typescript-eslint/visitor-keys@7.1.0: 1026 | resolution: {integrity: sha512-FhUqNWluiGNzlvnDZiXad4mZRhtghdoKW6e98GoEOYSu5cND+E39rG5KwJMUzeENwm1ztYBRqof8wMLP+wNPIA==} 1027 | engines: {node: ^16.0.0 || >=18.0.0} 1028 | dependencies: 1029 | '@typescript-eslint/types': 7.1.0 1030 | eslint-visitor-keys: 3.4.3 1031 | dev: true 1032 | 1033 | /@ungap/structured-clone@1.2.0: 1034 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 1035 | dev: true 1036 | 1037 | /@vitejs/plugin-react@4.2.1(vite@5.1.4): 1038 | resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==} 1039 | engines: {node: ^14.18.0 || >=16.0.0} 1040 | peerDependencies: 1041 | vite: ^4.2.0 || ^5.0.0 1042 | dependencies: 1043 | '@babel/core': 7.24.0 1044 | '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.24.0) 1045 | '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.24.0) 1046 | '@types/babel__core': 7.20.5 1047 | react-refresh: 0.14.0 1048 | vite: 5.1.4 1049 | transitivePeerDependencies: 1050 | - supports-color 1051 | dev: true 1052 | 1053 | /@xobotyi/scrollbar-width@1.9.5: 1054 | resolution: {integrity: sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==} 1055 | dev: false 1056 | 1057 | /acorn-jsx@5.3.2(acorn@8.11.3): 1058 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1059 | peerDependencies: 1060 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1061 | dependencies: 1062 | acorn: 8.11.3 1063 | dev: true 1064 | 1065 | /acorn@8.11.3: 1066 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 1067 | engines: {node: '>=0.4.0'} 1068 | hasBin: true 1069 | dev: true 1070 | 1071 | /ajv@6.12.6: 1072 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1073 | dependencies: 1074 | fast-deep-equal: 3.1.3 1075 | fast-json-stable-stringify: 2.1.0 1076 | json-schema-traverse: 0.4.1 1077 | uri-js: 4.4.1 1078 | dev: true 1079 | 1080 | /ansi-regex@5.0.1: 1081 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1082 | engines: {node: '>=8'} 1083 | dev: true 1084 | 1085 | /ansi-regex@6.0.1: 1086 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 1087 | engines: {node: '>=12'} 1088 | dev: true 1089 | 1090 | /ansi-styles@3.2.1: 1091 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1092 | engines: {node: '>=4'} 1093 | dependencies: 1094 | color-convert: 1.9.3 1095 | dev: true 1096 | 1097 | /ansi-styles@4.3.0: 1098 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1099 | engines: {node: '>=8'} 1100 | dependencies: 1101 | color-convert: 2.0.1 1102 | dev: true 1103 | 1104 | /ansi-styles@6.2.1: 1105 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 1106 | engines: {node: '>=12'} 1107 | dev: true 1108 | 1109 | /any-promise@1.3.0: 1110 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 1111 | dev: true 1112 | 1113 | /anymatch@3.1.3: 1114 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1115 | engines: {node: '>= 8'} 1116 | dependencies: 1117 | normalize-path: 3.0.0 1118 | picomatch: 2.3.1 1119 | dev: true 1120 | 1121 | /arg@5.0.2: 1122 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 1123 | dev: true 1124 | 1125 | /argparse@2.0.1: 1126 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1127 | dev: true 1128 | 1129 | /array-buffer-byte-length@1.0.1: 1130 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 1131 | engines: {node: '>= 0.4'} 1132 | dependencies: 1133 | call-bind: 1.0.7 1134 | is-array-buffer: 3.0.4 1135 | dev: true 1136 | 1137 | /array-includes@3.1.7: 1138 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 1139 | engines: {node: '>= 0.4'} 1140 | dependencies: 1141 | call-bind: 1.0.7 1142 | define-properties: 1.2.1 1143 | es-abstract: 1.22.5 1144 | get-intrinsic: 1.2.4 1145 | is-string: 1.0.7 1146 | dev: true 1147 | 1148 | /array-union@2.1.0: 1149 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1150 | engines: {node: '>=8'} 1151 | dev: true 1152 | 1153 | /array.prototype.findlast@1.2.4: 1154 | resolution: {integrity: sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw==} 1155 | engines: {node: '>= 0.4'} 1156 | dependencies: 1157 | call-bind: 1.0.7 1158 | define-properties: 1.2.1 1159 | es-abstract: 1.22.5 1160 | es-errors: 1.3.0 1161 | es-shim-unscopables: 1.0.2 1162 | dev: true 1163 | 1164 | /array.prototype.flat@1.3.2: 1165 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 1166 | engines: {node: '>= 0.4'} 1167 | dependencies: 1168 | call-bind: 1.0.7 1169 | define-properties: 1.2.1 1170 | es-abstract: 1.22.5 1171 | es-shim-unscopables: 1.0.2 1172 | dev: true 1173 | 1174 | /array.prototype.flatmap@1.3.2: 1175 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 1176 | engines: {node: '>= 0.4'} 1177 | dependencies: 1178 | call-bind: 1.0.7 1179 | define-properties: 1.2.1 1180 | es-abstract: 1.22.5 1181 | es-shim-unscopables: 1.0.2 1182 | dev: true 1183 | 1184 | /array.prototype.toreversed@1.1.2: 1185 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} 1186 | dependencies: 1187 | call-bind: 1.0.7 1188 | define-properties: 1.2.1 1189 | es-abstract: 1.22.5 1190 | es-shim-unscopables: 1.0.2 1191 | dev: true 1192 | 1193 | /array.prototype.tosorted@1.1.3: 1194 | resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} 1195 | dependencies: 1196 | call-bind: 1.0.7 1197 | define-properties: 1.2.1 1198 | es-abstract: 1.22.5 1199 | es-errors: 1.3.0 1200 | es-shim-unscopables: 1.0.2 1201 | dev: true 1202 | 1203 | /arraybuffer.prototype.slice@1.0.3: 1204 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 1205 | engines: {node: '>= 0.4'} 1206 | dependencies: 1207 | array-buffer-byte-length: 1.0.1 1208 | call-bind: 1.0.7 1209 | define-properties: 1.2.1 1210 | es-abstract: 1.22.5 1211 | es-errors: 1.3.0 1212 | get-intrinsic: 1.2.4 1213 | is-array-buffer: 3.0.4 1214 | is-shared-array-buffer: 1.0.3 1215 | dev: true 1216 | 1217 | /asynciterator.prototype@1.0.0: 1218 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} 1219 | dependencies: 1220 | has-symbols: 1.0.3 1221 | dev: true 1222 | 1223 | /autoprefixer@10.4.18(postcss@8.4.35): 1224 | resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==} 1225 | engines: {node: ^10 || ^12 || >=14} 1226 | hasBin: true 1227 | peerDependencies: 1228 | postcss: ^8.1.0 1229 | dependencies: 1230 | browserslist: 4.23.0 1231 | caniuse-lite: 1.0.30001593 1232 | fraction.js: 4.3.7 1233 | normalize-range: 0.1.2 1234 | picocolors: 1.0.0 1235 | postcss: 8.4.35 1236 | postcss-value-parser: 4.2.0 1237 | dev: true 1238 | 1239 | /available-typed-arrays@1.0.7: 1240 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 1241 | engines: {node: '>= 0.4'} 1242 | dependencies: 1243 | possible-typed-array-names: 1.0.0 1244 | dev: true 1245 | 1246 | /balanced-match@1.0.2: 1247 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1248 | dev: true 1249 | 1250 | /binary-extensions@2.2.0: 1251 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 1252 | engines: {node: '>=8'} 1253 | dev: true 1254 | 1255 | /brace-expansion@1.1.11: 1256 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 1257 | dependencies: 1258 | balanced-match: 1.0.2 1259 | concat-map: 0.0.1 1260 | dev: true 1261 | 1262 | /brace-expansion@2.0.1: 1263 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 1264 | dependencies: 1265 | balanced-match: 1.0.2 1266 | dev: true 1267 | 1268 | /braces@3.0.2: 1269 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1270 | engines: {node: '>=8'} 1271 | dependencies: 1272 | fill-range: 7.0.1 1273 | dev: true 1274 | 1275 | /browserslist@4.23.0: 1276 | resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} 1277 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1278 | hasBin: true 1279 | dependencies: 1280 | caniuse-lite: 1.0.30001593 1281 | electron-to-chromium: 1.4.690 1282 | node-releases: 2.0.14 1283 | update-browserslist-db: 1.0.13(browserslist@4.23.0) 1284 | dev: true 1285 | 1286 | /call-bind@1.0.7: 1287 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 1288 | engines: {node: '>= 0.4'} 1289 | dependencies: 1290 | es-define-property: 1.0.0 1291 | es-errors: 1.3.0 1292 | function-bind: 1.1.2 1293 | get-intrinsic: 1.2.4 1294 | set-function-length: 1.2.1 1295 | dev: true 1296 | 1297 | /callsites@3.1.0: 1298 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 1299 | engines: {node: '>=6'} 1300 | dev: true 1301 | 1302 | /camelcase-css@2.0.1: 1303 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 1304 | engines: {node: '>= 6'} 1305 | dev: true 1306 | 1307 | /caniuse-lite@1.0.30001593: 1308 | resolution: {integrity: sha512-UWM1zlo3cZfkpBysd7AS+z+v007q9G1+fLTUU42rQnY6t2axoogPW/xol6T7juU5EUoOhML4WgBIdG+9yYqAjQ==} 1309 | dev: true 1310 | 1311 | /chalk@2.4.2: 1312 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 1313 | engines: {node: '>=4'} 1314 | dependencies: 1315 | ansi-styles: 3.2.1 1316 | escape-string-regexp: 1.0.5 1317 | supports-color: 5.5.0 1318 | dev: true 1319 | 1320 | /chalk@4.1.2: 1321 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 1322 | engines: {node: '>=10'} 1323 | dependencies: 1324 | ansi-styles: 4.3.0 1325 | supports-color: 7.2.0 1326 | dev: true 1327 | 1328 | /chokidar@3.6.0: 1329 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 1330 | engines: {node: '>= 8.10.0'} 1331 | dependencies: 1332 | anymatch: 3.1.3 1333 | braces: 3.0.2 1334 | glob-parent: 5.1.2 1335 | is-binary-path: 2.1.0 1336 | is-glob: 4.0.3 1337 | normalize-path: 3.0.0 1338 | readdirp: 3.6.0 1339 | optionalDependencies: 1340 | fsevents: 2.3.3 1341 | dev: true 1342 | 1343 | /color-convert@1.9.3: 1344 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 1345 | dependencies: 1346 | color-name: 1.1.3 1347 | dev: true 1348 | 1349 | /color-convert@2.0.1: 1350 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1351 | engines: {node: '>=7.0.0'} 1352 | dependencies: 1353 | color-name: 1.1.4 1354 | dev: true 1355 | 1356 | /color-name@1.1.3: 1357 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 1358 | dev: true 1359 | 1360 | /color-name@1.1.4: 1361 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1362 | dev: true 1363 | 1364 | /commander@4.1.1: 1365 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 1366 | engines: {node: '>= 6'} 1367 | dev: true 1368 | 1369 | /concat-map@0.0.1: 1370 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1371 | dev: true 1372 | 1373 | /convert-source-map@2.0.0: 1374 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 1375 | dev: true 1376 | 1377 | /copy-to-clipboard@3.3.3: 1378 | resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} 1379 | dependencies: 1380 | toggle-selection: 1.0.6 1381 | dev: false 1382 | 1383 | /cross-spawn@7.0.3: 1384 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 1385 | engines: {node: '>= 8'} 1386 | dependencies: 1387 | path-key: 3.1.1 1388 | shebang-command: 2.0.0 1389 | which: 2.0.2 1390 | dev: true 1391 | 1392 | /css-in-js-utils@3.1.0: 1393 | resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==} 1394 | dependencies: 1395 | hyphenate-style-name: 1.0.4 1396 | dev: false 1397 | 1398 | /css-tree@1.1.3: 1399 | resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} 1400 | engines: {node: '>=8.0.0'} 1401 | dependencies: 1402 | mdn-data: 2.0.14 1403 | source-map: 0.6.1 1404 | dev: false 1405 | 1406 | /cssesc@3.0.0: 1407 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1408 | engines: {node: '>=4'} 1409 | hasBin: true 1410 | dev: true 1411 | 1412 | /csstype@3.1.3: 1413 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 1414 | 1415 | /debug@4.3.4: 1416 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 1417 | engines: {node: '>=6.0'} 1418 | peerDependencies: 1419 | supports-color: '*' 1420 | peerDependenciesMeta: 1421 | supports-color: 1422 | optional: true 1423 | dependencies: 1424 | ms: 2.1.2 1425 | dev: true 1426 | 1427 | /deep-is@0.1.4: 1428 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1429 | dev: true 1430 | 1431 | /define-data-property@1.1.4: 1432 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 1433 | engines: {node: '>= 0.4'} 1434 | dependencies: 1435 | es-define-property: 1.0.0 1436 | es-errors: 1.3.0 1437 | gopd: 1.0.1 1438 | dev: true 1439 | 1440 | /define-properties@1.2.1: 1441 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 1442 | engines: {node: '>= 0.4'} 1443 | dependencies: 1444 | define-data-property: 1.1.4 1445 | has-property-descriptors: 1.0.2 1446 | object-keys: 1.1.1 1447 | dev: true 1448 | 1449 | /didyoumean@1.2.2: 1450 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 1451 | dev: true 1452 | 1453 | /dir-glob@3.0.1: 1454 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1455 | engines: {node: '>=8'} 1456 | dependencies: 1457 | path-type: 4.0.0 1458 | dev: true 1459 | 1460 | /dlv@1.1.3: 1461 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 1462 | dev: true 1463 | 1464 | /doctrine@2.1.0: 1465 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1466 | engines: {node: '>=0.10.0'} 1467 | dependencies: 1468 | esutils: 2.0.3 1469 | dev: true 1470 | 1471 | /doctrine@3.0.0: 1472 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1473 | engines: {node: '>=6.0.0'} 1474 | dependencies: 1475 | esutils: 2.0.3 1476 | dev: true 1477 | 1478 | /eastasianwidth@0.2.0: 1479 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1480 | dev: true 1481 | 1482 | /electron-to-chromium@1.4.690: 1483 | resolution: {integrity: sha512-+2OAGjUx68xElQhydpcbqH50hE8Vs2K6TkAeLhICYfndb67CVH0UsZaijmRUE3rHlIxU1u0jxwhgVe6fK3YANA==} 1484 | dev: true 1485 | 1486 | /emoji-regex@8.0.0: 1487 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1488 | dev: true 1489 | 1490 | /emoji-regex@9.2.2: 1491 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1492 | dev: true 1493 | 1494 | /error-stack-parser@2.1.4: 1495 | resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} 1496 | dependencies: 1497 | stackframe: 1.3.4 1498 | dev: false 1499 | 1500 | /es-abstract@1.22.5: 1501 | resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==} 1502 | engines: {node: '>= 0.4'} 1503 | dependencies: 1504 | array-buffer-byte-length: 1.0.1 1505 | arraybuffer.prototype.slice: 1.0.3 1506 | available-typed-arrays: 1.0.7 1507 | call-bind: 1.0.7 1508 | es-define-property: 1.0.0 1509 | es-errors: 1.3.0 1510 | es-set-tostringtag: 2.0.3 1511 | es-to-primitive: 1.2.1 1512 | function.prototype.name: 1.1.6 1513 | get-intrinsic: 1.2.4 1514 | get-symbol-description: 1.0.2 1515 | globalthis: 1.0.3 1516 | gopd: 1.0.1 1517 | has-property-descriptors: 1.0.2 1518 | has-proto: 1.0.3 1519 | has-symbols: 1.0.3 1520 | hasown: 2.0.1 1521 | internal-slot: 1.0.7 1522 | is-array-buffer: 3.0.4 1523 | is-callable: 1.2.7 1524 | is-negative-zero: 2.0.3 1525 | is-regex: 1.1.4 1526 | is-shared-array-buffer: 1.0.3 1527 | is-string: 1.0.7 1528 | is-typed-array: 1.1.13 1529 | is-weakref: 1.0.2 1530 | object-inspect: 1.13.1 1531 | object-keys: 1.1.1 1532 | object.assign: 4.1.5 1533 | regexp.prototype.flags: 1.5.2 1534 | safe-array-concat: 1.1.0 1535 | safe-regex-test: 1.0.3 1536 | string.prototype.trim: 1.2.8 1537 | string.prototype.trimend: 1.0.7 1538 | string.prototype.trimstart: 1.0.7 1539 | typed-array-buffer: 1.0.2 1540 | typed-array-byte-length: 1.0.1 1541 | typed-array-byte-offset: 1.0.2 1542 | typed-array-length: 1.0.5 1543 | unbox-primitive: 1.0.2 1544 | which-typed-array: 1.1.14 1545 | dev: true 1546 | 1547 | /es-define-property@1.0.0: 1548 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 1549 | engines: {node: '>= 0.4'} 1550 | dependencies: 1551 | get-intrinsic: 1.2.4 1552 | dev: true 1553 | 1554 | /es-errors@1.3.0: 1555 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 1556 | engines: {node: '>= 0.4'} 1557 | dev: true 1558 | 1559 | /es-iterator-helpers@1.0.17: 1560 | resolution: {integrity: sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==} 1561 | engines: {node: '>= 0.4'} 1562 | dependencies: 1563 | asynciterator.prototype: 1.0.0 1564 | call-bind: 1.0.7 1565 | define-properties: 1.2.1 1566 | es-abstract: 1.22.5 1567 | es-errors: 1.3.0 1568 | es-set-tostringtag: 2.0.3 1569 | function-bind: 1.1.2 1570 | get-intrinsic: 1.2.4 1571 | globalthis: 1.0.3 1572 | has-property-descriptors: 1.0.2 1573 | has-proto: 1.0.3 1574 | has-symbols: 1.0.3 1575 | internal-slot: 1.0.7 1576 | iterator.prototype: 1.1.2 1577 | safe-array-concat: 1.1.0 1578 | dev: true 1579 | 1580 | /es-set-tostringtag@2.0.3: 1581 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 1582 | engines: {node: '>= 0.4'} 1583 | dependencies: 1584 | get-intrinsic: 1.2.4 1585 | has-tostringtag: 1.0.2 1586 | hasown: 2.0.1 1587 | dev: true 1588 | 1589 | /es-shim-unscopables@1.0.2: 1590 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 1591 | dependencies: 1592 | hasown: 2.0.1 1593 | dev: true 1594 | 1595 | /es-to-primitive@1.2.1: 1596 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1597 | engines: {node: '>= 0.4'} 1598 | dependencies: 1599 | is-callable: 1.2.7 1600 | is-date-object: 1.0.5 1601 | is-symbol: 1.0.4 1602 | dev: true 1603 | 1604 | /esbuild@0.19.12: 1605 | resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} 1606 | engines: {node: '>=12'} 1607 | hasBin: true 1608 | requiresBuild: true 1609 | optionalDependencies: 1610 | '@esbuild/aix-ppc64': 0.19.12 1611 | '@esbuild/android-arm': 0.19.12 1612 | '@esbuild/android-arm64': 0.19.12 1613 | '@esbuild/android-x64': 0.19.12 1614 | '@esbuild/darwin-arm64': 0.19.12 1615 | '@esbuild/darwin-x64': 0.19.12 1616 | '@esbuild/freebsd-arm64': 0.19.12 1617 | '@esbuild/freebsd-x64': 0.19.12 1618 | '@esbuild/linux-arm': 0.19.12 1619 | '@esbuild/linux-arm64': 0.19.12 1620 | '@esbuild/linux-ia32': 0.19.12 1621 | '@esbuild/linux-loong64': 0.19.12 1622 | '@esbuild/linux-mips64el': 0.19.12 1623 | '@esbuild/linux-ppc64': 0.19.12 1624 | '@esbuild/linux-riscv64': 0.19.12 1625 | '@esbuild/linux-s390x': 0.19.12 1626 | '@esbuild/linux-x64': 0.19.12 1627 | '@esbuild/netbsd-x64': 0.19.12 1628 | '@esbuild/openbsd-x64': 0.19.12 1629 | '@esbuild/sunos-x64': 0.19.12 1630 | '@esbuild/win32-arm64': 0.19.12 1631 | '@esbuild/win32-ia32': 0.19.12 1632 | '@esbuild/win32-x64': 0.19.12 1633 | dev: true 1634 | 1635 | /escalade@3.1.2: 1636 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 1637 | engines: {node: '>=6'} 1638 | dev: true 1639 | 1640 | /escape-string-regexp@1.0.5: 1641 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1642 | engines: {node: '>=0.8.0'} 1643 | dev: true 1644 | 1645 | /escape-string-regexp@4.0.0: 1646 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1647 | engines: {node: '>=10'} 1648 | dev: true 1649 | 1650 | /eslint-plugin-prettier@5.1.3(eslint@8.57.0)(prettier@3.2.5): 1651 | resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==} 1652 | engines: {node: ^14.18.0 || >=16.0.0} 1653 | peerDependencies: 1654 | '@types/eslint': '>=8.0.0' 1655 | eslint: '>=8.0.0' 1656 | eslint-config-prettier: '*' 1657 | prettier: '>=3.0.0' 1658 | peerDependenciesMeta: 1659 | '@types/eslint': 1660 | optional: true 1661 | eslint-config-prettier: 1662 | optional: true 1663 | dependencies: 1664 | eslint: 8.57.0 1665 | prettier: 3.2.5 1666 | prettier-linter-helpers: 1.0.0 1667 | synckit: 0.8.8 1668 | dev: true 1669 | 1670 | /eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): 1671 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1672 | engines: {node: '>=10'} 1673 | peerDependencies: 1674 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1675 | dependencies: 1676 | eslint: 8.57.0 1677 | dev: true 1678 | 1679 | /eslint-plugin-react-refresh@0.4.5(eslint@8.57.0): 1680 | resolution: {integrity: sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==} 1681 | peerDependencies: 1682 | eslint: '>=7' 1683 | dependencies: 1684 | eslint: 8.57.0 1685 | dev: true 1686 | 1687 | /eslint-plugin-react@7.34.0(eslint@8.57.0): 1688 | resolution: {integrity: sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==} 1689 | engines: {node: '>=4'} 1690 | peerDependencies: 1691 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1692 | dependencies: 1693 | array-includes: 3.1.7 1694 | array.prototype.findlast: 1.2.4 1695 | array.prototype.flatmap: 1.3.2 1696 | array.prototype.toreversed: 1.1.2 1697 | array.prototype.tosorted: 1.1.3 1698 | doctrine: 2.1.0 1699 | es-iterator-helpers: 1.0.17 1700 | eslint: 8.57.0 1701 | estraverse: 5.3.0 1702 | jsx-ast-utils: 3.3.5 1703 | minimatch: 3.1.2 1704 | object.entries: 1.1.7 1705 | object.fromentries: 2.0.7 1706 | object.hasown: 1.1.3 1707 | object.values: 1.1.7 1708 | prop-types: 15.8.1 1709 | resolve: 2.0.0-next.5 1710 | semver: 6.3.1 1711 | string.prototype.matchall: 4.0.10 1712 | dev: true 1713 | 1714 | /eslint-scope@7.2.2: 1715 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1716 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1717 | dependencies: 1718 | esrecurse: 4.3.0 1719 | estraverse: 5.3.0 1720 | dev: true 1721 | 1722 | /eslint-visitor-keys@3.4.3: 1723 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1724 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1725 | dev: true 1726 | 1727 | /eslint@8.57.0: 1728 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 1729 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1730 | hasBin: true 1731 | dependencies: 1732 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 1733 | '@eslint-community/regexpp': 4.10.0 1734 | '@eslint/eslintrc': 2.1.4 1735 | '@eslint/js': 8.57.0 1736 | '@humanwhocodes/config-array': 0.11.14 1737 | '@humanwhocodes/module-importer': 1.0.1 1738 | '@nodelib/fs.walk': 1.2.8 1739 | '@ungap/structured-clone': 1.2.0 1740 | ajv: 6.12.6 1741 | chalk: 4.1.2 1742 | cross-spawn: 7.0.3 1743 | debug: 4.3.4 1744 | doctrine: 3.0.0 1745 | escape-string-regexp: 4.0.0 1746 | eslint-scope: 7.2.2 1747 | eslint-visitor-keys: 3.4.3 1748 | espree: 9.6.1 1749 | esquery: 1.5.0 1750 | esutils: 2.0.3 1751 | fast-deep-equal: 3.1.3 1752 | file-entry-cache: 6.0.1 1753 | find-up: 5.0.0 1754 | glob-parent: 6.0.2 1755 | globals: 13.24.0 1756 | graphemer: 1.4.0 1757 | ignore: 5.3.1 1758 | imurmurhash: 0.1.4 1759 | is-glob: 4.0.3 1760 | is-path-inside: 3.0.3 1761 | js-yaml: 4.1.0 1762 | json-stable-stringify-without-jsonify: 1.0.1 1763 | levn: 0.4.1 1764 | lodash.merge: 4.6.2 1765 | minimatch: 3.1.2 1766 | natural-compare: 1.4.0 1767 | optionator: 0.9.3 1768 | strip-ansi: 6.0.1 1769 | text-table: 0.2.0 1770 | transitivePeerDependencies: 1771 | - supports-color 1772 | dev: true 1773 | 1774 | /espree@9.6.1: 1775 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1776 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1777 | dependencies: 1778 | acorn: 8.11.3 1779 | acorn-jsx: 5.3.2(acorn@8.11.3) 1780 | eslint-visitor-keys: 3.4.3 1781 | dev: true 1782 | 1783 | /esquery@1.5.0: 1784 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1785 | engines: {node: '>=0.10'} 1786 | dependencies: 1787 | estraverse: 5.3.0 1788 | dev: true 1789 | 1790 | /esrecurse@4.3.0: 1791 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1792 | engines: {node: '>=4.0'} 1793 | dependencies: 1794 | estraverse: 5.3.0 1795 | dev: true 1796 | 1797 | /estraverse@5.3.0: 1798 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1799 | engines: {node: '>=4.0'} 1800 | dev: true 1801 | 1802 | /esutils@2.0.3: 1803 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1804 | engines: {node: '>=0.10.0'} 1805 | dev: true 1806 | 1807 | /fast-deep-equal@3.1.3: 1808 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1809 | 1810 | /fast-diff@1.3.0: 1811 | resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} 1812 | dev: true 1813 | 1814 | /fast-glob@3.3.2: 1815 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1816 | engines: {node: '>=8.6.0'} 1817 | dependencies: 1818 | '@nodelib/fs.stat': 2.0.5 1819 | '@nodelib/fs.walk': 1.2.8 1820 | glob-parent: 5.1.2 1821 | merge2: 1.4.1 1822 | micromatch: 4.0.5 1823 | dev: true 1824 | 1825 | /fast-json-stable-stringify@2.1.0: 1826 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1827 | dev: true 1828 | 1829 | /fast-levenshtein@2.0.6: 1830 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1831 | dev: true 1832 | 1833 | /fast-loops@1.1.3: 1834 | resolution: {integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==} 1835 | dev: false 1836 | 1837 | /fast-shallow-equal@1.0.0: 1838 | resolution: {integrity: sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==} 1839 | dev: false 1840 | 1841 | /fastest-stable-stringify@2.0.2: 1842 | resolution: {integrity: sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==} 1843 | dev: false 1844 | 1845 | /fastq@1.17.1: 1846 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1847 | dependencies: 1848 | reusify: 1.0.4 1849 | dev: true 1850 | 1851 | /file-entry-cache@6.0.1: 1852 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1853 | engines: {node: ^10.12.0 || >=12.0.0} 1854 | dependencies: 1855 | flat-cache: 3.2.0 1856 | dev: true 1857 | 1858 | /fill-range@7.0.1: 1859 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1860 | engines: {node: '>=8'} 1861 | dependencies: 1862 | to-regex-range: 5.0.1 1863 | dev: true 1864 | 1865 | /find-up@5.0.0: 1866 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1867 | engines: {node: '>=10'} 1868 | dependencies: 1869 | locate-path: 6.0.0 1870 | path-exists: 4.0.0 1871 | dev: true 1872 | 1873 | /flat-cache@3.2.0: 1874 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 1875 | engines: {node: ^10.12.0 || >=12.0.0} 1876 | dependencies: 1877 | flatted: 3.3.1 1878 | keyv: 4.5.4 1879 | rimraf: 3.0.2 1880 | dev: true 1881 | 1882 | /flatted@3.3.1: 1883 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 1884 | dev: true 1885 | 1886 | /for-each@0.3.3: 1887 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1888 | dependencies: 1889 | is-callable: 1.2.7 1890 | dev: true 1891 | 1892 | /foreground-child@3.1.1: 1893 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} 1894 | engines: {node: '>=14'} 1895 | dependencies: 1896 | cross-spawn: 7.0.3 1897 | signal-exit: 4.1.0 1898 | dev: true 1899 | 1900 | /fraction.js@4.3.7: 1901 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1902 | dev: true 1903 | 1904 | /framer-motion@11.0.8(react-dom@18.2.0)(react@18.2.0): 1905 | resolution: {integrity: sha512-1KSGNuqe1qZkS/SWQlDnqK2VCVzRVEoval379j0FiUBJAZoqgwyvqFkfvJbgW2IPFo4wX16K+M0k5jO23lCIjA==} 1906 | peerDependencies: 1907 | react: ^18.0.0 1908 | react-dom: ^18.0.0 1909 | peerDependenciesMeta: 1910 | react: 1911 | optional: true 1912 | react-dom: 1913 | optional: true 1914 | dependencies: 1915 | react: 18.2.0 1916 | react-dom: 18.2.0(react@18.2.0) 1917 | tslib: 2.6.2 1918 | optionalDependencies: 1919 | '@emotion/is-prop-valid': 0.8.8 1920 | dev: false 1921 | 1922 | /fs.realpath@1.0.0: 1923 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1924 | dev: true 1925 | 1926 | /fsevents@2.3.3: 1927 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1928 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1929 | os: [darwin] 1930 | requiresBuild: true 1931 | dev: true 1932 | optional: true 1933 | 1934 | /function-bind@1.1.2: 1935 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1936 | dev: true 1937 | 1938 | /function.prototype.name@1.1.6: 1939 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1940 | engines: {node: '>= 0.4'} 1941 | dependencies: 1942 | call-bind: 1.0.7 1943 | define-properties: 1.2.1 1944 | es-abstract: 1.22.5 1945 | functions-have-names: 1.2.3 1946 | dev: true 1947 | 1948 | /functions-have-names@1.2.3: 1949 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1950 | dev: true 1951 | 1952 | /gensync@1.0.0-beta.2: 1953 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1954 | engines: {node: '>=6.9.0'} 1955 | dev: true 1956 | 1957 | /get-intrinsic@1.2.4: 1958 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 1959 | engines: {node: '>= 0.4'} 1960 | dependencies: 1961 | es-errors: 1.3.0 1962 | function-bind: 1.1.2 1963 | has-proto: 1.0.3 1964 | has-symbols: 1.0.3 1965 | hasown: 2.0.1 1966 | dev: true 1967 | 1968 | /get-symbol-description@1.0.2: 1969 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 1970 | engines: {node: '>= 0.4'} 1971 | dependencies: 1972 | call-bind: 1.0.7 1973 | es-errors: 1.3.0 1974 | get-intrinsic: 1.2.4 1975 | dev: true 1976 | 1977 | /glob-parent@5.1.2: 1978 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1979 | engines: {node: '>= 6'} 1980 | dependencies: 1981 | is-glob: 4.0.3 1982 | dev: true 1983 | 1984 | /glob-parent@6.0.2: 1985 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1986 | engines: {node: '>=10.13.0'} 1987 | dependencies: 1988 | is-glob: 4.0.3 1989 | dev: true 1990 | 1991 | /glob@10.3.10: 1992 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 1993 | engines: {node: '>=16 || 14 >=14.17'} 1994 | hasBin: true 1995 | dependencies: 1996 | foreground-child: 3.1.1 1997 | jackspeak: 2.3.6 1998 | minimatch: 9.0.3 1999 | minipass: 7.0.4 2000 | path-scurry: 1.10.1 2001 | dev: true 2002 | 2003 | /glob@7.2.3: 2004 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 2005 | dependencies: 2006 | fs.realpath: 1.0.0 2007 | inflight: 1.0.6 2008 | inherits: 2.0.4 2009 | minimatch: 3.1.2 2010 | once: 1.4.0 2011 | path-is-absolute: 1.0.1 2012 | dev: true 2013 | 2014 | /globals@11.12.0: 2015 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 2016 | engines: {node: '>=4'} 2017 | dev: true 2018 | 2019 | /globals@13.24.0: 2020 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 2021 | engines: {node: '>=8'} 2022 | dependencies: 2023 | type-fest: 0.20.2 2024 | dev: true 2025 | 2026 | /globalthis@1.0.3: 2027 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 2028 | engines: {node: '>= 0.4'} 2029 | dependencies: 2030 | define-properties: 1.2.1 2031 | dev: true 2032 | 2033 | /globby@11.1.0: 2034 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 2035 | engines: {node: '>=10'} 2036 | dependencies: 2037 | array-union: 2.1.0 2038 | dir-glob: 3.0.1 2039 | fast-glob: 3.3.2 2040 | ignore: 5.3.1 2041 | merge2: 1.4.1 2042 | slash: 3.0.0 2043 | dev: true 2044 | 2045 | /gopd@1.0.1: 2046 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 2047 | dependencies: 2048 | get-intrinsic: 1.2.4 2049 | dev: true 2050 | 2051 | /graphemer@1.4.0: 2052 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 2053 | dev: true 2054 | 2055 | /has-bigints@1.0.2: 2056 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 2057 | dev: true 2058 | 2059 | /has-flag@3.0.0: 2060 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 2061 | engines: {node: '>=4'} 2062 | dev: true 2063 | 2064 | /has-flag@4.0.0: 2065 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2066 | engines: {node: '>=8'} 2067 | dev: true 2068 | 2069 | /has-property-descriptors@1.0.2: 2070 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 2071 | dependencies: 2072 | es-define-property: 1.0.0 2073 | dev: true 2074 | 2075 | /has-proto@1.0.3: 2076 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 2077 | engines: {node: '>= 0.4'} 2078 | dev: true 2079 | 2080 | /has-symbols@1.0.3: 2081 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 2082 | engines: {node: '>= 0.4'} 2083 | dev: true 2084 | 2085 | /has-tostringtag@1.0.2: 2086 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 2087 | engines: {node: '>= 0.4'} 2088 | dependencies: 2089 | has-symbols: 1.0.3 2090 | dev: true 2091 | 2092 | /hasown@2.0.1: 2093 | resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} 2094 | engines: {node: '>= 0.4'} 2095 | dependencies: 2096 | function-bind: 1.1.2 2097 | dev: true 2098 | 2099 | /hyphenate-style-name@1.0.4: 2100 | resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} 2101 | dev: false 2102 | 2103 | /ignore@5.3.1: 2104 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 2105 | engines: {node: '>= 4'} 2106 | dev: true 2107 | 2108 | /import-fresh@3.3.0: 2109 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 2110 | engines: {node: '>=6'} 2111 | dependencies: 2112 | parent-module: 1.0.1 2113 | resolve-from: 4.0.0 2114 | dev: true 2115 | 2116 | /imurmurhash@0.1.4: 2117 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 2118 | engines: {node: '>=0.8.19'} 2119 | dev: true 2120 | 2121 | /inflight@1.0.6: 2122 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 2123 | dependencies: 2124 | once: 1.4.0 2125 | wrappy: 1.0.2 2126 | dev: true 2127 | 2128 | /inherits@2.0.4: 2129 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2130 | dev: true 2131 | 2132 | /inline-style-prefixer@7.0.0: 2133 | resolution: {integrity: sha512-I7GEdScunP1dQ6IM2mQWh6v0mOYdYmH3Bp31UecKdrcUgcURTcctSe1IECdUznSHKSmsHtjrT3CwCPI1pyxfUQ==} 2134 | dependencies: 2135 | css-in-js-utils: 3.1.0 2136 | fast-loops: 1.1.3 2137 | dev: false 2138 | 2139 | /internal-slot@1.0.7: 2140 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 2141 | engines: {node: '>= 0.4'} 2142 | dependencies: 2143 | es-errors: 1.3.0 2144 | hasown: 2.0.1 2145 | side-channel: 1.0.6 2146 | dev: true 2147 | 2148 | /is-array-buffer@3.0.4: 2149 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 2150 | engines: {node: '>= 0.4'} 2151 | dependencies: 2152 | call-bind: 1.0.7 2153 | get-intrinsic: 1.2.4 2154 | dev: true 2155 | 2156 | /is-async-function@2.0.0: 2157 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 2158 | engines: {node: '>= 0.4'} 2159 | dependencies: 2160 | has-tostringtag: 1.0.2 2161 | dev: true 2162 | 2163 | /is-bigint@1.0.4: 2164 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 2165 | dependencies: 2166 | has-bigints: 1.0.2 2167 | dev: true 2168 | 2169 | /is-binary-path@2.1.0: 2170 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2171 | engines: {node: '>=8'} 2172 | dependencies: 2173 | binary-extensions: 2.2.0 2174 | dev: true 2175 | 2176 | /is-boolean-object@1.1.2: 2177 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 2178 | engines: {node: '>= 0.4'} 2179 | dependencies: 2180 | call-bind: 1.0.7 2181 | has-tostringtag: 1.0.2 2182 | dev: true 2183 | 2184 | /is-callable@1.2.7: 2185 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 2186 | engines: {node: '>= 0.4'} 2187 | dev: true 2188 | 2189 | /is-core-module@2.13.1: 2190 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 2191 | dependencies: 2192 | hasown: 2.0.1 2193 | dev: true 2194 | 2195 | /is-date-object@1.0.5: 2196 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 2197 | engines: {node: '>= 0.4'} 2198 | dependencies: 2199 | has-tostringtag: 1.0.2 2200 | dev: true 2201 | 2202 | /is-extglob@2.1.1: 2203 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2204 | engines: {node: '>=0.10.0'} 2205 | dev: true 2206 | 2207 | /is-finalizationregistry@1.0.2: 2208 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 2209 | dependencies: 2210 | call-bind: 1.0.7 2211 | dev: true 2212 | 2213 | /is-fullwidth-code-point@3.0.0: 2214 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2215 | engines: {node: '>=8'} 2216 | dev: true 2217 | 2218 | /is-generator-function@1.0.10: 2219 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 2220 | engines: {node: '>= 0.4'} 2221 | dependencies: 2222 | has-tostringtag: 1.0.2 2223 | dev: true 2224 | 2225 | /is-glob@4.0.3: 2226 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2227 | engines: {node: '>=0.10.0'} 2228 | dependencies: 2229 | is-extglob: 2.1.1 2230 | dev: true 2231 | 2232 | /is-map@2.0.2: 2233 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 2234 | dev: true 2235 | 2236 | /is-negative-zero@2.0.3: 2237 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 2238 | engines: {node: '>= 0.4'} 2239 | dev: true 2240 | 2241 | /is-number-object@1.0.7: 2242 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 2243 | engines: {node: '>= 0.4'} 2244 | dependencies: 2245 | has-tostringtag: 1.0.2 2246 | dev: true 2247 | 2248 | /is-number@7.0.0: 2249 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2250 | engines: {node: '>=0.12.0'} 2251 | dev: true 2252 | 2253 | /is-path-inside@3.0.3: 2254 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2255 | engines: {node: '>=8'} 2256 | dev: true 2257 | 2258 | /is-regex@1.1.4: 2259 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 2260 | engines: {node: '>= 0.4'} 2261 | dependencies: 2262 | call-bind: 1.0.7 2263 | has-tostringtag: 1.0.2 2264 | dev: true 2265 | 2266 | /is-set@2.0.2: 2267 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 2268 | dev: true 2269 | 2270 | /is-shared-array-buffer@1.0.3: 2271 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 2272 | engines: {node: '>= 0.4'} 2273 | dependencies: 2274 | call-bind: 1.0.7 2275 | dev: true 2276 | 2277 | /is-string@1.0.7: 2278 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 2279 | engines: {node: '>= 0.4'} 2280 | dependencies: 2281 | has-tostringtag: 1.0.2 2282 | dev: true 2283 | 2284 | /is-symbol@1.0.4: 2285 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 2286 | engines: {node: '>= 0.4'} 2287 | dependencies: 2288 | has-symbols: 1.0.3 2289 | dev: true 2290 | 2291 | /is-typed-array@1.1.13: 2292 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 2293 | engines: {node: '>= 0.4'} 2294 | dependencies: 2295 | which-typed-array: 1.1.14 2296 | dev: true 2297 | 2298 | /is-weakmap@2.0.1: 2299 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 2300 | dev: true 2301 | 2302 | /is-weakref@1.0.2: 2303 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 2304 | dependencies: 2305 | call-bind: 1.0.7 2306 | dev: true 2307 | 2308 | /is-weakset@2.0.2: 2309 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 2310 | dependencies: 2311 | call-bind: 1.0.7 2312 | get-intrinsic: 1.2.4 2313 | dev: true 2314 | 2315 | /isarray@2.0.5: 2316 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 2317 | dev: true 2318 | 2319 | /isexe@2.0.0: 2320 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2321 | dev: true 2322 | 2323 | /iterator.prototype@1.1.2: 2324 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 2325 | dependencies: 2326 | define-properties: 1.2.1 2327 | get-intrinsic: 1.2.4 2328 | has-symbols: 1.0.3 2329 | reflect.getprototypeof: 1.0.5 2330 | set-function-name: 2.0.2 2331 | dev: true 2332 | 2333 | /jackspeak@2.3.6: 2334 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 2335 | engines: {node: '>=14'} 2336 | dependencies: 2337 | '@isaacs/cliui': 8.0.2 2338 | optionalDependencies: 2339 | '@pkgjs/parseargs': 0.11.0 2340 | dev: true 2341 | 2342 | /javascript-natural-sort@0.7.1: 2343 | resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==} 2344 | dev: true 2345 | 2346 | /jiti@1.21.0: 2347 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 2348 | hasBin: true 2349 | dev: true 2350 | 2351 | /js-cookie@2.2.1: 2352 | resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==} 2353 | dev: false 2354 | 2355 | /js-tokens@4.0.0: 2356 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2357 | 2358 | /js-yaml@4.1.0: 2359 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2360 | hasBin: true 2361 | dependencies: 2362 | argparse: 2.0.1 2363 | dev: true 2364 | 2365 | /jsesc@2.5.2: 2366 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 2367 | engines: {node: '>=4'} 2368 | hasBin: true 2369 | dev: true 2370 | 2371 | /json-buffer@3.0.1: 2372 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 2373 | dev: true 2374 | 2375 | /json-schema-traverse@0.4.1: 2376 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2377 | dev: true 2378 | 2379 | /json-stable-stringify-without-jsonify@1.0.1: 2380 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 2381 | dev: true 2382 | 2383 | /json5@2.2.3: 2384 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2385 | engines: {node: '>=6'} 2386 | hasBin: true 2387 | dev: true 2388 | 2389 | /jsx-ast-utils@3.3.5: 2390 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 2391 | engines: {node: '>=4.0'} 2392 | dependencies: 2393 | array-includes: 3.1.7 2394 | array.prototype.flat: 1.3.2 2395 | object.assign: 4.1.5 2396 | object.values: 1.1.7 2397 | dev: true 2398 | 2399 | /keyv@4.5.4: 2400 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 2401 | dependencies: 2402 | json-buffer: 3.0.1 2403 | dev: true 2404 | 2405 | /levn@0.4.1: 2406 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2407 | engines: {node: '>= 0.8.0'} 2408 | dependencies: 2409 | prelude-ls: 1.2.1 2410 | type-check: 0.4.0 2411 | dev: true 2412 | 2413 | /lilconfig@2.1.0: 2414 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 2415 | engines: {node: '>=10'} 2416 | dev: true 2417 | 2418 | /lilconfig@3.1.1: 2419 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} 2420 | engines: {node: '>=14'} 2421 | dev: true 2422 | 2423 | /lines-and-columns@1.2.4: 2424 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2425 | dev: true 2426 | 2427 | /locate-path@6.0.0: 2428 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2429 | engines: {node: '>=10'} 2430 | dependencies: 2431 | p-locate: 5.0.0 2432 | dev: true 2433 | 2434 | /lodash.merge@4.6.2: 2435 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2436 | dev: true 2437 | 2438 | /lodash@4.17.21: 2439 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2440 | dev: true 2441 | 2442 | /loose-envify@1.4.0: 2443 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2444 | hasBin: true 2445 | dependencies: 2446 | js-tokens: 4.0.0 2447 | 2448 | /lru-cache@10.2.0: 2449 | resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} 2450 | engines: {node: 14 || >=16.14} 2451 | dev: true 2452 | 2453 | /lru-cache@5.1.1: 2454 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 2455 | dependencies: 2456 | yallist: 3.1.1 2457 | dev: true 2458 | 2459 | /lru-cache@6.0.0: 2460 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2461 | engines: {node: '>=10'} 2462 | dependencies: 2463 | yallist: 4.0.0 2464 | dev: true 2465 | 2466 | /mdn-data@2.0.14: 2467 | resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} 2468 | dev: false 2469 | 2470 | /merge2@1.4.1: 2471 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2472 | engines: {node: '>= 8'} 2473 | dev: true 2474 | 2475 | /micromatch@4.0.5: 2476 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2477 | engines: {node: '>=8.6'} 2478 | dependencies: 2479 | braces: 3.0.2 2480 | picomatch: 2.3.1 2481 | dev: true 2482 | 2483 | /minimatch@3.1.2: 2484 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2485 | dependencies: 2486 | brace-expansion: 1.1.11 2487 | dev: true 2488 | 2489 | /minimatch@9.0.3: 2490 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 2491 | engines: {node: '>=16 || 14 >=14.17'} 2492 | dependencies: 2493 | brace-expansion: 2.0.1 2494 | dev: true 2495 | 2496 | /minipass@7.0.4: 2497 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} 2498 | engines: {node: '>=16 || 14 >=14.17'} 2499 | dev: true 2500 | 2501 | /ms@2.1.2: 2502 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2503 | dev: true 2504 | 2505 | /mz@2.7.0: 2506 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 2507 | dependencies: 2508 | any-promise: 1.3.0 2509 | object-assign: 4.1.1 2510 | thenify-all: 1.6.0 2511 | dev: true 2512 | 2513 | /nano-css@5.6.1(react-dom@18.2.0)(react@18.2.0): 2514 | resolution: {integrity: sha512-T2Mhc//CepkTa3X4pUhKgbEheJHYAxD0VptuqFhDbGMUWVV2m+lkNiW/Ieuj35wrfC8Zm0l7HvssQh7zcEttSw==} 2515 | peerDependencies: 2516 | react: '*' 2517 | react-dom: '*' 2518 | dependencies: 2519 | '@jridgewell/sourcemap-codec': 1.4.15 2520 | css-tree: 1.1.3 2521 | csstype: 3.1.3 2522 | fastest-stable-stringify: 2.0.2 2523 | inline-style-prefixer: 7.0.0 2524 | react: 18.2.0 2525 | react-dom: 18.2.0(react@18.2.0) 2526 | rtl-css-js: 1.16.1 2527 | stacktrace-js: 2.0.2 2528 | stylis: 4.3.1 2529 | dev: false 2530 | 2531 | /nanoid@3.3.7: 2532 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 2533 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2534 | hasBin: true 2535 | dev: true 2536 | 2537 | /natural-compare@1.4.0: 2538 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2539 | dev: true 2540 | 2541 | /node-releases@2.0.14: 2542 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 2543 | dev: true 2544 | 2545 | /normalize-path@3.0.0: 2546 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2547 | engines: {node: '>=0.10.0'} 2548 | dev: true 2549 | 2550 | /normalize-range@0.1.2: 2551 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 2552 | engines: {node: '>=0.10.0'} 2553 | dev: true 2554 | 2555 | /object-assign@4.1.1: 2556 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2557 | engines: {node: '>=0.10.0'} 2558 | dev: true 2559 | 2560 | /object-hash@3.0.0: 2561 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 2562 | engines: {node: '>= 6'} 2563 | dev: true 2564 | 2565 | /object-inspect@1.13.1: 2566 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 2567 | dev: true 2568 | 2569 | /object-keys@1.1.1: 2570 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2571 | engines: {node: '>= 0.4'} 2572 | dev: true 2573 | 2574 | /object.assign@4.1.5: 2575 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 2576 | engines: {node: '>= 0.4'} 2577 | dependencies: 2578 | call-bind: 1.0.7 2579 | define-properties: 1.2.1 2580 | has-symbols: 1.0.3 2581 | object-keys: 1.1.1 2582 | dev: true 2583 | 2584 | /object.entries@1.1.7: 2585 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} 2586 | engines: {node: '>= 0.4'} 2587 | dependencies: 2588 | call-bind: 1.0.7 2589 | define-properties: 1.2.1 2590 | es-abstract: 1.22.5 2591 | dev: true 2592 | 2593 | /object.fromentries@2.0.7: 2594 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 2595 | engines: {node: '>= 0.4'} 2596 | dependencies: 2597 | call-bind: 1.0.7 2598 | define-properties: 1.2.1 2599 | es-abstract: 1.22.5 2600 | dev: true 2601 | 2602 | /object.hasown@1.1.3: 2603 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} 2604 | dependencies: 2605 | define-properties: 1.2.1 2606 | es-abstract: 1.22.5 2607 | dev: true 2608 | 2609 | /object.values@1.1.7: 2610 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 2611 | engines: {node: '>= 0.4'} 2612 | dependencies: 2613 | call-bind: 1.0.7 2614 | define-properties: 1.2.1 2615 | es-abstract: 1.22.5 2616 | dev: true 2617 | 2618 | /once@1.4.0: 2619 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2620 | dependencies: 2621 | wrappy: 1.0.2 2622 | dev: true 2623 | 2624 | /optionator@0.9.3: 2625 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2626 | engines: {node: '>= 0.8.0'} 2627 | dependencies: 2628 | '@aashutoshrathi/word-wrap': 1.2.6 2629 | deep-is: 0.1.4 2630 | fast-levenshtein: 2.0.6 2631 | levn: 0.4.1 2632 | prelude-ls: 1.2.1 2633 | type-check: 0.4.0 2634 | dev: true 2635 | 2636 | /p-limit@3.1.0: 2637 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2638 | engines: {node: '>=10'} 2639 | dependencies: 2640 | yocto-queue: 0.1.0 2641 | dev: true 2642 | 2643 | /p-locate@5.0.0: 2644 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2645 | engines: {node: '>=10'} 2646 | dependencies: 2647 | p-limit: 3.1.0 2648 | dev: true 2649 | 2650 | /parent-module@1.0.1: 2651 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2652 | engines: {node: '>=6'} 2653 | dependencies: 2654 | callsites: 3.1.0 2655 | dev: true 2656 | 2657 | /path-exists@4.0.0: 2658 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2659 | engines: {node: '>=8'} 2660 | dev: true 2661 | 2662 | /path-is-absolute@1.0.1: 2663 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2664 | engines: {node: '>=0.10.0'} 2665 | dev: true 2666 | 2667 | /path-key@3.1.1: 2668 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2669 | engines: {node: '>=8'} 2670 | dev: true 2671 | 2672 | /path-parse@1.0.7: 2673 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2674 | dev: true 2675 | 2676 | /path-scurry@1.10.1: 2677 | resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} 2678 | engines: {node: '>=16 || 14 >=14.17'} 2679 | dependencies: 2680 | lru-cache: 10.2.0 2681 | minipass: 7.0.4 2682 | dev: true 2683 | 2684 | /path-type@4.0.0: 2685 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2686 | engines: {node: '>=8'} 2687 | dev: true 2688 | 2689 | /picocolors@1.0.0: 2690 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2691 | dev: true 2692 | 2693 | /picomatch@2.3.1: 2694 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2695 | engines: {node: '>=8.6'} 2696 | dev: true 2697 | 2698 | /pify@2.3.0: 2699 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2700 | engines: {node: '>=0.10.0'} 2701 | dev: true 2702 | 2703 | /pirates@4.0.6: 2704 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 2705 | engines: {node: '>= 6'} 2706 | dev: true 2707 | 2708 | /possible-typed-array-names@1.0.0: 2709 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 2710 | engines: {node: '>= 0.4'} 2711 | dev: true 2712 | 2713 | /postcss-import@15.1.0(postcss@8.4.35): 2714 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 2715 | engines: {node: '>=14.0.0'} 2716 | peerDependencies: 2717 | postcss: ^8.0.0 2718 | dependencies: 2719 | postcss: 8.4.35 2720 | postcss-value-parser: 4.2.0 2721 | read-cache: 1.0.0 2722 | resolve: 1.22.8 2723 | dev: true 2724 | 2725 | /postcss-js@4.0.1(postcss@8.4.35): 2726 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2727 | engines: {node: ^12 || ^14 || >= 16} 2728 | peerDependencies: 2729 | postcss: ^8.4.21 2730 | dependencies: 2731 | camelcase-css: 2.0.1 2732 | postcss: 8.4.35 2733 | dev: true 2734 | 2735 | /postcss-load-config@4.0.2(postcss@8.4.35): 2736 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 2737 | engines: {node: '>= 14'} 2738 | peerDependencies: 2739 | postcss: '>=8.0.9' 2740 | ts-node: '>=9.0.0' 2741 | peerDependenciesMeta: 2742 | postcss: 2743 | optional: true 2744 | ts-node: 2745 | optional: true 2746 | dependencies: 2747 | lilconfig: 3.1.1 2748 | postcss: 8.4.35 2749 | yaml: 2.4.0 2750 | dev: true 2751 | 2752 | /postcss-nested@6.0.1(postcss@8.4.35): 2753 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 2754 | engines: {node: '>=12.0'} 2755 | peerDependencies: 2756 | postcss: ^8.2.14 2757 | dependencies: 2758 | postcss: 8.4.35 2759 | postcss-selector-parser: 6.0.15 2760 | dev: true 2761 | 2762 | /postcss-selector-parser@6.0.15: 2763 | resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} 2764 | engines: {node: '>=4'} 2765 | dependencies: 2766 | cssesc: 3.0.0 2767 | util-deprecate: 1.0.2 2768 | dev: true 2769 | 2770 | /postcss-value-parser@4.2.0: 2771 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2772 | dev: true 2773 | 2774 | /postcss@8.4.35: 2775 | resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} 2776 | engines: {node: ^10 || ^12 || >=14} 2777 | dependencies: 2778 | nanoid: 3.3.7 2779 | picocolors: 1.0.0 2780 | source-map-js: 1.0.2 2781 | dev: true 2782 | 2783 | /prelude-ls@1.2.1: 2784 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2785 | engines: {node: '>= 0.8.0'} 2786 | dev: true 2787 | 2788 | /prettier-linter-helpers@1.0.0: 2789 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} 2790 | engines: {node: '>=6.0.0'} 2791 | dependencies: 2792 | fast-diff: 1.3.0 2793 | dev: true 2794 | 2795 | /prettier-plugin-tailwindcss@0.5.11(@trivago/prettier-plugin-sort-imports@4.3.0)(prettier@3.2.5): 2796 | resolution: {integrity: sha512-AvI/DNyMctyyxGOjyePgi/gqj5hJYClZ1avtQvLlqMT3uDZkRbi4HhGUpok3DRzv9z7Lti85Kdj3s3/1CeNI0w==} 2797 | engines: {node: '>=14.21.3'} 2798 | peerDependencies: 2799 | '@ianvs/prettier-plugin-sort-imports': '*' 2800 | '@prettier/plugin-pug': '*' 2801 | '@shopify/prettier-plugin-liquid': '*' 2802 | '@trivago/prettier-plugin-sort-imports': '*' 2803 | prettier: ^3.0 2804 | prettier-plugin-astro: '*' 2805 | prettier-plugin-css-order: '*' 2806 | prettier-plugin-import-sort: '*' 2807 | prettier-plugin-jsdoc: '*' 2808 | prettier-plugin-marko: '*' 2809 | prettier-plugin-organize-attributes: '*' 2810 | prettier-plugin-organize-imports: '*' 2811 | prettier-plugin-style-order: '*' 2812 | prettier-plugin-svelte: '*' 2813 | prettier-plugin-twig-melody: '*' 2814 | peerDependenciesMeta: 2815 | '@ianvs/prettier-plugin-sort-imports': 2816 | optional: true 2817 | '@prettier/plugin-pug': 2818 | optional: true 2819 | '@shopify/prettier-plugin-liquid': 2820 | optional: true 2821 | '@trivago/prettier-plugin-sort-imports': 2822 | optional: true 2823 | prettier-plugin-astro: 2824 | optional: true 2825 | prettier-plugin-css-order: 2826 | optional: true 2827 | prettier-plugin-import-sort: 2828 | optional: true 2829 | prettier-plugin-jsdoc: 2830 | optional: true 2831 | prettier-plugin-marko: 2832 | optional: true 2833 | prettier-plugin-organize-attributes: 2834 | optional: true 2835 | prettier-plugin-organize-imports: 2836 | optional: true 2837 | prettier-plugin-style-order: 2838 | optional: true 2839 | prettier-plugin-svelte: 2840 | optional: true 2841 | prettier-plugin-twig-melody: 2842 | optional: true 2843 | dependencies: 2844 | '@trivago/prettier-plugin-sort-imports': 4.3.0(prettier@3.2.5) 2845 | prettier: 3.2.5 2846 | dev: true 2847 | 2848 | /prettier@3.2.5: 2849 | resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} 2850 | engines: {node: '>=14'} 2851 | hasBin: true 2852 | dev: true 2853 | 2854 | /prop-types@15.8.1: 2855 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2856 | dependencies: 2857 | loose-envify: 1.4.0 2858 | object-assign: 4.1.1 2859 | react-is: 16.13.1 2860 | dev: true 2861 | 2862 | /punycode@2.3.1: 2863 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2864 | engines: {node: '>=6'} 2865 | dev: true 2866 | 2867 | /queue-microtask@1.2.3: 2868 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2869 | dev: true 2870 | 2871 | /react-dom@18.2.0(react@18.2.0): 2872 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2873 | peerDependencies: 2874 | react: ^18.2.0 2875 | dependencies: 2876 | loose-envify: 1.4.0 2877 | react: 18.2.0 2878 | scheduler: 0.23.0 2879 | dev: false 2880 | 2881 | /react-is@16.13.1: 2882 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2883 | dev: true 2884 | 2885 | /react-refresh@0.14.0: 2886 | resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} 2887 | engines: {node: '>=0.10.0'} 2888 | dev: true 2889 | 2890 | /react-universal-interface@0.6.2(react@18.2.0)(tslib@2.6.2): 2891 | resolution: {integrity: sha512-dg8yXdcQmvgR13RIlZbTRQOoUrDciFVoSBZILwjE2LFISxZZ8loVJKAkuzswl5js8BHda79bIb2b84ehU8IjXw==} 2892 | peerDependencies: 2893 | react: '*' 2894 | tslib: '*' 2895 | dependencies: 2896 | react: 18.2.0 2897 | tslib: 2.6.2 2898 | dev: false 2899 | 2900 | /react-use@17.5.0(react-dom@18.2.0)(react@18.2.0): 2901 | resolution: {integrity: sha512-PbfwSPMwp/hoL847rLnm/qkjg3sTRCvn6YhUZiHaUa3FA6/aNoFX79ul5Xt70O1rK+9GxSVqkY0eTwMdsR/bWg==} 2902 | peerDependencies: 2903 | react: '*' 2904 | react-dom: '*' 2905 | dependencies: 2906 | '@types/js-cookie': 2.2.7 2907 | '@xobotyi/scrollbar-width': 1.9.5 2908 | copy-to-clipboard: 3.3.3 2909 | fast-deep-equal: 3.1.3 2910 | fast-shallow-equal: 1.0.0 2911 | js-cookie: 2.2.1 2912 | nano-css: 5.6.1(react-dom@18.2.0)(react@18.2.0) 2913 | react: 18.2.0 2914 | react-dom: 18.2.0(react@18.2.0) 2915 | react-universal-interface: 0.6.2(react@18.2.0)(tslib@2.6.2) 2916 | resize-observer-polyfill: 1.5.1 2917 | screenfull: 5.2.0 2918 | set-harmonic-interval: 1.0.1 2919 | throttle-debounce: 3.0.1 2920 | ts-easing: 0.2.0 2921 | tslib: 2.6.2 2922 | dev: false 2923 | 2924 | /react@18.2.0: 2925 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2926 | engines: {node: '>=0.10.0'} 2927 | dependencies: 2928 | loose-envify: 1.4.0 2929 | dev: false 2930 | 2931 | /read-cache@1.0.0: 2932 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2933 | dependencies: 2934 | pify: 2.3.0 2935 | dev: true 2936 | 2937 | /readdirp@3.6.0: 2938 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2939 | engines: {node: '>=8.10.0'} 2940 | dependencies: 2941 | picomatch: 2.3.1 2942 | dev: true 2943 | 2944 | /reflect.getprototypeof@1.0.5: 2945 | resolution: {integrity: sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==} 2946 | engines: {node: '>= 0.4'} 2947 | dependencies: 2948 | call-bind: 1.0.7 2949 | define-properties: 1.2.1 2950 | es-abstract: 1.22.5 2951 | es-errors: 1.3.0 2952 | get-intrinsic: 1.2.4 2953 | globalthis: 1.0.3 2954 | which-builtin-type: 1.1.3 2955 | dev: true 2956 | 2957 | /regenerator-runtime@0.14.1: 2958 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 2959 | dev: false 2960 | 2961 | /regexp.prototype.flags@1.5.2: 2962 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 2963 | engines: {node: '>= 0.4'} 2964 | dependencies: 2965 | call-bind: 1.0.7 2966 | define-properties: 1.2.1 2967 | es-errors: 1.3.0 2968 | set-function-name: 2.0.2 2969 | dev: true 2970 | 2971 | /resize-observer-polyfill@1.5.1: 2972 | resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} 2973 | dev: false 2974 | 2975 | /resolve-from@4.0.0: 2976 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2977 | engines: {node: '>=4'} 2978 | dev: true 2979 | 2980 | /resolve@1.22.8: 2981 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2982 | hasBin: true 2983 | dependencies: 2984 | is-core-module: 2.13.1 2985 | path-parse: 1.0.7 2986 | supports-preserve-symlinks-flag: 1.0.0 2987 | dev: true 2988 | 2989 | /resolve@2.0.0-next.5: 2990 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 2991 | hasBin: true 2992 | dependencies: 2993 | is-core-module: 2.13.1 2994 | path-parse: 1.0.7 2995 | supports-preserve-symlinks-flag: 1.0.0 2996 | dev: true 2997 | 2998 | /reusify@1.0.4: 2999 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 3000 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3001 | dev: true 3002 | 3003 | /rimraf@3.0.2: 3004 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 3005 | hasBin: true 3006 | dependencies: 3007 | glob: 7.2.3 3008 | dev: true 3009 | 3010 | /rollup@4.12.0: 3011 | resolution: {integrity: sha512-wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q==} 3012 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3013 | hasBin: true 3014 | dependencies: 3015 | '@types/estree': 1.0.5 3016 | optionalDependencies: 3017 | '@rollup/rollup-android-arm-eabi': 4.12.0 3018 | '@rollup/rollup-android-arm64': 4.12.0 3019 | '@rollup/rollup-darwin-arm64': 4.12.0 3020 | '@rollup/rollup-darwin-x64': 4.12.0 3021 | '@rollup/rollup-linux-arm-gnueabihf': 4.12.0 3022 | '@rollup/rollup-linux-arm64-gnu': 4.12.0 3023 | '@rollup/rollup-linux-arm64-musl': 4.12.0 3024 | '@rollup/rollup-linux-riscv64-gnu': 4.12.0 3025 | '@rollup/rollup-linux-x64-gnu': 4.12.0 3026 | '@rollup/rollup-linux-x64-musl': 4.12.0 3027 | '@rollup/rollup-win32-arm64-msvc': 4.12.0 3028 | '@rollup/rollup-win32-ia32-msvc': 4.12.0 3029 | '@rollup/rollup-win32-x64-msvc': 4.12.0 3030 | fsevents: 2.3.3 3031 | dev: true 3032 | 3033 | /rtl-css-js@1.16.1: 3034 | resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==} 3035 | dependencies: 3036 | '@babel/runtime': 7.24.0 3037 | dev: false 3038 | 3039 | /run-parallel@1.2.0: 3040 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3041 | dependencies: 3042 | queue-microtask: 1.2.3 3043 | dev: true 3044 | 3045 | /safe-array-concat@1.1.0: 3046 | resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} 3047 | engines: {node: '>=0.4'} 3048 | dependencies: 3049 | call-bind: 1.0.7 3050 | get-intrinsic: 1.2.4 3051 | has-symbols: 1.0.3 3052 | isarray: 2.0.5 3053 | dev: true 3054 | 3055 | /safe-regex-test@1.0.3: 3056 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 3057 | engines: {node: '>= 0.4'} 3058 | dependencies: 3059 | call-bind: 1.0.7 3060 | es-errors: 1.3.0 3061 | is-regex: 1.1.4 3062 | dev: true 3063 | 3064 | /scheduler@0.23.0: 3065 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 3066 | dependencies: 3067 | loose-envify: 1.4.0 3068 | dev: false 3069 | 3070 | /screenfull@5.2.0: 3071 | resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==} 3072 | engines: {node: '>=0.10.0'} 3073 | dev: false 3074 | 3075 | /semver@6.3.1: 3076 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 3077 | hasBin: true 3078 | dev: true 3079 | 3080 | /semver@7.6.0: 3081 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} 3082 | engines: {node: '>=10'} 3083 | hasBin: true 3084 | dependencies: 3085 | lru-cache: 6.0.0 3086 | dev: true 3087 | 3088 | /set-function-length@1.2.1: 3089 | resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} 3090 | engines: {node: '>= 0.4'} 3091 | dependencies: 3092 | define-data-property: 1.1.4 3093 | es-errors: 1.3.0 3094 | function-bind: 1.1.2 3095 | get-intrinsic: 1.2.4 3096 | gopd: 1.0.1 3097 | has-property-descriptors: 1.0.2 3098 | dev: true 3099 | 3100 | /set-function-name@2.0.2: 3101 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 3102 | engines: {node: '>= 0.4'} 3103 | dependencies: 3104 | define-data-property: 1.1.4 3105 | es-errors: 1.3.0 3106 | functions-have-names: 1.2.3 3107 | has-property-descriptors: 1.0.2 3108 | dev: true 3109 | 3110 | /set-harmonic-interval@1.0.1: 3111 | resolution: {integrity: sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==} 3112 | engines: {node: '>=6.9'} 3113 | dev: false 3114 | 3115 | /shebang-command@2.0.0: 3116 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3117 | engines: {node: '>=8'} 3118 | dependencies: 3119 | shebang-regex: 3.0.0 3120 | dev: true 3121 | 3122 | /shebang-regex@3.0.0: 3123 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3124 | engines: {node: '>=8'} 3125 | dev: true 3126 | 3127 | /side-channel@1.0.6: 3128 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 3129 | engines: {node: '>= 0.4'} 3130 | dependencies: 3131 | call-bind: 1.0.7 3132 | es-errors: 1.3.0 3133 | get-intrinsic: 1.2.4 3134 | object-inspect: 1.13.1 3135 | dev: true 3136 | 3137 | /signal-exit@4.1.0: 3138 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 3139 | engines: {node: '>=14'} 3140 | dev: true 3141 | 3142 | /slash@3.0.0: 3143 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 3144 | engines: {node: '>=8'} 3145 | dev: true 3146 | 3147 | /source-map-js@1.0.2: 3148 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 3149 | engines: {node: '>=0.10.0'} 3150 | dev: true 3151 | 3152 | /source-map@0.5.6: 3153 | resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} 3154 | engines: {node: '>=0.10.0'} 3155 | dev: false 3156 | 3157 | /source-map@0.5.7: 3158 | resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} 3159 | engines: {node: '>=0.10.0'} 3160 | dev: true 3161 | 3162 | /source-map@0.6.1: 3163 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 3164 | engines: {node: '>=0.10.0'} 3165 | dev: false 3166 | 3167 | /stack-generator@2.0.10: 3168 | resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} 3169 | dependencies: 3170 | stackframe: 1.3.4 3171 | dev: false 3172 | 3173 | /stackframe@1.3.4: 3174 | resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} 3175 | dev: false 3176 | 3177 | /stacktrace-gps@3.1.2: 3178 | resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==} 3179 | dependencies: 3180 | source-map: 0.5.6 3181 | stackframe: 1.3.4 3182 | dev: false 3183 | 3184 | /stacktrace-js@2.0.2: 3185 | resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==} 3186 | dependencies: 3187 | error-stack-parser: 2.1.4 3188 | stack-generator: 2.0.10 3189 | stacktrace-gps: 3.1.2 3190 | dev: false 3191 | 3192 | /string-width@4.2.3: 3193 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3194 | engines: {node: '>=8'} 3195 | dependencies: 3196 | emoji-regex: 8.0.0 3197 | is-fullwidth-code-point: 3.0.0 3198 | strip-ansi: 6.0.1 3199 | dev: true 3200 | 3201 | /string-width@5.1.2: 3202 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 3203 | engines: {node: '>=12'} 3204 | dependencies: 3205 | eastasianwidth: 0.2.0 3206 | emoji-regex: 9.2.2 3207 | strip-ansi: 7.1.0 3208 | dev: true 3209 | 3210 | /string.prototype.matchall@4.0.10: 3211 | resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} 3212 | dependencies: 3213 | call-bind: 1.0.7 3214 | define-properties: 1.2.1 3215 | es-abstract: 1.22.5 3216 | get-intrinsic: 1.2.4 3217 | has-symbols: 1.0.3 3218 | internal-slot: 1.0.7 3219 | regexp.prototype.flags: 1.5.2 3220 | set-function-name: 2.0.2 3221 | side-channel: 1.0.6 3222 | dev: true 3223 | 3224 | /string.prototype.trim@1.2.8: 3225 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 3226 | engines: {node: '>= 0.4'} 3227 | dependencies: 3228 | call-bind: 1.0.7 3229 | define-properties: 1.2.1 3230 | es-abstract: 1.22.5 3231 | dev: true 3232 | 3233 | /string.prototype.trimend@1.0.7: 3234 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 3235 | dependencies: 3236 | call-bind: 1.0.7 3237 | define-properties: 1.2.1 3238 | es-abstract: 1.22.5 3239 | dev: true 3240 | 3241 | /string.prototype.trimstart@1.0.7: 3242 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 3243 | dependencies: 3244 | call-bind: 1.0.7 3245 | define-properties: 1.2.1 3246 | es-abstract: 1.22.5 3247 | dev: true 3248 | 3249 | /strip-ansi@6.0.1: 3250 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3251 | engines: {node: '>=8'} 3252 | dependencies: 3253 | ansi-regex: 5.0.1 3254 | dev: true 3255 | 3256 | /strip-ansi@7.1.0: 3257 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 3258 | engines: {node: '>=12'} 3259 | dependencies: 3260 | ansi-regex: 6.0.1 3261 | dev: true 3262 | 3263 | /strip-json-comments@3.1.1: 3264 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3265 | engines: {node: '>=8'} 3266 | dev: true 3267 | 3268 | /stylis@4.3.1: 3269 | resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} 3270 | dev: false 3271 | 3272 | /sucrase@3.35.0: 3273 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 3274 | engines: {node: '>=16 || 14 >=14.17'} 3275 | hasBin: true 3276 | dependencies: 3277 | '@jridgewell/gen-mapping': 0.3.5 3278 | commander: 4.1.1 3279 | glob: 10.3.10 3280 | lines-and-columns: 1.2.4 3281 | mz: 2.7.0 3282 | pirates: 4.0.6 3283 | ts-interface-checker: 0.1.13 3284 | dev: true 3285 | 3286 | /supports-color@5.5.0: 3287 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 3288 | engines: {node: '>=4'} 3289 | dependencies: 3290 | has-flag: 3.0.0 3291 | dev: true 3292 | 3293 | /supports-color@7.2.0: 3294 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3295 | engines: {node: '>=8'} 3296 | dependencies: 3297 | has-flag: 4.0.0 3298 | dev: true 3299 | 3300 | /supports-preserve-symlinks-flag@1.0.0: 3301 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3302 | engines: {node: '>= 0.4'} 3303 | dev: true 3304 | 3305 | /synckit@0.8.8: 3306 | resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==} 3307 | engines: {node: ^14.18.0 || >=16.0.0} 3308 | dependencies: 3309 | '@pkgr/core': 0.1.1 3310 | tslib: 2.6.2 3311 | dev: true 3312 | 3313 | /tailwind-merge@2.2.1: 3314 | resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==} 3315 | dependencies: 3316 | '@babel/runtime': 7.24.0 3317 | dev: false 3318 | 3319 | /tailwindcss@3.4.1: 3320 | resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} 3321 | engines: {node: '>=14.0.0'} 3322 | hasBin: true 3323 | dependencies: 3324 | '@alloc/quick-lru': 5.2.0 3325 | arg: 5.0.2 3326 | chokidar: 3.6.0 3327 | didyoumean: 1.2.2 3328 | dlv: 1.1.3 3329 | fast-glob: 3.3.2 3330 | glob-parent: 6.0.2 3331 | is-glob: 4.0.3 3332 | jiti: 1.21.0 3333 | lilconfig: 2.1.0 3334 | micromatch: 4.0.5 3335 | normalize-path: 3.0.0 3336 | object-hash: 3.0.0 3337 | picocolors: 1.0.0 3338 | postcss: 8.4.35 3339 | postcss-import: 15.1.0(postcss@8.4.35) 3340 | postcss-js: 4.0.1(postcss@8.4.35) 3341 | postcss-load-config: 4.0.2(postcss@8.4.35) 3342 | postcss-nested: 6.0.1(postcss@8.4.35) 3343 | postcss-selector-parser: 6.0.15 3344 | resolve: 1.22.8 3345 | sucrase: 3.35.0 3346 | transitivePeerDependencies: 3347 | - ts-node 3348 | dev: true 3349 | 3350 | /text-table@0.2.0: 3351 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 3352 | dev: true 3353 | 3354 | /thenify-all@1.6.0: 3355 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 3356 | engines: {node: '>=0.8'} 3357 | dependencies: 3358 | thenify: 3.3.1 3359 | dev: true 3360 | 3361 | /thenify@3.3.1: 3362 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 3363 | dependencies: 3364 | any-promise: 1.3.0 3365 | dev: true 3366 | 3367 | /throttle-debounce@3.0.1: 3368 | resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} 3369 | engines: {node: '>=10'} 3370 | dev: false 3371 | 3372 | /to-fast-properties@2.0.0: 3373 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 3374 | engines: {node: '>=4'} 3375 | dev: true 3376 | 3377 | /to-regex-range@5.0.1: 3378 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3379 | engines: {node: '>=8.0'} 3380 | dependencies: 3381 | is-number: 7.0.0 3382 | dev: true 3383 | 3384 | /toggle-selection@1.0.6: 3385 | resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} 3386 | dev: false 3387 | 3388 | /ts-api-utils@1.2.1(typescript@5.3.3): 3389 | resolution: {integrity: sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==} 3390 | engines: {node: '>=16'} 3391 | peerDependencies: 3392 | typescript: '>=4.2.0' 3393 | dependencies: 3394 | typescript: 5.3.3 3395 | dev: true 3396 | 3397 | /ts-easing@0.2.0: 3398 | resolution: {integrity: sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==} 3399 | dev: false 3400 | 3401 | /ts-interface-checker@0.1.13: 3402 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 3403 | dev: true 3404 | 3405 | /tslib@2.6.2: 3406 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 3407 | 3408 | /type-check@0.4.0: 3409 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3410 | engines: {node: '>= 0.8.0'} 3411 | dependencies: 3412 | prelude-ls: 1.2.1 3413 | dev: true 3414 | 3415 | /type-fest@0.20.2: 3416 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3417 | engines: {node: '>=10'} 3418 | dev: true 3419 | 3420 | /typed-array-buffer@1.0.2: 3421 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 3422 | engines: {node: '>= 0.4'} 3423 | dependencies: 3424 | call-bind: 1.0.7 3425 | es-errors: 1.3.0 3426 | is-typed-array: 1.1.13 3427 | dev: true 3428 | 3429 | /typed-array-byte-length@1.0.1: 3430 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 3431 | engines: {node: '>= 0.4'} 3432 | dependencies: 3433 | call-bind: 1.0.7 3434 | for-each: 0.3.3 3435 | gopd: 1.0.1 3436 | has-proto: 1.0.3 3437 | is-typed-array: 1.1.13 3438 | dev: true 3439 | 3440 | /typed-array-byte-offset@1.0.2: 3441 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 3442 | engines: {node: '>= 0.4'} 3443 | dependencies: 3444 | available-typed-arrays: 1.0.7 3445 | call-bind: 1.0.7 3446 | for-each: 0.3.3 3447 | gopd: 1.0.1 3448 | has-proto: 1.0.3 3449 | is-typed-array: 1.1.13 3450 | dev: true 3451 | 3452 | /typed-array-length@1.0.5: 3453 | resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==} 3454 | engines: {node: '>= 0.4'} 3455 | dependencies: 3456 | call-bind: 1.0.7 3457 | for-each: 0.3.3 3458 | gopd: 1.0.1 3459 | has-proto: 1.0.3 3460 | is-typed-array: 1.1.13 3461 | possible-typed-array-names: 1.0.0 3462 | dev: true 3463 | 3464 | /typescript@5.3.3: 3465 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 3466 | engines: {node: '>=14.17'} 3467 | hasBin: true 3468 | dev: true 3469 | 3470 | /unbox-primitive@1.0.2: 3471 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 3472 | dependencies: 3473 | call-bind: 1.0.7 3474 | has-bigints: 1.0.2 3475 | has-symbols: 1.0.3 3476 | which-boxed-primitive: 1.0.2 3477 | dev: true 3478 | 3479 | /update-browserslist-db@1.0.13(browserslist@4.23.0): 3480 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 3481 | hasBin: true 3482 | peerDependencies: 3483 | browserslist: '>= 4.21.0' 3484 | dependencies: 3485 | browserslist: 4.23.0 3486 | escalade: 3.1.2 3487 | picocolors: 1.0.0 3488 | dev: true 3489 | 3490 | /uri-js@4.4.1: 3491 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3492 | dependencies: 3493 | punycode: 2.3.1 3494 | dev: true 3495 | 3496 | /util-deprecate@1.0.2: 3497 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3498 | dev: true 3499 | 3500 | /vite@5.1.4: 3501 | resolution: {integrity: sha512-n+MPqzq+d9nMVTKyewqw6kSt+R3CkvF9QAKY8obiQn8g1fwTscKxyfaYnC632HtBXAQGc1Yjomphwn1dtwGAHg==} 3502 | engines: {node: ^18.0.0 || >=20.0.0} 3503 | hasBin: true 3504 | peerDependencies: 3505 | '@types/node': ^18.0.0 || >=20.0.0 3506 | less: '*' 3507 | lightningcss: ^1.21.0 3508 | sass: '*' 3509 | stylus: '*' 3510 | sugarss: '*' 3511 | terser: ^5.4.0 3512 | peerDependenciesMeta: 3513 | '@types/node': 3514 | optional: true 3515 | less: 3516 | optional: true 3517 | lightningcss: 3518 | optional: true 3519 | sass: 3520 | optional: true 3521 | stylus: 3522 | optional: true 3523 | sugarss: 3524 | optional: true 3525 | terser: 3526 | optional: true 3527 | dependencies: 3528 | esbuild: 0.19.12 3529 | postcss: 8.4.35 3530 | rollup: 4.12.0 3531 | optionalDependencies: 3532 | fsevents: 2.3.3 3533 | dev: true 3534 | 3535 | /which-boxed-primitive@1.0.2: 3536 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 3537 | dependencies: 3538 | is-bigint: 1.0.4 3539 | is-boolean-object: 1.1.2 3540 | is-number-object: 1.0.7 3541 | is-string: 1.0.7 3542 | is-symbol: 1.0.4 3543 | dev: true 3544 | 3545 | /which-builtin-type@1.1.3: 3546 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 3547 | engines: {node: '>= 0.4'} 3548 | dependencies: 3549 | function.prototype.name: 1.1.6 3550 | has-tostringtag: 1.0.2 3551 | is-async-function: 2.0.0 3552 | is-date-object: 1.0.5 3553 | is-finalizationregistry: 1.0.2 3554 | is-generator-function: 1.0.10 3555 | is-regex: 1.1.4 3556 | is-weakref: 1.0.2 3557 | isarray: 2.0.5 3558 | which-boxed-primitive: 1.0.2 3559 | which-collection: 1.0.1 3560 | which-typed-array: 1.1.14 3561 | dev: true 3562 | 3563 | /which-collection@1.0.1: 3564 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 3565 | dependencies: 3566 | is-map: 2.0.2 3567 | is-set: 2.0.2 3568 | is-weakmap: 2.0.1 3569 | is-weakset: 2.0.2 3570 | dev: true 3571 | 3572 | /which-typed-array@1.1.14: 3573 | resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} 3574 | engines: {node: '>= 0.4'} 3575 | dependencies: 3576 | available-typed-arrays: 1.0.7 3577 | call-bind: 1.0.7 3578 | for-each: 0.3.3 3579 | gopd: 1.0.1 3580 | has-tostringtag: 1.0.2 3581 | dev: true 3582 | 3583 | /which@2.0.2: 3584 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3585 | engines: {node: '>= 8'} 3586 | hasBin: true 3587 | dependencies: 3588 | isexe: 2.0.0 3589 | dev: true 3590 | 3591 | /wrap-ansi@7.0.0: 3592 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 3593 | engines: {node: '>=10'} 3594 | dependencies: 3595 | ansi-styles: 4.3.0 3596 | string-width: 4.2.3 3597 | strip-ansi: 6.0.1 3598 | dev: true 3599 | 3600 | /wrap-ansi@8.1.0: 3601 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 3602 | engines: {node: '>=12'} 3603 | dependencies: 3604 | ansi-styles: 6.2.1 3605 | string-width: 5.1.2 3606 | strip-ansi: 7.1.0 3607 | dev: true 3608 | 3609 | /wrappy@1.0.2: 3610 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3611 | dev: true 3612 | 3613 | /yallist@3.1.1: 3614 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 3615 | dev: true 3616 | 3617 | /yallist@4.0.0: 3618 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3619 | dev: true 3620 | 3621 | /yaml@2.4.0: 3622 | resolution: {integrity: sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ==} 3623 | engines: {node: '>= 14'} 3624 | hasBin: true 3625 | dev: true 3626 | 3627 | /yocto-queue@0.1.0: 3628 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 3629 | engines: {node: '>=10'} 3630 | dev: true 3631 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import("prettier").Config} */ 2 | const config = { 3 | plugins: [ 4 | "@trivago/prettier-plugin-sort-imports", 5 | "prettier-plugin-tailwindcss", 6 | ], 7 | }; 8 | 9 | module.exports = config; 10 | -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/airplane.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/airplane.webp -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/family-man.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/family-man.webp -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/laboratory.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/laboratory.webp -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/napoleon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/napoleon.webp -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/person-in-darkness.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/person-in-darkness.webp -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/scary-building.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/scary-building.webp -------------------------------------------------------------------------------- /public/img/apple-tv-rebuild/posters/stars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendfyi/rebuilding-the-apple-tv-plus-website/1aba5dc179a25c7b34d536d871cb89328053bcd3/public/img/apple-tv-rebuild/posters/stars.webp -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import { Button } from "./components/button"; 2 | import { Container } from "./components/container"; 3 | import { Header } from "./components/header"; 4 | import { Hero } from "./components/section/hero"; 5 | import { Usps } from "./components/section/usps"; 6 | import { VideoCarousel } from "./components/section/video-carousel"; 7 | import "./styles.css"; 8 | 9 | function App() { 10 | return ( 11 | <> 12 |
13 |
14 |
15 | 16 | 17 |
18 | 19 |
20 |
21 | 22 | ); 23 | } 24 | 25 | export default App; 26 | -------------------------------------------------------------------------------- /src/components/button.tsx: -------------------------------------------------------------------------------- 1 | import { twMerge } from "tailwind-merge"; 2 | 3 | type Props = { 4 | children: React.ReactNode; 5 | size?: "small" | "medium" | "large"; 6 | className?: string; 7 | }; 8 | 9 | export const Button = ({ children, size = "medium", className }: Props) => { 10 | const sizeClassNames = { 11 | small: "text-xs px-2 py-1", 12 | medium: "text-sm px-5 py-3", 13 | large: "text-base px-8 py-4", 14 | }; 15 | 16 | return ( 17 | 26 | ); 27 | }; 28 | -------------------------------------------------------------------------------- /src/components/container.tsx: -------------------------------------------------------------------------------- 1 | import { twMerge } from "tailwind-merge"; 2 | 3 | type Props = { 4 | children: React.ReactNode; 5 | className?: string; 6 | }; 7 | 8 | export const Container = ({ children, className }: Props) => { 9 | return ( 10 |
11 | {children} 12 |
13 | ); 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/fade-in.tsx: -------------------------------------------------------------------------------- 1 | import { motion } from "framer-motion"; 2 | 3 | type Props = { 4 | children: React.ReactNode; 5 | }; 6 | 7 | export const FadeIn = ({ children }: Props) => { 8 | return ( 9 | 14 | {children} 15 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- 1 | import { Button } from "./button"; 2 | import { Container } from "./container"; 3 | 4 | export const Header = () => { 5 | return ( 6 | <> 7 |
8 | 9 | 13 |  Back to homepage 14 | 15 | 16 |
17 |
18 | 19 |

Apple TV+

20 | 21 |
22 |
23 | 24 | ); 25 | }; 26 | -------------------------------------------------------------------------------- /src/components/section/hero.tsx: -------------------------------------------------------------------------------- 1 | import { Button } from "../button"; 2 | import { Container } from "../container"; 3 | import { useScroll, useTransform, motion } from "framer-motion"; 4 | import { useRef } from "react"; 5 | 6 | export const Hero = () => { 7 | const videoContainerRef = useRef(null); 8 | const { scrollYProgress } = useScroll({ 9 | target: videoContainerRef, 10 | offset: ["start start", "end end"], 11 | }); 12 | const opacity = useTransform(scrollYProgress, [0, 0.7, 1], [1, 1, 0]); 13 | 14 | return ( 15 |
16 | 21 | 25 | 26 | 27 | 38 |

39 | All Apple Originals.
40 | Only on Apple TV+. 41 |

42 | 45 |

Watch on the 📺 app.

46 |
47 |
48 |
49 | ); 50 | }; 51 | -------------------------------------------------------------------------------- /src/components/section/usps.tsx: -------------------------------------------------------------------------------- 1 | import { Container } from "../container"; 2 | import { FadeIn } from "../fade-in"; 3 | 4 | export const Usps = () => { 5 | return ( 6 | 7 | 8 |

New Apple Originals every month — always ad‑free.

9 |
10 | 11 |

12 | Stream on the Apple TV app on Apple devices, smart TVs, consoles, or 13 | sticks. 14 |

15 |
16 | 17 |

Watch in 4K HDR video with immersive Spatial Audio.

18 |
19 | 20 |

Share a single subscription with up to five people.

21 |
22 |
23 | ); 24 | }; 25 | -------------------------------------------------------------------------------- /src/components/section/video-carousel.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | Movie, 3 | movies, 4 | randomMoviesSet1, 5 | randomMoviesSet2, 6 | } from "../../movies"; 7 | import { Button } from "../button"; 8 | import { 9 | useScroll, 10 | useTransform, 11 | motion, 12 | useMotionValueEvent, 13 | } from "framer-motion"; 14 | import { useMemo, useRef, useState } from "react"; 15 | import { useWindowSize } from "react-use"; 16 | 17 | export const VideoCarousel = () => { 18 | const { width, height } = useWindowSize(); 19 | const carouselWrapperRef = useRef(null); 20 | const { scrollYProgress } = useScroll({ 21 | target: carouselWrapperRef, 22 | offset: ["start start", "end start"], 23 | }); 24 | 25 | const maximumScale = useMemo(() => { 26 | const windowYRatio = height / width; 27 | const xScale = 1.66667; 28 | const yScale = xScale * (16 / 9) * windowYRatio; 29 | return Math.max(xScale, yScale); 30 | }, [width, height]); 31 | 32 | const scale = useTransform( 33 | scrollYProgress, 34 | [0.3, 0.5, 0.66], 35 | [maximumScale * 1.1, maximumScale, 1], 36 | ); 37 | 38 | const postersOpacity = useTransform(scrollYProgress, [0.64, 0.66], [0, 1]); 39 | const posterTranslateXLeft = useTransform( 40 | scrollYProgress, 41 | [0.64, 0.66], 42 | [-20, 0], 43 | ); 44 | const posterTranslateXRight = useTransform( 45 | scrollYProgress, 46 | [0.64, 0.66], 47 | [20, 0], 48 | ); 49 | 50 | const [carouselVariant, setCarouselVariant] = useState<"inactive" | "active">( 51 | "inactive", 52 | ); 53 | useMotionValueEvent(scrollYProgress, "change", (progress) => { 54 | if (progress >= 0.67) { 55 | setCarouselVariant("active"); 56 | } else { 57 | setCarouselVariant("inactive"); 58 | } 59 | }); 60 | 61 | return ( 62 | 63 |
67 |
68 |
69 | 73 | {movies[0].name} 78 | 79 | 83 | {movies[1].name} 88 | 95 |

Best video title ever

96 | 97 |
98 |
99 | 103 | {movies[2].name} 108 | 109 |
110 |
111 |
112 | 113 | 121 | 122 |
123 | 124 |
125 |
126 |
127 | ); 128 | }; 129 | 130 | const SmallVideoCarousel = ({ movies }: { movies: Movie[] }) => { 131 | return ( 132 |
133 |
134 | {movies.map((movie, index) => ( 135 |
139 | {movie.name} 144 |
145 | ))} 146 |
147 |
148 | ); 149 | }; 150 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import App from "./App.tsx"; 2 | import React from "react"; 3 | import ReactDOM from "react-dom/client"; 4 | 5 | ReactDOM.createRoot(document.getElementById("root")!).render( 6 | 7 | 8 | , 9 | ); 10 | -------------------------------------------------------------------------------- /src/movies.ts: -------------------------------------------------------------------------------- 1 | export type Movie = { 2 | poster: string; 3 | name: string; 4 | }; 5 | 6 | export const movies = [ 7 | { poster: "/img/apple-tv-rebuild/posters/airplane.webp", name: "Airplane" }, 8 | { 9 | poster: "/img/apple-tv-rebuild/posters/family-man.webp", 10 | name: "Family man", 11 | }, 12 | { 13 | poster: "/img/apple-tv-rebuild/posters/laboratory.webp", 14 | name: "Laboratory", 15 | }, 16 | { poster: "/img/apple-tv-rebuild/posters/napoleon.webp", name: "Napoleon" }, 17 | { 18 | poster: "/img/apple-tv-rebuild/posters/person-in-darkness.webp", 19 | name: "Person in Darkness", 20 | }, 21 | { 22 | poster: "/img/apple-tv-rebuild/posters/scary-building.webp", 23 | name: "Scary Building", 24 | }, 25 | { poster: "/img/apple-tv-rebuild/posters/stars.webp", name: "Stars" }, 26 | ]; 27 | 28 | export const randomMoviesSet1 = movies 29 | .sort(() => Math.random() - 0.5) 30 | .concat(movies.sort(() => Math.random() - 0.5)) 31 | .concat(movies.sort(() => Math.random() - 0.5)); 32 | 33 | export const randomMoviesSet2 = movies 34 | .sort(() => Math.random() - 0.5) 35 | .concat(movies.sort(() => Math.random() - 0.5)) 36 | .concat(movies.sort(() => Math.random() - 0.5)) 37 | .sort(() => Math.random() - 0.5); 38 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | @layer { 6 | :root { 7 | --header-row-height: 44px; 8 | --header-height: calc(var(--header-row-height) * 2); 9 | --hero-height: calc(100svh - var(--header-height)); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: ["./src/**/*.{html,ts,tsx}"], 4 | theme: { 5 | colors: { 6 | background: "#000", 7 | backgroundContrast: "#111", 8 | textBlack: "#1d1d1f", 9 | white: "#fff", 10 | }, 11 | fontFamily: { 12 | sans: [ 13 | "SF Pro Display", 14 | "Helvetica Neue", 15 | "Helvetica", 16 | "Arial", 17 | "sans-serif", 18 | ], 19 | }, 20 | fontSize: { 21 | xs: "0.75rem", // 12px 22 | sm: "0.875rem", // 14px 23 | base: "1.0625rem", // 17px 24 | lg: ["1.1875rem", "1.21"], // 19px 25 | xl: "1.3125rem", // 21px 26 | "2xl": "1.5rem", // 24px 27 | "3xl": "1.75rem", // 28px 28 | "4xl": ["2.5rem", "1.1"], // 40px 29 | "5xl": ["4.5rem", "1.05"], // 72px 30 | }, 31 | keyframes: { 32 | "carousel-move": { 33 | "0%": { transform: "translateX(0)" }, 34 | "100%": { transform: "translateX(-100%)" }, 35 | }, 36 | }, 37 | animation: { 38 | "carousel-move": "carousel-move var(--duration,80s) infinite", 39 | }, 40 | extend: {}, 41 | }, 42 | plugins: [], 43 | }; 44 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true, 8 | "strict": true 9 | }, 10 | "include": ["vite.config.ts"] 11 | } 12 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | --------------------------------------------------------------------------------