├── .env.example ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── 1337.svg ├── 1337_light.svg └── favicon.ico ├── src ├── atoms │ └── states.js ├── components │ ├── Navigation │ │ └── index.js │ ├── Post │ │ └── index.js │ ├── Wrapper │ │ └── index.js │ └── index.js ├── data │ ├── e1.json │ └── e2.json ├── pages │ ├── _app.js │ ├── _document.js │ ├── api │ │ └── [etage].js │ ├── e1.js │ ├── e2.js │ └── index.js ├── styles │ ├── _breakpoints.scss │ ├── _cluster.scss │ ├── _fonts.scss │ ├── _nprogress.scss │ └── globals.scss └── utils │ ├── posts.js │ └── run.js ├── tailwind.config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | # your intra app secret keys 2 | CLIENT_UID=2037cce867ab6ee814736a24cdc278db23de8119bfe9ebd1f73ee5659c64772f 3 | CLIENT_SECRET=a8a3f878385f4f29c24e01874ffae7a586e0fb47f673f3b53bece0c58cac7f03 4 | 5 | # just copy this at it is. this is the url to which the app will make requests 6 | NEXT_PUBLIC_URL=http://localhost:3000 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | .env 4 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 1337KH Labs Clusters Map 2 | 3 | Hellow. This tool is made by 1337 Khouribga students for 1337 Khouribga students to help make their lives at the school easier. 4 | 5 | This tool will allow students to find available posts, posts that are not currently working, find students by login or name, and other features to come. 6 | 7 | At [the bottom](#contributors) of this README, you will find a list of the contributors for this project. Wanna become one? here's how you can do that! 8 | 9 | 10 | ## How to contribute 11 | 12 | ### Creating your Intra app 13 | 14 | First, head out to your Intranet dashboard's settings : 15 | 16 | ![enter image description here](https://i.ibb.co/tbBtYYM/Group-1.png) 17 | 18 | Then go to API. 19 | 20 | ![enter image description here](https://i.ibb.co/48KxFxJ/Group-2.png) 21 | 22 | Then press on "Register a new app". 23 | 24 | ![enter image description here](https://i.ibb.co/MVKwyvr/Group-2-1.png) 25 | 26 | Fill the form with a name for your app, and a Redirect URI (it can be any random URL doesn't matter), and for the scopes just leave them as they are. 27 | 28 | After your app is created, you will find your client UID and secret keys. 29 | 30 | ![Group-3](https://i.ibb.co/wCrrjck/Group-3.png) 31 | 32 | 33 | ### Creating a .env file 34 | 35 | Now follow these steps : 36 | 37 | - Fork the repo 38 | - Clone it on your local machine 39 | - 'cd' into it, then create a '.env' file in the root of the project. Here is an example of how your .env file should look : 40 | ``` 41 | # your intra app secret keys 42 | CLIENT_UID= 43 | CLIENT_SECRET= 44 | 45 | # just copy this at it is. this is the url to which the app will make requests 46 | NEXT_PUBLIC_URL=http://localhost:3000 47 | ``` 48 | 49 | ### Dig in! 50 | 51 | In order to dig in, you should first create a branch in which you will code the feature you want to add, you can do that using the following command : 52 | ```bash 53 | git checkout -b 54 | ``` 55 | 56 | We recommend to call it something in this format `feature/my-feature`. ex: `feature/dark-mode` or `feature/api-optimization` 57 | 58 | Now you need to install the app dependencies, you can do that using this command : 59 | ```bash 60 | npm install 61 | ``` 62 | or if you're a yarn lover (like Ismail ;)) 63 | ```bash 64 | yarn install 65 | ``` 66 | 67 | 68 | Finally, you can run the app using this command 69 | ```bash 70 | npm run dev 71 | ``` 72 | or 73 | ```bash 74 | yarn dev 75 | ``` 76 | Now you can view the app by visiting `http://localhost:3000/` 77 | 78 | After you finished coding and testing your feature, push to your branch. Then create a pull request to the `dev` branch in this repo. Have fun, and thanks a lot! 79 | 80 | 81 | ## Contributors 82 | 83 | Here is a list of all the contributors to this project. Thanks to all of you! 84 | 85 | - [Oussama LABRAHMI](https://github.com/0sssama) 86 | - [Abdelhadi SABANI (awbx)](https://github.com/awbx) 87 | - [Nabil ATTIA](https://github.com/attia-nabil) 88 | - [Rida EL-MAZARY](https://github.com/rida-el) 89 | - [Ismail Ait Bella](https://github.com/abellaismail7) 90 | - [Chaimaa Bourajli](https://github.com/chaibourajli) 91 | - [Xopper](https://github.com/Xopper) 92 | - [Mohamed Zarhou](https://github.com/mzarhou) 93 | 94 | ## Technologies used 95 | 96 | - Next.js for frontend + backend 97 | - TailwindCSS for styles 98 | - Recoil.js for global states 99 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": "src" 4 | }, 5 | "include": ["src"] 6 | } -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "clusters", 3 | "private": true, 4 | "scripts": { 5 | "dev": "next dev", 6 | "build": "next build", 7 | "start": "next start", 8 | "lint": "next lint" 9 | }, 10 | "dependencies": { 11 | "js-cookie": "^3.0.1", 12 | "next": "12.1.6", 13 | "nprogress": "^0.2.0", 14 | "react": "18.1.0", 15 | "react-dom": "18.1.0", 16 | "react-icons": "^4.4.0", 17 | "recoil": "^0.7.3", 18 | "sass": "^1.52.2", 19 | "simple-oauth2": "^4.3.0" 20 | }, 21 | "devDependencies": { 22 | "autoprefixer": "^10.4.7", 23 | "eslint": "8.17.0", 24 | "eslint-config-next": "12.1.6", 25 | "postcss": "^8.4.14", 26 | "tailwindcss": "^3.0.24" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/1337.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/1337_light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sssama/labs-cluster/c2e3ad6dc1469a2866dfc671c932a6e6eb01dfd4/public/favicon.ico -------------------------------------------------------------------------------- /src/atoms/states.js: -------------------------------------------------------------------------------- 1 | import { atom } from "recoil"; 2 | 3 | export const searchState = atom({ 4 | key: "searchState", 5 | default: "", 6 | }); 7 | 8 | export const darkLogoState = atom({ 9 | key: "darkLogoState", 10 | default: true 11 | }) 12 | -------------------------------------------------------------------------------- /src/components/Navigation/index.js: -------------------------------------------------------------------------------- 1 | import { useRouter } from "next/router"; 2 | import { darkLogoState, searchState } from "atoms/states"; 3 | import { useRecoilState } from "recoil"; 4 | import Cookies from "js-cookie"; 5 | 6 | function Navigation() { 7 | // next.js router 8 | const router = useRouter(); 9 | 10 | // search state 11 | const [search, setSearch] = useRecoilState(searchState); 12 | 13 | // dark logo 14 | const [darkLogo, setDarkLogo] = useRecoilState(darkLogoState); 15 | 16 | return ( 17 |
18 |
19 | logo 24 |
25 |
26 | {["e1", "e2"].map((link, i) => ( 27 |
router.push(`/${link}`)} 35 | > 36 | {link.toUpperCase()} - Labs 37 |
38 | ))} 39 |
40 |
41 |
42 |
43 | 64 | setSearch(e.target.value)} 70 | /> 71 |
72 |
73 | ); 74 | } 75 | 76 | export default Navigation; 77 | -------------------------------------------------------------------------------- /src/components/Post/index.js: -------------------------------------------------------------------------------- 1 | import { AiOutlineArrowUp } from "react-icons/ai"; 2 | import { searchState } from "atoms/states"; 3 | import { useRecoilValue } from "recoil"; 4 | 5 | function getRegex(search) 6 | { 7 | try { 8 | return new RegExp(search, "i") 9 | } catch (error) { 10 | console.log("invalid search regex") 11 | } 12 | return null 13 | } 14 | 15 | function Post({ x, y, vOffset, hOffset, host, user }) { 16 | // default styles 17 | const styles = { 18 | gridArea: `${y} / ${x}`, 19 | marginTop: `${vOffset}px`, 20 | marginLeft: `${hOffset}px`, 21 | }; 22 | 23 | // entrance stlyes 24 | const entranceStyles = { 25 | ...styles, 26 | gridColumn: `${x - 1} / span 3`, 27 | gridRow: `${y} / span 2`, 28 | }; 29 | 30 | // search state 31 | const search = useRecoilValue(searchState); 32 | 33 | // query regex 34 | const regex = getRegex(search) 35 | 36 | return ( 37 |
0 47 | ? regex.test(host) || 48 | regex.test(user?.displayname) || 49 | regex.test(user?.login) 50 | ? "valid" 51 | : "opacity-30" 52 | : "" 53 | } 54 | `} 55 | style={host === "ENTRANCE" ? entranceStyles : styles} 56 | onClick={() => { 57 | console.log(host); 58 | if (user) { 59 | window.open(`https://profile.intra.42.fr/users/${user.login}`); 60 | } 61 | }} 62 | > 63 | {host !== "ENTRANCE" && ( 64 |

65 | {user && ( 66 | 67 | {user.displayname} 68 | 69 | )} 70 | {user &&
} 71 | 72 | {host === "X" ? "Post not working" : host} 73 | 74 |

75 | )} 76 | {host === "ENTRANCE" ? ( 77 |

78 | 79 | الباب 80 |

81 | ) : host === "X" ? ( 82 |

X

83 | ) : user ? ( 84 | {user.login} 88 | ) : ( 89 | <> 90 | )} 91 |
92 | ); 93 | } 94 | 95 | export default Post; 96 | -------------------------------------------------------------------------------- /src/components/Wrapper/index.js: -------------------------------------------------------------------------------- 1 | function Wrapper({ children }) { 2 | return ( 3 |
4 | {children} 5 |

6 | Contributors : 7 | 8 | Oussama Labrahmi 9 | 10 | ,{" "} 11 | 12 | Abdelhadi Sabani 13 | 14 | ,{" "} 15 | 20 | Nabil Attia 21 | 22 | ,{" "} 23 | 24 | Rida El-Mazary 25 | 26 | ,{" "} 27 | 32 | Ismail Ait Bella 33 | 34 | ,{" "} 35 | 40 | Chaimaa Bourajli 41 | {" "} 42 | and{" "} 43 | 44 | Mohamed Zarhou 45 | 46 | . 47 |

48 |
49 | ); 50 | } 51 | 52 | export default Wrapper; 53 | -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- 1 | import Navigation from "./Navigation"; 2 | import Wrapper from "./Wrapper"; 3 | import Post from "./Post"; 4 | 5 | export { Wrapper, Navigation, Post }; 6 | -------------------------------------------------------------------------------- /src/data/e1.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "x": 1, 4 | "y": 3, 5 | "vOffset": 30, 6 | "hOffset": 0, 7 | "host": "e3r2p14" 8 | }, 9 | { 10 | "x": 1, 11 | "y": 4, 12 | "vOffset": 30, 13 | "hOffset": 0, 14 | "host": "e3r2p13" 15 | }, 16 | { 17 | "x": 2, 18 | "y": 3, 19 | "vOffset": 30, 20 | "hOffset": 0, 21 | "host": "e3r1p8" 22 | }, 23 | { 24 | "x": 2, 25 | "y": 4, 26 | "vOffset": 30, 27 | "hOffset": 0, 28 | "host": "e3r2p12" 29 | }, 30 | { 31 | "x": 3, 32 | "y": 3, 33 | "vOffset": 30, 34 | "hOffset": 18, 35 | "host": "e3r2p11" 36 | }, 37 | { 38 | "x": 3, 39 | "y": 4, 40 | "vOffset": 30, 41 | "hOffset": 18, 42 | "host": "e3r2p10" 43 | }, 44 | { 45 | "x": 3, 46 | "y": 12, 47 | "vOffset": 120, 48 | "hOffset": 0, 49 | "host": "X" 50 | }, 51 | { 52 | "x": 3, 53 | "y": 11, 54 | "vOffset": 120, 55 | "hOffset": 0, 56 | "host": "e3r1p1" 57 | }, 58 | { 59 | "x": 3, 60 | "y": 10, 61 | "vOffset": 120, 62 | "hOffset": 0, 63 | "host": "e3r5p10" 64 | }, 65 | { 66 | "x": 3, 67 | "y": 9, 68 | "vOffset": 120, 69 | "hOffset": 0, 70 | "host": "e3r5p9" 71 | }, 72 | { 73 | "x": 4, 74 | "y": 12, 75 | "vOffset": 120, 76 | "hOffset": 0, 77 | "host": "e3r2p15" 78 | }, 79 | { 80 | "x": 4, 81 | "y": 11, 82 | "vOffset": 120, 83 | "hOffset": 0, 84 | "host": "e3r6p1" 85 | }, 86 | { 87 | "x": 4, 88 | "y": 10, 89 | "vOffset": 120, 90 | "hOffset": 0, 91 | "host": "e3r6p4" 92 | }, 93 | { 94 | "x": 4, 95 | "y": 9, 96 | "vOffset": 120, 97 | "hOffset": 0, 98 | "host": "bocal-dump" 99 | }, 100 | { 101 | "x": 5, 102 | "y": 8, 103 | "vOffset": 80, 104 | "hOffset": 0, 105 | "host": "e3r2p4" 106 | }, 107 | { 108 | "x": 5, 109 | "y": 7, 110 | "vOffset": 80, 111 | "hOffset": 0, 112 | "host": "e3r2p5" 113 | }, 114 | { 115 | "x": 6, 116 | "y": 8, 117 | "vOffset": 80, 118 | "hOffset": 0, 119 | "host": "e3r2p1" 120 | }, 121 | { 122 | "x": 6, 123 | "y": 7, 124 | "vOffset": 80, 125 | "hOffset": 0, 126 | "host": "e3r2p3" 127 | }, 128 | { 129 | "x": 6, 130 | "y": 3, 131 | "vOffset": 30, 132 | "hOffset": 0, 133 | "host": "e3r1p13" 134 | }, 135 | { 136 | "x": 6, 137 | "y": 4, 138 | "vOffset": 30, 139 | "hOffset": 0, 140 | "host": "e3r3p1" 141 | }, 142 | { 143 | "x": 7, 144 | "y": 3, 145 | "vOffset": 30, 146 | "hOffset": 0, 147 | "host": "e3r3p5" 148 | }, 149 | { 150 | "x": 7, 151 | "y": 4, 152 | "vOffset": 30, 153 | "hOffset": 0, 154 | "host": "e3r3p2" 155 | }, 156 | { 157 | "x": 8, 158 | "y": 3, 159 | "vOffset": 30, 160 | "hOffset": 0, 161 | "host": "e3r3p4" 162 | }, 163 | { 164 | "x": 8, 165 | "y": 4, 166 | "vOffset": 30, 167 | "hOffset": 0, 168 | "host": "e3r3p3" 169 | }, 170 | { 171 | "x": 8, 172 | "y": 8, 173 | "vOffset": 80, 174 | "hOffset": 20, 175 | "host": "e3r4p4" 176 | }, 177 | { 178 | "x": 8, 179 | "y": 7, 180 | "vOffset": 80, 181 | "hOffset": 20, 182 | "host": "e3r5p12" 183 | }, 184 | { 185 | "x": 9, 186 | "y": 8, 187 | "vOffset": 80, 188 | "hOffset": 20, 189 | "host": "e3r1p15" 190 | }, 191 | { 192 | "x": 9, 193 | "y": 7, 194 | "vOffset": 80, 195 | "hOffset": 20, 196 | "host": "e3r4p11" 197 | }, 198 | { 199 | "x": 10, 200 | "y": 3, 201 | "vOffset": 30, 202 | "hOffset": 0, 203 | "host": "e3r3p7" 204 | }, 205 | { 206 | "x": 10, 207 | "y": 4, 208 | "vOffset": 30, 209 | "hOffset": 0, 210 | "host": "e3r3p6" 211 | }, 212 | { 213 | "x": 11, 214 | "y": 1, 215 | "vOffset": 0, 216 | "hOffset": 20, 217 | "host": "e3r3p9" 218 | }, 219 | { 220 | "x": 11, 221 | "y": 2, 222 | "vOffset": 0, 223 | "hOffset": 20, 224 | "host": "e3r1p12" 225 | }, 226 | { 227 | "x": 11, 228 | "y": 3, 229 | "vOffset": 30, 230 | "hOffset": 30, 231 | "host": "e3r3p10" 232 | }, 233 | { 234 | "x": 11, 235 | "y": 4, 236 | "vOffset": 30, 237 | "hOffset": 30, 238 | "host": "e3r3p11" 239 | }, 240 | { 241 | "x": 11, 242 | "y": 8, 243 | "vOffset": 80, 244 | "hOffset": 20, 245 | "host": "e3r1p2" 246 | }, 247 | { 248 | "x": 11, 249 | "y": 7, 250 | "vOffset": 80, 251 | "hOffset": 20, 252 | "host": "X" 253 | }, 254 | { 255 | "x": 12, 256 | "y": 2, 257 | "vOffset": 0, 258 | "hOffset": 20, 259 | "host": "e3r3p8" 260 | }, 261 | { 262 | "x": 12, 263 | "y": 1, 264 | "vOffset": 0, 265 | "hOffset": 20, 266 | "host": "e3r1p13" 267 | }, 268 | { 269 | "x": 12, 270 | "y": 4, 271 | "vOffset": 30, 272 | "hOffset": 30, 273 | "host": "e3r2p7" 274 | }, 275 | { 276 | "x": 12, 277 | "y": 3, 278 | "vOffset": 30, 279 | "hOffset": 30, 280 | "host": "e3r1p12" 281 | }, 282 | { 283 | "x": 12, 284 | "y": 7, 285 | "vOffset": 80, 286 | "hOffset": 20, 287 | "host": "e3r1p4" 288 | }, 289 | { 290 | "x": 12, 291 | "y": 8, 292 | "vOffset": 80, 293 | "hOffset": 20, 294 | "host": "e3r1p14" 295 | }, 296 | { 297 | "x": 13, 298 | "y": 7, 299 | "vOffset": 80, 300 | "hOffset": 40, 301 | "host": "e3r1p5" 302 | }, 303 | { 304 | "x": 13, 305 | "y": 8, 306 | "vOffset": 80, 307 | "hOffset": 40, 308 | "host": "e3r1p6" 309 | }, 310 | { 311 | "x": 14, 312 | "y": 7, 313 | "vOffset": 80, 314 | "hOffset": 40, 315 | "host": "e3r2p2" 316 | }, 317 | { 318 | "x": 14, 319 | "y": 8, 320 | "vOffset": 80, 321 | "hOffset": 40, 322 | "host": "e3r1p7" 323 | }, 324 | { 325 | "x": 14, 326 | "y": 2, 327 | "vOffset": 0, 328 | "hOffset": 40, 329 | "host": "e3r3p12" 330 | } 331 | , 332 | { 333 | "x": 14, 334 | "y": 3, 335 | "vOffset": 30, 336 | "hOffset": 50, 337 | "host": "e3r3p13" 338 | }, 339 | { 340 | "x": 14, 341 | "y": 4, 342 | "vOffset": 30, 343 | "hOffset": 50, 344 | "host": "e3r4p1" 345 | }, 346 | { 347 | "x": 15, 348 | "y": 2, 349 | "vOffset": 0, 350 | "hOffset": 40, 351 | "host": "e3r1p9" 352 | }, 353 | { 354 | "x": 15, 355 | "y": 3, 356 | "vOffset": 30, 357 | "hOffset": 50, 358 | "host": "e3r3p14" 359 | }, 360 | { 361 | "x": 15, 362 | "y": 4, 363 | "vOffset": 30, 364 | "hOffset": 50, 365 | "host": "e3r4p2" 366 | }, 367 | { 368 | "x": 15, 369 | "y": 5, 370 | "vOffset": 50, 371 | "hOffset": 70, 372 | "host": "e3r5p14" 373 | }, 374 | { 375 | "x": 15, 376 | "y": 6, 377 | "vOffset": 50, 378 | "hOffset": 70, 379 | "host": "e3r5p13" 380 | }, 381 | { 382 | "x": 15, 383 | "y": 7, 384 | "vOffset": 80, 385 | "hOffset": 70, 386 | "host": "e3r5p15" 387 | }, 388 | { 389 | "x": 15, 390 | "y": 8, 391 | "vOffset": 80, 392 | "hOffset": 70, 393 | "host": "X" 394 | }, 395 | { 396 | "x": 16, 397 | "y": 3, 398 | "vOffset": 30, 399 | "hOffset": 50, 400 | "host": "e3r3p15" 401 | }, 402 | { 403 | "x": 16, 404 | "y": 4, 405 | "vOffset": 30, 406 | "hOffset": 50, 407 | "host": "e3r4p3" 408 | }, 409 | { 410 | "x": 16, 411 | "y": 5, 412 | "vOffset": 50, 413 | "hOffset": 70, 414 | "host": "e3r2p9" 415 | }, 416 | { 417 | "x": 16, 418 | "y": 6, 419 | "vOffset": 50, 420 | "hOffset": 70, 421 | "host": "e3r2p8" 422 | } 423 | , 424 | { 425 | "x": 16, 426 | "y": 7, 427 | "vOffset": 80, 428 | "hOffset": 70, 429 | "host": "e3r2p6" 430 | }, 431 | { 432 | "x": 16, 433 | "y": 8, 434 | "vOffset": 80, 435 | "hOffset": 70, 436 | "host": "e2r4p14" 437 | } 438 | , 439 | { 440 | "x": 17, 441 | "y": 2, 442 | "vOffset": 0, 443 | "hOffset": 90, 444 | "host": "e3r4p5" 445 | } 446 | , 447 | { 448 | "x": 17, 449 | "y": 3, 450 | "vOffset": 30, 451 | "hOffset": 80, 452 | "host": "e3r5p11" 453 | } 454 | , 455 | { 456 | "x": 17, 457 | "y": 4, 458 | "vOffset": 30, 459 | "hOffset": 80, 460 | "host": "e3r4p6" 461 | }, 462 | { 463 | "x": 18, 464 | "y": 2, 465 | "vOffset": 0, 466 | "hOffset": 90, 467 | "host": "e3r4p10" 468 | }, 469 | { 470 | "x": 18, 471 | "y": 3, 472 | "vOffset": 30, 473 | "hOffset": 80, 474 | "host": "e3r4p9" 475 | }, 476 | { 477 | "x": 18, 478 | "y": 4, 479 | "vOffset": 30, 480 | "hOffset": 80, 481 | "host": "e3r4p7" 482 | }, 483 | { 484 | "x": 18, 485 | "y": 6, 486 | "vOffset": 40, 487 | "hOffset": 80, 488 | "host": "e3r12p2" 489 | }, 490 | { 491 | "x": 18, 492 | "y": 7, 493 | "vOffset": 40, 494 | "hOffset": 80, 495 | "host": "e3r12p1" 496 | }, 497 | { 498 | "x": 18, 499 | "y": 8, 500 | "vOffset": 40, 501 | "hOffset": 80, 502 | "host": "e3r11p8" 503 | }, 504 | { 505 | "x": 19, 506 | "y": 2, 507 | "vOffset": 0, 508 | "hOffset": 90, 509 | "host": "e3r1p10" 510 | }, 511 | { 512 | "x": 19, 513 | "y": 3, 514 | "vOffset": 30, 515 | "hOffset": 80, 516 | "host": "X" 517 | }, 518 | { 519 | "x": 19, 520 | "y": 4, 521 | "vOffset": 30, 522 | "hOffset": 80, 523 | "host": "e3r4p8" 524 | }, 525 | { 526 | "x": 20, 527 | "y": 2, 528 | "vOffset": 0, 529 | "hOffset": 90, 530 | "host": "e3r1p11" 531 | }, 532 | { 533 | "x": 20, 534 | "y": 3, 535 | "vOffset": 30, 536 | "hOffset": 80, 537 | "host": "X" 538 | }, 539 | { 540 | "x": 20, 541 | "y": 4, 542 | "vOffset": 30, 543 | "hOffset": 80, 544 | "host": "X" 545 | }, 546 | 547 | { 548 | "x": 6, 549 | "y": 9, 550 | "vOffset": 120, 551 | "hOffset": 20, 552 | "host": "e3r5p4" 553 | }, 554 | 555 | { 556 | "x": 6, 557 | "y": 10, 558 | "vOffset": 120, 559 | "hOffset": 20, 560 | "host": "e3r5p3" 561 | }, 562 | 563 | { 564 | "x": 6, 565 | "y": 11, 566 | "vOffset": 120, 567 | "hOffset": 20, 568 | "host": "e3r5p2" 569 | }, 570 | 571 | { 572 | "x": 6, 573 | "y": 12, 574 | "vOffset": 120, 575 | "hOffset": 20, 576 | "host": "e3r6p3" 577 | }, 578 | { 579 | "x": 7, 580 | "y": 9, 581 | "vOffset": 120, 582 | "hOffset": 20, 583 | "host": "e3r5p8" 584 | }, 585 | 586 | { 587 | "x": 7, 588 | "y": 10, 589 | "vOffset": 120, 590 | "hOffset": 20, 591 | "host": "e3r5p7" 592 | }, 593 | 594 | { 595 | "x": 7, 596 | "y": 11, 597 | "vOffset": 120, 598 | "hOffset": 20, 599 | "host": "e3r5p6" 600 | }, 601 | 602 | { 603 | "x": 7, 604 | "y": 12, 605 | "vOffset": 120, 606 | "hOffset": 20, 607 | "host": "e3r5p5" 608 | }, 609 | { 610 | "x": 13, 611 | "y": 11, 612 | "vOffset": 10, 613 | "hOffset": 5, 614 | "host": "ENTRANCE" 615 | } 616 | ] -------------------------------------------------------------------------------- /src/data/e2.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "x": 1, 4 | "y": 3, 5 | "vOffset": -30, 6 | "hOffset": 0, 7 | "host": "e3r9p8" 8 | }, 9 | { 10 | "x": 1, 11 | "y": 4, 12 | "vOffset": -30, 13 | "hOffset": 0, 14 | "host": "e3r9p9" 15 | }, 16 | { 17 | "x": 2, 18 | "y": 3, 19 | "vOffset": -30, 20 | "hOffset": 0, 21 | "host": "e3r9p10" 22 | }, 23 | { 24 | "x": 2, 25 | "y": 4, 26 | "vOffset": -30, 27 | "hOffset": 0, 28 | "host": "e3r9p11" 29 | }, 30 | { 31 | "x": 4, 32 | "y": 1, 33 | "vOffset": 0, 34 | "hOffset": 0, 35 | "host": "e3r9p3" 36 | }, 37 | { 38 | "x": 4, 39 | "y": 2, 40 | "vOffset": 0, 41 | "hOffset": 0, 42 | "host": "e3r9p7" 43 | }, 44 | { 45 | "x": 4, 46 | "y": 4, 47 | "vOffset": 0, 48 | "hOffset": 0, 49 | "host": "e3r9p14" 50 | }, 51 | { 52 | "x": 4, 53 | "y": 5, 54 | "vOffset": 0, 55 | "hOffset": 0, 56 | "host": "e3r9p15" 57 | }, 58 | { 59 | "x": 5, 60 | "y": 1, 61 | "vOffset": 0, 62 | "hOffset": 0, 63 | "host": "e3r9p2" 64 | }, 65 | { 66 | "x": 5, 67 | "y": 2, 68 | "vOffset": 0, 69 | "hOffset": 0, 70 | "host": "e3r9p6" 71 | }, 72 | { 73 | "x": 5, 74 | "y": 4, 75 | "vOffset": 0, 76 | "hOffset": 0, 77 | "host": "e3r9p13" 78 | }, 79 | { 80 | "x": 5, 81 | "y": 5, 82 | "vOffset": 0, 83 | "hOffset": 0, 84 | "host": "e3r10p2" 85 | }, 86 | { 87 | "x": 6, 88 | "y": 1, 89 | "vOffset": 0, 90 | "hOffset": 0, 91 | "host": "e3r9p1" 92 | }, 93 | { 94 | "x": 6, 95 | "y": 2, 96 | "vOffset": 0, 97 | "hOffset": 0, 98 | "host": "e3r9p5" 99 | }, 100 | { 101 | "x": 6, 102 | "y": 4, 103 | "vOffset": 0, 104 | "hOffset": 0, 105 | "host": "e3r9p12" 106 | }, 107 | { 108 | "x": 6, 109 | "y": 5, 110 | "vOffset": 0, 111 | "hOffset": 0, 112 | "host": "e3r10p1" 113 | }, 114 | { 115 | "x": 7, 116 | "y": 1, 117 | "vOffset": 0, 118 | "hOffset": 0, 119 | "host": "e3r8p15" 120 | }, 121 | { 122 | "x": 7, 123 | "y": 2, 124 | "vOffset": 0, 125 | "hOffset": 0, 126 | "host": "e3r9p4" 127 | }, 128 | { 129 | "x": 8, 130 | "y": 4, 131 | "vOffset": 30, 132 | "hOffset": 0, 133 | "host": "e3r10p6" 134 | }, 135 | { 136 | "x": 9, 137 | "y": 1, 138 | "vOffset": 0, 139 | "hOffset": 0, 140 | "host": "e3r8p10" 141 | }, 142 | { 143 | "x": 9, 144 | "y": 2, 145 | "vOffset": 0, 146 | "hOffset": 0, 147 | "host": "e3r8p14" 148 | }, 149 | { 150 | "x": 9, 151 | "y": 4, 152 | "vOffset": 0, 153 | "hOffset": 0, 154 | "host": "e3r10p5" 155 | }, 156 | { 157 | "x": 9, 158 | "y": 5, 159 | "vOffset": 0, 160 | "hOffset": 0, 161 | "host": "e3r10p7" 162 | }, 163 | { 164 | "x": 10, 165 | "y": 1, 166 | "vOffset": 0, 167 | "hOffset": 0, 168 | "host": "e3r8p9" 169 | }, 170 | { 171 | "x": 10, 172 | "y": 2, 173 | "vOffset": 0, 174 | "hOffset": 0, 175 | "host": "e3r8p13" 176 | }, 177 | { 178 | "x": 10, 179 | "y": 4, 180 | "vOffset": 0, 181 | "hOffset": 0, 182 | "host": "e3r10p4" 183 | }, 184 | { 185 | "x": 10, 186 | "y": 5, 187 | "vOffset": 0, 188 | "hOffset": 0, 189 | "host": "e3r10p2" 190 | }, 191 | { 192 | "x": 11, 193 | "y": 1, 194 | "vOffset": 0, 195 | "hOffset": 0, 196 | "host": "e3r8p8" 197 | }, 198 | { 199 | "x": 11, 200 | "y": 2, 201 | "vOffset": 0, 202 | "hOffset": 0, 203 | "host": "e3r8p12" 204 | }, 205 | { 206 | "x": 11, 207 | "y": 4, 208 | "vOffset": 0, 209 | "hOffset": 0, 210 | "host": "e3r10p3" 211 | }, 212 | { 213 | "x": 11, 214 | "y": 5, 215 | "vOffset": 0, 216 | "hOffset": 0, 217 | "host": "e3r10p9" 218 | }, 219 | { 220 | "x": 12, 221 | "y": 1, 222 | "vOffset": 0, 223 | "hOffset": 0, 224 | "host": "e3r8p7" 225 | }, 226 | { 227 | "x": 12, 228 | "y": 2, 229 | "vOffset": 0, 230 | "hOffset": 0, 231 | "host": "e3r8p11" 232 | }, 233 | { 234 | "x": 12, 235 | "y": 4, 236 | "vOffset": -20, 237 | "hOffset": 25, 238 | "host": "e3r7p15" 239 | }, 240 | { 241 | "x": 12, 242 | "y": 5, 243 | "vOffset": -20, 244 | "hOffset": 25, 245 | "host": "e3r7p11" 246 | }, 247 | { 248 | "x": 13, 249 | "y": 4, 250 | "vOffset": -20, 251 | "hOffset": 25, 252 | "host": "e3r7p14" 253 | }, 254 | { 255 | "x": 13, 256 | "y": 5, 257 | "vOffset": -20, 258 | "hOffset": 25, 259 | "host": "e3r7p10" 260 | }, 261 | { 262 | "x": 14, 263 | "y": 1, 264 | "vOffset": 0, 265 | "hOffset": 0, 266 | "host": "e3r8p3" 267 | }, 268 | { 269 | "x": 14, 270 | "y": 2, 271 | "vOffset": 0, 272 | "hOffset": 0, 273 | "host": "e3r8p6" 274 | }, 275 | { 276 | "x": 14, 277 | "y": 4, 278 | "vOffset": -20, 279 | "hOffset": 25, 280 | "host": "e3r7p13" 281 | }, 282 | { 283 | "x": 14, 284 | "y": 5, 285 | "vOffset": -20, 286 | "hOffset": 25, 287 | "host": "e3r7p9" 288 | }, 289 | { 290 | "x": 15, 291 | "y": 1, 292 | "vOffset": 0, 293 | "hOffset": 0, 294 | "host": "e3r8p2" 295 | }, 296 | { 297 | "x": 15, 298 | "y": 2, 299 | "vOffset": 0, 300 | "hOffset": 0, 301 | "host": "e3r8p5" 302 | }, 303 | { 304 | "x": 15, 305 | "y": 4, 306 | "vOffset": -20, 307 | "hOffset": 25, 308 | "host": "e3r7p12" 309 | }, 310 | { 311 | "x": 15, 312 | "y": 5, 313 | "vOffset": -20, 314 | "hOffset": 25, 315 | "host": "e3r7p8" 316 | }, 317 | { 318 | "x": 16, 319 | "y": 1, 320 | "vOffset": 0, 321 | "hOffset": 0, 322 | "host": "e3r8p1" 323 | }, 324 | { 325 | "x": 16, 326 | "y": 2, 327 | "vOffset": 0, 328 | "hOffset": 0, 329 | "host": "e3r8p4" 330 | }, 331 | { 332 | "x": 18, 333 | "y": 1, 334 | "vOffset": 0, 335 | "hOffset": 0, 336 | "host": "e3r7p2" 337 | }, 338 | { 339 | "x": 18, 340 | "y": 2, 341 | "vOffset": 0, 342 | "hOffset": 0, 343 | "host": "e3r7p3" 344 | }, 345 | { 346 | "x": 18, 347 | "y": 5, 348 | "vOffset": -15, 349 | "hOffset": 0, 350 | "host": "e3r7p7" 351 | }, 352 | { 353 | "x": 18, 354 | "y": 6, 355 | "vOffset": -15, 356 | "hOffset": 0, 357 | "host": "e3r6p2" 358 | }, 359 | { 360 | "x": 18, 361 | "y": 7, 362 | "vOffset": 0, 363 | "hOffset": 0, 364 | "host": "e3r10p10" 365 | }, 366 | { 367 | "x": 18, 368 | "y": 8, 369 | "vOffset": 0, 370 | "hOffset": 0, 371 | "host": "e3r10p11" 372 | }, 373 | { 374 | "x": 19, 375 | "y": 1, 376 | "vOffset": 0, 377 | "hOffset": 0, 378 | "host": "e3r7p1" 379 | }, 380 | { 381 | "x": 19, 382 | "y": 2, 383 | "vOffset": 0, 384 | "hOffset": 0, 385 | "host": "e3r7p4" 386 | }, 387 | { 388 | "x": 19, 389 | "y": 5, 390 | "vOffset": -15, 391 | "hOffset": 0, 392 | "host": "e3r6p15" 393 | }, 394 | { 395 | "x": 19, 396 | "y": 6, 397 | "vOffset": -15, 398 | "hOffset": 0, 399 | "host": "e3r5p1" 400 | }, 401 | { 402 | "x": 19, 403 | "y": 7, 404 | "vOffset": 0, 405 | "hOffset": 0, 406 | "host": "X" 407 | }, 408 | { 409 | "x": 19, 410 | "y": 8, 411 | "vOffset": 0, 412 | "hOffset": 0, 413 | "host": "hanane-dump" 414 | }, 415 | { 416 | "x": 20, 417 | "y": 1, 418 | "vOffset": 0, 419 | "hOffset": 0, 420 | "host": "e3r6p15" 421 | }, 422 | { 423 | "x": 20, 424 | "y": 2, 425 | "vOffset": 0, 426 | "hOffset": 0, 427 | "host": "e3r7p5" 428 | }, 429 | { 430 | "x": 20, 431 | "y": 5, 432 | "vOffset": -15, 433 | "hOffset": 0, 434 | "host": "e3r4p12" 435 | }, 436 | { 437 | "x": 20, 438 | "y": 6, 439 | "vOffset": -15, 440 | "hOffset": 0, 441 | "host": "X" 442 | }, 443 | { 444 | "x": 20, 445 | "y": 7, 446 | "vOffset": 0, 447 | "hOffset": 0, 448 | "host": "X" 449 | }, 450 | { 451 | "x": 20, 452 | "y": 8, 453 | "vOffset": 0, 454 | "hOffset": 0, 455 | "host": "e3r1p3" 456 | }, 457 | { 458 | "x": 21, 459 | "y": 1, 460 | "vOffset": 0, 461 | "hOffset": 0, 462 | "host": "e3r6p14" 463 | }, 464 | { 465 | "x": 21, 466 | "y": 2, 467 | "vOffset": 0, 468 | "hOffset": 0, 469 | "host": "e3r7p6" 470 | }, 471 | { 472 | "x": 23, 473 | "y": 9, 474 | "vOffset": 40, 475 | "hOffset": 0, 476 | "host": "e3r11p6" 477 | }, 478 | { 479 | "x": 23, 480 | "y": 10, 481 | "vOffset": 40, 482 | "hOffset": 0, 483 | "host": "e3r11p9" 484 | }, 485 | { 486 | "x": 23, 487 | "y": 11, 488 | "vOffset": 55, 489 | "hOffset": 0, 490 | "host": "e3r11p12" 491 | }, 492 | { 493 | "x": 23, 494 | "y": 12, 495 | "vOffset": 55, 496 | "hOffset": 0, 497 | "host": "e3r11p15" 498 | }, 499 | { 500 | "x": 24, 501 | "y": 2, 502 | "vOffset": 0, 503 | "hOffset": 0, 504 | "host": "e3r6p10" 505 | }, 506 | { 507 | "x": 24, 508 | "y": 3, 509 | "vOffset": 0, 510 | "hOffset": 0, 511 | "host": "e3r6p11" 512 | }, 513 | { 514 | "x": 24, 515 | "y": 4, 516 | "vOffset": 0, 517 | "hOffset": 0, 518 | "host": "e3r6p12" 519 | }, 520 | { 521 | "x": 24, 522 | "y": 5, 523 | "vOffset": 0, 524 | "hOffset": 0, 525 | "host": "e3r6p13" 526 | }, 527 | { 528 | "x": 24, 529 | "y": 9, 530 | "vOffset": 40, 531 | "hOffset": 0, 532 | "host": "e3r11p5" 533 | }, 534 | { 535 | "x": 24, 536 | "y": 10, 537 | "vOffset": 40, 538 | "hOffset": 0, 539 | "host": "X" 540 | }, 541 | { 542 | "x": 24, 543 | "y": 11, 544 | "vOffset": 55, 545 | "hOffset": 0, 546 | "host": "e3r11p11" 547 | }, 548 | { 549 | "x": 24, 550 | "y": 12, 551 | "vOffset": 55, 552 | "hOffset": 0, 553 | "host": "e3r11p14" 554 | }, 555 | { 556 | "x": 25, 557 | "y": 2, 558 | "vOffset": 0, 559 | "hOffset": 0, 560 | "host": "e3r6p6" 561 | }, 562 | { 563 | "x": 25, 564 | "y": 3, 565 | "vOffset": 0, 566 | "hOffset": 0, 567 | "host": "e3r6p7" 568 | }, 569 | { 570 | "x": 25, 571 | "y": 4, 572 | "vOffset": 0, 573 | "hOffset": 0, 574 | "host": "e3r6p8" 575 | }, 576 | { 577 | "x": 25, 578 | "y": 5, 579 | "vOffset": 0, 580 | "hOffset": 0, 581 | "host": "e3r6p9" 582 | }, 583 | { 584 | "x": 25, 585 | "y": 9, 586 | "vOffset": 40, 587 | "hOffset": 0, 588 | "host": "e3r11p4" 589 | }, 590 | { 591 | "x": 25, 592 | "y": 10, 593 | "vOffset": 40, 594 | "hOffset": 0, 595 | "host": "e3r11p7" 596 | }, 597 | { 598 | "x": 25, 599 | "y": 11, 600 | "vOffset": 55, 601 | "hOffset": 0, 602 | "host": "e3r11p10" 603 | }, 604 | { 605 | "x": 25, 606 | "y": 12, 607 | "vOffset": 55, 608 | "hOffset": 0, 609 | "host": "e3r11p13" 610 | }, 611 | { 612 | "x": 23, 613 | "y": 7, 614 | "vOffset": 0, 615 | "hOffset": 35, 616 | "host": "e3r10p13" 617 | }, 618 | { 619 | "x": 22, 620 | "y": 7, 621 | "vOffset": 0, 622 | "hOffset": 35, 623 | "host": "e3r10p14" 624 | }, 625 | { 626 | "x": 21, 627 | "y": 7, 628 | "vOffset": 0, 629 | "hOffset": 35, 630 | "host": "e3r10p15" 631 | }, 632 | { 633 | "x": 26, 634 | "y": 9, 635 | "vOffset": 40, 636 | "hOffset": 10, 637 | "host": "e3r12p3" 638 | }, 639 | { 640 | "x": 26, 641 | "y": 10, 642 | "vOffset": 40, 643 | "hOffset": 10, 644 | "host": "e3r12p6" 645 | }, 646 | { 647 | "x": 26, 648 | "y": 11, 649 | "vOffset": 55, 650 | "hOffset": 10, 651 | "host": "e3r12p9" 652 | }, 653 | { 654 | "x": 26, 655 | "y": 12, 656 | "vOffset": 55, 657 | "hOffset": 10, 658 | "host": "e3r12p12" 659 | }, 660 | { 661 | "x": 23, 662 | "y": 8, 663 | "vOffset": 0, 664 | "hOffset": 35, 665 | "host": "e3r11p1" 666 | }, 667 | { 668 | "x": 22, 669 | "y": 8, 670 | "vOffset": 0, 671 | "hOffset": 35, 672 | "host": "e3r11p2" 673 | }, 674 | { 675 | "x": 21, 676 | "y": 8, 677 | "vOffset": 0, 678 | "hOffset": 35, 679 | "host": "e3r11p3" 680 | }, 681 | { 682 | "x": 27, 683 | "y": 9, 684 | "vOffset": 40, 685 | "hOffset": 10, 686 | "host": "e3r12p4" 687 | }, 688 | { 689 | "x": 27, 690 | "y": 10, 691 | "vOffset": 40, 692 | "hOffset": 10, 693 | "host": "e3r12p5" 694 | }, 695 | { 696 | "x": 27, 697 | "y": 11, 698 | "vOffset": 55, 699 | "hOffset": 10, 700 | "host": "e3r12p8" 701 | }, 702 | { 703 | "x": 27, 704 | "y": 12, 705 | "vOffset": 55, 706 | "hOffset": 10, 707 | "host": "e3r12p11" 708 | }, 709 | { 710 | "x": 28, 711 | "y": 11, 712 | "vOffset": 55, 713 | "hOffset": 10, 714 | "host": "e3r12p7" 715 | }, 716 | { 717 | "x": 28, 718 | "y": 12, 719 | "vOffset": 55, 720 | "hOffset": 10, 721 | "host": "e3r12p10" 722 | }, 723 | { 724 | "x": 29, 725 | "y": 11, 726 | "vOffset": -40, 727 | "hOffset": 20, 728 | "host": "e3r12p13" 729 | }, 730 | { 731 | "x": 29, 732 | "y": 12, 733 | "vOffset": -40, 734 | "hOffset": 20, 735 | "host": "e3r12p14" 736 | }, 737 | { 738 | "x": 29, 739 | "y": 13, 740 | "vOffset": -40, 741 | "hOffset": 20, 742 | "host": "e3r12p15" 743 | }, 744 | { 745 | "x": 30, 746 | "y": 11, 747 | "vOffset": -40, 748 | "hOffset": 20, 749 | "host": "e3r13p1" 750 | }, 751 | { 752 | "x": 30, 753 | "y": 12, 754 | "vOffset": -40, 755 | "hOffset": 20, 756 | "host": "e3r13p2" 757 | }, 758 | { 759 | "x": 30, 760 | "y": 13, 761 | "vOffset": -40, 762 | "hOffset": 20, 763 | "host": "e3r13p3" 764 | }, 765 | { 766 | "x": 19, 767 | "y": 10, 768 | "vOffset": 0, 769 | "hOffset": 0, 770 | "host": "ENTRANCE" 771 | } 772 | ] -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- 1 | import "styles/globals.scss"; 2 | import NProgress from "nprogress"; 3 | import Router from "next/router"; 4 | import { RecoilRoot } from "recoil"; 5 | import Cookies from "js-cookie"; 6 | import { useEffect } from "react"; 7 | import { darkLogoState } from "atoms/states"; 8 | import { useSetRecoilState } from "recoil"; 9 | 10 | // Setting up NProgress : that really cool progress 11 | // bar at the top of the page! 12 | NProgress.configure({ showSpinner: true }); 13 | Router.events.on("routeChangeStart", () => NProgress.start()); 14 | Router.events.on("routeChangeComplete", () => NProgress.done()); 15 | Router.events.on("routeChangeError", () => NProgress.done()); 16 | 17 | function DarkModeHandler() { 18 | const setDarkLogo = useSetRecoilState(darkLogoState); 19 | 20 | // when app loads, check if dark mode is in cookies 21 | useEffect(() => { 22 | const darkMode = Boolean(Cookies.get("darkMode")); 23 | 24 | if ( 25 | (!darkMode && 26 | window.matchMedia("(prefers-color-scheme: dark)").matches) || 27 | darkMode 28 | ) { 29 | document.documentElement.classList.add("dark"); 30 | setDarkLogo(false); 31 | } else { 32 | document.documentElement.classList.remove("dark"); 33 | setDarkLogo(true); 34 | } 35 | }, []); 36 | 37 | return null; 38 | } 39 | 40 | function MyApp({ Component, pageProps }) { 41 | return ( 42 | 43 | 44 | 45 | 46 | ); 47 | } 48 | 49 | export default MyApp; 50 | -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from "next/document"; 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | ); 24 | } 25 | -------------------------------------------------------------------------------- /src/pages/api/[etage].js: -------------------------------------------------------------------------------- 1 | import { e1Posts, e2Posts } from "utils/posts"; 2 | import { run, now } from "utils/run"; 3 | 4 | // predefine object to improve performance 5 | global.ft_posts = { 6 | e1: { 7 | last_fetch: 0, 8 | posts : e1Posts, 9 | }, 10 | e2: { 11 | last_fetch: 0, 12 | posts : e2Posts, 13 | }, 14 | } 15 | 16 | function reset_posts(posts) { 17 | for (const key in posts) 18 | { 19 | posts[key] = null; 20 | } 21 | return posts; 22 | } 23 | 24 | 25 | async function getPosts(posts) { 26 | // get 42 access token 27 | const token = await run(); 28 | 29 | if (!token) { 30 | throw new Error("Could not get 42 access token"); 31 | } 32 | 33 | const locations = await fetch( 34 | "https://api.intra.42.fr/v2/locations?" + 35 | new URLSearchParams({ 36 | campus_id: 16, 37 | "filter[host]": Object.keys(posts).join(","), 38 | "filter[active]": "true", 39 | "page[size]": 100, 40 | "page[number]": 1, 41 | }), 42 | { 43 | headers: { 44 | Authorization: `Bearer ${token.access_token}`, 45 | }, 46 | } 47 | ); 48 | if (locations.status !== 200) { 49 | throw new Error("Could not get 42 locations"); 50 | } 51 | const _posts = await locations.json(); 52 | return _posts; 53 | } 54 | 55 | async function getPostsFromCache(etage) 56 | { 57 | const posts = global.ft_posts[etage]; 58 | console.log(posts.last_fetch, now()); 59 | if (posts.last_fetch + 1 < now()) 60 | { 61 | console.log( "from api"); 62 | posts.posts = reset_posts(posts.posts); 63 | posts.posts = await getPosts(posts.posts); 64 | posts.last_fetch = now(); 65 | } 66 | else 67 | console.log("from cache"); 68 | return posts.posts; 69 | } 70 | 71 | 72 | 73 | export default async function handler(req, res) { 74 | 75 | const {etage} = req.query; 76 | let posts; 77 | 78 | if (etage == "e1") 79 | posts = e1Posts; 80 | else if (etage == "e2") 81 | posts = e2Posts; 82 | else 83 | return res.status(404).json({error: "Resource not found"}) 84 | 85 | try{ 86 | const payload = await getPostsFromCache(etage); 87 | payload.forEach(item => { 88 | posts[item.host] = { 89 | login: item.user.login, 90 | displayname: item.user.usual_full_name, 91 | } 92 | }); 93 | return res.status(200).json(posts); 94 | }catch(error) 95 | { 96 | console.log(error); 97 | return res.status(400).json({error: "Could not get 42 locations"}); 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /src/pages/e1.js: -------------------------------------------------------------------------------- 1 | import { Navigation, Wrapper, Post } from "components"; 2 | import posts from "data/e1.json"; 3 | import Head from "next/head"; 4 | 5 | function EtageUn({ activePosts }) { 6 | return ( 7 | 8 | 9 | Labs E1 - Map of 1337 Labs Clusters 10 | 11 | 12 |

E1 - Labs

13 |
14 | {posts.map((post, i) => ( 15 | 24 | ))} 25 |
26 |
27 | ); 28 | } 29 | 30 | export async function getServerSideProps() { 31 | // get all active posts 32 | const postsRequest = await fetch(process.env.NEXT_PUBLIC_URL + "/api/e1"); 33 | 34 | const activePosts = await postsRequest.json(); 35 | 36 | return { 37 | props: { 38 | activePosts, 39 | }, 40 | }; 41 | } 42 | 43 | export default EtageUn; 44 | -------------------------------------------------------------------------------- /src/pages/e2.js: -------------------------------------------------------------------------------- 1 | import { Wrapper, Navigation, Post } from "components"; 2 | import posts from "data/e2.json"; 3 | import Head from "next/head"; 4 | 5 | function EtageDeux({ activePosts }) { 6 | return ( 7 | 8 | 9 | Labs E2 - Map of 1337 Labs Clusters 10 | 11 | 12 |

E2 - Labs

13 |
14 | {posts.map((post, i) => ( 15 | 24 | ))} 25 |
26 |
27 | ); 28 | } 29 | 30 | export async function getServerSideProps() { 31 | // get all active posts 32 | const postsRequest = await fetch(process.env.NEXT_PUBLIC_URL + "/api/e2"); 33 | 34 | const activePosts = await postsRequest.json(); 35 | 36 | return { 37 | props: { 38 | activePosts, 39 | }, 40 | }; 41 | } 42 | 43 | export default EtageDeux; 44 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import { useEffect } from "react"; 2 | import { useRouter } from "next/router"; 3 | 4 | export default function Home() { 5 | // next.js router 6 | const router = useRouter(); 7 | 8 | // redirecting to /e1 9 | useEffect(() => { 10 | router.push("/e1"); 11 | }, []); 12 | 13 | return null; 14 | } 15 | -------------------------------------------------------------------------------- /src/styles/_breakpoints.scss: -------------------------------------------------------------------------------- 1 | /* 2 | -> DEV NOTE: 3 | This file has all the SCSS mixins used for 4 | breakpoints to make responsive designs easier. 5 | If you're not familiar with SCSS, mixins are 6 | somewhat similar to functions. We use the 7 | mixins below to make specific css code run 8 | at specific screen sizes. 9 | -> GUIDE 10 | Mobile : from 0 to 600px 11 | notDesktop : from 0 to 1024px (try your best not to use this one) 12 | Tablet : from 600px onwards 13 | desktop : from 1024px onwards 14 | hugeScreens : from 1440px onwards 15 | */ 16 | 17 | @mixin mobile { 18 | @media (max-width: 37.5em) { @content; } // 600px 19 | } 20 | 21 | @mixin tablet { 22 | @media (min-width: 37.5em) { @content; } // 600px 23 | } 24 | 25 | @mixin notDesktop { 26 | @media (max-width: 64em) { @content; } // 1024px 27 | } 28 | 29 | @mixin desktop { 30 | @media (min-width: 64.01em) { @content; } // 1024px 31 | } 32 | 33 | @mixin hugeScreens { 34 | @media (min-width: 90.01em) { @content; } // 1920px 35 | } -------------------------------------------------------------------------------- /src/styles/_cluster.scss: -------------------------------------------------------------------------------- 1 | 2 | :root { 3 | --postWidth: 40px; 4 | --postHeight: 55px; 5 | } 6 | 7 | .title { 8 | font-size: 2.25rem; 9 | font-weight: 600; 10 | opacity: 0.3; 11 | padding-left: 10%; 12 | padding-top: 3.25rem; 13 | padding-bottom: 1.25rem; 14 | } 15 | 16 | .poste { 17 | width: 100%; 18 | height: 100%; 19 | border: 2px solid gray; 20 | border-radius: 4px; 21 | &.taken { 22 | border: 0px solid transparent; 23 | cursor: pointer; 24 | img { 25 | border-radius: 4px; 26 | width: 100%; 27 | height: 100%; 28 | object-fit: cover; 29 | } 30 | &:hover img { 31 | opacity: 0.7 32 | } 33 | } 34 | &.entrance { 35 | svg { 36 | font-size: 1.45rem; 37 | } 38 | } 39 | &.valid { 40 | border: 2px solid #0ea5e9; 41 | } 42 | } 43 | 44 | .cluster { 45 | display: grid; 46 | grid-gap: 4px; 47 | width: 100%; 48 | justify-content: flex-start; 49 | overflow: auto; 50 | &.e1 { 51 | grid-template-columns: repeat(20, var(--postWidth)); 52 | grid-template-rows: repeat(12, var(--postHeight)); 53 | margin-bottom: 12rem; 54 | } 55 | &.e2 { 56 | grid-template-columns: repeat(31, var(--postWidth)); 57 | grid-template-rows: repeat(14, var(--postHeight)); 58 | } 59 | @include desktop { 60 | overflow: visible; 61 | justify-content: center; 62 | } 63 | } -------------------------------------------------------------------------------- /src/styles/_fonts.scss: -------------------------------------------------------------------------------- 1 | // Plus jakarta sans font 2 | @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); 3 | 4 | // Almarai font 5 | @import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap'); -------------------------------------------------------------------------------- /src/styles/_nprogress.scss: -------------------------------------------------------------------------------- 1 | @-webkit-keyframes nprogress-spinner { 2 | 0% { 3 | -webkit-transform: rotate(0deg); 4 | } 5 | 100% { 6 | -webkit-transform: rotate(360deg); 7 | } 8 | } 9 | @keyframes nprogress-spinner { 10 | 0% { 11 | transform: rotate(0deg); 12 | } 13 | 100% { 14 | transform: rotate(360deg); 15 | } 16 | } 17 | 18 | #nprogress { 19 | pointer-events: none; 20 | .bar { 21 | background-color: #2563eb; 22 | box-shadow: 0px 0px 5px #60a5fa; 23 | position: fixed; 24 | z-index: 1337; 25 | top: 0; left: 0; 26 | width: 100%; 27 | height: 3px; 28 | } 29 | .spinner { 30 | display: block; 31 | position: fixed; 32 | z-index: 1031; 33 | top: 15px; 34 | right: 15px; 35 | } 36 | .peg { 37 | display: block; 38 | position: absolute; 39 | right: 0px; 40 | width: 100px; 41 | height: 100%; 42 | box-shadow: 0 0 10px #2563eb, 0 0 5px #2563eb; 43 | opacity: 1; 44 | 45 | -webkit-transform: rotate(3deg) translate(0px, -4px); 46 | -ms-transform: rotate(3deg) translate(0px, -4px); 47 | transform: rotate(3deg) translate(0px, -4px); 48 | } 49 | .spinner-icon { 50 | width: 18px; 51 | height: 18px; 52 | box-sizing: border-box; 53 | 54 | border: solid 2px transparent; 55 | border-top-color: #2563eb; 56 | border-left-color: #2563eb; 57 | border-radius: 50%; 58 | 59 | -webkit-animation: nprogress-spinner 400ms linear infinite; 60 | animation: nprogress-spinner 400ms linear infinite; 61 | } 62 | } -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- 1 | @import "fonts"; 2 | @import "breakpoints"; 3 | 4 | * { 5 | margin: 0; 6 | padding: 0; 7 | box-sizing: border-box; 8 | scroll-behavior: smooth; 9 | transition: all 400ms cubic-bezier(.59,0,.06,1); 10 | font-family: 'Plus Jakarta Sans', 'Almarai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif 11 | } 12 | 13 | html { 14 | font-size: 100%; 15 | } 16 | 17 | body { 18 | position: relative; 19 | overflow-x: hidden; 20 | background-color: #fff; 21 | color: #212121; 22 | } 23 | 24 | body, #__next, .wrapper { 25 | width: 100%; 26 | height: 100%; 27 | } 28 | 29 | a { 30 | text-decoration: none; 31 | } 32 | 33 | .hide-for-mobile { 34 | // Although this is called hide-for-mobile 35 | // It hides stuff in both mobile and tablet 36 | // views. 37 | @include notDesktop { 38 | display: none!important; 39 | } 40 | } 41 | 42 | .hide-for-desktop { 43 | @include desktop { 44 | display: none!important; 45 | } 46 | } 47 | 48 | img { 49 | pointer-events: none 50 | } 51 | 52 | @tailwind base; 53 | @tailwind components; 54 | @tailwind utilities; 55 | 56 | p.rights { 57 | font-size: 0.785rem; 58 | font-weight: 500; 59 | a { 60 | color: #0ea5e9; 61 | &:hover { 62 | color: #0369a1; 63 | text-decoration: underline 64 | } 65 | } 66 | } 67 | 68 | @import "nprogress"; 69 | @import "cluster"; 70 | -------------------------------------------------------------------------------- /src/utils/posts.js: -------------------------------------------------------------------------------- 1 | export const e1Posts = { 2 | "bocal-dump": null, 3 | e3r2p14: null, 4 | e3r2p13: null, 5 | e3r1p8: null, 6 | e3r2p12: null, 7 | e3r2p11: null, 8 | e3r2p10: null, 9 | e3r1p1: null, 10 | e3r5p10: null, 11 | e3r5p9: null, 12 | e3r2p15: null, 13 | e3r6p1: null, 14 | e3r6p4: null, 15 | e3r2p4: null, 16 | e3r2p5: null, 17 | e3r2p1: null, 18 | e3r2p3: null, 19 | e3r1p13: null, 20 | e3r3p1: null, 21 | e3r3p5: null, 22 | e3r3p2: null, 23 | e3r3p4: null, 24 | e3r3p3: null, 25 | e3r4p4: null, 26 | e3r5p12: null, 27 | e3r1p15: null, 28 | e3r4p11: null, 29 | e3r3p7: null, 30 | e3r3p6: null, 31 | e3r3p9: null, 32 | e3r1p12: null, 33 | e3r3p10: null, 34 | e3r3p13: null, 35 | e3r1p2: null, 36 | e3r3p8: null, 37 | e3r1p13: null, 38 | e3r2p7: null, 39 | e3r1p12: null, 40 | e3r1p4: null, 41 | e3r1p14: null, 42 | e3r1p5: null, 43 | e3r1p6: null, 44 | e3r2p2: null, 45 | e3r1p7: null, 46 | e3r3p12: null, 47 | e3r4p1: null, 48 | e3r1p9: null, 49 | e3r3p14: null, 50 | e3r4p2: null, 51 | e3r5p14: null, 52 | e3r5p13: null, 53 | e3r5p15: null, 54 | e3r3p15: null, 55 | e3r4p3: null, 56 | e3r2p9: null, 57 | e3r2p8: null, 58 | e3r2p6: null, 59 | e3r4p14: null, 60 | e3r4p5: null, 61 | e3r5p11: null, 62 | e3r4p6: null, 63 | e3r4p10: null, 64 | e3r4p9: null, 65 | e3r4p7: null, 66 | e3r12p2: null, 67 | e3r12p1: null, 68 | e3r11p8: null, 69 | e3r1p10: null, 70 | e3r4p8: null, 71 | e3r1p11: null, 72 | e3r5p4: null, 73 | e3r5p3: null, 74 | e3r5p2: null, 75 | e3r6p3: null, 76 | e3r5p8: null, 77 | e3r5p7: null, 78 | e3r5p6: null, 79 | e3r5p5: null, 80 | e2r4p14: null, 81 | e3r3p11: null, 82 | }; 83 | 84 | export const e2Posts = { 85 | "hanane-dump": null, 86 | e3r9p8: null, 87 | e3r9p9: null, 88 | e3r9p10: null, 89 | e3r9p11: null, 90 | e3r9p3: null, 91 | e3r9p7: null, 92 | e3r9p14: null, 93 | e3r9p15: null, 94 | e3r9p2: null, 95 | e3r9p6: null, 96 | e3r9p13: null, 97 | e3r10p2: null, 98 | e3r9p1: null, 99 | e3r9p5: null, 100 | e3r9p12: null, 101 | e3r10p1: null, 102 | e3r8p15: null, 103 | e3r9p4: null, 104 | e3r10p6: null, 105 | e3r8p10: null, 106 | e3r8p14: null, 107 | e3r10p5: null, 108 | e3r10p7: null, 109 | e3r8p9: null, 110 | e3r8p13: null, 111 | e3r10p4: null, 112 | e3r10p2: null, 113 | e3r8p8: null, 114 | e3r8p12: null, 115 | e3r10p3: null, 116 | e3r10p9: null, 117 | e3r8p7: null, 118 | e3r8p11: null, 119 | e3r7p8: null, 120 | e3r7p12: null, 121 | e3r7p9: null, 122 | e3r7p13: null, 123 | e3r8p3: null, 124 | e3r8p6: null, 125 | e3r7p10: null, 126 | e3r7p14: null, 127 | e3r8p2: null, 128 | e3r8p5: null, 129 | e3r7p11: null, 130 | e3r8p1: null, 131 | e3r8p4: null, 132 | e3r7p2: null, 133 | e3r7p3: null, 134 | e3r7p7: null, 135 | e3r6p12: null, 136 | e3r10p10: null, 137 | e3r10p11: null, 138 | e3r7p1: null, 139 | e3r7p4: null, 140 | e3r6p15: null, 141 | e3r5p1: null, 142 | e3r7p15: null, 143 | e3r7p5: null, 144 | e3r4p12: null, 145 | e3r1p3: null, 146 | e3r6p14: null, 147 | e3r7p6: null, 148 | e3r11p6: null, 149 | e3r11p9: null, 150 | e3r11p12: null, 151 | e3r11p15: null, 152 | e3r6p10: null, 153 | e3r6p11: null, 154 | e3r6p12: null, 155 | e3r6p13: null, 156 | e3r11p5: null, 157 | e3r11p11: null, 158 | e3r11p14: null, 159 | e3r6p6: null, 160 | e3r6p7: null, 161 | e3r6p8: null, 162 | e3r6p9: null, 163 | e3r11p4: null, 164 | e3r11p7: null, 165 | e3r11p10: null, 166 | e3r11p13: null, 167 | e3r10p13: null, 168 | e3r10p14: null, 169 | e3r10p15: null, 170 | e3r12p3: null, 171 | e3r12p6: null, 172 | e3r12p9: null, 173 | e3r12p12: null, 174 | e3r11p1: null, 175 | e3r11p2: null, 176 | e3r11p3: null, 177 | e3r12p5: null, 178 | e3r12p8: null, 179 | e3r12p11: null, 180 | e3r12p4: null, 181 | e3r12p7: null, 182 | e3r12p10: null, 183 | e3r12p13: null, 184 | e3r12p14: null, 185 | e3r12p15: null, 186 | e3r13p1: null, 187 | e3r13p2: null, 188 | e3r13p3: null, 189 | e3r6p2: null, 190 | }; 191 | -------------------------------------------------------------------------------- /src/utils/run.js: -------------------------------------------------------------------------------- 1 | import { ClientCredentials } from "simple-oauth2"; 2 | 3 | const config = { 4 | client: { 5 | id: process.env.CLIENT_UID, 6 | secret: process.env.CLIENT_SECRET, 7 | }, 8 | auth: { 9 | tokenHost: "https://api.intra.42.fr", 10 | }, 11 | }; 12 | 13 | global.accessToken = null; 14 | 15 | export async function run() { 16 | const client = new ClientCredentials(config); 17 | 18 | const accessToken = global.accessToken; 19 | // only ask for access token if expires 20 | if (accessToken && Date.parse(accessToken.token.expires_at) > Date.now()) 21 | { 22 | console.log("fromCache####################", ) 23 | return accessToken.token; 24 | } 25 | 26 | try { 27 | // get access token 28 | const accessToken = await client.getToken(); 29 | 30 | // cache 31 | global.accessToken = accessToken; 32 | // return access token 33 | return accessToken.token; 34 | } catch (error) { 35 | console.error("Access Token error", error.message); 36 | return null; 37 | } 38 | } 39 | 40 | export function now() { 41 | return Date.now() / 1000; 42 | } 43 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,ts,jsx,tsx}"], 3 | darkMode: "class", 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | }; 9 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime-corejs3@^7.10.2": 6 | version "7.18.9" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz#7bacecd1cb2dd694eacd32a91fcf7021c20770ae" 8 | integrity sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A== 9 | dependencies: 10 | core-js-pure "^3.20.2" 11 | regenerator-runtime "^0.13.4" 12 | 13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.18.9": 14 | version "7.18.9" 15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a" 16 | integrity sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw== 17 | dependencies: 18 | regenerator-runtime "^0.13.4" 19 | 20 | "@eslint/eslintrc@^1.3.0": 21 | version "1.3.1" 22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.1.tgz#de0807bfeffc37b964a7d0400e0c348ce5a2543d" 23 | integrity sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ== 24 | dependencies: 25 | ajv "^6.12.4" 26 | debug "^4.3.2" 27 | espree "^9.4.0" 28 | globals "^13.15.0" 29 | ignore "^5.2.0" 30 | import-fresh "^3.2.1" 31 | js-yaml "^4.1.0" 32 | minimatch "^3.1.2" 33 | strip-json-comments "^3.1.1" 34 | 35 | "@hapi/boom@9.x.x": 36 | version "9.1.4" 37 | resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.4.tgz#1f9dad367c6a7da9f8def24b4a986fc5a7bd9db6" 38 | integrity sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw== 39 | dependencies: 40 | "@hapi/hoek" "9.x.x" 41 | 42 | "@hapi/bourne@2.x.x": 43 | version "2.1.0" 44 | resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-2.1.0.tgz#66aff77094dc3080bd5df44ec63881f2676eb020" 45 | integrity sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q== 46 | 47 | "@hapi/hoek@9.x.x", "@hapi/hoek@^9.0.0", "@hapi/hoek@^9.0.4": 48 | version "9.3.0" 49 | resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" 50 | integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== 51 | 52 | "@hapi/topo@^5.0.0": 53 | version "5.1.0" 54 | resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" 55 | integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== 56 | dependencies: 57 | "@hapi/hoek" "^9.0.0" 58 | 59 | "@hapi/wreck@^17.0.0": 60 | version "17.2.0" 61 | resolved "https://registry.yarnpkg.com/@hapi/wreck/-/wreck-17.2.0.tgz#a5b69b724fa8fa25550fb02f55c649becfc59f63" 62 | integrity sha512-pJ5kjYoRPYDv+eIuiLQqhGon341fr2bNIYZjuotuPJG/3Ilzr/XtI+JAp0A86E2bYfsS3zBPABuS2ICkaXFT8g== 63 | dependencies: 64 | "@hapi/boom" "9.x.x" 65 | "@hapi/bourne" "2.x.x" 66 | "@hapi/hoek" "9.x.x" 67 | 68 | "@humanwhocodes/config-array@^0.9.2": 69 | version "0.9.5" 70 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" 71 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== 72 | dependencies: 73 | "@humanwhocodes/object-schema" "^1.2.1" 74 | debug "^4.1.1" 75 | minimatch "^3.0.4" 76 | 77 | "@humanwhocodes/object-schema@^1.2.1": 78 | version "1.2.1" 79 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 80 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 81 | 82 | "@next/env@12.1.6": 83 | version "12.1.6" 84 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.6.tgz#5f44823a78335355f00f1687cfc4f1dafa3eca08" 85 | integrity sha512-Te/OBDXFSodPU6jlXYPAXpmZr/AkG6DCATAxttQxqOWaq6eDFX25Db3dK0120GZrSZmv4QCe9KsZmJKDbWs4OA== 86 | 87 | "@next/eslint-plugin-next@12.1.6": 88 | version "12.1.6" 89 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.6.tgz#dde3f98831f15923b25244588d924c716956292e" 90 | integrity sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw== 91 | dependencies: 92 | glob "7.1.7" 93 | 94 | "@next/swc-android-arm-eabi@12.1.6": 95 | version "12.1.6" 96 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.6.tgz#79a35349b98f2f8c038ab6261aa9cd0d121c03f9" 97 | integrity sha512-BxBr3QAAAXWgk/K7EedvzxJr2dE014mghBSA9iOEAv0bMgF+MRq4PoASjuHi15M2zfowpcRG8XQhMFtxftCleQ== 98 | 99 | "@next/swc-android-arm64@12.1.6": 100 | version "12.1.6" 101 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.6.tgz#ec08ea61794f8752c8ebcacbed0aafc5b9407456" 102 | integrity sha512-EboEk3ROYY7U6WA2RrMt/cXXMokUTXXfnxe2+CU+DOahvbrO8QSWhlBl9I9ZbFzJx28AGB9Yo3oQHCvph/4Lew== 103 | 104 | "@next/swc-darwin-arm64@12.1.6": 105 | version "12.1.6" 106 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.6.tgz#d1053805615fd0706e9b1667893a72271cd87119" 107 | integrity sha512-P0EXU12BMSdNj1F7vdkP/VrYDuCNwBExtRPDYawgSUakzi6qP0iKJpya2BuLvNzXx+XPU49GFuDC5X+SvY0mOw== 108 | 109 | "@next/swc-darwin-x64@12.1.6": 110 | version "12.1.6" 111 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.6.tgz#2d1b926a22f4c5230d5b311f9c56cfdcc406afec" 112 | integrity sha512-9FptMnbgHJK3dRDzfTpexs9S2hGpzOQxSQbe8omz6Pcl7rnEp9x4uSEKY51ho85JCjL4d0tDLBcXEJZKKLzxNg== 113 | 114 | "@next/swc-linux-arm-gnueabihf@12.1.6": 115 | version "12.1.6" 116 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.6.tgz#c021918d2a94a17f823106a5e069335b8a19724f" 117 | integrity sha512-PvfEa1RR55dsik/IDkCKSFkk6ODNGJqPY3ysVUZqmnWMDSuqFtf7BPWHFa/53znpvVB5XaJ5Z1/6aR5CTIqxPw== 118 | 119 | "@next/swc-linux-arm64-gnu@12.1.6": 120 | version "12.1.6" 121 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.6.tgz#ac55c07bfabde378dfa0ce2b8fc1c3b2897e81ae" 122 | integrity sha512-53QOvX1jBbC2ctnmWHyRhMajGq7QZfl974WYlwclXarVV418X7ed7o/EzGY+YVAEKzIVaAB9JFFWGXn8WWo0gQ== 123 | 124 | "@next/swc-linux-arm64-musl@12.1.6": 125 | version "12.1.6" 126 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.6.tgz#e429f826279894be9096be6bec13e75e3d6bd671" 127 | integrity sha512-CMWAkYqfGdQCS+uuMA1A2UhOfcUYeoqnTW7msLr2RyYAys15pD960hlDfq7QAi8BCAKk0sQ2rjsl0iqMyziohQ== 128 | 129 | "@next/swc-linux-x64-gnu@12.1.6": 130 | version "12.1.6" 131 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.6.tgz#1f276c0784a5ca599bfa34b2fcc0b38f3a738e08" 132 | integrity sha512-AC7jE4Fxpn0s3ujngClIDTiEM/CQiB2N2vkcyWWn6734AmGT03Duq6RYtPMymFobDdAtZGFZd5nR95WjPzbZAQ== 133 | 134 | "@next/swc-linux-x64-musl@12.1.6": 135 | version "12.1.6" 136 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.6.tgz#1d9933dd6ba303dcfd8a2acd6ac7c27ed41e2eea" 137 | integrity sha512-c9Vjmi0EVk0Kou2qbrynskVarnFwfYIi+wKufR9Ad7/IKKuP6aEhOdZiIIdKsYWRtK2IWRF3h3YmdnEa2WLUag== 138 | 139 | "@next/swc-win32-arm64-msvc@12.1.6": 140 | version "12.1.6" 141 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.6.tgz#2ef9837f12ca652b1783d72ecb86208906042f02" 142 | integrity sha512-3UTOL/5XZSKFelM7qN0it35o3Cegm6LsyuERR3/OoqEExyj3aCk7F025b54/707HTMAnjlvQK3DzLhPu/xxO4g== 143 | 144 | "@next/swc-win32-ia32-msvc@12.1.6": 145 | version "12.1.6" 146 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.6.tgz#74003d0aa1c59dfa56cb15481a5c607cbc0027b9" 147 | integrity sha512-8ZWoj6nCq6fI1yCzKq6oK0jE6Mxlz4MrEsRyu0TwDztWQWe7rh4XXGLAa2YVPatYcHhMcUL+fQQbqd1MsgaSDA== 148 | 149 | "@next/swc-win32-x64-msvc@12.1.6": 150 | version "12.1.6" 151 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.6.tgz#a350caf42975e7197b24b495b8d764eec7e6a36e" 152 | integrity sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA== 153 | 154 | "@nodelib/fs.scandir@2.1.5": 155 | version "2.1.5" 156 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 157 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 158 | dependencies: 159 | "@nodelib/fs.stat" "2.0.5" 160 | run-parallel "^1.1.9" 161 | 162 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 163 | version "2.0.5" 164 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 165 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 166 | 167 | "@nodelib/fs.walk@^1.2.3": 168 | version "1.2.8" 169 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 170 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 171 | dependencies: 172 | "@nodelib/fs.scandir" "2.1.5" 173 | fastq "^1.6.0" 174 | 175 | "@rushstack/eslint-patch@^1.1.3": 176 | version "1.1.4" 177 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz#0c8b74c50f29ee44f423f7416829c0bf8bb5eb27" 178 | integrity sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA== 179 | 180 | "@sideway/address@^4.1.3": 181 | version "4.1.4" 182 | resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" 183 | integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== 184 | dependencies: 185 | "@hapi/hoek" "^9.0.0" 186 | 187 | "@sideway/formula@^3.0.0": 188 | version "3.0.0" 189 | resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" 190 | integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== 191 | 192 | "@sideway/pinpoint@^2.0.0": 193 | version "2.0.0" 194 | resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" 195 | integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 196 | 197 | "@types/json5@^0.0.29": 198 | version "0.0.29" 199 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 200 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 201 | 202 | "@typescript-eslint/parser@^5.21.0": 203 | version "5.36.1" 204 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.1.tgz#931c22c7bacefd17e29734628cdec8b2acdcf1ce" 205 | integrity sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A== 206 | dependencies: 207 | "@typescript-eslint/scope-manager" "5.36.1" 208 | "@typescript-eslint/types" "5.36.1" 209 | "@typescript-eslint/typescript-estree" "5.36.1" 210 | debug "^4.3.4" 211 | 212 | "@typescript-eslint/scope-manager@5.36.1": 213 | version "5.36.1" 214 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.36.1.tgz#23c49b7ddbcffbe09082e6694c2524950766513f" 215 | integrity sha512-pGC2SH3/tXdu9IH3ItoqciD3f3RRGCh7hb9zPdN2Drsr341zgd6VbhP5OHQO/reUqihNltfPpMpTNihFMarP2w== 216 | dependencies: 217 | "@typescript-eslint/types" "5.36.1" 218 | "@typescript-eslint/visitor-keys" "5.36.1" 219 | 220 | "@typescript-eslint/types@5.36.1": 221 | version "5.36.1" 222 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.1.tgz#1cf0e28aed1cb3ee676917966eb23c2f8334ce2c" 223 | integrity sha512-jd93ShpsIk1KgBTx9E+hCSEuLCUFwi9V/urhjOWnOaksGZFbTOxAT47OH2d4NLJnLhkVD+wDbB48BuaycZPLBg== 224 | 225 | "@typescript-eslint/typescript-estree@5.36.1": 226 | version "5.36.1" 227 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.1.tgz#b857f38d6200f7f3f4c65cd0a5afd5ae723f2adb" 228 | integrity sha512-ih7V52zvHdiX6WcPjsOdmADhYMDN15SylWRZrT2OMy80wzKbc79n8wFW0xpWpU0x3VpBz/oDgTm2xwDAnFTl+g== 229 | dependencies: 230 | "@typescript-eslint/types" "5.36.1" 231 | "@typescript-eslint/visitor-keys" "5.36.1" 232 | debug "^4.3.4" 233 | globby "^11.1.0" 234 | is-glob "^4.0.3" 235 | semver "^7.3.7" 236 | tsutils "^3.21.0" 237 | 238 | "@typescript-eslint/visitor-keys@5.36.1": 239 | version "5.36.1" 240 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.1.tgz#7731175312d65738e501780f923896d200ad1615" 241 | integrity sha512-ojB9aRyRFzVMN3b5joSYni6FAS10BBSCAfKJhjJAV08t/a95aM6tAhz+O1jF+EtgxktuSO3wJysp2R+Def/IWQ== 242 | dependencies: 243 | "@typescript-eslint/types" "5.36.1" 244 | eslint-visitor-keys "^3.3.0" 245 | 246 | acorn-jsx@^5.3.2: 247 | version "5.3.2" 248 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 249 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 250 | 251 | acorn-node@^1.8.2: 252 | version "1.8.2" 253 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 254 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 255 | dependencies: 256 | acorn "^7.0.0" 257 | acorn-walk "^7.0.0" 258 | xtend "^4.0.2" 259 | 260 | acorn-walk@^7.0.0: 261 | version "7.2.0" 262 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 263 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 264 | 265 | acorn@^7.0.0: 266 | version "7.4.1" 267 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 268 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 269 | 270 | acorn@^8.8.0: 271 | version "8.8.0" 272 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" 273 | integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== 274 | 275 | ajv@^6.10.0, ajv@^6.12.4: 276 | version "6.12.6" 277 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 278 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 279 | dependencies: 280 | fast-deep-equal "^3.1.1" 281 | fast-json-stable-stringify "^2.0.0" 282 | json-schema-traverse "^0.4.1" 283 | uri-js "^4.2.2" 284 | 285 | ansi-regex@^5.0.1: 286 | version "5.0.1" 287 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 288 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 289 | 290 | ansi-styles@^4.1.0: 291 | version "4.3.0" 292 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 293 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 294 | dependencies: 295 | color-convert "^2.0.1" 296 | 297 | anymatch@~3.1.2: 298 | version "3.1.2" 299 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 300 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 301 | dependencies: 302 | normalize-path "^3.0.0" 303 | picomatch "^2.0.4" 304 | 305 | arg@^5.0.2: 306 | version "5.0.2" 307 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" 308 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 309 | 310 | argparse@^2.0.1: 311 | version "2.0.1" 312 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 313 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 314 | 315 | aria-query@^4.2.2: 316 | version "4.2.2" 317 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 318 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 319 | dependencies: 320 | "@babel/runtime" "^7.10.2" 321 | "@babel/runtime-corejs3" "^7.10.2" 322 | 323 | array-includes@^3.1.4, array-includes@^3.1.5: 324 | version "3.1.5" 325 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 326 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 327 | dependencies: 328 | call-bind "^1.0.2" 329 | define-properties "^1.1.4" 330 | es-abstract "^1.19.5" 331 | get-intrinsic "^1.1.1" 332 | is-string "^1.0.7" 333 | 334 | array-union@^2.1.0: 335 | version "2.1.0" 336 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 337 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 338 | 339 | array.prototype.flat@^1.2.5: 340 | version "1.3.0" 341 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" 342 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== 343 | dependencies: 344 | call-bind "^1.0.2" 345 | define-properties "^1.1.3" 346 | es-abstract "^1.19.2" 347 | es-shim-unscopables "^1.0.0" 348 | 349 | array.prototype.flatmap@^1.3.0: 350 | version "1.3.0" 351 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 352 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 353 | dependencies: 354 | call-bind "^1.0.2" 355 | define-properties "^1.1.3" 356 | es-abstract "^1.19.2" 357 | es-shim-unscopables "^1.0.0" 358 | 359 | ast-types-flow@^0.0.7: 360 | version "0.0.7" 361 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 362 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 363 | 364 | autoprefixer@^10.4.7: 365 | version "10.4.8" 366 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.8.tgz#92c7a0199e1cfb2ad5d9427bd585a3d75895b9e5" 367 | integrity sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw== 368 | dependencies: 369 | browserslist "^4.21.3" 370 | caniuse-lite "^1.0.30001373" 371 | fraction.js "^4.2.0" 372 | normalize-range "^0.1.2" 373 | picocolors "^1.0.0" 374 | postcss-value-parser "^4.2.0" 375 | 376 | axe-core@^4.4.3: 377 | version "4.4.3" 378 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.3.tgz#11c74d23d5013c0fa5d183796729bc3482bd2f6f" 379 | integrity sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w== 380 | 381 | axobject-query@^2.2.0: 382 | version "2.2.0" 383 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 384 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 385 | 386 | balanced-match@^1.0.0: 387 | version "1.0.2" 388 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 389 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 390 | 391 | binary-extensions@^2.0.0: 392 | version "2.2.0" 393 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 394 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 395 | 396 | brace-expansion@^1.1.7: 397 | version "1.1.11" 398 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 399 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 400 | dependencies: 401 | balanced-match "^1.0.0" 402 | concat-map "0.0.1" 403 | 404 | braces@^3.0.2, braces@~3.0.2: 405 | version "3.0.2" 406 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 407 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 408 | dependencies: 409 | fill-range "^7.0.1" 410 | 411 | browserslist@^4.21.3: 412 | version "4.21.3" 413 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a" 414 | integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ== 415 | dependencies: 416 | caniuse-lite "^1.0.30001370" 417 | electron-to-chromium "^1.4.202" 418 | node-releases "^2.0.6" 419 | update-browserslist-db "^1.0.5" 420 | 421 | call-bind@^1.0.0, call-bind@^1.0.2: 422 | version "1.0.2" 423 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 424 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 425 | dependencies: 426 | function-bind "^1.1.1" 427 | get-intrinsic "^1.0.2" 428 | 429 | callsites@^3.0.0: 430 | version "3.1.0" 431 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 432 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 433 | 434 | camelcase-css@^2.0.1: 435 | version "2.0.1" 436 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 437 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 438 | 439 | caniuse-lite@^1.0.30001332, caniuse-lite@^1.0.30001370, caniuse-lite@^1.0.30001373: 440 | version "1.0.30001390" 441 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001390.tgz#158a43011e7068ef7fc73590e9fd91a7cece5e7f" 442 | integrity sha512-sS4CaUM+/+vqQUlCvCJ2WtDlV81aWtHhqeEVkLokVJJa3ViN4zDxAGfq9R8i1m90uGHxo99cy10Od+lvn3hf0g== 443 | 444 | chalk@^4.0.0: 445 | version "4.1.2" 446 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 447 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 448 | dependencies: 449 | ansi-styles "^4.1.0" 450 | supports-color "^7.1.0" 451 | 452 | "chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: 453 | version "3.5.3" 454 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 455 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 456 | dependencies: 457 | anymatch "~3.1.2" 458 | braces "~3.0.2" 459 | glob-parent "~5.1.2" 460 | is-binary-path "~2.1.0" 461 | is-glob "~4.0.1" 462 | normalize-path "~3.0.0" 463 | readdirp "~3.6.0" 464 | optionalDependencies: 465 | fsevents "~2.3.2" 466 | 467 | color-convert@^2.0.1: 468 | version "2.0.1" 469 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 470 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 471 | dependencies: 472 | color-name "~1.1.4" 473 | 474 | color-name@^1.1.4, color-name@~1.1.4: 475 | version "1.1.4" 476 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 477 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 478 | 479 | concat-map@0.0.1: 480 | version "0.0.1" 481 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 482 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 483 | 484 | core-js-pure@^3.20.2: 485 | version "3.25.0" 486 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.25.0.tgz#f8d1f176ff29abbfeb610110de891d5ae5a361d4" 487 | integrity sha512-IeHpLwk3uoci37yoI2Laty59+YqH9x5uR65/yiA0ARAJrTrN4YU0rmauLWfvqOuk77SlNJXj2rM6oT/dBD87+A== 488 | 489 | cross-spawn@^7.0.2: 490 | version "7.0.3" 491 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 492 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 493 | dependencies: 494 | path-key "^3.1.0" 495 | shebang-command "^2.0.0" 496 | which "^2.0.1" 497 | 498 | cssesc@^3.0.0: 499 | version "3.0.0" 500 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 501 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 502 | 503 | damerau-levenshtein@^1.0.8: 504 | version "1.0.8" 505 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 506 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 507 | 508 | debug@^2.6.9: 509 | version "2.6.9" 510 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 511 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 512 | dependencies: 513 | ms "2.0.0" 514 | 515 | debug@^3.2.7: 516 | version "3.2.7" 517 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 518 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 519 | dependencies: 520 | ms "^2.1.1" 521 | 522 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 523 | version "4.3.4" 524 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 525 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 526 | dependencies: 527 | ms "2.1.2" 528 | 529 | deep-is@^0.1.3: 530 | version "0.1.4" 531 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 532 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 533 | 534 | define-properties@^1.1.3, define-properties@^1.1.4: 535 | version "1.1.4" 536 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 537 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 538 | dependencies: 539 | has-property-descriptors "^1.0.0" 540 | object-keys "^1.1.1" 541 | 542 | defined@^1.0.0: 543 | version "1.0.0" 544 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 545 | integrity sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ== 546 | 547 | detective@^5.2.1: 548 | version "5.2.1" 549 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" 550 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== 551 | dependencies: 552 | acorn-node "^1.8.2" 553 | defined "^1.0.0" 554 | minimist "^1.2.6" 555 | 556 | didyoumean@^1.2.2: 557 | version "1.2.2" 558 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" 559 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 560 | 561 | dir-glob@^3.0.1: 562 | version "3.0.1" 563 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 564 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 565 | dependencies: 566 | path-type "^4.0.0" 567 | 568 | dlv@^1.1.3: 569 | version "1.1.3" 570 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" 571 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 572 | 573 | doctrine@^2.1.0: 574 | version "2.1.0" 575 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 576 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 577 | dependencies: 578 | esutils "^2.0.2" 579 | 580 | doctrine@^3.0.0: 581 | version "3.0.0" 582 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 583 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 584 | dependencies: 585 | esutils "^2.0.2" 586 | 587 | electron-to-chromium@^1.4.202: 588 | version "1.4.241" 589 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.241.tgz#5aa03ab94db590d8269f4518157c24b1efad34d6" 590 | integrity sha512-e7Wsh4ilaioBZ5bMm6+F4V5c11dh56/5Jwz7Hl5Tu1J7cnB+Pqx5qIF2iC7HPpfyQMqGSvvLP5bBAIDd2gAtGw== 591 | 592 | emoji-regex@^9.2.2: 593 | version "9.2.2" 594 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 595 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 596 | 597 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 598 | version "1.20.2" 599 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3" 600 | integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ== 601 | dependencies: 602 | call-bind "^1.0.2" 603 | es-to-primitive "^1.2.1" 604 | function-bind "^1.1.1" 605 | function.prototype.name "^1.1.5" 606 | get-intrinsic "^1.1.2" 607 | get-symbol-description "^1.0.0" 608 | has "^1.0.3" 609 | has-property-descriptors "^1.0.0" 610 | has-symbols "^1.0.3" 611 | internal-slot "^1.0.3" 612 | is-callable "^1.2.4" 613 | is-negative-zero "^2.0.2" 614 | is-regex "^1.1.4" 615 | is-shared-array-buffer "^1.0.2" 616 | is-string "^1.0.7" 617 | is-weakref "^1.0.2" 618 | object-inspect "^1.12.2" 619 | object-keys "^1.1.1" 620 | object.assign "^4.1.4" 621 | regexp.prototype.flags "^1.4.3" 622 | string.prototype.trimend "^1.0.5" 623 | string.prototype.trimstart "^1.0.5" 624 | unbox-primitive "^1.0.2" 625 | 626 | es-shim-unscopables@^1.0.0: 627 | version "1.0.0" 628 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 629 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 630 | dependencies: 631 | has "^1.0.3" 632 | 633 | es-to-primitive@^1.2.1: 634 | version "1.2.1" 635 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 636 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 637 | dependencies: 638 | is-callable "^1.1.4" 639 | is-date-object "^1.0.1" 640 | is-symbol "^1.0.2" 641 | 642 | escalade@^3.1.1: 643 | version "3.1.1" 644 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 645 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 646 | 647 | escape-string-regexp@^4.0.0: 648 | version "4.0.0" 649 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 650 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 651 | 652 | eslint-config-next@12.1.6: 653 | version "12.1.6" 654 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.6.tgz#55097028982dce49159d8753000be3916ac55254" 655 | integrity sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA== 656 | dependencies: 657 | "@next/eslint-plugin-next" "12.1.6" 658 | "@rushstack/eslint-patch" "^1.1.3" 659 | "@typescript-eslint/parser" "^5.21.0" 660 | eslint-import-resolver-node "^0.3.6" 661 | eslint-import-resolver-typescript "^2.7.1" 662 | eslint-plugin-import "^2.26.0" 663 | eslint-plugin-jsx-a11y "^6.5.1" 664 | eslint-plugin-react "^7.29.4" 665 | eslint-plugin-react-hooks "^4.5.0" 666 | 667 | eslint-import-resolver-node@^0.3.6: 668 | version "0.3.6" 669 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 670 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 671 | dependencies: 672 | debug "^3.2.7" 673 | resolve "^1.20.0" 674 | 675 | eslint-import-resolver-typescript@^2.7.1: 676 | version "2.7.1" 677 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" 678 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== 679 | dependencies: 680 | debug "^4.3.4" 681 | glob "^7.2.0" 682 | is-glob "^4.0.3" 683 | resolve "^1.22.0" 684 | tsconfig-paths "^3.14.1" 685 | 686 | eslint-module-utils@^2.7.3: 687 | version "2.7.4" 688 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 689 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 690 | dependencies: 691 | debug "^3.2.7" 692 | 693 | eslint-plugin-import@^2.26.0: 694 | version "2.26.0" 695 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" 696 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== 697 | dependencies: 698 | array-includes "^3.1.4" 699 | array.prototype.flat "^1.2.5" 700 | debug "^2.6.9" 701 | doctrine "^2.1.0" 702 | eslint-import-resolver-node "^0.3.6" 703 | eslint-module-utils "^2.7.3" 704 | has "^1.0.3" 705 | is-core-module "^2.8.1" 706 | is-glob "^4.0.3" 707 | minimatch "^3.1.2" 708 | object.values "^1.1.5" 709 | resolve "^1.22.0" 710 | tsconfig-paths "^3.14.1" 711 | 712 | eslint-plugin-jsx-a11y@^6.5.1: 713 | version "6.6.1" 714 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff" 715 | integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q== 716 | dependencies: 717 | "@babel/runtime" "^7.18.9" 718 | aria-query "^4.2.2" 719 | array-includes "^3.1.5" 720 | ast-types-flow "^0.0.7" 721 | axe-core "^4.4.3" 722 | axobject-query "^2.2.0" 723 | damerau-levenshtein "^1.0.8" 724 | emoji-regex "^9.2.2" 725 | has "^1.0.3" 726 | jsx-ast-utils "^3.3.2" 727 | language-tags "^1.0.5" 728 | minimatch "^3.1.2" 729 | semver "^6.3.0" 730 | 731 | eslint-plugin-react-hooks@^4.5.0: 732 | version "4.6.0" 733 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 734 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 735 | 736 | eslint-plugin-react@^7.29.4: 737 | version "7.31.6" 738 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.6.tgz#55ec176be94917ecde3f3ca0e1363073193e241a" 739 | integrity sha512-CXu4eu28sb8Sd2+cyUYsJVyDvpTlaXPG+bOzzpS9IzZKtye96AYX3ZmHQ6ayn/OAIQ/ufDJP8ElPWd63Pepn9w== 740 | dependencies: 741 | array-includes "^3.1.5" 742 | array.prototype.flatmap "^1.3.0" 743 | doctrine "^2.1.0" 744 | estraverse "^5.3.0" 745 | jsx-ast-utils "^2.4.1 || ^3.0.0" 746 | minimatch "^3.1.2" 747 | object.entries "^1.1.5" 748 | object.fromentries "^2.0.5" 749 | object.hasown "^1.1.1" 750 | object.values "^1.1.5" 751 | prop-types "^15.8.1" 752 | resolve "^2.0.0-next.3" 753 | semver "^6.3.0" 754 | string.prototype.matchall "^4.0.7" 755 | 756 | eslint-scope@^7.1.1: 757 | version "7.1.1" 758 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 759 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 760 | dependencies: 761 | esrecurse "^4.3.0" 762 | estraverse "^5.2.0" 763 | 764 | eslint-utils@^3.0.0: 765 | version "3.0.0" 766 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 767 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 768 | dependencies: 769 | eslint-visitor-keys "^2.0.0" 770 | 771 | eslint-visitor-keys@^2.0.0: 772 | version "2.1.0" 773 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 774 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 775 | 776 | eslint-visitor-keys@^3.3.0: 777 | version "3.3.0" 778 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 779 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 780 | 781 | eslint@8.17.0: 782 | version "8.17.0" 783 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.17.0.tgz#1cfc4b6b6912f77d24b874ca1506b0fe09328c21" 784 | integrity sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw== 785 | dependencies: 786 | "@eslint/eslintrc" "^1.3.0" 787 | "@humanwhocodes/config-array" "^0.9.2" 788 | ajv "^6.10.0" 789 | chalk "^4.0.0" 790 | cross-spawn "^7.0.2" 791 | debug "^4.3.2" 792 | doctrine "^3.0.0" 793 | escape-string-regexp "^4.0.0" 794 | eslint-scope "^7.1.1" 795 | eslint-utils "^3.0.0" 796 | eslint-visitor-keys "^3.3.0" 797 | espree "^9.3.2" 798 | esquery "^1.4.0" 799 | esutils "^2.0.2" 800 | fast-deep-equal "^3.1.3" 801 | file-entry-cache "^6.0.1" 802 | functional-red-black-tree "^1.0.1" 803 | glob-parent "^6.0.1" 804 | globals "^13.15.0" 805 | ignore "^5.2.0" 806 | import-fresh "^3.0.0" 807 | imurmurhash "^0.1.4" 808 | is-glob "^4.0.0" 809 | js-yaml "^4.1.0" 810 | json-stable-stringify-without-jsonify "^1.0.1" 811 | levn "^0.4.1" 812 | lodash.merge "^4.6.2" 813 | minimatch "^3.1.2" 814 | natural-compare "^1.4.0" 815 | optionator "^0.9.1" 816 | regexpp "^3.2.0" 817 | strip-ansi "^6.0.1" 818 | strip-json-comments "^3.1.0" 819 | text-table "^0.2.0" 820 | v8-compile-cache "^2.0.3" 821 | 822 | espree@^9.3.2, espree@^9.4.0: 823 | version "9.4.0" 824 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" 825 | integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== 826 | dependencies: 827 | acorn "^8.8.0" 828 | acorn-jsx "^5.3.2" 829 | eslint-visitor-keys "^3.3.0" 830 | 831 | esquery@^1.4.0: 832 | version "1.4.0" 833 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 834 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 835 | dependencies: 836 | estraverse "^5.1.0" 837 | 838 | esrecurse@^4.3.0: 839 | version "4.3.0" 840 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 841 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 842 | dependencies: 843 | estraverse "^5.2.0" 844 | 845 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 846 | version "5.3.0" 847 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 848 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 849 | 850 | esutils@^2.0.2: 851 | version "2.0.3" 852 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 853 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 854 | 855 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 856 | version "3.1.3" 857 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 858 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 859 | 860 | fast-glob@^3.2.11, fast-glob@^3.2.9: 861 | version "3.2.11" 862 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 863 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 864 | dependencies: 865 | "@nodelib/fs.stat" "^2.0.2" 866 | "@nodelib/fs.walk" "^1.2.3" 867 | glob-parent "^5.1.2" 868 | merge2 "^1.3.0" 869 | micromatch "^4.0.4" 870 | 871 | fast-json-stable-stringify@^2.0.0: 872 | version "2.1.0" 873 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 874 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 875 | 876 | fast-levenshtein@^2.0.6: 877 | version "2.0.6" 878 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 879 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 880 | 881 | fastq@^1.6.0: 882 | version "1.13.0" 883 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 884 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 885 | dependencies: 886 | reusify "^1.0.4" 887 | 888 | file-entry-cache@^6.0.1: 889 | version "6.0.1" 890 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 891 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 892 | dependencies: 893 | flat-cache "^3.0.4" 894 | 895 | fill-range@^7.0.1: 896 | version "7.0.1" 897 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 898 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 899 | dependencies: 900 | to-regex-range "^5.0.1" 901 | 902 | flat-cache@^3.0.4: 903 | version "3.0.4" 904 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 905 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 906 | dependencies: 907 | flatted "^3.1.0" 908 | rimraf "^3.0.2" 909 | 910 | flatted@^3.1.0: 911 | version "3.2.7" 912 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 913 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 914 | 915 | fraction.js@^4.2.0: 916 | version "4.2.0" 917 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" 918 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 919 | 920 | fs.realpath@^1.0.0: 921 | version "1.0.0" 922 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 923 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 924 | 925 | fsevents@~2.3.2: 926 | version "2.3.2" 927 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 928 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 929 | 930 | function-bind@^1.1.1: 931 | version "1.1.1" 932 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 933 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 934 | 935 | function.prototype.name@^1.1.5: 936 | version "1.1.5" 937 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 938 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 939 | dependencies: 940 | call-bind "^1.0.2" 941 | define-properties "^1.1.3" 942 | es-abstract "^1.19.0" 943 | functions-have-names "^1.2.2" 944 | 945 | functional-red-black-tree@^1.0.1: 946 | version "1.0.1" 947 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 948 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== 949 | 950 | functions-have-names@^1.2.2: 951 | version "1.2.3" 952 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 953 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 954 | 955 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2: 956 | version "1.1.2" 957 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" 958 | integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== 959 | dependencies: 960 | function-bind "^1.1.1" 961 | has "^1.0.3" 962 | has-symbols "^1.0.3" 963 | 964 | get-symbol-description@^1.0.0: 965 | version "1.0.0" 966 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 967 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 968 | dependencies: 969 | call-bind "^1.0.2" 970 | get-intrinsic "^1.1.1" 971 | 972 | glob-parent@^5.1.2, glob-parent@~5.1.2: 973 | version "5.1.2" 974 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 975 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 976 | dependencies: 977 | is-glob "^4.0.1" 978 | 979 | glob-parent@^6.0.1, glob-parent@^6.0.2: 980 | version "6.0.2" 981 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 982 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 983 | dependencies: 984 | is-glob "^4.0.3" 985 | 986 | glob@7.1.7: 987 | version "7.1.7" 988 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 989 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 990 | dependencies: 991 | fs.realpath "^1.0.0" 992 | inflight "^1.0.4" 993 | inherits "2" 994 | minimatch "^3.0.4" 995 | once "^1.3.0" 996 | path-is-absolute "^1.0.0" 997 | 998 | glob@^7.1.3, glob@^7.2.0: 999 | version "7.2.3" 1000 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1001 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1002 | dependencies: 1003 | fs.realpath "^1.0.0" 1004 | inflight "^1.0.4" 1005 | inherits "2" 1006 | minimatch "^3.1.1" 1007 | once "^1.3.0" 1008 | path-is-absolute "^1.0.0" 1009 | 1010 | globals@^13.15.0: 1011 | version "13.17.0" 1012 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" 1013 | integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== 1014 | dependencies: 1015 | type-fest "^0.20.2" 1016 | 1017 | globby@^11.1.0: 1018 | version "11.1.0" 1019 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1020 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1021 | dependencies: 1022 | array-union "^2.1.0" 1023 | dir-glob "^3.0.1" 1024 | fast-glob "^3.2.9" 1025 | ignore "^5.2.0" 1026 | merge2 "^1.4.1" 1027 | slash "^3.0.0" 1028 | 1029 | hamt_plus@1.0.2: 1030 | version "1.0.2" 1031 | resolved "https://registry.yarnpkg.com/hamt_plus/-/hamt_plus-1.0.2.tgz#e21c252968c7e33b20f6a1b094cd85787a265601" 1032 | integrity sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA== 1033 | 1034 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1035 | version "1.0.2" 1036 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1037 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1038 | 1039 | has-flag@^4.0.0: 1040 | version "4.0.0" 1041 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1042 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1043 | 1044 | has-property-descriptors@^1.0.0: 1045 | version "1.0.0" 1046 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1047 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1048 | dependencies: 1049 | get-intrinsic "^1.1.1" 1050 | 1051 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1052 | version "1.0.3" 1053 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1054 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1055 | 1056 | has-tostringtag@^1.0.0: 1057 | version "1.0.0" 1058 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1059 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1060 | dependencies: 1061 | has-symbols "^1.0.2" 1062 | 1063 | has@^1.0.3: 1064 | version "1.0.3" 1065 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1066 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1067 | dependencies: 1068 | function-bind "^1.1.1" 1069 | 1070 | ignore@^5.2.0: 1071 | version "5.2.0" 1072 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1073 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1074 | 1075 | immutable@^4.0.0: 1076 | version "4.1.0" 1077 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef" 1078 | integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ== 1079 | 1080 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1081 | version "3.3.0" 1082 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1083 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1084 | dependencies: 1085 | parent-module "^1.0.0" 1086 | resolve-from "^4.0.0" 1087 | 1088 | imurmurhash@^0.1.4: 1089 | version "0.1.4" 1090 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1091 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1092 | 1093 | inflight@^1.0.4: 1094 | version "1.0.6" 1095 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1096 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1097 | dependencies: 1098 | once "^1.3.0" 1099 | wrappy "1" 1100 | 1101 | inherits@2: 1102 | version "2.0.4" 1103 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1104 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1105 | 1106 | internal-slot@^1.0.3: 1107 | version "1.0.3" 1108 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1109 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1110 | dependencies: 1111 | get-intrinsic "^1.1.0" 1112 | has "^1.0.3" 1113 | side-channel "^1.0.4" 1114 | 1115 | is-bigint@^1.0.1: 1116 | version "1.0.4" 1117 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1118 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1119 | dependencies: 1120 | has-bigints "^1.0.1" 1121 | 1122 | is-binary-path@~2.1.0: 1123 | version "2.1.0" 1124 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1125 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1126 | dependencies: 1127 | binary-extensions "^2.0.0" 1128 | 1129 | is-boolean-object@^1.1.0: 1130 | version "1.1.2" 1131 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1132 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1133 | dependencies: 1134 | call-bind "^1.0.2" 1135 | has-tostringtag "^1.0.0" 1136 | 1137 | is-callable@^1.1.4, is-callable@^1.2.4: 1138 | version "1.2.4" 1139 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 1140 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1141 | 1142 | is-core-module@^2.8.1, is-core-module@^2.9.0: 1143 | version "2.10.0" 1144 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" 1145 | integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== 1146 | dependencies: 1147 | has "^1.0.3" 1148 | 1149 | is-date-object@^1.0.1: 1150 | version "1.0.5" 1151 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1152 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1153 | dependencies: 1154 | has-tostringtag "^1.0.0" 1155 | 1156 | is-extglob@^2.1.1: 1157 | version "2.1.1" 1158 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1159 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1160 | 1161 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1162 | version "4.0.3" 1163 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1164 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1165 | dependencies: 1166 | is-extglob "^2.1.1" 1167 | 1168 | is-negative-zero@^2.0.2: 1169 | version "2.0.2" 1170 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1171 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1172 | 1173 | is-number-object@^1.0.4: 1174 | version "1.0.7" 1175 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1176 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1177 | dependencies: 1178 | has-tostringtag "^1.0.0" 1179 | 1180 | is-number@^7.0.0: 1181 | version "7.0.0" 1182 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1183 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1184 | 1185 | is-regex@^1.1.4: 1186 | version "1.1.4" 1187 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1188 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1189 | dependencies: 1190 | call-bind "^1.0.2" 1191 | has-tostringtag "^1.0.0" 1192 | 1193 | is-shared-array-buffer@^1.0.2: 1194 | version "1.0.2" 1195 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1196 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1197 | dependencies: 1198 | call-bind "^1.0.2" 1199 | 1200 | is-string@^1.0.5, is-string@^1.0.7: 1201 | version "1.0.7" 1202 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1203 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1204 | dependencies: 1205 | has-tostringtag "^1.0.0" 1206 | 1207 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1208 | version "1.0.4" 1209 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1210 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1211 | dependencies: 1212 | has-symbols "^1.0.2" 1213 | 1214 | is-weakref@^1.0.2: 1215 | version "1.0.2" 1216 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1217 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1218 | dependencies: 1219 | call-bind "^1.0.2" 1220 | 1221 | isexe@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1224 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1225 | 1226 | joi@^17.3.0: 1227 | version "17.6.0" 1228 | resolved "https://registry.yarnpkg.com/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2" 1229 | integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== 1230 | dependencies: 1231 | "@hapi/hoek" "^9.0.0" 1232 | "@hapi/topo" "^5.0.0" 1233 | "@sideway/address" "^4.1.3" 1234 | "@sideway/formula" "^3.0.0" 1235 | "@sideway/pinpoint" "^2.0.0" 1236 | 1237 | js-cookie@^3.0.1: 1238 | version "3.0.1" 1239 | resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.1.tgz#9e39b4c6c2f56563708d7d31f6f5f21873a92414" 1240 | integrity sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw== 1241 | 1242 | "js-tokens@^3.0.0 || ^4.0.0": 1243 | version "4.0.0" 1244 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1245 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1246 | 1247 | js-yaml@^4.1.0: 1248 | version "4.1.0" 1249 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1250 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1251 | dependencies: 1252 | argparse "^2.0.1" 1253 | 1254 | json-schema-traverse@^0.4.1: 1255 | version "0.4.1" 1256 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1257 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1258 | 1259 | json-stable-stringify-without-jsonify@^1.0.1: 1260 | version "1.0.1" 1261 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1262 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1263 | 1264 | json5@^1.0.1: 1265 | version "1.0.1" 1266 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1267 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1268 | dependencies: 1269 | minimist "^1.2.0" 1270 | 1271 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2: 1272 | version "3.3.3" 1273 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 1274 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1275 | dependencies: 1276 | array-includes "^3.1.5" 1277 | object.assign "^4.1.3" 1278 | 1279 | language-subtag-registry@~0.3.2: 1280 | version "0.3.22" 1281 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" 1282 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 1283 | 1284 | language-tags@^1.0.5: 1285 | version "1.0.5" 1286 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1287 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1288 | dependencies: 1289 | language-subtag-registry "~0.3.2" 1290 | 1291 | levn@^0.4.1: 1292 | version "0.4.1" 1293 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1294 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1295 | dependencies: 1296 | prelude-ls "^1.2.1" 1297 | type-check "~0.4.0" 1298 | 1299 | lilconfig@^2.0.5, lilconfig@^2.0.6: 1300 | version "2.0.6" 1301 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" 1302 | integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== 1303 | 1304 | lodash.merge@^4.6.2: 1305 | version "4.6.2" 1306 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1307 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1308 | 1309 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1310 | version "1.4.0" 1311 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1312 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1313 | dependencies: 1314 | js-tokens "^3.0.0 || ^4.0.0" 1315 | 1316 | lru-cache@^6.0.0: 1317 | version "6.0.0" 1318 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1319 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1320 | dependencies: 1321 | yallist "^4.0.0" 1322 | 1323 | merge2@^1.3.0, merge2@^1.4.1: 1324 | version "1.4.1" 1325 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1326 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1327 | 1328 | micromatch@^4.0.4: 1329 | version "4.0.5" 1330 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1331 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1332 | dependencies: 1333 | braces "^3.0.2" 1334 | picomatch "^2.3.1" 1335 | 1336 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1337 | version "3.1.2" 1338 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1339 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1340 | dependencies: 1341 | brace-expansion "^1.1.7" 1342 | 1343 | minimist@^1.2.0, minimist@^1.2.6: 1344 | version "1.2.6" 1345 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1346 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1347 | 1348 | ms@2.0.0: 1349 | version "2.0.0" 1350 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1351 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1352 | 1353 | ms@2.1.2: 1354 | version "2.1.2" 1355 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1356 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1357 | 1358 | ms@^2.1.1: 1359 | version "2.1.3" 1360 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1361 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1362 | 1363 | nanoid@^3.1.30, nanoid@^3.3.4: 1364 | version "3.3.4" 1365 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1366 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1367 | 1368 | natural-compare@^1.4.0: 1369 | version "1.4.0" 1370 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1371 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1372 | 1373 | next@12.1.6: 1374 | version "12.1.6" 1375 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.6.tgz#eb205e64af1998651f96f9df44556d47d8bbc533" 1376 | integrity sha512-cebwKxL3/DhNKfg9tPZDQmbRKjueqykHHbgaoG4VBRH3AHQJ2HO0dbKFiS1hPhe1/qgc2d/hFeadsbPicmLD+A== 1377 | dependencies: 1378 | "@next/env" "12.1.6" 1379 | caniuse-lite "^1.0.30001332" 1380 | postcss "8.4.5" 1381 | styled-jsx "5.0.2" 1382 | optionalDependencies: 1383 | "@next/swc-android-arm-eabi" "12.1.6" 1384 | "@next/swc-android-arm64" "12.1.6" 1385 | "@next/swc-darwin-arm64" "12.1.6" 1386 | "@next/swc-darwin-x64" "12.1.6" 1387 | "@next/swc-linux-arm-gnueabihf" "12.1.6" 1388 | "@next/swc-linux-arm64-gnu" "12.1.6" 1389 | "@next/swc-linux-arm64-musl" "12.1.6" 1390 | "@next/swc-linux-x64-gnu" "12.1.6" 1391 | "@next/swc-linux-x64-musl" "12.1.6" 1392 | "@next/swc-win32-arm64-msvc" "12.1.6" 1393 | "@next/swc-win32-ia32-msvc" "12.1.6" 1394 | "@next/swc-win32-x64-msvc" "12.1.6" 1395 | 1396 | node-releases@^2.0.6: 1397 | version "2.0.6" 1398 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" 1399 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== 1400 | 1401 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1402 | version "3.0.0" 1403 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1404 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1405 | 1406 | normalize-range@^0.1.2: 1407 | version "0.1.2" 1408 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1409 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 1410 | 1411 | nprogress@^0.2.0: 1412 | version "0.2.0" 1413 | resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" 1414 | integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== 1415 | 1416 | object-assign@^4.1.1: 1417 | version "4.1.1" 1418 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1419 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1420 | 1421 | object-hash@^3.0.0: 1422 | version "3.0.0" 1423 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" 1424 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 1425 | 1426 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1427 | version "1.12.2" 1428 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1429 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1430 | 1431 | object-keys@^1.1.1: 1432 | version "1.1.1" 1433 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1434 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1435 | 1436 | object.assign@^4.1.3, object.assign@^4.1.4: 1437 | version "4.1.4" 1438 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1439 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1440 | dependencies: 1441 | call-bind "^1.0.2" 1442 | define-properties "^1.1.4" 1443 | has-symbols "^1.0.3" 1444 | object-keys "^1.1.1" 1445 | 1446 | object.entries@^1.1.5: 1447 | version "1.1.5" 1448 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1449 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1450 | dependencies: 1451 | call-bind "^1.0.2" 1452 | define-properties "^1.1.3" 1453 | es-abstract "^1.19.1" 1454 | 1455 | object.fromentries@^2.0.5: 1456 | version "2.0.5" 1457 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1458 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1459 | dependencies: 1460 | call-bind "^1.0.2" 1461 | define-properties "^1.1.3" 1462 | es-abstract "^1.19.1" 1463 | 1464 | object.hasown@^1.1.1: 1465 | version "1.1.1" 1466 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 1467 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 1468 | dependencies: 1469 | define-properties "^1.1.4" 1470 | es-abstract "^1.19.5" 1471 | 1472 | object.values@^1.1.5: 1473 | version "1.1.5" 1474 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1475 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1476 | dependencies: 1477 | call-bind "^1.0.2" 1478 | define-properties "^1.1.3" 1479 | es-abstract "^1.19.1" 1480 | 1481 | once@^1.3.0: 1482 | version "1.4.0" 1483 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1484 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1485 | dependencies: 1486 | wrappy "1" 1487 | 1488 | optionator@^0.9.1: 1489 | version "0.9.1" 1490 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1491 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1492 | dependencies: 1493 | deep-is "^0.1.3" 1494 | fast-levenshtein "^2.0.6" 1495 | levn "^0.4.1" 1496 | prelude-ls "^1.2.1" 1497 | type-check "^0.4.0" 1498 | word-wrap "^1.2.3" 1499 | 1500 | parent-module@^1.0.0: 1501 | version "1.0.1" 1502 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1503 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1504 | dependencies: 1505 | callsites "^3.0.0" 1506 | 1507 | path-is-absolute@^1.0.0: 1508 | version "1.0.1" 1509 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1510 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1511 | 1512 | path-key@^3.1.0: 1513 | version "3.1.1" 1514 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1515 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1516 | 1517 | path-parse@^1.0.7: 1518 | version "1.0.7" 1519 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1520 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1521 | 1522 | path-type@^4.0.0: 1523 | version "4.0.0" 1524 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1525 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1526 | 1527 | picocolors@^1.0.0: 1528 | version "1.0.0" 1529 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1530 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1531 | 1532 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1533 | version "2.3.1" 1534 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1535 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1536 | 1537 | pify@^2.3.0: 1538 | version "2.3.0" 1539 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1540 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1541 | 1542 | postcss-import@^14.1.0: 1543 | version "14.1.0" 1544 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" 1545 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== 1546 | dependencies: 1547 | postcss-value-parser "^4.0.0" 1548 | read-cache "^1.0.0" 1549 | resolve "^1.1.7" 1550 | 1551 | postcss-js@^4.0.0: 1552 | version "4.0.0" 1553 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" 1554 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== 1555 | dependencies: 1556 | camelcase-css "^2.0.1" 1557 | 1558 | postcss-load-config@^3.1.4: 1559 | version "3.1.4" 1560 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" 1561 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 1562 | dependencies: 1563 | lilconfig "^2.0.5" 1564 | yaml "^1.10.2" 1565 | 1566 | postcss-nested@5.0.6: 1567 | version "5.0.6" 1568 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" 1569 | integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== 1570 | dependencies: 1571 | postcss-selector-parser "^6.0.6" 1572 | 1573 | postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.6: 1574 | version "6.0.10" 1575 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" 1576 | integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== 1577 | dependencies: 1578 | cssesc "^3.0.0" 1579 | util-deprecate "^1.0.2" 1580 | 1581 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 1582 | version "4.2.0" 1583 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 1584 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1585 | 1586 | postcss@8.4.5: 1587 | version "8.4.5" 1588 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" 1589 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 1590 | dependencies: 1591 | nanoid "^3.1.30" 1592 | picocolors "^1.0.0" 1593 | source-map-js "^1.0.1" 1594 | 1595 | postcss@^8.4.14: 1596 | version "8.4.16" 1597 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.16.tgz#33a1d675fac39941f5f445db0de4db2b6e01d43c" 1598 | integrity sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ== 1599 | dependencies: 1600 | nanoid "^3.3.4" 1601 | picocolors "^1.0.0" 1602 | source-map-js "^1.0.2" 1603 | 1604 | prelude-ls@^1.2.1: 1605 | version "1.2.1" 1606 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1607 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1608 | 1609 | prop-types@^15.8.1: 1610 | version "15.8.1" 1611 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1612 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1613 | dependencies: 1614 | loose-envify "^1.4.0" 1615 | object-assign "^4.1.1" 1616 | react-is "^16.13.1" 1617 | 1618 | punycode@^2.1.0: 1619 | version "2.1.1" 1620 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1621 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1622 | 1623 | queue-microtask@^1.2.2: 1624 | version "1.2.3" 1625 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1626 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1627 | 1628 | quick-lru@^5.1.1: 1629 | version "5.1.1" 1630 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1631 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1632 | 1633 | react-dom@18.1.0: 1634 | version "18.1.0" 1635 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.1.0.tgz#7f6dd84b706408adde05e1df575b3a024d7e8a2f" 1636 | integrity sha512-fU1Txz7Budmvamp7bshe4Zi32d0ll7ect+ccxNu9FlObT605GOEB8BfO4tmRJ39R5Zj831VCpvQ05QPBW5yb+w== 1637 | dependencies: 1638 | loose-envify "^1.1.0" 1639 | scheduler "^0.22.0" 1640 | 1641 | react-icons@^4.4.0: 1642 | version "4.4.0" 1643 | resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.4.0.tgz#a13a8a20c254854e1ec9aecef28a95cdf24ef703" 1644 | integrity sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg== 1645 | 1646 | react-is@^16.13.1: 1647 | version "16.13.1" 1648 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1649 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1650 | 1651 | react@18.1.0: 1652 | version "18.1.0" 1653 | resolved "https://registry.yarnpkg.com/react/-/react-18.1.0.tgz#6f8620382decb17fdc5cc223a115e2adbf104890" 1654 | integrity sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ== 1655 | dependencies: 1656 | loose-envify "^1.1.0" 1657 | 1658 | read-cache@^1.0.0: 1659 | version "1.0.0" 1660 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 1661 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 1662 | dependencies: 1663 | pify "^2.3.0" 1664 | 1665 | readdirp@~3.6.0: 1666 | version "3.6.0" 1667 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1668 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1669 | dependencies: 1670 | picomatch "^2.2.1" 1671 | 1672 | recoil@^0.7.3: 1673 | version "0.7.5" 1674 | resolved "https://registry.yarnpkg.com/recoil/-/recoil-0.7.5.tgz#9a33a03350cfd99e08bdd5b73bfc8b8b9ee751b9" 1675 | integrity sha512-GVShsj5+M/2GULWBs5WBJGcsNis/d3YvDiaKjYh3mLKXftjtmk9kfaQ8jwjoIXySCwn8/RhgJ4Sshwgzj2UpFA== 1676 | dependencies: 1677 | hamt_plus "1.0.2" 1678 | 1679 | regenerator-runtime@^0.13.4: 1680 | version "0.13.9" 1681 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1682 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1683 | 1684 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 1685 | version "1.4.3" 1686 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1687 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1688 | dependencies: 1689 | call-bind "^1.0.2" 1690 | define-properties "^1.1.3" 1691 | functions-have-names "^1.2.2" 1692 | 1693 | regexpp@^3.2.0: 1694 | version "3.2.0" 1695 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1696 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1697 | 1698 | resolve-from@^4.0.0: 1699 | version "4.0.0" 1700 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1701 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1702 | 1703 | resolve@^1.1.7, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.22.1: 1704 | version "1.22.1" 1705 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1706 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1707 | dependencies: 1708 | is-core-module "^2.9.0" 1709 | path-parse "^1.0.7" 1710 | supports-preserve-symlinks-flag "^1.0.0" 1711 | 1712 | resolve@^2.0.0-next.3: 1713 | version "2.0.0-next.4" 1714 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1715 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1716 | dependencies: 1717 | is-core-module "^2.9.0" 1718 | path-parse "^1.0.7" 1719 | supports-preserve-symlinks-flag "^1.0.0" 1720 | 1721 | reusify@^1.0.4: 1722 | version "1.0.4" 1723 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1724 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1725 | 1726 | rimraf@^3.0.2: 1727 | version "3.0.2" 1728 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1729 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1730 | dependencies: 1731 | glob "^7.1.3" 1732 | 1733 | run-parallel@^1.1.9: 1734 | version "1.2.0" 1735 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1736 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1737 | dependencies: 1738 | queue-microtask "^1.2.2" 1739 | 1740 | sass@^1.52.2: 1741 | version "1.54.8" 1742 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.54.8.tgz#4adef0dd86ea2b1e4074f551eeda4fc5f812a996" 1743 | integrity sha512-ib4JhLRRgbg6QVy6bsv5uJxnJMTS2soVcCp9Y88Extyy13A8vV0G1fAwujOzmNkFQbR3LvedudAMbtuNRPbQww== 1744 | dependencies: 1745 | chokidar ">=3.0.0 <4.0.0" 1746 | immutable "^4.0.0" 1747 | source-map-js ">=0.6.2 <2.0.0" 1748 | 1749 | scheduler@^0.22.0: 1750 | version "0.22.0" 1751 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.22.0.tgz#83a5d63594edf074add9a7198b1bae76c3db01b8" 1752 | integrity sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ== 1753 | dependencies: 1754 | loose-envify "^1.1.0" 1755 | 1756 | semver@^6.3.0: 1757 | version "6.3.0" 1758 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1759 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1760 | 1761 | semver@^7.3.7: 1762 | version "7.3.7" 1763 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 1764 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 1765 | dependencies: 1766 | lru-cache "^6.0.0" 1767 | 1768 | shebang-command@^2.0.0: 1769 | version "2.0.0" 1770 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1771 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1772 | dependencies: 1773 | shebang-regex "^3.0.0" 1774 | 1775 | shebang-regex@^3.0.0: 1776 | version "3.0.0" 1777 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1778 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1779 | 1780 | side-channel@^1.0.4: 1781 | version "1.0.4" 1782 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1783 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1784 | dependencies: 1785 | call-bind "^1.0.0" 1786 | get-intrinsic "^1.0.2" 1787 | object-inspect "^1.9.0" 1788 | 1789 | simple-oauth2@^4.3.0: 1790 | version "4.3.0" 1791 | resolved "https://registry.yarnpkg.com/simple-oauth2/-/simple-oauth2-4.3.0.tgz#8b8c28a7f7145a77a2a03086b1adb1e9ba5abc98" 1792 | integrity sha512-gjLIfy7M7WZSf3k5IZCQfEozbQwmW80zR9YMH4ph/WWG6S4U6sGhPujz8X6Hj6sZ8l7acSAxiyM4tF0vIN+E+A== 1793 | dependencies: 1794 | "@hapi/hoek" "^9.0.4" 1795 | "@hapi/wreck" "^17.0.0" 1796 | debug "^4.1.1" 1797 | joi "^17.3.0" 1798 | 1799 | slash@^3.0.0: 1800 | version "3.0.0" 1801 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1802 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1803 | 1804 | "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2: 1805 | version "1.0.2" 1806 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1807 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1808 | 1809 | string.prototype.matchall@^4.0.7: 1810 | version "4.0.7" 1811 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 1812 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 1813 | dependencies: 1814 | call-bind "^1.0.2" 1815 | define-properties "^1.1.3" 1816 | es-abstract "^1.19.1" 1817 | get-intrinsic "^1.1.1" 1818 | has-symbols "^1.0.3" 1819 | internal-slot "^1.0.3" 1820 | regexp.prototype.flags "^1.4.1" 1821 | side-channel "^1.0.4" 1822 | 1823 | string.prototype.trimend@^1.0.5: 1824 | version "1.0.5" 1825 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 1826 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 1827 | dependencies: 1828 | call-bind "^1.0.2" 1829 | define-properties "^1.1.4" 1830 | es-abstract "^1.19.5" 1831 | 1832 | string.prototype.trimstart@^1.0.5: 1833 | version "1.0.5" 1834 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 1835 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 1836 | dependencies: 1837 | call-bind "^1.0.2" 1838 | define-properties "^1.1.4" 1839 | es-abstract "^1.19.5" 1840 | 1841 | strip-ansi@^6.0.1: 1842 | version "6.0.1" 1843 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1844 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1845 | dependencies: 1846 | ansi-regex "^5.0.1" 1847 | 1848 | strip-bom@^3.0.0: 1849 | version "3.0.0" 1850 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1851 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1852 | 1853 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1854 | version "3.1.1" 1855 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1856 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1857 | 1858 | styled-jsx@5.0.2: 1859 | version "5.0.2" 1860 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.2.tgz#ff230fd593b737e9e68b630a694d460425478729" 1861 | integrity sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ== 1862 | 1863 | supports-color@^7.1.0: 1864 | version "7.2.0" 1865 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1866 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1867 | dependencies: 1868 | has-flag "^4.0.0" 1869 | 1870 | supports-preserve-symlinks-flag@^1.0.0: 1871 | version "1.0.0" 1872 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1873 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1874 | 1875 | tailwindcss@^3.0.24: 1876 | version "3.1.8" 1877 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.1.8.tgz#4f8520550d67a835d32f2f4021580f9fddb7b741" 1878 | integrity sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g== 1879 | dependencies: 1880 | arg "^5.0.2" 1881 | chokidar "^3.5.3" 1882 | color-name "^1.1.4" 1883 | detective "^5.2.1" 1884 | didyoumean "^1.2.2" 1885 | dlv "^1.1.3" 1886 | fast-glob "^3.2.11" 1887 | glob-parent "^6.0.2" 1888 | is-glob "^4.0.3" 1889 | lilconfig "^2.0.6" 1890 | normalize-path "^3.0.0" 1891 | object-hash "^3.0.0" 1892 | picocolors "^1.0.0" 1893 | postcss "^8.4.14" 1894 | postcss-import "^14.1.0" 1895 | postcss-js "^4.0.0" 1896 | postcss-load-config "^3.1.4" 1897 | postcss-nested "5.0.6" 1898 | postcss-selector-parser "^6.0.10" 1899 | postcss-value-parser "^4.2.0" 1900 | quick-lru "^5.1.1" 1901 | resolve "^1.22.1" 1902 | 1903 | text-table@^0.2.0: 1904 | version "0.2.0" 1905 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1906 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1907 | 1908 | to-regex-range@^5.0.1: 1909 | version "5.0.1" 1910 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1911 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1912 | dependencies: 1913 | is-number "^7.0.0" 1914 | 1915 | tsconfig-paths@^3.14.1: 1916 | version "3.14.1" 1917 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 1918 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 1919 | dependencies: 1920 | "@types/json5" "^0.0.29" 1921 | json5 "^1.0.1" 1922 | minimist "^1.2.6" 1923 | strip-bom "^3.0.0" 1924 | 1925 | tslib@^1.8.1: 1926 | version "1.14.1" 1927 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1928 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1929 | 1930 | tsutils@^3.21.0: 1931 | version "3.21.0" 1932 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 1933 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 1934 | dependencies: 1935 | tslib "^1.8.1" 1936 | 1937 | type-check@^0.4.0, type-check@~0.4.0: 1938 | version "0.4.0" 1939 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1940 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1941 | dependencies: 1942 | prelude-ls "^1.2.1" 1943 | 1944 | type-fest@^0.20.2: 1945 | version "0.20.2" 1946 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1947 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1948 | 1949 | unbox-primitive@^1.0.2: 1950 | version "1.0.2" 1951 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 1952 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 1953 | dependencies: 1954 | call-bind "^1.0.2" 1955 | has-bigints "^1.0.2" 1956 | has-symbols "^1.0.3" 1957 | which-boxed-primitive "^1.0.2" 1958 | 1959 | update-browserslist-db@^1.0.5: 1960 | version "1.0.7" 1961 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.7.tgz#16279639cff1d0f800b14792de43d97df2d11b7d" 1962 | integrity sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg== 1963 | dependencies: 1964 | escalade "^3.1.1" 1965 | picocolors "^1.0.0" 1966 | 1967 | uri-js@^4.2.2: 1968 | version "4.4.1" 1969 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1970 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1971 | dependencies: 1972 | punycode "^2.1.0" 1973 | 1974 | util-deprecate@^1.0.2: 1975 | version "1.0.2" 1976 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1977 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 1978 | 1979 | v8-compile-cache@^2.0.3: 1980 | version "2.3.0" 1981 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 1982 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 1983 | 1984 | which-boxed-primitive@^1.0.2: 1985 | version "1.0.2" 1986 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1987 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1988 | dependencies: 1989 | is-bigint "^1.0.1" 1990 | is-boolean-object "^1.1.0" 1991 | is-number-object "^1.0.4" 1992 | is-string "^1.0.5" 1993 | is-symbol "^1.0.3" 1994 | 1995 | which@^2.0.1: 1996 | version "2.0.2" 1997 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1998 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1999 | dependencies: 2000 | isexe "^2.0.0" 2001 | 2002 | word-wrap@^1.2.3: 2003 | version "1.2.3" 2004 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2005 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2006 | 2007 | wrappy@1: 2008 | version "1.0.2" 2009 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2010 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2011 | 2012 | xtend@^4.0.2: 2013 | version "4.0.2" 2014 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2015 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2016 | 2017 | yallist@^4.0.0: 2018 | version "4.0.0" 2019 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2020 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2021 | 2022 | yaml@^1.10.2: 2023 | version "1.10.2" 2024 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 2025 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2026 | --------------------------------------------------------------------------------